@font-face {
    font-family: Gilroy;
    src: url(/fonts/Gilroy-Medium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(/fonts/Gilroy-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(/fonts/Gilroy-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: JOURNALISM;
    src: url(/fonts/JOURNALISM.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(/fonts/Gilroy-SemiBold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-family: var(--font-family);
    font-weight: 400
}

body {
    overscroll-behavior: none
}

.scroll-lock {
    overflow: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

a {
    text-decoration: none
}

.wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-width: 320px
}

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

.container2 {
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto
}

.list-reset {
    list-style: none
}

.btn-reset {
    border: none;
    background: none
}

.green-dot {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gray-1);
    position: relative;
    padding-left: 18px
}

.green-dot:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    left: 0;
    top: 3px
}

.section-title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    color: var(--black)
}

.section-subtitle {
    font-size: 16px;
    line-height: 150%;
    color: var(--gray-1)
}

@media (max-width: 992px) {
    .section-title {
        font-size: 54px
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 42px
    }
    .section-subtitle {
        font-size: 15px;
        line-height: 150%
    }
}

:root {
    --font-family: "Gilroy", sans-serif;
    --second-family: "JOURNALISM", sans-serif;
    --third-family: "SF Pro Text", sans-serif;
    --green: #43a254;
    --black: #151515;
    --gray-1: #666;
    --gray-2: #888;
    --white: #fff
}

.header {
    padding: 20px 0;
    position: relative
}

.header__container {
    max-width: 1620px
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.header__btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #2d2d2d;
    padding: 12px 20px;
    border: 1px solid var(--green);
    border-radius: 50px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative
}

.header__btn:hover .nav__dropdown {
    opacity: 1;
    visibility: visible
}

.header__btn .nav__dropdown {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s;
    padding-top: 10px
}

.header__btn .nav__dropdown ul {
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 0 15px #0000000f;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.header__btn .nav__dropdown li a {
    font-size: 14px;
    color: var(--gray-1);
    transition: .2s
}

.header__btn .nav__dropdown li a:hover {
    color: var(--green)
}

.header__phone {
    min-width: 204px;
    flex-shrink: 0;
    position: relative;
    z-index: 22;
}

.header__phone a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px
}

.header__phone a span {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #2d2d2d
}

.nav {
    width: 100%;
    max-width: 937px
}

.nav__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.nav__list li {
    min-width: 125px;
    text-align: center
}

.nav__list-link {
    font-size: 16px;
    line-height: 100%;
    color: #2d2d2d;
    transition: .2s
}

.nav__list-link:hover {
    color: var(--green)
}

.burger {
    display: none;
    position: relative;
    z-index: 22
}

.burger__btn {
    width: 24px;
    height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.burger__btn span {
    width: 100%;
    height: 1px;
    border: 2px;
    background: var(--black)
}

.burger__btn span {
    position: relative;
    transition: all .2s
}

.burger__btn span:nth-child(1) {
    top: 0
}

.burger__btn span:nth-child(3) {
    bottom: 0
}

.burger__btn.active span {
    background-color: #fff
}

.burger__btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px
}

.burger__btn.active span:nth-child(2) {
    opacity: 0
}

.burger__btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 7px
}

.menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: -150%;
    background: var(--black);
    transition: all .2s;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px 40px;
    overflow-y: auto
}

.menu.active {
    top: 0
}

.menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px
}

.menu__nav li a {
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: var(--white)
}

.menu__nav-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: var(--white)
}

.menu__nav-dropdown .menu__nav-dropdown-list {
    text-align: center;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    display: none
}

.menu__nav-dropdown .menu__nav-dropdown-list li a {
    font-size: 16px;
    line-height: 100%;
    opacity: .75
}

.menu__nav-dropdown.active .menu__nav-dropdown-link svg {
    transform: rotate(-180deg)
}

.menu__nav-dropdown.active .menu__nav-dropdown-list {
    display: flex
}

.menu__info {
    margin-top: 50px
}

.menu__address {
    font-size: 15px;
    line-height: 150%;
    color: var(--white);
    text-align: center
}

.menu__tels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px
}

.menu__tel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px
}

.menu__tel-item a {
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;
    color: var(--white)
}

.menu__tel-item span {
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    color: #fffc
}

.menu__managers {
    margin-top: 30px
}

.menu__managers p {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #fff9;
    text-align: center
}

.menu__managers ul {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.menu__managers ul li {
    display: flex;
    align-items: center
}

.menu__managers ul li a {
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;
    color: var(--white)
}

.menu__managers ul li span {
    font-weight: 400;
    font-size: 14px;
    color: var(--white)
}

.menu__btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 360px;
    margin: 56px auto 0;
    display: block;
    border: 1px solid var(--green);
    border-radius: 50px;
    padding: 12px 20px
}

@media (max-width: 1200px) {
    .header__btn,
    .nav__list-link {
        display: none
    }
    .nav__list {
        flex-direction: row-reverse
    }
    .header__phone {
        order: -1;
        min-width: 0
    }
    .header__phone a {
        justify-content: flex-start;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #f5f5f5
    }
    .header__phone a span {
        display: none
    }
    .burger {
        width: 40px;
        display: flex;
        justify-content: flex-end
    }
}

@media (max-width: 992px) {
    .nav__list li {
        min-width: 0
    }
}

@media (max-width: 480px) {
    .nav__logo {
        max-width: 130px;
        display: block
    }
}

.hero__container {
    max-width: 1630px
}

.hero__inner {
    min-height: 800px;
    border-radius: 10px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.hero__title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 120px;
    line-height: 100%;
    color: var(--white);
    text-align: center
}

.hero__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 10px;
    text-align: center
}

.hero__subtext {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: var(--white);
    margin-top: 25px;
    text-align: center
}

.hero__btn {
    padding: 20px 50px;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background: #fff6;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--white);
    margin-top: 30px;
    transition: .2s
}

.hero__btn:hover {
    background: #43a25466
}

@media (max-width: 1200px) {
    .hero__title {
        font-size: 100px
    }
}

@media (max-width: 992px) {
    .hero__title {
        font-size: 80px
    }
    .hero__inner {
        min-height: 690px
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 64px;
        line-height: 100%
    }
    .hero__subtitle {
        font-size: 16px;
        line-height: 130%
    }
}

.view {
    padding-top: 150px;
    position: relative
}

.view__3d {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    display: none
}

.view__3d-load {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    pointer-events: none
}

.view__3d-load.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.view__3d-load p {
    color: #fff;
    font-family: 16px
}

.view__3d-close {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 20;
    cursor: pointer
}

.view__3d.is-open {
    display: block
}

.view__head {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.view__head-right .section-subtitle {
    max-width: 345px;
    margin-top: 25px
}

.view__inner {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    cursor: pointer
}

.view__inner-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #0006;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none
}

@media (max-width: 992px) {
    .view {
        padding-top: 100px
    }
    .view__head {
        grid-template-columns: 1fr
    }
    .view__head-left {
        display: none
    }
    .view__head-right {
        text-align: center
    }
    .view__head-right .section-subtitle {
        max-width: 100%
    }
}

@media (max-width: 576px) {
    .view__head .section-subtitle {
        display: none
    }
    .view__inner-icon {
        width: 80px;
        height: 80px
    }
    .view__inner-icon svg {
        width: 52px
    }
}

.plan {
    padding-top: 150px
}

.plan__head {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.plan__head-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start
}

.plan__tabs {
    display: flex;
    gap: 38px
}

.plan__tabs button {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: var(--black);
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
    transition: .2s;
    font-family: "Gilroy", sans-serif;

}

.plan__tabs button:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--green);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0
}

.plan__tabs button:hover {
    color: var(--green)
}

.plan__tabs button:hover:before {
    opacity: 1
}

.plan__tabs button.active {
    color: var(--green)
}

.plan__tabs button.active:before {
    opacity: 1
}

.plan__inner {
    margin-top: 60px
}

.plan__content {
    display: none
}

.plan__content.active {
    display: block
}

.plan__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.plan__item {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: 50px 30px 40px;
    display: flex;
    flex-direction: column;
}

.plan__item-info {
    padding: 40px 10px 0;
    margin-top: auto;
}

.plan__item-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan__item-list--1 {
    display: flex;
    align-items: center;
    gap: 10px
}

.plan__item-list--1 li {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--black)
}

.plan__item-list--1 li div {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green)
}

.plan__item-list--2 {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.plan__item-list--2 li {
    font-size: 16px;
    line-height: 150%;
    color: var(--gray-2)
}

.plan__item-price {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--gray-1);
    margin-top: 14px
}

.plan__item-btn {
    font-size: 16px;
    line-height: 100%;
    color: var(--white);
    border-radius: 50px;
    padding: 17px 30px;
    background-color: #333;
    margin-top: 20px;
    transition: .2s;
    cursor: pointer;
    font-family: "Gilroy", sans-serif;

}

.plan__item-btn:hover {
    background: var(--green)
}

@media (max-width: 1200px) {
    .plan {
        padding-top: 100px
    }
    .plan__item {
        padding: 20px 20px 30px
    }
}

@media (max-width: 992px) {
    .plan__head {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px
    }
    .plan__head-left .green-dot {
        display: none
    }
    .plan__head-right {
        text-align: center;
        order: -1
    }
    .plan__tabs {
        justify-content: center;
        max-width: 100%
    }
    .plan__items {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px
    }
    .plan__item-img {
        max-width: 400px;
        margin: 0 auto
    }
}

@media (max-width: 767px) {
    .plan__inner {
        margin-top: 40px
    }
}

@media (max-width: 500px) {
    .plan__tabs {
        gap: 24px
    }
    .plan__tabs button {
        font-size: 14px;
        line-height: 150%
    }
    .plan__item {
        padding: 50px 30px 40px
    }
    .plan__item-img {
        max-width: 100%
    }
}

.tour {
    padding-top: 150px
}

.tour .container {
    padding: 0;
    max-width: 100%;
    padding-left: calc((100% - 1440px)/2)
}

.tour__inner {
    display: flex;
    gap: 70px
}

.tour__left {
    width: 100%;
    max-width: 660px;
    flex-shrink: 0
}

.tour__slider-big {
    height: 100%;
    border-radius: 10px;
    overflow: hidden
}

.tour__item-big {
    border-radius: 10px;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 30px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    height: 100%;
    position: relative
}

.tour__item-big .tour__subtext {
    width: 100%;
    position: absolute;
    top: 16px;
    left: 30px;
    font-size: 12px;
    color: #000
}

.tour__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    width: 100%;
    pointer-events: none
}

.tour__info-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px
}

.tour__info-list li:nth-child(1) p {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: var(--black)
}

.tour__info-list li p {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--black)
}

.tour__info-list li p span {
    font-weight: 600
}

.tour__info-eye {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #918f8f3b;
    display: flex;
    align-items: center;
    justify-content: center
}

.tour__right {
    width: 100%
}

.tour__right h2 {
    max-width: 620px;
    margin-top: 30px
}

.tour__right .section-subtitle {
    margin-top: 25px;
    max-width: 345px
}

.tour__slider {
    overflow: visible
}

.tour__slider .swiper-slide {
    max-width: 345px
}

.tour__slider-cta {
    width: 100%;
    max-width: 710px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px
}

.tour__slider-form-btn {
    width: 100%;
    max-width: 345px;
    padding: 17px;
    border-radius: 50px;
    background: #333;
    text-align: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: .2s;
    font-family: "Gilroy", sans-serif;
}

.tour__slider-form-btn:hover {
    background: var(--green)
}

.tour__slider-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 15px
}

.tour__slider-btns .tour-button-prev,
.tour__slider-btns .tour-button-next {
    cursor: pointer
}

.tour__item-small {
    min-height: 345px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    cursor: pointer;
    position: relative
}

.tour__item-small .tour__subtext {
    width: 100%;
    position: absolute;
    top: 16px;
    left: 30px;
    font-size: 10px;
    color: #000;
    max-width: 182px
}

@media (max-width: 1470px) {
    .tour .container {
        padding-left: 15px;
        padding-right: 15px
    }
    .tour__slider-cta {
        max-width: 600px
    }
    .tour__slider-form-btn {
        max-width: 250px
    }
}

@media (max-width: 1350px) {
    .tour__inner {
        gap: 30px
    }
    .tour__left {
        max-width: 500px
    }
}

@media (max-width: 1200px) {
    .tour__left {
        display: none
    }
    .tour__slider-cta {
        max-width: 100%
    }
}

@media (max-width: 992px) {
    .tour {
        padding-top: 100px
    }
    .tour__head .green-dot {
        display: none
    }
    .tour__head h2 {
        max-width: 100%;
        text-align: center
    }
    .tour__head .section-subtitle {
        text-align: center;
        max-width: 100%
    }
    .tour__slider {
        margin-top: 30px
    }
    .tour__slider-btns {
        display: none
    }
    .tour__slider-cta {
        justify-content: center;
        margin-top: 0
    }
}

@media (max-width: 576px) {
    .tour {
        padding-top: 70px
    }
    .tour__slider .swiper-slide {
        max-width: 330px
    }
    .tour__item-small {
        min-height: 330px;
        padding: 20px
    }
    .tour__info-list li:nth-child(1) p {
        font-size: 18px
    }
    .tour__info-list li p {
        font-size: 14px
    }
    .tour__subtext {
        left: 20px
    }
}

.сommerce {
    padding-top: 150px;
}

.сommerce__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.сommerce__head-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.сommerce__inner {
    width: 100%;
    min-height: 690px;
    border-radius: 10px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .commerce {
        padding-top: 100px;
    }

    .сommerce__head-left .green-dot {
        display: none;
    }

    .сommerce__head-right {
        order: -1;
    }

    .сommerce__head {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
}

.park {
    padding-top: 150px
}

.park__head {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.park__head-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between
}

.park__choose {
    font-size: 16px;
    line-height: 100%;
    color: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    background-color: #333;
    transition: .2s;
    cursor: pointer
}

.park__choose:hover {
    background: var(--green)
}

.park__head-right .section-subtitle {
    max-width: 310px;
    margin-top: 25px
}

.park__inner {
    margin-top: 30px
}

.park__slider {
    position: relative
}

.park__slider .swiper-slide {
    border-radius: 10px;
    overflow: hidden
}

.park-button-prev,
.park-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffffbf;
    cursor: pointer;
    transition: .2s
}

.park-button-prev:hover,
.park-button-next:hover {
    background: var(--green)
}

.park-button-prev:hover svg,
.park-button-next:hover svg {
    fill: #fff
}

.park-button-prev svg,
.park-button-next svg {
    fill: #151515;
    transition: .2s
}

.park-button-prev {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3
}

.park-button-next {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3
}

@media (max-width: 992px) {
    .park {
        padding-top: 100px
    }
    .park__head {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center
    }
    .park__head-left .green-dot {
        display: none
    }
    .park__head-right {
        order: -1
    }
    .park__head-right .section-subtitle {
        max-width: 100%;
        text-align: center
    }
}

@media (max-width: 650px) {
    .park__slider .swiper-slide {
        min-height: 240px
    }
    .park__slider .swiper-slide img {
        width: 100%;
        height: 100%;
        min-height: 240px
    }
    .park-button-prev {
        left: 20px;
        width: 40px;
        height: 40px
    }
    .park-button-prev svg {
        max-width: 16px
    }
    .park-button-next {
        right: 20px;
        width: 40px;
        height: 40px
    }
    .park-button-next svg {
        max-width: 16px
    }
}

.team {
    padding: 150px 0
}

.team__head {
    display: grid;
}

.team__head-right .section-subtitle {
    margin-top: 25px;
    max-width: 345px
}

.team__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    gap: 30px;
    position: relative;
    z-index: 2
}

.team__item-img {
    border-radius: 16px;
    overflow: hidden
}

.team__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 23 / 25;
}

.team__item-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px
}

.team__item-info--name {
    font-size: 18px;
    font-weight: 400
}

.team__item-info--phone {
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    margin-top: 14px;
    color: #000;
    text-decoration: none;
    line-height: 1
}

.team__item-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px
}

.team__item-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

@media (max-width: 992px) {
    .team {
        padding: 100px 0
    }
    .team__head {
        grid-template-columns: 1fr
    }
    .team__head-left {
        display: none
    }
    .team__head-right {
        text-align: center
    }
    .team__head-right .section-subtitle {
        max-width: 100%;
        text-align: center
    }
    .team__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .team__inner {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto 0
    }
}

@media (max-width: 576px) {
    .team {
        padding-bottom: 80px
    }
}

.footer2 {
    padding-top: 70px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.footer2__top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    gap: 30px
}

.footer2__col {
    max-width: 363px
}

.footer2__col-2,
.footer2__col-3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px
}

.footer2__logo {
    max-width: 150px
}

.footer2__about {
    margin-top: 41px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0
}

.footer2__about p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.footer2__socials {
    display: flex;
    gap: 7px;
    margin-top: 37px
}

.footer2__socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer2__top-item h4 {
    color: #fff9;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    margin-bottom: 15px
}

.footer2__top-item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.footer2__top-item a {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
    color: #fff
}

.footer2__top-item a span {
    font-size: 14px
}

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

.footer2__top-item-subtitle {
    color: #fffc;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 2px;
    margin-bottom: 10px;
    display: block
}

.footer2__cta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.footer2__cta-btn {
    padding: 17px;
    color: #222;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.95px;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    text-align: center
}

.footer2__cta-link {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    text-decoration: none;
    padding: 7px 20px;
    border-radius: 5px;
    background: #fff3;
    display: block;
    transition: .2s
}

.footer2__cta-link:hover {
    background-color: #fff;
    color: #222
}

.footer2__middle {
    padding: 30px 0;
    color: #ffffff80;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer2__middle p:nth-child(1) {
    text-transform: uppercase
}

.footer2__bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer2__copy {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.footer2__bottom-links {
    display: flex;
    align-items: center;
    gap: 100px
}

.footer2__bottom-links a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    color: #fff
}

@media (max-width: 992px) {
    .footer2__cta {
        grid-template-columns: 1fr 1fr
    }
    .footer2__col {
        max-width: 230px
    }
}

@media (max-width: 767.98px) {
    .footer2__top {
        display: grid;
        grid-template-columns: 1fr 1fr
    }
    .footer2__top-left {
        grid-column: span 2
    }
    .footer2__bottom {
        flex-direction: column;
        gap: 20px
    }
}

@media (max-width: 550px) {
    .footer2 {
        padding-top: 30px
    }
    .footer2__top {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px
    }
    .footer2__col {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center
    }
    .footer2__cta {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0
    }
    .footer2__cta a {
        text-align: center
    }
    .footer2__bottom {
        padding: 20px 0;
        flex-direction: column-reverse
    }
    .footer2__bottom-links {
        flex-direction: column;
        gap: 15px
    }
    .footer2__about {
        margin-top: 30px
    }
    .footer2__socials {
        margin-top: 24px
    }
    .footer2__middle {
        padding: 20px 0
    }
}

.around {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000c;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 200;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .2s
}

.around.is-open {
    opacity: 1;
    visibility: visible
}

.around__modal {
    width: 100%;
    max-width: 95vw;
    min-height: 85vh;
    position: relative
}

.around__modal-close {
    position: absolute;
    right: 0;
    top: -25px;
    cursor: pointer
}

.around__modal iframe {
    width: 100%;
    height: 100%;
    min-height: 85vh;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden
}

.request {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000c;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: grid;
    place-items: center;
    padding: 20px;
    overflow-y: auto;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: all .2s
}

.request.is-open {
    opacity: 1;
    visibility: visible
}

.request__modal {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--white);
    max-width: 960px;
    position: relative;
    display: none
}

.request__modal.is-visible {
    display: block
}

.request__modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer
}

.request__inner {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.request__left img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.request__right {
    padding: 70px 50px 88px
}

.request__title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    color: #000
}

.request__thank {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 70px 50px;
    position: relative;
    display: none
}

.request__thank.is-visible {
    display: block
}

.request__thank-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer
}

.request__thank p {
    font-family: var(--second-family);
    font-size: 40px;
    text-align: center;
    color: #000;
}

.request__thank span {
    text-align: center;
    margin-top: 20px;
    display: block;
    color: #000;

}

.form {
    margin-top: 50px
}

.form__group:nth-child(2) {
    margin-top: 40px
}

.form__group label {
    font-size: 14px;
    line-height: 100%;
    color: #000
}

.form__group input {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    font-size: 16px;
    line-height: 100%;
    padding: 9px 0;
    border-bottom: 1px solid #d7d7d7
}

.form__group input::placeholder {
    color: #999
}

.form__btn {
    width: 100%;
    font-weight: 700;
    font-size: 13px;
    line-height: 150%;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--white);
    border-radius: 5px;
    padding: 18px;
    background: var(--green);
    margin-top: 30px;
    text-align: center
}

.form__btn:disabled {
    background-color: #9acda3;
}

.checkbox {
    display: block;
    margin-top: 34px;
    position: relative;
    cursor: pointer
}

.checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

.checkbox input:checked+.checkbox__content:before {
    background: url(../img/checked.svg);
    background-position: center
}

.checkbox__content {
    font-size: 12px;
    line-height: 100%;
    color: var(--gray-1);
    display: block;
    padding-left: 30px;
    position: relative
}

.checkbox__content:before {
    content: "";
    width: 18px;
    height: 18px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: -4px
}

.checkbox__content a {
    text-decoration: underline;
    text-underline-offset: 1px;
    color: var(--gray-1)
}

@media (max-width: 992px) {
    .request__right {
        padding: 50px 30px
    }
}

@media (max-width: 750px) {
    .request__left {
        display: none
    }
    .request__inner {
        grid-template-columns: 1fr
    }
    .request__modal {
        max-width: 480px
    }
}

@media (max-width: 500px) {
    .request__title {
        font-size: 30px
    }
    .form {
        margin-top: 30px
    }
    .request__modal-close {
        right: 15px;
        top: 15px
    }
    .request__thank {
        padding: 55px 35px
    }
}

.popup-select {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000c;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: grid;
    place-items: center;
    padding: 20px;
    overflow-y: auto;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: all .2s
}

.popup-select.is-open {
    opacity: 1;
    visibility: visible
}

.popup-select__modal {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--white);
    width: 85%;
    height: 80%;
    position: relative;
    display: none
}

.popup-select__modal.is-visible {
    display: flex
}

.popup-select__modal-close {
    z-index: 10;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.popup-select__modal-close.is-show {
    opacity: 1;
}

.popup-select__inner {
    display: flex;
    overflow: hidden;
    height: 100%;
}

.popup-select__wrapper {
    position: relative;
    flex-shrink: 0;
    width: 50%;
    transition: width 0.4s ease, filter 0.1s ease;;
    overflow: hidden;
    filter: blur(5px);
}

.popup-select__wrapper.hovered {
  width: 100%;
  filter: blur(0);
}

.popup-select__wrapper.hidden {
  width: 0;
  pointer-events: none;
}

.popup-select__wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}
    
.popup-select__content {
    padding: 20px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.popup-select__title {
    font-family: var(--second-family);
    text-align: center;
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    color: #fff;
}

.popup-select__title--outside {
    position: absolute;
    bottom: 20px;
    max-width: 40%;
    opacity: 0.8;
}

.popup-select__title--outside-right {
    right: 20px;
}

.popup-select__title--outside-left {
    left: 20px;
}

.popup-select__main-title {
    font-size: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-select__outside {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s 0.2s ease;
    pointer-events: none;
}

.popup-select__btn {
    font-family: Gilroy-medium, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    border-radius: 0.3125rem;
    display: flex;
    align-items: center;
    background-color: #43A154;
    color: #fff;
    padding: 12px 30px;
}

.popup-select__wrapper:hover .popup-select__content {
    opacity: 1;
    transition: opacity 0.3s 0.2s ease;
}

.popup-select__wrapper.open .popup-select__content {
    opacity: 1;
    transition: opacity 0.3s 0.2s ease;
} 

.popup-select__wrapper:hover ~ .popup-select__outside {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.popup-select__wrapper.open ~ .popup-select__outside {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.popup-select__wrapper.open {
  width: 100%;
  filter: blur(0);
}

@media (min-width: 1725px) {
    .popup-select  {
        display: block;
    }
}

@media (pointer: coarse) {
  .popup-select__wrapper:hover .popup-select__content {
    opacity: 0;
    transition: none;
  }

  .popup-select__wrapper.open .popup-select__content {
    opacity: 1;
    transition: opacity 0.3s 0.2s ease;
  }

  .popup-select__wrapper:hover ~ .popup-select__outside {
    opacity: 1;
    transition: opacity 0.2s ease;
  }

  .popup-select__wrapper.open ~ .popup-select__outside {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
}


@media (max-width: 1110px) {
    .popup-select__title {
        font-size: 55px;
    }

    .popup-select__main-title {
        font-size: 100px;
    }
}

@media (max-width: 864px) {
    .popup-select__title {
        font-size: 45px;
    }

    .popup-select__main-title {
        font-size: 80px;
    }
}

@media (max-width: 700px) {
    .popup-select__title {
        font-size: 36px;
    }
    
    .popup-select__main-title {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .popup-select__title {
        font-size: 30px
    }

    .popup-select__main-title {
        font-size: 50px;
    }

    .popup-select__modal-close {
        right: 15px;
        top: 15px
    }
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}
