* {
    margin: 0;
    padding: 0;
}

:root {
    --main-font: 'Inter', sans-serif;
    --heading-font: 'span', sans-serif;

    --main-font-weight: 400;
    --main-font-color: #ffffff;
    --secondary-font-color: #171717;
    --menu-bg: #282828;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font);
    font-weight: var(--main-font-weight);
    margin: 0;
}
.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}
/* =========================
   Global Inputs
========================= */

input,
textarea,
select {

    box-sizing: border-box;

    padding: 10px 12px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 20px;

    color: #2E2B2B;
    background: transparent;

    border: 1px solid #ACA6A6;
    border-radius: 0;

    transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}


/* Placeholder */

input::placeholder,
textarea::placeholder {
    color: #8B8383;
}


/* =========================
   Hover
========================= */

input:hover,
textarea:hover {
    border-color: #BDBDBD;
}


/* =========================
   Focus
========================= */

input:focus,
textarea:focus {

    outline: none;

    border-color: #915131;

    box-shadow:
            0 0 0 2px #FFFFFF,
            0 0 0 4px rgba(145,81,49,0.2);
}


/* =========================
   Filled
========================= */

input:not(:placeholder-shown),
textarea:not(:placeholder-shown) {

    color: #2E2B2B;

    filter: drop-shadow(0px 1px 2px rgba(10,13,20,0.04));
}


/* =========================
   Disabled
========================= */

input:disabled,
textarea:disabled {

    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.3);

    cursor: not-allowed;
}


input:disabled::placeholder,
textarea:disabled::placeholder {
    color: rgba(0,0,0,0.2);
}
/* ===== HEADER BASE ===== */

.header {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #DEDCDC;
    z-index: 1000;
    position: fixed;
}

.header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header__logo img {
    height: 48px;
    width: auto;
}

/* Desktop Menu */
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.header__nav ul{
    margin: 0;
}

.header__menu {
    display: flex;
    gap: 4px;
    list-style: none;
}
.header__menu li{
    list-style: none;
}
.header__menu li a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 1920px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #5B5656;
    text-decoration: none;
    transition: 0.3s ease;
    text-align: center;



}

/* Desktop CTA */
.header__btn {
    padding: 12px 20px;
    background: #9D5B37;
    color: #fff;
    border-radius: 1920px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}
.header__btn:hover{
    background: #915131;
}
.header__btn:focus{
    box-shadow: 0px 0px 0px 4px #9D5B3733,

                0px 0px 0px 2px #9D5B37;

}
/* ===== BURGER ===== */

.header__burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 1920px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.header__burger span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #5B5656;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.header__burger span:nth-child(1) {
    top: 14px;
}

.header__burger span:nth-child(2) {
    top: 19px;
}

.header__burger span:nth-child(3) {
    top: 24px;
}

/* ===== ACTIVE===== */

.header__burger.active span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* ===== MOBILE ===== */
    @media (max-width: 1300px){
        .container{
            padding: 0 60px;
        }
        .header__container {
            padding: 0 60px;
        }
    }
    @media (max-width: 1200px){
        .container{
            padding: 0 40px;
        }
        .header__container {
            padding: 0 40px;
        }
    }
    @media (max-width: 1024px){
        .container{
            padding: 0 20px;
        }
        .header__container {
            padding: 0 20px;
        }
    }
    @media (max-width: 992px) {
    .header__container {
        padding: 0 16px;
        align-items: center;
    }

    .header__nav,
    .header__btn {
        display: none;
    }

    .header__burger {
        display: block;
    }
    .header__logo{
        height: 48px;
    }
}
@media (max-width: 768px){
    .container{
        padding: 0 16px;
    }
}
/* ===== MOBILE MENU ===== */

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    transform: translateX(-100%);
    transition: 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
}

.mobile-menu__cta {
    background: #F2F0E7;
    padding: 32px;
}

.mobile-menu__btn {
    display: block;
    background: #9D5B37;
    color: #fff;
    padding: 12px 20px;
    border-radius: 1920px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    font-family: 'Inter';
    font-weight: 500;
}

.mobile-menu__list {
    list-style: none;
    padding: 0 24px;
}

.mobile-menu__list li a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid #DEDCDC;
    font-size: 18px;
    font-family: 'Inter';
    font-weight: 500;
    color: #5B5656;
    text-decoration: none;
    line-height: 28px;
}
/* ============================= */
/* FOOTER BASE */
/* ============================= */

.o-footer {
    background: #915131;
    padding: 56px 56px 48px;
    color: #ffffff;
}
.o-footer__inner{
    max-width: 1328px;
    margin: 0 auto;
}
.o-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.o-footer a:hover {
    opacity: 0.8;
}

/* ============================= */
/* TOP FOOTER */
/* ============================= */

.footer__top {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* Logo + Title */
.footer__logo-block{
    flex-shrink: 0;
}
.footer__info-block {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.footer__logo img {
    width: 61px;
    height: auto;
}

/* Title */

.footer__title-block h3 {
    font-family: 'span', sans-serif;
    font-weight: 400;
    font-size: 112px;
    line-height: 112px;
    letter-spacing: -0.012em;
    margin: 0;
}

/* Nav */

.footer__nav-block {
    margin-top: 16px;
    max-width: 796px;
}

#footer-top-menu {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    column-gap: 80px;
    row-gap: 24px;

    list-style: none;
    padding: 0;
    margin: 0;
}
#footer-top-menu li {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#footer-top-menu a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

/* ============================= */
/* BOTTOM FOOTER */
/* ============================= */

.footer__bottom {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

/* Social */

.footer__wrapper {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #DEDCDC;
    padding-bottom: 12px;
}
.footer__wrapper .nav-mobile{
    display: none;
}
.footer__bottom-underline{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer__social-block {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__social-block li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #ffffff;
    border-radius: 1920px;
    border: 1px solid #5C3A1780;
    box-shadow: 0px 1px 2px 0px #0A0D140A;

}
.footer__social-block li a:hover{
    background: #DEDCDC;
    border: 1px solid #DEDCDC;
    opacity: 1;
}
.footer__social-block li a span{
    font-family: var(--main-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #2E2B2B;
    padding-left: 8px;

}
.footer__social-block img {
    width: 20px;
    height: 20px;
}

/* Copyright + bottom nav */

.footer__bottom > p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

#footer-bottom-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-bottom-menu a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {

    .o-footer {
        padding: 32px 16px 48px;
    }

    .footer__info-block {
        align-items: flex-start;
    }

    .footer__logo img {
        width: 34px;
    }

    .footer__title-block h3 {
        font-size: 56px;
        line-height: 56px;
    }
    #footer-top-menu {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 12px;
    }
    #footer-top-menu a {
        font-size: 16px;
        line-height: 32px;
    }

    .footer__wrapper {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .footer__wrapper .nav-mobile{
        display: block;
    }
    .footer__bottom-underline .nav-desktop{
        display: none;
    }
    .footer__social-block {
        flex-direction: column;
        width: 100%;
        max-width: 328px;
    }

    .footer__social-block li a {
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
    }

    .footer__nav-block-bottom {
        padding-top: 16px;
    }

    #footer-bottom-menu {
        flex-direction: row;
        gap: 42px;
    }

}

/* =========================
Popup Subscribe
========================= */

.popup-subscribe {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 9999;
}

.popup-subscribe.is-active {
    opacity: 1;
    visibility: visible;
}
.popup-subscribe-overlay {
    position: absolute;
    inset: 0;

    background: rgba(68, 43, 26, 0.25);
    backdrop-filter: blur(2px);
}

.popup-subscribe-container {
    position: relative;
    display: flex;
    max-width: 768px;
    width: 100%;
    min-height: 420px;
    border: 1px solid #DEDCDC;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 4px 8px 1px rgba(10,13,20,0.15);
    overflow: hidden;
    transform: translateY(30px);
    transition: transform .3s ease;
}

.popup-subscribe.is-active .popup-subscribe-container {
    transform: translateY(0);
}

.popup-subscribe-image {
    width: 48%;
    min-height: 420px;
}
.popup-subscribe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-subscribe-inner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    width: 52%;
}

.popup-subscribe-logo img {
    max-width: 112px;
}

.popup-subscribe-title {

    font-family: "Span";
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #81472C;
    margin-top: 16px;
    margin-bottom: 8px;

}
.popup-subscribe-description {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #5B5656;
    margin-bottom: 24px;

}
.popup-subscribe-description p{
    margin-bottom: 0;
}
.popup-subscribe-description p strong{
    font-weight: 500;
}
.popup-subscribe form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 316px;
}
.popup-subscribe form p{
    margin-bottom: 0;
}
.popup-subscribe input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ACA6A6;
    font-family: "Inter";
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    background-color: transparent;
    color: #2E2B2B;
    margin-bottom: 12px;
}
.popup-subscribe input::placeholder {
    color: #8B8383;
}
.popup-subscribe .header__btn {
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    background: #9D5B37;
    color: #fff;
    border-radius: 1920px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 0;
}

.popup-subscribe-subtitle {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #2E2B2B;
    max-width: 300px;
}
.popup-subscribe-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* =========================
MOBILE
========================= */
@media (max-width: 992px) {
    .popup-subscribe .header__btn {
        display: block;
    }
}

@media (max-width: 768px) {

    .popup-subscribe{
        padding: 20px 16px;
    }
    .popup-subscribe-container {
        flex-direction: column;
        max-width: 420px;
        min-height: auto;
        border-radius: 16px;
    }

    .popup-subscribe-image {
        display: none;
    }

    .popup-subscribe-inner-right {
        width: 100%;
        padding: 16px;
    }
    .popup-subscribe-title {
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .popup-subscribe form{
        max-width: 100%;
    }

}

/* =========================
Popup Mentoring
========================= */

.popup-mentoring {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 9999;
}

.popup-mentoring.is-active {
    opacity: 1;
    visibility: visible;
}
.popup-mentoring-overlay {
    position: absolute;
    inset: 0;

    background: rgba(68, 43, 26, 0.25);
    backdrop-filter: blur(2px);
}

.popup-mentoring-container {
    position: relative;
    display: flex;
    max-width: 923px;
    width: 100%;
    min-height: 582px;
    border: 1px solid #DEDCDC;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 4px 8px 1px rgba(10,13,20,0.15);
    overflow: hidden;
    transform: translateY(30px);
    transition: transform .3s ease;
}

.popup-mentoring.is-active .popup-mentoring-container {
    transform: translateY(0);
}

.popup-mentoring-image {
    width: 48%;
    min-height: 582px;
}
.popup-mentoring-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-mentoring-inner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 32px;
    width: 52%;
}

.popup-mentoring-title {

    font-family: "Span";
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #81472C;
    margin-bottom: 8px;

}
.popup-mentoring-description {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #5B5656;
    margin-bottom: 20px;

}
.popup-mentoring-who{
    padding: 16px;
    border-radius: 16px;
    background-color: #F7F7F4;
    margin-bottom: 12px;
}
.popup-mentoring-who h3{
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.4%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #2E2B2B;
    margin-bottom: 6px;

}
.popup-mentoring-who p{
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #5B5656;
}
.popup-mentoring-who p{
    margin-bottom: 0;
}
.popup-mentoring-who p strong{
    font-weight: 600;
}
.popup-mentoring-approach {
    width: 100%;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid #EEEDED;
    border-radius: 16px;
    box-shadow: 0px 1px 2px rgba(10, 13, 20, 0.04);
}

.popup-mentoring-approach h3 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.004em;
    text-transform: uppercase;
    color: #2E2B2B;
    margin-bottom: 4px;
}
.popup-mentoring-approach p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #5B5656;
    margin-bottom: 8px;
}

.popup-mentoring-approach ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    width: 100%;
    margin-top: 0;
    align-items: center;
}
.popup-mentoring-approach li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 20px;
    color: #5B5656;
    font-weight: 400;
    vertical-align: middle;
}
.popup-mentoring-approach li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #F2F0E7;
    border-radius: 50%;
    flex-shrink: 0;
}

.popup-mentoring-approach strong {
    font-weight: 600;
}

.popup-mentoring-info{
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color:  #5C3A17;
    margin-top: 4px;
    margin-bottom: 20px;
}

.popup-mentoring .header__btn {
    border: none;
    cursor: pointer;
    padding: 12px 80px;
}

.popup-mentoring-subtitle {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #2E2B2B;
    margin-top: 12px;
}
.popup-mentoring-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* =========================
MOBILE
========================= */
@media (max-width: 992px) {
    .popup-mentoring .header__btn {
        display: block;
    }
}

@media (max-width: 768px) {

    .popup-mentoring{
        padding: 16px;
    }
    .popup-mentoring-container {
        flex-direction: column;
        max-width: 420px;
        min-height: auto;
        border-radius: 16px;
    }

    .popup-mentoring-image {
        display: none;
    }

    .popup-mentoring-inner-right {
        width: 100%;
        padding: 16px;
    }
    .popup-mentoring-who{
        padding: 12px;
    }
    .popup-mentoring-approach{
        padding: 12px;
    }
    .popup-mentoring-approach p {
        margin-bottom: 10px;
    }
    .popup-mentoring-approach ul {
        margin: 6px 0 0 0;
        align-items: start;
    }
    .popup-mentoring-approach li {
        line-height: 16px;
        text-align: justify;
    }
    .popup-mentoring-approach strong {
        font-weight: 500;
    }
    .popup-mentoring-info{
        margin-top: 8px;
    }
}
.wpcf7-response-output{
    color: red;
    margin-top: 0 !important;
}
.wpcf7 form.sent .wpcf7-response-output{
    color: green;
}