:root {

}



.notFound {
    display: none !important;
}

.error {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';

    .error-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;

        h1 {
            font-size: 30px;
        }
        p {
            font-size: 20px;
        }
        a {
            padding: 10px 20px;
            border-radius: 20px;
            background-color: #92ad6e;
            font-size: 16px;
            transition: .3s;

            &:hover {
                background-color: #8bb455;
                color: #ffffff;
            }
        }
    }
}


main {
    opacity: 0;
	transition: .8s opacity ease-in-out;
}

.main_visible {
	opacity: 1;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: absolute;
    top: 0;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: end;
    transition: .2s;
    overflow: hidden;
}

.header-wrap {
    width: 100%;
    margin: 0 auto;
    width: 100%;
    height: 120px;
    padding: 0 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #DFF2C7;
    gap: 20px;

    transition: .3s;
}

.header__logo {
    transform: translateY(10px);
}

.headerFixed {
    position: fixed !important;
    top: 0 !important;

    opacity: .9;
}

.headerOpacity {
    opacity: .9;
}

.headerFixed.open {
    opacity: 1 !important;
}

.header__nav {
    margin-left: auto;
    margin-right: 40px;
}



.main-nav__list, .nav__listMobile {
    text-wrap:balance;
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 21px;
    font-family: 'Montserrat';
}



.main-nav__list li {
    position: relative;
    transition: .15s;
}


.current-menu-item a {
    color: #7963B9 !important;
    font-weight: 600 !important;
}

.main-nav__list li:active {
    transform: scale(99%);
}

.main-nav__list li:hover {
    text-shadow: 0px 0px .5px #465B2B;
    &::before {
        width: 100%;
    }
    &::after {
        width: 100%;
    }
}

.main-nav__list li::before {
    position: absolute;
    content: '';
    transition: .3s;
    left: 0;
    top: 120%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(70,91,43,1) 0%, rgba(148,193,90,1) 50%, rgba(70,91,43,1) 100%);
}
.main-nav__list li::after {
    position: absolute;
    content: '';
    transition: .3s;
    left: 0;
    top: -20%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(70,91,43,1) 0%, rgba(148,193,90,1) 50%, rgba(70,91,43,1) 100%);
}

/*HAMBURGER*/
.header__menuSwitch {
    display: none;
    position: relative;
    width: 28px;
    height: 24px;
}

.header__menuSwitch span {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: #465B2B;
    transition: .5s;
}

.header__menuSwitch.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}
.header__menuSwitch span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.header__menuSwitch.open span:nth-child(2) {
    display: none;
}
.header__menuSwitch span:nth-child(3) {
    bottom: 0;
}
.header__menuSwitch.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
}
/*/HAMBURGER*/

.header__navMobile {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(92px);
    width: 100%;
    padding: 20px 40px;
    z-index: -1;
    background: #92ad6e;
    visibility:hidden;
    opacity: 0;
    transition: .5s;
    display: none;
}
.header__navMobile.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(92px);
}
.nav__listMobile {
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.nav__listMobile li {
    position: relative;
    transition: .15s;
}
.nav__listMobile li a:hover{
    color: #fff !important;
}
.nav__listMobile li:active {
    transform: scale(99%);
}
.nav__listMobile li:hover {
    color: #ffffff;
    text-shadow: 0px 0px .5px #465B2B;
    &::before {
        width: 100%;
    }
    &::after {
        width: 100%;
    }
}
.nav__listMobile li::before {
    position: absolute;
    content: '';
    transition: .3s;
    left: 0;
    top: 120%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgb(201, 223, 173) 0%, rgba(148,193,90,1) 50%, rgba(201, 223, 173) 100%);
}
.nav__listMobile li::after {
    position: absolute;
    content: '';
    transition: .3s;
    left: 0;
    top: -20%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgb(201, 223, 173) 0%, rgba(148,193,90,1) 50%, rgba(201, 223, 173) 100%);
}


.header__record,.header__recordMobile {
    position: relative;
    font-family: 'Montserrat';
    color: #ffffff;
    font-size: 21px;
    padding: 14px 26px;
    border-radius: 10px;
    background: rgba(70, 91, 43,.9);
    transition: .2s;
}
.header__record:hover,.header__recordMobile:hover {
    background-color: rgba(70, 91, 43,1);
}

.header__recordMobile {
    display: none;
}

.header__recordMobile.smallMenu {
    display: none;
}






/* About Page */


.about {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    min-height:100vh;
    background-position:top right;
    background-repeat:no-repeat;
    background-size: cover;
    padding-bottom: 20px;
}

.about-wrap {
    margin-top: 240px;
    width: 100%;
    padding: 20px 20px;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* visibility: hidden; */
    /* opacity: 0; */
    /* filter: blur(2px); */
    border: 2px #92ad6e solid;


    transition: 2s;
}

.aboutAnimate {
    visibility: visible !important;
    opacity: 1 !important;
    filter: blur(0) !important;
}

.about__top {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.about__top-img {
    min-width: 488px;
    width: 100%;
    height: 100%;
    /* width: 488px; */
    /* height: 462px; */
    border-radius: 5px;
}

.about__imgMobile {
    display: none;
}

.about__top-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    max-width: 60%;
}

.about__top-text p a {
    position: relative;
    color: #465B2B;
    font-weight: 600;
    transition: .2s;
}

.about__top-text p a:hover {
    color: #465B2B;
    font-weight: 700;
}

.about__top-text__title {
}

.about__bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

//.about__bottom p {
//    font-size: 18px;
//}

.page-title {
    user-select: none;
    font-size: 40px;
    color: #465B2B;
    font-family: 'Montserrat';
    font-weight: 700;
}
.page-titleMobile {
    font-size: 40px;
    color: #465B2B;
    font-family: 'Montserrat';
    font-weight: 700;
    display: none;
}


/* Education Page */


.education {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    min-height:100vh;
    background-position:top right;
    background-repeat:no-repeat;
    background-size: cover;

    padding-bottom: 30px;

}

.education-wrap {
    margin-top: 240px;
    width: 100%;
    padding: 20px 20px;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px #92ad6e solid;

    transition: 2s;

    /*анимация*/
    /* visibility: hidden; */
    /* opacity: 0; */
    /* filter: blur(12px); */
}

.education__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
}

.education__content-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    max-width: 42%;

    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 130%;
    color: #465B2B;
}

.education__content-left-wrap {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* b {
        margin-bottom: 5px;
    } */
}

.education__content-left-wrap p a {
    position: relative;
    color: #465B2B;
    font-weight: 600;
    transition: .2s;
}

.education__content-left-wrap p a:hover {
    color: #465B2B;
    font-weight: 700;
}

.education__content-left-img {
    min-width: 540px;
    max-height: 480px;
    width: 100%;
    height: 100%;
    /* height: 430px; */
}
.education__content-left-imgMobile {
    display: none;
}

.education__content-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    max-width: 56%;
}

.education__content-right__text {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
}




/* Activity Page */


.activity {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    min-height:100vh;
    background-position:top right;
    background-repeat:no-repeat;
    background-size: cover;

    padding-bottom: 20px;

}

.activity-wrap {
    margin-top: 240px;
    width: 100%;
    padding: 30px 30px;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px #92ad6e solid;
    transition: 1s;

    /*анимация*/
    /* visibility: hidden; */
    /* opacity: 0; */
    /* filter: blur(10px); */
}

.activity__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

.activity__content-left {
    max-width: 65%;
}

.activity__content-left__list {
    list-style-type: square;
    margin-left: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity__content-left__listItem {
    position: relative;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 130%;
    color: #465B2B;
}





.activity__content-right-img {
    min-width: 385px;
    max-height: 510px;
    width: 100%;
    height: 100%;
}




/* Rules Page */


.rules {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    min-height:100vh;
    background-position:top right;
    background-repeat:no-repeat;
    background-size: cover;
    padding-bottom: 40px;

}

.rules-wrap {
    position: relative;
    margin-top: 240px;
    width: 100%;
    padding: 30px 30px 170px 30px;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    border: 2px #92ad6e solid;
    transition: 1s;

    /*анимация*/
    /* visibility: hidden;
    opacity: 0; */
    /* filter: blur(10px); */
}

.rules__title {
    align-self: center;
}

.rules__content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.rules-svg {
    position: absolute;
    /* z-index: 1; */
    bottom: -5px;
}
.rules-svgMobile {
    display: none;
    position: absolute;
    /* z-index: 1; */
    bottom: -5px;
}

.rules__content_svg1 {
    left: 200px;
}
.rules__content_svg2 {
    left: 650px;
}

.rules-text {
    /* z-index: 10; */
}

.rules__content-text_left {
    max-width: 25%;
    text-align: left;
}

.rules__content-text_center {
    max-width: 20%;
    text-align: center;
}

.rules__content-text_right {
    max-width: 25%;
    text-align: right;
}


/* Price Page */


.price {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    min-height:100vh;
    background-position:top right;
    background-repeat:no-repeat;
    background-size: cover;
    padding-bottom: 70px;

}

.price-wrap {
    position: relative;
    margin-top: 240px;
    width: 100%;
    padding: 30px 30px 220px 30px;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    border: 2px #92ad6e solid;
    transition: 1s;

    /*анимация*/
    /* visibility: hidden;
    opacity: 0; */
    /* filter: blur(10px); */
}

.price-svg {
    position: absolute;
    /* z-index: 1; */
    bottom: -5px;
}

.price__content_svg1 {
    left: 0;
}
.price__content_svg2 {
    right: 0;
    transform: scale(-1,1);
}

.price__content_svgMobile {
    display: none;
    position: absolute;
}

.price__title {
}

.price__text {
    text-align: center;
    max-width: 50%;
    font-size: 24px;
}


/* Appointment Page */


.appointment {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    min-height:100vh;
    background-position:top right;
    background-repeat:no-repeat;
    background-size: cover;
    padding-bottom: 70px;

}

.appointment-wrap {
    position: relative;
    margin-top: 240px;
    width: 100%;
    padding: 30px 30px 70px 30px;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    border: 2px #92ad6e solid;
    transition: 1s;

    /*анимация*/
    /* visibility: hidden;
    opacity: 0; */
    /* filter: blur(10px); */
}

.appointment-svg {
    position: absolute;
    /* z-index: 1; */
    bottom: -5px;
}

.appointment_svg1 {
    left: 0;
}
.appointment_svg2 {
    right: 0;
    transform: scale(-1,1);
}

.appointment__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.def_inp {
    cursor: pointer;
    user-select: none;
    padding: 15px 50px 15px 20px;
    border-radius: 20px;
    border-width: 1.5px;
    border-color: #465B2B;
    min-width: 550px;
    font-size: 24px;
    font-family: 'Montserrat';
}
.def_inp::placeholder {
    font-style: italic;
}



.appointment__problem-wrap {
    position: relative;
}
.appointment__problem-wrap:hover {
    .appointment__problem_mark {
        transform: translateY(-40%);
    }
}

.appointment__problemInput-wrap {
    position: relative;
}

.appointment__form-problem {
    cursor: pointer;
    width: 100%;
}

.appointment__problemList {
    padding: 0;
    min-width: 550px;
    user-select: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 2px #465B2B solid;
    border-radius: 20px;
    background-color: #ffffff;
    position: absolute;
    max-height: 0;
    overflow: hidden;
    top: 0;
    transition: max-height .2s ease-in-out, 0.1s padding ease-out;
    opacity: 0; /* Начальная прозрачность */
    visibility: hidden;

    li {
        width: 95%;
        font-size: 20px;
        cursor: pointer;
        padding: 10px 10px;
        border-radius: 10px;
        transition: .3s ease;

        &:hover {
            background-color: #92ad6e;
        }
    }
}

.appointment__problemList.problemOpen {
    padding: 10px 20px 15px 20px;
    max-height: 310px; /* Максимальная высота для плавного открытия */
    opacity: 1; /* Убираем прозрачность */
    visibility: visible;
    overflow-y: scroll;   
    z-index: 20; 
}

.appointment__problemList.problemOpen::-webkit-scrollbar {
    width: 0;
}
/* .appointment__problemList.problemOpen::-webkit-scrollbar-track {
    background-color: darkgrey;
}
.appointment__problemList.problemOpen::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(57, 167, 42, 0.925);
} */

.appointment__problem_mark {
    cursor: pointer;
    position: absolute;
    content: '';
    width: 40px;
    height: 20px;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    transition: .2s;
    /* z-index: 21; */
}

.appointment__problem_markRotate {
    transform:rotateX(180deg) translateY(50%) !important;
} 




.appointment__communication-wrap {
    position: relative;
}
.appointment__communication-wrap:hover {
    .appointment__communication_mark {
        transform: translateY(-40%);
    }
}

.appointment__communicationInput-wrap {
    position: relative;
}

.appointment__form-communication {
    cursor: pointer;
    width: 100%;
}

.appointment__communicationList {
    padding: 0;
    min-width: 550px;
    user-select: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 2px #465B2B solid;
    border-radius: 20px;
    background-color: #ffffff;
    position: absolute;
    max-height: 0;
    overflow: hidden;
    top: 0;
    transition: max-height .2s ease-in-out, 0.1s padding ease-out;
    opacity: 0; /* Начальная прозрачность */
    visibility: hidden;

    li {
        width: 95%;
        font-size: 20px;
        cursor: pointer;
        padding: 10px 10px;
        border-radius: 10px;
        transition: .3s ease;

        &:hover {
            background-color: #92ad6e;
        }
    }
}

.appointment__communicationList.communicationOpen {
    padding: 10px 20px 15px 20px;
    max-height: 310px; /* Максимальная высота для плавного открытия */
    opacity: 1; /* Убираем прозрачность */
    visibility: visible;
    overflow-y: scroll;    
    z-index: 18;
}

.appointment__communicationList.communicationOpen::-webkit-scrollbar {
    width: 0;
  }

.appointment__communication_mark {
    cursor: pointer;
    position: absolute;
    content: '';
    width: 40px;
    height: 20px;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    transition: .2s;
    /* z-index: 19; */
}

.appointment__communication_markRotate {
    transform:rotateX(180deg) translateY(50%) !important;
} 





.appointment__date-wrap {
    cursor: pointer;
    position: relative;
}

.appointment__form-datePlaceholder,.appointment__form-datePlaceholderError {
    user-select: none;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat';
    font-style: italic;
    min-width: fit-content;
    background-color: #ffffff;
    /* z-index: 17; */
}

.appointment__form-datePlaceholder {
    color: #465b2bbb;
    font-size: 24px;
}

.appointment__form-datePlaceholderError {
    color: rgb(158, 32, 49);
    font-size: 22px;
}

.dateHide {
    display: none;
}

.appointment__form-date {
    cursor: pointer;
    color: #465B2B;
    user-select: none;
    padding-right: 15px;
    transition: .2s;
    min-height: 45px;
}

.appointment__formBtn {
    padding: 25px 75px;
    background-color: #465B2B;
    border-radius: 20px;
    color: #ffffff;
    font-family: 'Montserrat';
    font-size: 22px;
    max-width: 400px;
    align-self: center;
    margin-top: 10px;

    transition: .2s;
    &:hover {
        transform: scale(102%);
    }
    &:active {
        transform: scale(98%);
    }
}

.appointment__formBtn:disabled {
    background-color: dimgrey;
    color: linen;
    opacity: 1;
    &:hover {
        transform: none;
    }
    &:active {
        transform: none;
    }
  }

.successBlur {
    filter: blur(3px);
}

.alertSuccess {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 300px;
    height: 100px;
    left: 50%;
    top: 60%;
    transform: translate(-50%,-50%);
    border: 1px #465B2B solid;
    border-radius: 20px;
    background: #ffffff;

    font-family: 'Montserrat';
    font-size: 16px;
    visibility: hidden;
    opacity: 0;

    transition: .2s;
}

.alertSuccessVisible {
    visibility: visible;
    opacity: 1;
}



.single {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    min-height:100vh;
    background-position:top right;
    background-repeat:no-repeat;
    background-size: cover;
    padding-bottom: 20px;
}

.single-wrap {
    margin-top: 240px;
    width: 100%;
    padding: 20px 20px;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* visibility: hidden; */
    /* opacity: 0; */
    /* filter: blur(2px); */
    border: 2px #92ad6e solid;


    transition: 2s;
}