:root {
    --white: #FFFFFF;
    --black: #000000;
    --grey: #BDBDBD;
    --green: #95C11F;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background-color: transparent;
    border: none;
    padding: 0;
    outline: none;
}

input {
    outline: none;
    min-width: 0;
}

svg {
    flex-shrink: 0;
    vertical-align: top;
}

html {
    scrollbar-gutter: initial;
}

body {
    font-family: "Montserrat", "Roboto", "sans-serif";
    color: var(--black);
}

._aaccent {
    color: var(--green);
}

.container {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1580px;
    width: 100%;
}

.paragraph {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

/* Dropdown */
.dropdown {
    position: relative;
    z-index: 5;
}

.dropdown__header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grey);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    transition: color 0.2s ease 0s;
    text-transform: uppercase;
}

.dropdown__header:hover {
    color: var(--green);
}

.dropdown__arrow {
    transform-origin: center;
    transition: transform 0.3s ease 0s ;
}

.dropdown__list-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 4px;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, -10px);
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, visibility 0.3s ease 0s;
}

.dropdown__list {
    background-color: var(--white);
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    border-radius: 8px;
    padding: 12px 0;
}

.dropdown--open .dropdown__list-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.dropdown--open .dropdown__arrow {
    transform: rotate(-180deg);
}

.dropdown__item {
    cursor: pointer;
    color: var(--grey);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 6px;
}

.dropdown__item--active {
    background-color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.dropdown__item:hover {
    background-color: rgba(0, 0, 0, 0.09);
}

.dropdown__item:not(:last-child) {
    margin-bottom: 4px;
}

/* Breadcrumb */

.breadcrumbs {

}

.breadcrumbs__list {
    display: flex;
    gap: 10px
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.breadcrumbs__link {
    transition: color 0.15s ease 0s;
}

.breadcrumbs__link:hover {
    color: var(--green);
}

.breadcrumbs__item:not(:first-child)::before {
    content: "—"
}

.breadcrumbs__item:last-child .breadcrumbs__link{
    pointer-events: none;
}

.accordion {
    border: 1px solid #E5E5E5;
}

.accordion--open .accordion__arrow {
    transform: rotate(180deg)
}

.accordion__header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 57px 43px;
    transition: color 0.2s ease 0s;
}

.accordion__header:hover {
    color:  var(--green);
}

.accordion__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
}

.accordion__arrow {
    color: inherit;
    transition: transform 0.4s ease 0s
}
.accordion__body {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease 0s;
}

.accordion__text {
    padding: 0 43px 43px;
}
/* Section */
.section {

}

.section + .section {
    margin-top: 90px;
}

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.section__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
}

.section__header-link {
    background-color: var(--green);
    border-radius: 100px;
    box-shadow: 0px 0px 10px 0px #00000040;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    line-height: 31px;
    padding: 9.5px 35.5px;
    transition: background-color 0.2s ease 0s;
}

.section__header-link:hover {
    background-color: #AED645;
}

.section__body:not(:first-child) {
    margin-top: 50px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    background-color: #BFC4D6;
    margin: 0 4px;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    transform-origin: center center;
}

.swiper-pagination-bullet-active {
    background-color: var(--green);
    transform: scale(1.2);
    width: 12px;
    height: 12px;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: var(--green);
    border-radius: 50%;
    color: var(--white);
    width: 88px;
    height: 88px;
    transition: background-color 0.2s ease 0s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #AED645;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: auto;
    height: auto;
} 

.swiper-button-prev svg {
    transform: rotate(180deg);
}

.header {
    
}

.header__top {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.header__top-menu-list {
    display: flex;
    gap: 45px;
}

.header__top-menu-link {
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    transition: color 0.2s ease 0s;
}

.header__top-menu-link:hover {
    color: var(--green);
}

.header__main {

}

.header__main:not(:first-child) { 
    margin-top: 20px;
}

.header__main-top {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--grey);
    margin-right: auto;
}

.header__location span {
    color: var(--black);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px
}

.header__socials {
    display: flex;
    gap: 20px;
}

.header__social-item {
    line-height: 1;
}

.header__social-link {
    color: var(--grey);
    transition: color 0.15s ease 0s;
}

.header__social-link:hover {
    color: var(--green)
}

.header__social-link svg {
    fill: none;
}

.header__language {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    transition: color 0.15s ease 0s;
}

.header__phone:hover {
    color: var(--green);
}

.header__settings {
    color: var(--grey);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease 0s;
}

.header__settings:hover {
    color: var(--green);
}

.header_visually-impaired {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    transition: color 0.15s ease 0s;
}

.header_visually-impaired:hover {
    color: var(--green);
}

.header__main-main {
    background-color: rgba(227, 227, 227, 0.2);
    border-radius: 4px;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    display: flex; 
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
}

.header__main-main:not(:first-child) {
    margin: 10px 0 0;
}

.header__burger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px;
    position: relative;
}

.header__burger::after,
.header__burger::before {
    background-color: var(--white);
    border-radius: 1px;
    content: "";
    height: 2px;
    transition: background-color 0.15s ease 0s;
}

.header__burger::before {
    width: 16px;
}

.header__burger::after {
    width: 10px
}

.header__burger:hover::after,
.header__burger:hover::before {
    background-color: var(--green);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

.header__main-menu {
    margin-left: auto;
    margin-right: auto;
}

.header__main-menu-list {
    display: flex;
    gap: 50px;
}

.header__main-menu-link {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    transition: color 0.15s ease 0s;
    text-transform: uppercase;
}

.header__main-menu-link:hover {
    color: var(--green);
}

.header__search {
    transition: color 0.15s ease 0s;
}

.header__search:hover {
    color: var(--green);
}

.page {
    margin-top: 90px;
    margin-bottom: 90px;
}

.page__header:not(:last-child) {
    margin-bottom: 60px;
}

.page__title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.page__breadcrumbs:not(:first-child) {
    margin-top: 12px;
}

.widget-panel {
    background-color: var(--white);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: -3px 3px 10px 0px #00000012;
    padding: 24px 22px;
    position: fixed;
    top: calc(174 / 756 * 100%);
    right: 0;
    z-index: 10;
}

.widget-panel__list-item {
    color: #999999;
    cursor: pointer;
    transition: color 0.2s ease 0s;
}

.widget-panel__list-item:hover {
    color: var(--green);
}
.widget-panel__list-item:not(:last-child) {
    margin-bottom: 46px;
}

.hero__title {
    display: flex;
    flex-direction: column;
}

.hero__video {
    height: 736px;
    overflow: hidden;
}

.hero__video-cover {
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-out 0s;
}

.hero__video-cover:hover {
    transform: scale(1.03);
}

.hero__video iframe {
    width: 100%;
    height: 100%;
}


.about {

}

.about__desc {

}

.about__gallery {
    display: flex;
    gap: 40px;
    height: 478px;
}

.about__gallery:not(:first-child) {
    margin-top: 20px;
}

.about__gallery-image {
    flex: 0 0 calc(50% - 20px);
    overflow: hidden;
}

.about__gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-out 0s ;
}

.about__gallery-image:hover img { transform: scale(1.03) }

.stats {
    background-color: var(--green);
    color: var(--white);
    padding: 110px 50px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 22.3%);
    justify-content: space-between;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.stat__number {
    font-size: 40px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
}

.stat__unit {
    font-size: 20px;
    font-weight: 600;
    line-height: 31px;
    text-transform: uppercase;
}

.stat__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.gallery {
    position: relative;
    height: 700px;
}

.gallery .swiper-pagination {
    margin-top: 55px;
    position: static;
}

.swiper {
    max-width: 1048px;
}

.campuses__desc {
    max-width: 1020px;
}


.campuses__gallery:not(:first-child) {
    margin-top: 50px;
}

.licenses {}

.licenses__list {
    max-width: 1200px;
}

.licenses__item {
    font-size: 16px;
    font-weight: 400;
    padding-left: 54px;
    position: relative;
}

.licenses__item:not(:last-child) {
    margin-bottom: 24px;
}

.licenses__item::before {
    background-color: var(--green);
    border-radius: 50%;
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    width: 24px;
    height: 24px;
}

.licenses__item::after {
    background-color: var(--white);
    border-radius: 50%;
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: 6px;
    width: 12px;
    height: 12px;
}

.dean__link {
    color: #38D430;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0%;
    transition: color 0.2s ease 0s;
}

.dean__link:hover {
    color: var(--green);
}

.association {
    border: 1px solid #E5E5E5;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: flex;
    gap: 40px;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    padding: 22px 38px;
    min-height: 172px;
}

.association__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.association__col-top {
    margin-bottom: auto;
}

.association__operation-hours,
.association__phone,
.association__mail {
    display: flex;
    align-items: baseline;
    gap: 15px;
    transition: color 0.2s ease 0s
}

.association__phone:hover,
.association__mail:hover {
    color: var(--green);
}

.association__operation-hours svg,
.association__phone svg,
.association__mail svg {
    color: #B8B8B8;
}

.news {}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news__item-image {
    background-color: #DEDEDE;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    height: 338px;
    overflow: hidden;
}

.news__item:hover .news__item-image img {
    transform: scale(1.05);
}


.news__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease 0s;
}

.news__item-content {
    border: 1px solid #E5E5E5;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 38px 20px;
    min-height: 307px;
}

.news__item-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
}

.news__item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 250px;
}

.news__item-tag {
    background-color: #F8F8F8;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    padding: 2px 4px;
}

.news__item-date {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-top: auto;
}

.faq__item:not(:last-child) {
    margin-bottom: 50px
}

.document {
    border-top: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 42px 43px;
}

.document__icon {
    color: #E5E5E5;
}
.document__title {
    font-size: 15px;
    font-weight: 400;  
    line-height: 22px;
    transition: color 0.2s ease 0s;
}

.document__title:hover {
    color: var(--green);
}


.aside {
    background-color: var(--green);
    color: var(--white);
    padding: 70px 50px;
    text-align: center;
}

.aside:not(:first-child) {
    margin-top: 150px;
}

.aside__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

.aside__text {
    font-size: 40px;
    font-weight: 600;
    line-height: 49px;
    max-width: 700px;
    text-align: center;
    text-transform: uppercase;
}

.aside__link {
    background-color: var(--white);
    border-radius: 4px;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    line-height: 31px;
    padding: 18px 20px;
    text-align: center;
    min-width: 280px;
    transition: color 0.2s ease 0s;
}

.aside__link:hover {
    color: var(--green)
}

.footer {
    background-color: #202020;
    color: var(--white);
    padding: 56px 135px 40px 210px;
    position: relative;
}

.footer__main {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer__main-col:first-child {
    flex-shrink: 0;
    margin-right: 110px;
}

.footer__main-col:nth-child(2) {
    margin-right: 90px;
}

/* .footer__main-col:nth-child(3) {
    margin-right: 35px;
} */

.footer__menu {
    display: flex;
    gap: 55px;
}

.menu-col__title {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.menu-col__title:first-child {
    margin-bottom: 20px;
}

.menu-col__item:not(:last-child) {
    margin-bottom: 8px;
}

.menu-col__link {
    color: #999999;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    transition: color 0.2s ease 0s;
}

.menu-col__link:hover {
    color: var(--green);
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer__phone,
.footer__location {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding-left: 30px;
    position: relative;
    transition: color 0.2s ease 0s;
}

.footer__phone svg,
.footer__location svg {
    color: var(--grey);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.footer__phone:hover,
.footer__phone:hover svg {
    color: var(--green)
}

.footer__socials {
    display: flex;
    gap: 9px;
}

.footer__social-link {
    background-color: #474747;
    border-radius: 4px;
    color: #38D430;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.2s ease 0s;
}

.footer__social-link:hover {
    background-color: var(--white);
}

.footer__social-link svg {
    fill: transparent;
}

.footer__link {
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    transition: color 0.2s ease 0s;
}

.footer__link:hover {
    color: var(--green);
}

.footer__visually-impaired {
    color: var(--grey);
    display: flex;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    transition: color 0.2s ease 0s;
}

.footer__visually-impaired:hover {
    color: var(--green);
}

.footer__to-top {
    background-color: var(--green);
    border-radius: 50%;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 55px;
    right: 42px;
    width: 60px;
    height: 60px;
    transform: rotate(-90deg);
    transition: background-color 0.2s ease 0s;
}

.footer__to-top:hover {
    background-color: #AED645;
}

.footer__to-top svg {
    width: 20px;
    height: auto;
}

.footer__bottom {
    display: flex;
    gap: 36px;
    color: #888888;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 50px;
}

.footer__bottom-col:last-child {
    margin-left: auto;
}

.footer__bottom:last-child .stack {
    display: flex;
    gap: 40px;
}

.our-company span {
    color: var(--white);
}
