@font-face {
    font-family: "Y-Regular";
    src: url("../fonts/regular.ttf");
}
@font-face {
    font-family: "Y-Light";
    src: url("../fonts/light.ttf");
}
@font-face {
    font-family: "Y-semiBold";
    src: url("../fonts/semiBold.ttf");
}
@font-face {
    font-family: "Y-medium";
    src: url("../fonts/medium.ttf");
}
@font-face {
    font-family: "P-Bold";
    src: url("../fonts/Phenomena-Bold.otf");
}
@font-face {
    font-family: "P-Regular";
    src: url("../fonts/Phenomena-Regular.otf");
}
@font-face {
    font-family: "P-Light";
    src: url("../fonts/Phenomena-Light.otf");
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Y-Regular";
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
}
.container.full {
    max-width: 1800px;
}

::-moz-selection {
    color: #fff;
    background: #8ae7f1;
}

::selection {
    color: #fff;
    background: #8ae7f1;
}

.btn {
    padding: 16px 26px;
    border: 2px solid transparent;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all 0.5s;
    font-size: 24px;
}
@media screen and (max-width: 576px) {
    .btn {
        padding: 12px 20px;
        font-size: 18px;
    }
}
.btn.big {
    padding: 12px 56px 16px 56px;
}
@media screen and (max-width: 576px) {
    .btn.big {
        padding: 12px 42px;
    }
}
.btn.outline {
    background: transparent;
}
.btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: -80%;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.5s;
}
.btn.btn__white {
    border-color: #000;
    font-family: "Y-Light";
}
.btn.btn__white:hover {
    border-color: transparent;
    color: #fff;
    transform: scale(1.03, 1.03);
}
.btn.btn__white:hover::after {
    opacity: 1;
    background-color: #000;
    top: 0;
    left: 0;
}
.btn.btn__blue {
    font-family: "P-Regular";
    background-color: #8ae7f1;
    color: #fff;
    border: none;
}
.btn.btn__blue:hover {
    border-color: transparent;
    color: #fff;
    transform: scale(1.03, 1.03);
}
.btn.btn__blue:hover::after {
    opacity: 1;
    background-color: #000;
    top: 0;
    left: 0;
}
.btn.btn__green {
    background-color: #54c247;
    border-radius: 0;
    color: #fff;
    padding: 8px 56px 12px 56px;
}
.btn.btn__green:hover {
    border-color: transparent;
    border: none;
    color: #fff;
    transform: scale(1.03, 1.03);
}
.btn.btn__green:hover::after {
    opacity: 1;
    background-color: #000;
    top: 0;
    left: 0;
    border-radius: 0;
}
@media screen and (max-width: 576px) {
    .btn.btn__green {
        padding: 6px 44px 10px 44px;
    }
}
.btn.btn__green--small {
    background-color: #54c247;
    color: #fff;
}
.btn.btn__green--small:hover {
    border-color: transparent;
    color: #54c247;
    transform: scale(1.03, 1.03);
}
.btn.btn__green--small:hover::after {
    opacity: 1;
    background-color: #fff;
    top: 0;
    left: 0;
    border-color: #000;
}
.btn.second__font {
    font-family: "P-Regular";
}

#button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99;
    color: #ddd;
}
#button.show {
    display: flex;
}
@media screen and (max-width: 576px) {
    #button.show {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    footer #button {
        display: flex;
        position: static;
    }
    footer #button.show {
        display: flex;
        order: 10;
    }
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
    display: none;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}
.loading img {
    animation: scale 2s linear infinite;
}
.loading.active {
    transition: all 0.5s;
    display: flex;
    opacity: 1;
    visibility: visible;
}

@keyframes scale {
    0% {
        transform: scale(1.2, 1.2);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1.2, 1.2);
    }
}
.font__color--white {
    color: #fff;
}
.font__color--black {
    color: #000;
}
.font__color--green {
    color: #54c247;
}
.font__size--base {
    font-size: 16px;
}
.font__size--sm {
    font-size: 14px;
}
@media screen and (max-width: 576px) {
    .font__size--sm {
        font-size: 12px;
    }
}
.font__size--md {
    font-size: 20px;
}
@media screen and (max-width: 576px) {
    .font__size--md {
        font-size: 16px;
    }
}
.font__size--lg {
    font-size: 24px;
}
@media screen and (max-width: 576px) {
    .font__size--lg {
        font-size: 18px;
    }
}
.font__size--mdl {
    font-size: 28px;
}
@media screen and (max-width: 576px) {
    .font__size--mdl {
        font-size: 24px;
    }
}
.font__size--xl {
    font-size: 32px;
}
@media screen and (max-width: 576px) {
    .font__size--xl {
        font-size: 22px;
    }
}
.font__size--xxl {
    font-size: 36px;
}
@media screen and (max-width: 576px) {
    .font__size--xxl {
        font-size: 32px;
    }
}
.font__size--xxxl {
    font-size: 60px;
}
@media screen and (max-width: 992px) {
    .font__size--xxxl {
        font-size: 50px;
    }
}
@media screen and (max-width: 576px) {
    .font__size--xxxl {
        font-size: 40px;
    }
}
.font__size--big {
    font-size: 70px;
}
@media screen and (max-width: 576px) {
    .font__size--big {
        font-size: 66px;
    }
}
@media screen and (max-width: 576px) {
    .font__size--big.small {
        font-size: 40px;
    }
}
.font__weight__700 {
    font-weight: 700;
}
.font__weight__600 {
    font-weight: 600;
}
.font__weight__500 {
    font-weight: 500;
}
.font__family--light-Y {
    font-family: "Y-Light";
}
.font__family--regular-Y {
    font-family: "Y-Regular";
}
.font__family--semiBold-Y {
    font-family: "Y-semiBold";
}
.font__family--medium-Y {
    font-family: "Y-medium";
}
.font__family--bold-P {
    font-family: "P-Bold";
}
.font__family--regular-P {
    font-family: "P-Regular";
}
.font__family--light-P {
    font-family: "P-Light";
}
.font__decoration--underline {
    text-decoration: underline;
}
.font__decoration--overline {
    text-decoration: overline;
}
.font__transform--uppercase {
    text-transform: uppercase;
}

img {
    max-width: 100%;
}

.img-ready {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mobile__logo {
    display: none;
}
@media screen and (max-width: 1024px) {
    .mobile__logo {
        display: block;
    }
}

.desktop__logo {
    display: block;
}
@media screen and (max-width: 1024px) {
    .desktop__logo {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .none {
        display: none;
    }
}

.mobile {
    display: none;
}
@media screen and (max-width: 992px) {
    .mobile {
        display: block;
    }
}

.desktop {
    display: block;
}
@media screen and (max-width: 992px) {
    .desktop {
        display: none;
    }
}

.heading {
    font-size: 70px;
    font-family: "Y-Regular";
    color: #000;
    padding-bottom: 72px;
}
.heading.center {
    text-align: center;
}
.heading.small {
    font-size: 55px;
    padding-top: 46px;
}
@media screen and (max-width: 576px) {
    .heading.small {
        padding-top: 16px;
        font-size: 40px;
    }
}
@media screen and (max-width: 576px) {
    .heading {
        padding-bottom: 42px;
        font-size: 40px;
    }
}

.section {
    padding: 120px 0;
}
@media screen and (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
}

nav {
    padding: 36px 0;
    background-color: #fff;
    position: relative;
    z-index: 1000;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    nav {
        padding: 28px 0;
    }
}
nav .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    /* nav .navbar {
        justify-content: center;
        text-align: center;
    } */
}

.navbar__logo {
    max-width: 280px;
}
@media screen and (max-width: 1024px) {
    .navbar__logo {
        max-width: 160px;
    }
}
nav .navbar__menu {
    display: flex;
    align-items: center;
    gap: 80px;
}
@media screen and (max-width: 1200px) {
    nav .navbar__menu {
        gap: 20px;
    }
}
@media screen and (max-width: 1024px) {
    nav .navbar__menu {
        display: none;
    }
}
nav .navbar__menu ul {
    display: flex;
    gap: 80px;
    list-style: none;
}
@media screen and (max-width: 1200px) {
    nav .navbar__menu ul {
        gap: 40px;
    }
}
nav .navbar__menu ul a {
    color: #000;
    font-size: 24px;
    font-family: "Y-Light";
    transition: all 0.5s;
    font-weight: 500;
}
nav .navbar__menu ul a:hover {
    color: #54c247;
}
nav .navbar__menu ul li.active a {
    color: #54c247;
}
nav .navbar__menu--lang {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-family: "P-Regular";
    text-transform: uppercase;
    cursor: pointer;
    gap: 12px;
    position: relative;
}
nav .navbar__menu--lang .navbar__lang {
    position: absolute;
    flex-direction: column;
    gap: 0px;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
nav .navbar__menu--lang .navbar__lang li:hover {
    color: #54c247;
}
nav .navbar__menu--lang:hover .navbar__lang {
    opacity: 1;
    visibility: visible;
}
nav .navbar__bars {
    display: none;
}
nav .navbar__bars--content {
    position: relative;
    z-index: 0;
    cursor: pointer;
    display: none;
    transition: all 0.5s;
}
nav .navbar__bars--content.active {
    display: block;
}
nav .navbar__bars--content::after {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    top: -17px;
    left: -12.5px;
    background-color: #54c247;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.4;
    transform: scale(0);
    transition: all 0.5s;
}
nav .navbar__bars--content:hover::after {
    transform: scale(1);
}
nav .navbar__bars--close {
    display: none;
    transition: all 0.5s;
}
nav .navbar__bars--close.active {
    display: block;
}
@media screen and (max-width: 1024px) {
    nav .navbar__bars {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
    }
}

main {
    padding: 60px 0;
    position: relative;
    background-color: #ffea47;
    z-index: 0;
}
main .main__shape--left {
    position: absolute;
    bottom: -30%;
    left: -1.5%;
}
@media screen and (max-width: 1600px) {
    main .main__shape--left {
        display: none;
    }
}
main .main__shape--right {
    position: absolute;
    bottom: -30%;
    right: 0;
    display: flex;
    justify-content: flex-end;
}
@media screen and (min-width: 1600px) {
    main .main__shape--right {
        width: 15%;
    }
    main .main__shape--right img {
        width: 90%;
    }
}
@media screen and (min-width: 2100px) {
    main .main__shape--right {
        width: 12%;
    }
    main .main__shape--right img {
        width: 100%;
    }
}
@media screen and (min-width: 3000px) {
    main .main__shape--right {
        width: 9%;
    }
    main .main__shape--right img {
        width: 100%;
    }
}
@media screen and (max-width: 1600px) {
    main .main__shape--right {
        bottom: -200px;
    }
    main .main__shape--right img {
        width: 80%;
    }
}
@media screen and (max-width: 768px) {
    main .main__shape--right {
        width: 20%;
        bottom: -70px;
    }
}
@media screen and (max-width: 576px) {
    main .main__shape--right {
        width: 130px;
        bottom: -150px;
    }
}
@media screen and (max-width: 300px) {
    main .main__shape--right {
        display: none;
    }
}
main::after {
    content: "";
    width: 100%;
    height: 130%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
    background-color: #8ae7f1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 576px) {
    main::after {
        display: none;
    }
}
@media screen and (max-width: 650px) {
    main {
        padding: 60px 0 0 0;
        background-color: #8ae7f1;
    }
    main .container {
        padding: 0;
    }
}
main .main__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 0;
    min-height: 540px;
}
@media screen and (max-width: 650px) {
    main .main__content {
        flex-wrap: wrap;
        min-height: auto;
        padding-top: 300px;
    }
}
main .main__content::after {
    content: "";
    width: 300%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    background-color: #fff;
}
@media screen and (max-width: 650px) {
    main .main__content::after {
        left: -20%;
        top: 0;
    }
}
main .main__content--image {
    width: 65%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
}
@media screen and (max-width: 650px) {
    main .main__content--image {
        width: 100%;
        height: 300px;
    }
}
main .main__content--image .video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
main .main__content--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
main .main__content--text {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
}
@media screen and (max-width: 768px) {
    main .main__content--text {
        width: 32%;
    }
}
@media screen and (max-width: 650px) {
    main .main__content--text {
        width: 100%;
        padding: 54px 20px;
        gap: 90px;
    }
}
main .main__content--text .main__content--heading {
    display: flex;
    flex-direction: column;
    gap: 45px;
}
@media screen and (max-width: 650px) {
    main .main__content--text .main__content--heading {
        gap: 34px;
    }
}
main .socials {
    padding: 60px 0 0 60px;
}
@media screen and (max-width: 650px) {
    main .socials {
        display: none;
    }
}

.banner {
    padding: 100px 0;
    background-color: #ffea47;
    background-size: cover;
    background-position: center;
}
@media screen and (max-width: 576px) {
    .banner {
        background-image: none !important;
        padding: 50px 0;
    }
}
.banner .container {
    position: relative;
}
.banner__shape {
    position: absolute;
    display: none;
    width: 30%;
    bottom: -20%;
    right: -6%;
    z-index: 1;
}
@media screen and (max-width: 576px) {
    .banner__shape {
        display: block;
    }
}
.banner__content {
    width: 80%;
}
@media screen and (max-width: 1200px) {
    .banner__content {
        width: 100%;
    }
}
.banner__content--item {
    width: 100%;
    background-color: #fff;
    padding: 80px 96px 80px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 680px;
}
@media screen and (max-width: 1200px) {
    .banner__content--item {
        padding: 42px;
    }
}
@media screen and (max-width: 992px) {
    .banner__content--item {
        flex-wrap: wrap;
        text-align: center;
    }
    .banner__content--item .heading {
        width: 100%;
        order: 1;
    }
}
@media screen and (max-width: 576px) {
    .banner__content--item {
        padding: 42px 22px;
    }
}
.banner__content--item .banner__content--text {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
@media screen and (max-width: 992px) {
    .banner__content--item .banner__content--text {
        order: 3;
        width: 100%;
        gap: 27px;
        align-items: center;
    }
}
.banner__content--item .banner__content--title {
    font-size: 90px;
    font-family: "Y-Light";
    font-weight: light;
    padding: 30px 0 36px 0;
}
@media screen and (max-width: 576px) {
    .banner__content--item .banner__content--title {
        font-size: 66px;
        padding: 30px 0 25px 0;
    }
}
.banner__content--item .banner__content--image {
    overflow: hidden;
    width: 60%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 992px) {
    .banner__content--item .banner__content--image {
        flex-wrap: wrap;
        text-align: center;
        width: 100%;
        order: 2;
    }
}
@media screen and (max-width: 992px) {
    .banner__content--item .banner__content--body {
        width: 80%;
        margin: 0 auto;
    }
}
.banner__content .swiper-wrapper {
    padding: 0 0 70px 0;
}
.banner__content .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.banner__content .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #fff;
    opacity: 1;
    position: relative;
    z-index: 0;
}
.banner__content .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    height: 12px;
    border-radius: 12px;
}
.banner__content .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    content: "";
    width: 50px;
    height: 22px;
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: #fff;
    opacity: 0.5;
    border-radius: 12px;
}
.banner__content .swiper-slide .banner__content--image img {
    transform: scale(0);
    transition: all 0.5s;
}
.banner__content .swiper-slide .banner__content--title {
    opacity: 0;
    transition: all 0.5s 0.3s;
}
.banner__content .swiper-slide .banner__content--body {
    opacity: 0;
    transition: all 0.5s 0.7s;
}
.banner__content .swiper-slide .banner__content--btn {
    opacity: 0;
    transition: all 0.5s 1s;
}
.banner__content .swiper-slide.swiper-slide-active .banner__content--image img {
    transform: scale(1);
}
.banner__content .swiper-slide.swiper-slide-active .banner__content--title, .banner__content .swiper-slide.swiper-slide-active .banner__content--body, .banner__content .swiper-slide.swiper-slide-active .banner__content--btn {
    opacity: 1;
}

.products {
    background-color: #fff;
}
.products__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}
@media screen and (max-width: 576px) {
    .products__content {
        justify-content: center;
        gap: 35px;
    }
}
.products__content--item {
    width: 24%;
    text-align: center;
    transition: all 0.5s;
}
@media screen and (max-width: 1200px) {
    .products__content--item {
        width: 32%;
    }
}
@media screen and (max-width: 992px) {
    .products__content--item {
        width: 48%;
    }
}
@media screen and (max-width: 576px) {
    .products__content--item {
        width: 90%;
    }
}
@media screen and (max-width: 425px) {
    .products__content--item {
        width: 100%;
    }
}
.products__content--item:hover {
    cursor: pointer;
    transform: scale(1.03, 1.03);
}
.products__content--item .products__content--text {
    background-color: #d5fbff;
    padding: 15px;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
@media screen and (max-width: 576px) {
    .products__content--item .products__content--text {
        gap: 6px;
    }
}
.products__content--item .products__content--image {
    overflow: hidden;
    position: relative;
    z-index: 0;
    padding: 0 10px 30px 10px;
    height: 240px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.products__content--item .products__content--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 576px) {
    .products__content--item .products__content--image {
        height: auto;
        padding: 0 30px 15px 30px;
    }
}
.products__content--item .products__content--image::after {
    content: "";
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 2px;
    left: 0;
    background-color: #d5fbff;
    z-index: -1;
    border-radius: 12px 12px 0 0;
}
.products .more__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 576px) {
    .products .more__button {
        padding-top: 50px;
    }
}
.products__tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 54px;
    padding-bottom: 100px;
}
@media screen and (max-width: 576px) {
    .products__tabs {
        gap: 17px;
        padding-bottom: 40px;
    }
}
.products__tabs .products__tab {
    min-width: 210px;
    background-color: #8ae7f1;
    border-radius: 12px;
    padding: 20px 50px 16px 50px;
    text-align: center;
    cursor: pointer;
    font-family: "Y-Regular";
    font-size: 44px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.products__tabs .products__tab::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    background-color: #ffb1ff;
    transition: all 0.5s;
    border-radius: 12px;
    opacity: 0;
}
.products__tabs .products__tab:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
@media screen and (max-width: 576px) {
    .products__tabs .products__tab {
        width: 47%;
        min-width: auto;
        font-size: 30px;
        padding: 16px 10px 12px 10px;
    }
}
@media screen and (max-width: 320px) {
    .products__tabs .products__tab {
        width: 100%;
    }
}
.products__tabs .products__tab.active {
    background-color: #d4abf3;
}

.about {
    background-color: #8ae7f1;
    padding-bottom: 220px;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 576px) {
    .about {
        padding-bottom: 60px;
    }
    .about .container {
        padding: 0;
    }
}
.about__shape--right {
    position: absolute;
    top: -370px;
    right: 0;
    z-index: 10;
}
@media screen and (max-width: 650px) {
    .about__shape--right {
        width: 170px;
        top: -120px;
        z-index: 10;
        width: 40%;
    }
}
.about__shape--left {
    position: absolute;
    top: -100px;
    left: -15%;
    z-index: 0;
}
.about__shape--left img {
    width: 80%;
}
@media screen and (max-width: 1600px) {
    .about__shape--left {
        display: none;
    }
}
.about__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}
@media screen and (max-width: 1800px) {
    .about__content {
        position: relative;
        z-index: 1;
    }
}
@media screen and (max-width: 992px) {
    .about__content {
        flex-wrap: wrap;
    }
}
.about__content--heading {
    display: flex;
    flex-direction: column;
    gap: 72px;
}
@media screen and (max-width: 576px) {
    .about__content--heading {
        gap: 34px;
    }
}
@media screen and (max-width: 576px) {
    .about__content--heading .font__size--big {
        font-size: 40px;
    }
}
.about__content--text {
    width: 55%;
    min-height: 1000px;
    padding: 115px 125px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 100px;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 1400px) {
    .about__content--text {
        padding: 75px;
        min-height: auto;
    }
}
@media screen and (max-width: 992px) {
    .about__content--text {
        width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .about__content--text {
        padding: 46px 20px;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
}
.about__content--text::after {
    content: url(../images/about-shape.png);
    position: absolute;
    bottom: -150px;
    right: 70px;
    animation: scaleAnimation 3s linear infinite;
}
@media screen and (max-width: 1400px) {
    .about__content--text::after {
        display: none;
    }
}
.about__content--body {
    line-height: 30px;
}
@media screen and (max-width: 576px) {
    .about__content--body {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 10;
        align-self: stretch;
        overflow: hidden;
        font-family: "Y-medium" !important;
    }
}
.about__content--image {
    width: 45%;
    height: 900px;
    padding: 40px;
    margin-bottom: -100px;
    background-color: #fff;
}
.about__content--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 992px) {
    .about__content--image {
        width: 100%;
        margin-bottom: 0;
        height: 800px;
    }
}
@media screen and (max-width: 576px) {
    .about__content--image {
        height: 500px;
        padding: 0 20px 50px 20px;
    }
}

.forms {
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}
.forms::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 576px) {
    .forms {
        padding-bottom: 0;
    }
}
.forms .mobile__partners__bg {
    display: none;
}
@media screen and (max-width: 576px) {
    .forms .mobile__partners__bg {
        display: block;
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 60%;
    }
    .forms .mobile__partners__bg img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.forms .full {
    position: relative;
    z-index: 0;
}
.forms .full .splide__pagination,
.forms .full .splide__arrows {
    display: none !important;
}
.forms .full .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.forms .full .splide__slide img {
    width: 90%;
}
@media screen and (max-width: 992px) {
    .forms .full .splide__slide img {
        width: 85%;
    }
}
.forms .full .splide__slide a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.forms .full .partner__next, .forms .full .partner__prev {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    cursor: pointer;
}
@media screen and (max-width: 1950px) {
    .forms .full .partner__next, .forms .full .partner__prev {
        display: none;
    }
}
.forms .full .partner__next {
    right: -70px;
}
.forms .full .partner__prev {
    left: -70px;
}
.forms .partners {
    text-align: center;
    margin-bottom: 120px;
}
@media screen and (max-width: 576px) {
    .forms .partners {
        display: none;
    }
}
.forms .partners__mobile {
    display: none;
    margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
    .forms .partners__mobile {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 28px 16px;
        margin-bottom: 40px;
    }
}
.forms .partners__mobile--item {
    width: 46%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    opacity: 0.05;
    transition: all 0.5s;
}
.forms .partners__mobile--item img {
    opacity: 0;
    transition: all 0.5s;
}
.forms .partners__mobile--item.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0);
}
.forms .partners__mobile--item.active img {
    opacity: 1;
}
.forms__bg {
    padding: 30px 20px;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 576px) {
    .forms__bg {
        background-color: #ffb1ff;
    }
}
.forms__bg--shape {
    position: absolute;
    top: -50px;
    left: -30%;
    display: none;
    width: 63%;
    z-index: -1;
}
@media screen and (max-width: 576px) {
    .forms__bg--shape {
        display: block;
    }
}
.forms__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 70%;
    margin: 0 auto;
}
@media screen and (max-width: 992px) {
    .forms__content {
        width: 100%;
        flex-wrap: wrap;
        gap: 48px;
    }
}
.forms__content--left {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (max-width: 576px) {
    .forms__content--left {
        width: 100%;
    }
}
.forms__content--right {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (max-width: 576px) {
    .forms__content--right {
        width: 100%;
    }
}
.forms__content--item {
    width: 100%;
}
.forms__content--btn {
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 576px) {
    .forms__content--btn {
        justify-content: center;
    }
}

input,
textarea {
    width: 100%;
    padding: 18px 20px;
    color: #000;
    border: none;
    font-size: 16px;
    font-family: "Y-Light";
}
input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 18px;
    color: #bfbebe;
}
input::placeholder,
textarea::placeholder {
    font-size: 18px;
    color: #bfbebe;
}
input:focus,
textarea:focus {
    outline-color: #8ae7f1;
}

textarea {
    min-height: 115px;
    resize: none;
}

footer {
    background-color: #000;
    padding: 24px 0;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 650px) {
    footer {
        padding: 40px 0;
    }
}
footer .footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 650px) {
    footer .footer__content {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
}
footer .footer__content--left {
    width: 30%;
}
@media screen and (max-width: 650px) {
    footer .footer__content--left {
        width: 100%;
        order: 3;
        text-align: center;
    }
}
footer .footer__content--right {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-right: 160px;
}
@media screen and (max-width: 992px) {
    footer .footer__content--right {
        padding-right: 80px;
    }
}
@media screen and (max-width: 650px) {
    footer .footer__content--right {
        width: 100%;
        order: 1;
        justify-content: center;
        align-items: center;
        padding-right: 0;
    }
}
footer .footer__content--center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 15%;
}
@media screen and (max-width: 768px) {
    footer .footer__content--center {
        margin: 0;
    }
}
@media screen and (max-width: 650px) {
    footer .footer__content--center {
        width: 100%;
        order: 2;
        justify-content: center;
        margin: 0 0 20px 0;
    }
}
footer .footer__shape--1 {
    display: none;
    position: absolute;
    overflow: hidden;
    top: -25%;
    right: 0;
}
@media screen and (max-width: 650px) {
    footer .footer__shape--1 {
        display: block;
    }
}

.socials {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.socials__item {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.socials__item.white svg path {
    fill: #8ae7f1;
}
.socials__item.green {
    background-color: #54c247;
}
.socials__item.green svg path {
    fill: #fff;
}
.socials__item:hover {
    background-color: #54c247;
}
.socials__item:hover svg path {
    fill: #fff;
}

.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background: rgba(210, 210, 210, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    text-align: center;
    overflow-y: scroll;
}
.offcanvas::-webkit-scrollbar {
    display: none;
}
.offcanvas__box {
    position: absolute;
    width: 100%;
    background-color: #fff;
    padding: 60px 40px;
    min-height: 10%;
    overflow-y: scroll;
    top: -100%;
    right: 0%;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 120px;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
    .offcanvas__box {
        margin-top: 130px;
    }
}
.offcanvas__box--content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.offcanvas__box--close {
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}
.offcanvas__box--lang {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    gap: 24px;
}
.offcanvas__box--lang a {
    color: #000;
}
.offcanvas__box--lang .offcanvas__lang {
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.offcanvas__box--lang .offcanvas__lang.active {
    border-color: #000;
}
.offcanvas__box::-webkit-scrollbar {
    display: none;
}
.offcanvas__box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.offcanvas__box ul a {
    color: #000;
    font-size: 38px;
    font-family: "Y-Light";
}
.offcanvas__box ul li.active a {
    color: #54c247;
}
.offcanvas__box .socials {
    justify-content: center;
}
.offcanvas.active {
    opacity: 1;
    visibility: visible;
}
.offcanvas.active .offcanvas__box {
    top: 0;
}

.part__page {
    padding: 150px 0 300px 0;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 576px) {
    .part__page {
        padding: 40px 0 70px 0;
    }
}
.part__page__shape--first, .part__page__shape--second, .part__page__shape--third {
    position: absolute;
    z-index: -1;
}
@media screen and (max-width: 992px) {
    .part__page__shape--first, .part__page__shape--second, .part__page__shape--third {
        display: none;
    }
}
.part__page__shape--first {
    top: 5%;
    left: -6%;
}
.part__page__shape--second {
    bottom: -1%;
    left: -1%;
}
.part__page__shape--third {
    bottom: -5%;
    right: 0;
    width: 300px;
}

.part__main {
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #000;
}
.part__main--content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 165px 0;
}
@media screen and (max-width: 576px) {
    .part__main--content {
        padding: 75px 0;
    }
}
.part__main--content .part__main--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 70%;
    padding: 70px 100px;
    text-align: center;
}
@media screen and (max-width: 992px) {
    .part__main--content .part__main--text {
        width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .part__main--content .part__main--text {
        padding: 50px 40px;
    }
    .part__main--content .part__main--text .font__size--big {
        font-size: 40px;
    }
}
.part__main--content .part__main--body {
    padding: 54px 0 40px 0;
}
@media screen and (max-width: 576px) {
    .part__main--content .part__main--body {
        padding: 30px 0 10px 0;
    }
    .part__main--content .part__main--body.font__size--lg {
        font-size: 20px;
    }
}
.part__main.about__page {
    background-color: #b1fcdf;
    position: relative;
    z-index: 0;
    overflow: visible;
}
.part__main.about__page .part__main--content {
    padding: 120px 0;
    position: relative;
}
@media screen and (max-width: 576px) {
    .part__main.about__page .part__main--content {
        padding: 70px 0;
    }
}
.part__main.about__page .part__main--text {
    width: 90%;
    padding: 60px 110px;
    text-align: center;
}
@media screen and (max-width: 576px) {
    .part__main.about__page .part__main--text {
        padding: 30px 16px;
        width: 100%;
    }
}
.part__main.about__page .part__main--body {
    word-spacing: 5px;
    display: inline-block;
}
@media screen and (max-width: 576px) {
    .part__main.about__page .part__main--body {
        padding-bottom: 40px;
    }
    .part__main.about__page .part__main--body.font__Size--lg {
        font-size: 20px;
    }
    .part__main.about__page .part__main--body .about__none {
        display: none;
    }
    .part__main.about__page .part__main--body .about__none.active {
        display: block;
    }
}
.part__main.about__page .part__main--btn {
    display: none;
}
@media screen and (max-width: 576px) {
    .part__main.about__page .part__main--btn {
        display: block;
    }
}
.part__main.about__page .about__page--shape-1, .part__main.about__page .about__page--shape-2 {
    position: absolute;
}
.part__main.about__page .about__page--shape-1 {
    bottom: -10%;
    left: -7%;
    z-index: 0;
}
.part__main.about__page .about__page--shape-1 img {
    width: 80%;
}
@media screen and (max-width: 1800px) {
    .part__main.about__page .about__page--shape-1 img {
        width: 60%;
    }
}
@media screen and (max-width: 992px) {
    .part__main.about__page .about__page--shape-1 {
        display: none;
    }
}
.part__main.about__page .about__page--shape-2 {
    top: -3%;
    right: -14%;
}
.part__main.about__page .about__page--shape-2 img {
    max-width: 90%;
}
@media screen and (max-width: 1800px) {
    .part__main.about__page .about__page--shape-2 {
        top: -5%;
        right: -20%;
    }
    .part__main.about__page .about__page--shape-2 img {
        width: 60%;
    }
}
@media screen and (max-width: 1600px) {
    .part__main.about__page .about__page--shape-2 {
        right: -30%;
    }
}
@media screen and (max-width: 1200px) {
    .part__main.about__page .about__page--shape-2 {
        right: -40%;
    }
}
@media screen and (max-width: 992px) {
    .part__main.about__page .about__page--shape-2 {
        bottom: 0%;
        right: -55%;
        top: auto;
        z-index: 10;
    }
}
@media screen and (max-width: 768px) {
    .part__main.about__page .about__page--shape-2 {
        right: -85%;
    }
}
@media screen and (max-width: 576px) {
    .part__main.about__page .about__page--shape-2 {
        right: -100%;
        bottom: -25%;
    }
}
@media screen and (max-width: 500px) {
    .part__main.about__page .about__page--shape-2 {
        right: -120%;
        bottom: -10%;
    }
}
@media screen and (max-width: 450px) {
    .part__main.about__page .about__page--shape-2 {
        right: -135%;
        bottom: -4%;
    }
    .part__main.about__page .about__page--shape-2 img {
        max-width: 40%;
    }
}
@media screen and (max-width: 400px) {
    .part__main.about__page .about__page--shape-2 {
        right: -160%;
    }
}
@media screen and (max-width: 350px) {
    .part__main.about__page .about__page--shape-2 {
        right: -180%;
    }
}

.about__products {
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 576px) {
    .about__products {
        padding-top: 0;
    }
    .about__products .container {
        padding: 0;
    }
}
.about__products--content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}
@media screen and (max-width: 576px) {
    .about__products--content {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        width: 100%;
    }
}
.about__products--content .about__products--text {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 35%;
}
@media screen and (max-width: 768px) {
    .about__products--content .about__products--text {
        width: 50%;
    }
}
@media screen and (max-width: 576px) {
    .about__products--content .about__products--text {
        width: 100%;
        text-align: center;
        gap: 40px;
        margin-top: -30px;
        padding: 0 20px;
    }
}
.about__products--content .about__products--title {
    font-size: 56px;
}
@media screen and (max-width: 576px) {
    .about__products--content .about__products--title {
        font-size: 40px;
    }
}
.about__products--content .about__products--image {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 80%;
    top: 0;
    right: 0;
}
.about__products--content .about__products--image.mobile {
    display: none;
}
.about__products--content .about__products--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: auto;
}
@media screen and (max-width: 576px) {
    .about__products--content .about__products--image {
        display: none;
        width: 100%;
        position: static;
        top: 0;
        right: 0;
        overflow: hidden;
        height: auto;
        flex-direction: column;
        margin-top: -40px;
    }
    .about__products--content .about__products--image.mobile {
        display: flex;
    }
    .about__products--content .about__products--image img {
        width: 100%;
        -o-object-fit: fill;
        object-fit: fill;
    }
}
@media screen and (max-width: 425px) {
    .about__products--content .about__products--image img {
        height: 450px;
    }
}
.about__products__shape {
    position: absolute;
    display: none;
    z-index: 10;
    left: -45%;
    transform: translateY(-60%);
}
.about__products__shape img {
    max-width: 50%;
}
@media screen and (max-width: 576px) {
    .about__products__shape {
        display: inline-block;
    }
}
.about__products__relative {
    position: relative;
}

.sertificate {
    background-color: #ffb1ff;
    position: relative;
    z-index: 0;
}
.sertificate__heading {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
@media screen and (max-width: 576px) {
    .sertificate__heading {
        gap: 34px;
    }
}
.sertificate__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 140px 0 0 0;
}
@media screen and (max-width: 576px) {
    .sertificate__content {
        margin: 35px 0 0 0;
    }
}
.sertificate__content--item {
    width: 25%;
    overflow: hidden;
}
.sertificate__content--item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .sertificate__content--item {
        width: 320px;
    }
}
@media screen and (max-width: 576px) {
    .sertificate__content--item {
        width: 220px;
    }
}
.sertificate__shape--1, .sertificate__shape--2, .sertificate__shape--3 {
    position: absolute;
    z-index: -1;
    overflow: hidden;
}
@media screen and (max-width: 992px) {
    .sertificate__shape--1, .sertificate__shape--2, .sertificate__shape--3 {
        display: none;
    }
}
.sertificate__shape--1 {
    right: 0;
    bottom: -30%;
}
@media screen and (max-width: 1800px) {
    .sertificate__shape--1 {
        right: -5%;
        bottom: -40%;
    }
}
.sertificate__shape--2 {
    left: -2%;
    bottom: -20%;
}
.sertificate__shape--3 {
    top: -25%;
    left: 0;
    transform: rotateY(180deg);
}
.sertificate__swiper {
    position: relative;
    z-index: 0;
}
.sertificate__swiper .sertificate__next, .sertificate__swiper .sertificate__prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 1540px) {
    .sertificate__swiper .sertificate__next, .sertificate__swiper .sertificate__prev {
        display: none;
    }
}
.sertificate__swiper .sertificate__next {
    right: -5%;
}
.sertificate__swiper .sertificate__prev {
    left: -5%;
}
.sertificate .splide__arrows,
.sertificate .splide__pagination {
    display: none;
}

.teams {
    position: relative;
    z-index: 0;
}
.teams__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 80px 40px;
}
@media screen and (max-width: 650px) {
    .teams__content {
        gap: 40px;
    }
}
.teams__content--item {
    width: 33%;
    text-align: center;
}
@media screen and (max-width: 650px) {
    .teams__content--item {
        width: 80%;
    }
}
.teams__content--item .teams__content--image {
    width: 100%;
}
.teams__content--item .teams__content--text {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media screen and (max-width: 650px) {
    .teams__content--item .teams__content--text {
        padding: 18px;
    }
    .teams__content--item .teams__content--text .font__size--xxxl {
        font-size: 28px;
    }
}
.teams__content--item .teams__content--body {
    width: 70%;
    margin: 0 auto;
}
@media screen and (max-width: 992px) {
    .teams__content--item .teams__content--body {
        width: 100%;
    }
}
.teams__shape--1 {
    position: absolute;
    right: 0;
    top: 0;
}
@media screen and (max-width: 1200px) {
    .teams__shape--1 {
        display: none;
    }
}

.gallery {
    background-color: #fffe95;
}
@media screen and (max-width: 992px) {
    .gallery .container {
        padding: 0;
    }
}
.gallery__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 85%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 992px) {
    .gallery__content {
        width: 100%;
    }
}
.gallery__content--item {
    width: 33.3%;
    height: 280px;
    overflow: hidden;
    transition: all 0.5s linear;
}
.gallery__content--item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 576px) {
    .gallery__content--item {
        width: 50%;
    }
}
@media screen and (max-width: 475px) {
    .gallery__content--item {
        height: 140px;
    }
}
.gallery__content--item.big {
    width: 100%;
    height: 650px;
}
@media screen and (max-width: 768px) {
    .gallery__content--item.big {
        height: 500px;
    }
}
@media screen and (max-width: 475px) {
    .gallery__content--item.big {
        height: 200px;
    }
}
.gallery__content .gallery__shapes--1, .gallery__content .gallery__shapes--2, .gallery__content .gallery__shapes--3 {
    position: absolute;
    z-index: -1;
}
@media screen and (max-width: 992px) {
    .gallery__content .gallery__shapes--1, .gallery__content .gallery__shapes--2, .gallery__content .gallery__shapes--3 {
        display: none;
    }
}
.gallery__content .gallery__shapes--1 {
    top: 20%;
    left: -15%;
}
.gallery__content .gallery__shapes--2 {
    bottom: 0;
    right: -25%;
}
.gallery__content .gallery__shapes--3 {
    display: none;
    top: -20%;
    left: 0%;
    transform: rotateY(180deg);
}
@media screen and (max-width: 992px) {
    .gallery__content .gallery__shapes--3 {
        width: 40%;
        display: block;
    }
}
@media screen and (max-width: 580px) {
    .gallery__content .gallery__shapes--3 {
        top: -11%;
        left: 0%;
    }
}
@media screen and (max-width: 500px) {
    .gallery__content .gallery__shapes--3 {
        top: -10%;
    }
}
@media screen and (max-width: 475px) {
    .gallery__content .gallery__shapes--3 {
        top: -20%;
    }
}
@media screen and (max-width: 360px) {
    .gallery__content .gallery__shapes--3 {
        top: -18%;
    }
    #gallery {
        padding-top: 90px;
    }
}
.gallery .gallery__random img {
    opacity: 0;
    transition: opacity 1s;
}
.gallery .gallery__random img.fade-in {
    opacity: 1;
}

.main__partners {
    background-color: #fff400;
    position: relative;
    z-index: 0;
}
.main__partners--heading {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 100px;
}
@media screen and (max-width: 576px) {
    .main__partners--heading {
        width: 90%;
        padding-bottom: 24px;
    }
}
.main__partners--shape-1, .main__partners--shape-2 {
    position: absolute;
    z-index: -1;
}
@media screen and (max-width: 1200px) {
    .main__partners--shape-1, .main__partners--shape-2 {
        display: none;
    }
}
.main__partners--shape-1 {
    bottom: 0%;
    left: -20%;
}
@media screen and (min-width: 1900px) {
    .main__partners--shape-1 img {
        width: 65%;
    }
}
@media screen and (max-width: 1900px) {
    .main__partners--shape-1 img {
        width: 65%;
    }
}
@media screen and (max-width: 1200px) {
    .main__partners--shape-1 {
        bottom: auto;
        top: 0%;
        left: -40%;
        display: block;
        width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .main__partners--shape-1 {
        left: -45%;
        top: 7%;
        width: 100%;
    }
    .main__partners--shape-1 img {
        width: 70%;
    }
}
.main__partners--shape-2 {
    top: 10%;
    right: -10%;
}
.main__partners--shape-2 img {
    width: 75%;
}
@media screen and (max-width: 2000px) {
    .main__partners--shape-2 {
        right: -15%;
    }
    .main__partners--shape-2 img {
        width: 65%;
    }
}
@media screen and (max-width: 1800px) {
    .main__partners--shape-2 {
        right: -15%;
    }
    .main__partners--shape-2 img {
        width: 65%;
    }
}

.partners__random img {
    opacity: 0;
    transition: opacity 1s;
}

.partners__random img.fade-in {
    opacity: 1;
}

.partners__page--partners {
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.partners__page--partners .heading {
    padding-bottom: 110px;
}
@media screen and (max-width: 576px) {
    .partners__page--partners .heading {
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 576px) {
    .partners__page--partners.section {
        padding: 60px 0;
    }
    .partners__page--partners.section .partners__mobile {
        margin-bottom: 0;
    }
}

.main__contact {
    background-color: #d4abf3;
    position: relative;
    z-index: 0;
}
.main__contact--content {
    width: 80%;
    background-color: #fff;
    margin: 0 auto;
    padding: 70px 30px 70px 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 1100px) {
    .main__contact--content {
        padding: 40px;
        width: 100%;
    }
}
@media screen and (max-width: 850px) {
    .main__contact--content {
        flex-wrap: wrap;
        gap: 40px;
    }
}
@media screen and (max-width: 576px) {
    .main__contact--content {
        padding: 30px;
        margin-bottom: -110px;
    }
}
.main__contact--content .main__contact--text {
    width: 21%;
}
@media screen and (max-width: 850px) {
    .main__contact--content .main__contact--text {
        width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .main__contact--content .main__contact--text {
        text-align: center;
    }
}
.main__contact--content .main__contact--map {
    width: 68%;
    height: 600px;
}
@media screen and (max-width: 850px) {
    .main__contact--content .main__contact--map {
        width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .main__contact--content .main__contact--map {
        height: 400px;
    }
}
.main__contact--content .main__contact--map iframe {
    width: 100%;
    height: 100%;
}
.main__contact--content .main__contact--links {
    display: flex;
    flex-direction: column;
    gap: 34px;
}
@media screen and (max-width: 576px) {
    .main__contact--content .main__contact--links {
        width: 50%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 425px) {
    .main__contact--content .main__contact--links {
        width: 80%;
    }
}
.main__contact--content .main__contact--link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main__contact--shape-1, .main__contact--shape-2 {
    position: absolute;
}
@media screen and (max-width: 1200px) {
    .main__contact--shape-1, .main__contact--shape-2 {
        display: none;
    }
}
@media screen and (max-width: 576px) {
    .main__contact--shape-1, .main__contact--shape-2 {
        z-index: 0;
    }
}
.main__contact--shape-1 {
    bottom: 0;
    left: -15%;
    width: auto;
}
.main__contact--shape-1 img {
    width: 80%;
}
@media screen and (max-width: 1900px) {
    .main__contact--shape-1 {
        left: -10%;
    }
}
@media screen and (max-width: 1800px) {
    .main__contact--shape-1 {
        left: -15%;
    }
}
@media screen and (max-width: 1600px) {
    .main__contact--shape-1 {
        left: -20%;
    }
}
@media screen and (max-width: 1500px) {
    .main__contact--shape-1 {
        left: -25%;
    }
}
@media screen and (max-width: 1300px) {
    .main__contact--shape-1 {
        top: 0;
        bottom: auto;
        left: -30%;
    }
}
@media screen and (max-width: 1100px) {
    .main__contact--shape-1 {
        display: none;
    }
}
@media screen and (max-width: 576px) {
    .main__contact--shape-1 {
        width: 60%;
        top: 8%;
        left: -30%;
        z-index: 100 !important;
        display: block;
    }
    .main__contact--shape-1 img {
        width: 100%;
    }
}
.main__contact--shape-2 {
    right: 3%;
    top: 8%;
    z-index: -1;
}
.main__contact--shape-2 img {
    width: 80%;
}
@media screen and (max-width: 1800px) {
    .main__contact--shape-2 img {
        width: 60%;
    }
}
@media screen and (max-width: 2000px) {
    .main__contact--shape-2 {
        right: -10%;
    }
}
@media screen and (max-width: 1800px) {
    .main__contact--shape-2 {
        right: -15%;
    }
}
@media screen and (max-width: 1600px) {
    .main__contact--shape-2 {
        right: -20%;
    }
}

.contact__form {
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-color: #000;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 576px) {
    .contact__form {
        position: static;
        padding-top: 90px;
    }
}
.contact__form::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 576px) {
    .contact__form::after {
        display: none;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    overflow-y: scroll;
    display: none;
    transition: all 0.5s;
}
.modal::-webkit-scrollbar {
    display: none;
}
.modal .modal__content {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
}
.modal .modal__content::-webkit-scrollbar {
    display: none;
}
@media screen and (max-height: 800px) {
    .modal .modal__content {
        align-items: flex-start;
    }
}
@media screen and (max-width: 1550px) {
    .modal .modal__content {
        padding: 60px 20px;
        align-items: flex-start;
    }
}
@media screen and (max-width: 576px) {
    .modal .modal__content {
        padding: 20px;
    }
}
.modal .modal__box {
    background-color: #fff;
    max-width: 1520px;
    padding: 40px 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}
@media screen and (max-width: 576px) {
    .modal .modal__box {
        padding: 30px 20px;
    }
}
.modal .modal__box .modal__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
    .modal .modal__box .modal__top {
        gap: 24px;
        justify-content: center;
        text-align: center;
    }
}
.modal .modal__box .modal__top--image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .modal .modal__box .modal__top--image {
        width: 100%;
    }
}
.modal .modal__box .modal__top--image img {
    width: 70%;
    -o-object-fit: cover;
    object-fit: cover;
}
.modal .modal__box .modal__top--text {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media screen and (max-width: 768px) {
    .modal .modal__box .modal__top--text {
        width: 100%;
    }
}
.modal .modal__box .modal__top--text .modal__top--body {
    line-height: 26px;
}
.modal .modal__box .modal__top--text .modal__top--price .modal__price {
    font-size: 30px;
    font-family: "Y-Light";
}
@media scren and (max-width: 576px) {
    .modal .modal__box .modal__top--text .modal__top--price .modal__price {
        font-size: 26px;
    }
}
.modal .modal__box .modal__top--text .modal__top--price .modal__price span {
    font-size: 50px;
    font-family: "Y-Light";
}
@media scren and (max-width: 576px) {
    .modal .modal__box .modal__top--text .modal__top--price .modal__price span {
        font-size: 40px;
    }
}
.modal .modal__box .modal__top--logo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.modal .modal__box .modal__top--logo .modal__logo {
    font-size: 50px;
}
@media screen and (max-width: 768px) {
    .modal .modal__box .modal__top--logo {
        display: none;
    }
}
.modal .modal__box .modal__top--heading .modal__top--logo {
    display: none;
}
@media screen and (max-width: 768px) {
    .modal .modal__box .modal__top--heading .modal__top--logo {
        display: flex;
        text-align: center;
        width: 80%;
        margin: 0 auto;
    }
    .modal .modal__box .modal__top--heading .modal__top--logo .modal__logo {
        font-size: 32px;
    }
}
.modal .modal__box .modal__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
@media screen and (max-width: 768px) {
    .modal .modal__box .modal__bottom {
        flex-wrap: wrap;
        text-align: center;
        gap: 24px;
    }
}
.modal .modal__box .modal__bottom--lists {
    display: flex;
    flex-direction: column;
    list-style: none;
    font-size: 24px;
}
@media screen and (max-width: 768px) {
    .modal .modal__box .modal__bottom--lists {
        width: 100%;
        justify-content: center;
    }
    .modal .modal__box .modal__bottom--lists:nth-child(1) {
        order: 1;
    }
    .modal .modal__box .modal__bottom--lists:nth-child(2) {
        order: 3;
    }
}
.modal .modal__box .modal__bottom--lists li {
    font-family: "Y-Light";
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .modal .modal__box .modal__bottom--image {
        width: 100%;
        order: 2;
    }
}

.fancybox-slide--html .fancybox-close-small svg path {
    fill: #fff;
    width: 18px;
    height: 18px;
}
.fancybox-slide::-webkit-scrollbar {
    display: none;
}
.fancybox-button {
    background: transparent;
}
@media screen and (max-width: 576px) {
    .fancybox-button.fancybox-button--arrow_left, .fancybox-button.fancybox-button--arrow_right {
        display: none;
    }
}
.fancybox-slide--previous .modal__content {
    transform: translateX(-100%);
}
.fancybox-slide--next .modal__content {
    transform: translateX(100%);
}

@keyframes circleAnimation {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes scaleAnimation {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(0.9, 0.9);
    }
    100% {
        transform: scale(1, 1);
    }
}

#about-gallery-1 {
    width: 85%;
    margin: 0 auto;
}
#about-gallery-1 .swiper-slide {
    height: 800px;
}
#about-gallery-1 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 992px) {
    #about-gallery-1 {
        width: 100%;
    }
    #about-gallery-1 .swiper-slide {
        height: 600px;
    }
}
