/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/style.css ***!
  \*****************************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #2A2B2B;
}

.hidden { overflow: hidden; }
.center { text-align: center; }
.relative { position: relative; }
.absolute { position: absolute; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

.container {
    width: 100%;
    max-width: 1440px;
    padding: 0 80px;
    margin: 0 auto;
}

header {
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(99, 142, 143, 0.16) 0%, rgba(215, 199, 181, 0.16) 100%);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 1280px;
    padding: 18px 86px 18px 60px;
}
.menu-btn { display: none; }
/*nav a {*/
/*    padding: 12px 24px;*/
/*    text-decoration: none;*/
/*    color: #FFF;*/
/*    font-size: 18px;*/
/*    font-weight: 400;*/
/*    line-height: 25.2px;*/
/*    text-transform: lowercase;*/
/*    transition: all 0.3s ease;*/
/*}*/
/*nav a:hover {*/
/*    border-radius: 100px;*/
/*    background: rgba(255, 255, 255, 0.06);*/
/*    font-weight: 700;*/
/*    text-transform: uppercase;*/
/*}*/
nav a {
    padding: 12px 24px;
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: lowercase;
    position: relative;
    transition: all 0.3s ease;
}
nav a:nth-child(1):after { content: "about"; }
nav a:nth-child(2):after { content: "approach"; }
nav a:nth-child(3):after { content: "services"; }
nav a:nth-child(4):after { content: "achievements"; }
nav a::after {
    padding: 12px 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
nav a:hover {
    /*color: transparent;*/
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
}
/*nav a:hover::after {*/
/*    opacity: 1 !important;*/
/*}*/
.nav-actions.modal-nav-actions { gap: 16px; }
.nav-actions button {
    padding: 12px 24px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 25.2px;
    text-transform: lowercase;
    position: relative;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-actions button::after {
    content: 'let’s talk';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 12px 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-actions button:not(.active):hover {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
}
.nav-actions button.active {
    color: transparent;
}

.nav-actions button.active::after {
    opacity: 1;
}

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: #2B2C2C;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.intro-overlay .orange {
    border-radius:100%;
    background: rgba(195, 123, 34, 0.50);
    filter: blur(250px);
    width: 427px;
    height: 427px;
    left: 20%;
    top: 10%;
}
.intro-overlay .green {
    width: 474px;
    height: 474px;
    border-radius: 100%;
    background: rgba(2, 120, 123, 0.50);
    filter: blur(250px);
    top: 40%;
    left: 50%;
}
.intro-overlay.load { display: flex; animation: fadeOutOverlay 2s ease 3s forwards; }
.intro-text {
    font-family: "Roboto", sans-serif;
    font-size: clamp(20px, 10vw, 100px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    opacity: 0;
    position: absolute;
    animation: textSequence 1s ease forwards;
    width: fit-content;
    white-space: nowrap;
}

.text-1 {
    animation-delay: 0s;
    color: #FFF;
}
.text-1 span {
    background: linear-gradient(0deg, #64C9CF 0%, #64C9CF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.text-2 {
    animation-delay: 1s;
    background: linear-gradient(0deg, #F8A750 0%, #F8A750 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-3 {
    animation-delay: 2s;
    background: linear-gradient(90deg, #6DE4EB 0%, #F8A750 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(20px, 12vw, 145px);
}

@keyframes textSequence {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


@keyframes textFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

@keyframes fadeOutOverlay {
    to { opacity: 0; visibility: hidden; }
}

.main-show {
    transition: opacity 1s ease;
}
.main-show.load { opacity: 0; animation: show 1s ease forwards 3.5s; }
@keyframes show {
    to { opacity: 1; }
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}
button.filled {
    border-radius: 45px;
    background: #FFF;
    padding: 12px 36px;
    width: fit-content;
    gap: 15px;
    color: #624508;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
button.outlined {
    border-radius: 45px;
    border: 1px solid #FFF;
    padding: 12px 36px;
    width: fit-content;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    justify-content: center;
    align-items: center;
}
button:hover {
    opacity: 0.8;
}
input:not([type="checkbox"]), textarea {
    width: 100%;
    outline: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 11px 16px;
    color: #fff;
}
input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

textarea { resize: none; min-height: 144px; }
.inputs { gap: 16px; }
.labels { gap: 12px; }
form {
    gap: 16px;
}
.form-inputs {
    width: 100%;
    max-width: 436px;
    gap: 16px;
}
.form-btn {
    margin-top: 16px;
}

.custom-checkbox {
    position: relative;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}
.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    width: min-content;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(13px);
    background-size: 50% 50%;
    background-color: #E09603;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(0eacb852a831f0adb9a3.svg);
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark + .check-text {
    /*color: rgba(245, 245, 247, 0.90);*/
}
.custom-checkbox:hover .check-text {
    /*color: rgba(245, 245, 247, 0.90);*/
}
.custom-checkbox:hover .checkmark{
    /*border: 1px solid rgba(245, 245, 247, 0.40);*/
}
.checkmark {
    display: inline-block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: border .3s ease;
}
.check-text {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    opacity: 0.8;
}
.check-text a, .check-text a:visited {
    color: #FFF;
    text-decoration-line: underline;
    white-space: nowrap;
}

footer {
    border-radius: 80px 80px 0px 0px;
    background: rgba(255, 255, 255, 0.25);
    overflow: hidden;
    padding: 50px 0 43px;
}
.footer-bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}
.footer-content { margin-top: 36px; }
.footer-links { gap: 45px; margin: 0 0 44px; }
.footer-links a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: lowercase;
    text-decoration: none;
}
.footer-social { gap: 26px; }
.footer-social a {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    text-decoration: none;
}
.footer-bottom { gap: 32px; margin-top: 105px; }
.footer-bottom p, .footer-bottom a, .footer-bottom a:visited {
    opacity: 0.6;
    color: #FFF;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
}
.footer-logo { display: block; }
.footer-bottom p span { text-transform: uppercase; }
.footer-address, .mobile-link {
    color: #FFF;
    text-align: right;
    font-size: 14px;
    line-height: 20px;
    width: 50%;
    max-width: 244px;
    text-transform: uppercase;
}
.footer-image {
    bottom: -45px;
    right: 58px;
}
footer .container {
    position: relative;
    z-index: 2;
}
footer .mobile-link { display: none; }

.no-underline {
    text-decoration: none;
}

.menu-burger {
    cursor: pointer;
}

.menu-btn .square {
    transition: transform 0.4s ease;
    transform-origin: center;
}

.menu-btn .cross-line {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-btn.open .cross-line {
    opacity: 1;
}

.menu-btn.open .s1 { transform: translate(9px, 9px); }
.menu-btn.open .s2 { transform: translate(0px, 9px); }
.menu-btn.open .s3 { transform: translate(-9px, 9px); }
.menu-btn.open .s4 { transform: translate(9px, 0px); }
.menu-btn.open .s6 { transform: translate(-9px, 0px); }
.menu-btn.open .s7 { transform: translate(9px, -9px); }
.menu-btn.open .s8 { transform: translate(0px, -9px); }
.menu-btn.open .s9 { transform: translate(-9px, -9px); }

.menu {
    position: fixed;
    height: 100dvh;
    width: 100vw;
    transform: translateY(-100%);
    z-index: 999;
    transition: transform 0.5s ease;
    top: 0;
    left: 0;
    background: #2A2B2B;
}
.menu.open {
    transform: translateY(0%);
}
.menu-content {
    padding: 110px 20px 36px;
    height: 100%;
}
@media (max-height: 660px) {
    .menu-content { padding: 20% 20px 20px; gap: 5%; }
    .menu-links { gap: 2vh !important; }
    .menu-links a { font-size: 6vh !important; }
    .menu-bottom a, .menu-bottom a:visited, .menu-bottom p { font-size: 3vh !important; }
}
.menu-links { gap: 24px; }
.menu-links a {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'salt' on;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.menu-bottom { gap: 8px; margin-top: auto; }
.menu-bottom a, .menu-bottom a:visited, .menu-bottom p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    line-height: 140%;
    text-decoration: none;
    opacity: 0.6;
    max-width: 234px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0D0D0D;
    align-items: center;
    padding: 60px 0 10vh;
    gap: 20px;
}
.modal-bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.modal-content {
    border-radius: 30px;
    border: 1px solid #FBFBFB;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    max-width: 824px;
    width: 95%;
    padding: 4vh 65px 3vh 65px;
    margin-top: 5vh;
}
.modal-content .form-inputs { max-width: 663px; }
.modal-content h4 {
    color: #FAF8F8;
    font-size: 48px;
    font-weight: 800;
    line-height: 56px;
    margin-bottom: 4vh;
}
.modal-content.response-modal { display: none; padding: 8vh 65px 8vh 65px; }
.modal-content.response-modal p {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    margin: 40px 0;
}
.modal-content .outlined {
    width: 173px;
    height: 48px;
}
.modal-content.response-modal h4 {
    background: linear-gradient(0deg, #93D4C2 0%, #93D4C2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.modal header, .modal-content { position: relative; z-index: 99999; }
.modal-btns {
    margin-top: 3.2vh;
    gap: 28px;
}
.response-modal {
    display: none;
    align-items: center;
    justify-content: center;
}


@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    header {
        padding: 18px 20px 18px 40px;
    }
    nav a {
        padding: 12px 16px;
    }
    .footer-content { gap: 16px; }
    .footer-image { right: 0; }

    .modal > .container, .modal-bg  { display: none; }
    .modal {
        background: #2A2B2B;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    header {
        z-index: 9999;
        position: relative;
        height: 47px;
        width: calc(100vw - 16px);
        margin-left: -13px;
    }
    header a, header a svg {
        width: 30px;
        height: 31px;
    }
    header .nav-actions { display: none; }
    header .menu-btn { display: flex; }

    button {
        height: 40px;
        font-size: 14px !important;
        line-height: 24px !important;
        padding: 8px 20px !important;
    }

    input, textarea { font-size: 16px; }
    .custom-checkbox {
        align-items: flex-start;
    }
    .check-text {
        font-size: 14px;
        line-height: 22px;
    }
    .form-btn {
        margin: 16px auto 0;
    }

    footer {
        padding: 23px 20px 18px;
        border-radius: 40px 40px 0px 0px;
    }
    .footer-content {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin-top: 28px;
    }
    .footer-logo { width: 146px; margin: 0 auto; }
    .footer-logo svg {
        width: 100%;
        height: 100%;
    }
    .footer-links {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin: 0 0 65px;
    }
    .footer-social a:nth-child(2) { display: none; }
    .footer-address, .mobile-link {
        text-decoration: none;
        text-align: center;
        text-transform: capitalize;
    }
    .footer-address { width: 90%; }
    footer .mobile-link { display: block; margin-top: 8px; }
    .mobile-link.privacy { opacity: 0.6; }
    .footer-bottom { margin-top: 50px; }
    .footer-bottom p {
        opacity: 0.6;
        font-size: 12px;
        max-width: 165px;
        width: 50%;
        line-height: normal;
    }
    .footer-bottom p span { text-transform: capitalize; }
    .footer-bottom a { display: none; }
    .footer-image {
        width: 196px;
        bottom: -20px;
    }
    footer .container { padding: 0; }

    .modal-content {
        width: calc(100vw - 40px);
        margin-top: 0;
        border: 1px solid rgba(251, 251, 251, 0.40);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 4vh 16px 5vh;
    }
    .modal-content.response-modal {
        padding: 20px 16px 40px;
    }
    .modal-content.response-modal p {
        font-size: 16px;
    }
    .modal {
        padding: 0;
        justify-content: center;
    }
    .modal-content h4 {
        font-size: clamp(18px, 5vh, 38px);
        line-height: 100%;
        max-width: 200px;
        margin-bottom: 2vh;
    }
    .modal-content .check-text { font-size: 12px; }
    .modal-content .labels { gap: 8px; }
    .modal-content .form-inputs, .modal-content .inputs { gap: 1.5dvh; }
    .modal-btns {
        margin-top: 7px;
        flex-direction: column;
        gap: 9px;
    }
    .modal-btns button, .modal-btns button.outlined {
        justify-content: center;
        width: 100% !important;
        height: 7vh;
        max-height: 48px;
    }

    .intro-overlay .orange {
        width: 310px;
        height: 310px;
        left: -10%;
        top: 20%;
    }
    .intro-overlay .green {
        width: 344px;
        height: 344px;
        left: 90%;
        top:50%;
    }
    textarea { min-height: 12vh; }
}
@media (max-height: 760px) {
    .modal-content h4 {
        max-width: none;
    }
}
@keyframes round {
    to {
        transform: rotate(360deg);
    }
}

.animate {
    opacity: 0;
    transform: translateY(-10px);
}
.animate.visible {
    animation: anim 1s ease forwards;
}
.animate.visible.delay {
    animation-delay: 0.2s;
}
@keyframes anim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/contacts.css ***!
  \***************************************************************************/
.p-contacts-info { gap: 40px; margin-top: 69px; }
.info-item { gap: 12px; }
.info-item h5 {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    background: linear-gradient(90deg, #6DE4EB 0%, #F8A750 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}
.info-item p, .info-item a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    opacity: 0.8;
    max-width: 361px;
}

.p-contacts-form {
    border-radius: 30px;
    border: 1px solid #FBFBFB;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 20px 40px 40px;
    max-width: 558px;
    margin-right: 30px;
}
.p-contacts-form h2 {
    color: #FAF8F8;
    font-size: 35px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px;
}
.p-contacts-form h3 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin: -2px 0 50px;
}
.p-contacts-form h4 { display: none; }
.p-contacts-form .form-inputs {
    max-width: 476px;
}
.contacts-banner .section-title {
    margin-top: 121px;
    text-transform: uppercase;
}
.contacts-banner { padding: 60px 0 134px; overflow: hidden; }
.contacts-banner .container { position: relative; z-index: 2; }
.contacts-bg {
    width: auto;
    height: 65%;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
}
.contacts-btn {
    border-radius: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(13px);
    display: flex;
    width: 193px;
    height: 54px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1280px) {
    .p-contacts { gap: 20px; margin-top: 30px; }
    .p-contacts-form { margin-right: 0; }
}

@media (max-width: 768px) {
    .contacts-banner {
        padding: 15px 0 67px;
    }
    .contacts-banner .section-title {
        margin-top: 48px;
        text-transform: initial;
    }
    .info-item h5 {
        font-size: 20px;
        line-height: 46px;
    }
    .info-item p, .info-item a {
        line-height: 34px;
    }
    .info-item { gap: 12px; }
    .p-contacts-info { gap: 24px; margin-top: 0; }
    .p-contacts {
        gap: 32px;
        flex-direction: column;
        margin-top: 0;
    }
    .contacts-bg { display: none; }
    .contacts-btn {
        width: 100%;
    }
    .p-contacts-form {
        max-width: none;
        border: 1px solid rgba(251, 251, 251, 0.40);
        background: rgba(255, 255, 255, 0.05);
        padding: 20px 16px 40px;
    }
    .p-contacts-form h2, .p-contacts-form h3 { display: none; }
    .p-contacts-form h4 {
        display: block;
        color: #FAF8F8;
        font-size: 38px;
        font-weight: 800;
        line-height: 56px;
        max-width: 200px;
        margin-bottom: 30px;
    }
    .p-contacts-form .form-inputs {
        max-width: none;
        gap: 25px;
    }
    .p-contacts-form .form-inputs .inputs { gap: 25px; }
    .p-contacts-form .form-btn {
        width: 100%;
        justify-content: center;
        height: 48px;
    }
}

@media (min-width: 1600px) {
    .contacts-bg {
        width: 100%;
    }
}
/*!***********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/main.css ***!
  \***********************************************************************/
.section-title {
    color: #FFF;
    font-size: clamp(20px, 6.5vw, 90px);
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    max-width: 1063px;
}
.section-title-colored {
    font-family: "Roboto", sans-serif;
    font-size: 27px;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    opacity: 0.34;
    background: linear-gradient(90deg, #6DE4EB 0%, #F8A750 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.main-banner {
    height: auto;
    padding-top: 60px;
    overflow: hidden;
}
.main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}
.banner-title {
    transform: translateX(30px);
    margin: 65px 0 46px;
}
.banner-title h1 {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: clamp(77px, 11.4vw, 160px);
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.banner-title h2 {
    font-family: "Lexend Exa", sans-serif;
    font-size: clamp(77px, 12.9vw, 186px);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    background: linear-gradient(90deg, #6DE4EB 0%, #F8A750 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin: -3% 0 0 auto;
    display: flex;
    align-items: center;
}
.banner-title h2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11vw;
    height: 11vw;
    animation: round 5s linear infinite;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100%;
}
.banner-title h2 a svg {
    width: 35%;
    height: auto;
}
@media (min-width: 1450px) {
    .banner-title h2 a {
        max-width: 155px;
        max-height: 155px;
    }
}
.banner-text {
    color: #FFF;
    font-size: 24px;
    line-height: normal;
}
.banner-text span {
    font-weight: 900;
    text-transform: uppercase;
}
.banner-bottom {
    width: 100%;
    margin: 0 30px;
}
.banner-bottom > .flex:nth-child(1) {
    width: 40%;
    max-width:475px;
    gap: 43px;
}
.banner-bottom > .flex:nth-child(2) { width: 60%; gap: 21px; }
.banner-bottom > .flex:nth-child(2) img:nth-child(1) {
    max-width: 362px;
    width: 50%;
    height: auto;
}
.banner-bottom > .flex:nth-child(2) img:nth-child(2) {
    max-width: 555px;
    width: 75%;
    height: auto;
}
.banner-slogan {
    margin-top: 85px;
}
.banner-slogan p {
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: clamp(30px, 4.5vw, 63px);
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4vw;
    text-transform: uppercase;
    opacity: 0.06;
    white-space: nowrap;
    transform: translate(-8.5%, 25px);
}

.about-us {
    margin-top: 133px;
    padding: 33px 0 140px;
}
.about-top { gap: 10px; }
.about-top-title {
    color: #FFF;
    font-size: clamp(20px, 6.5vw, 90px);
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    width: 50%;
    max-width: 609px;
}
.about-top-title span {
    opacity: 0.34;
    background: linear-gradient(90deg, #6DE4EB 0%, #F8A750 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Lexend Exa", sans-serif;
    font-size: clamp(10px, 2.2vw, 27px);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    transform: translateY(-16px);
    display: inline-block;
}
.about-text-block {
    width: 50%;
    max-width: 479px;
}
.about-text-block p {
    color: rgba(255, 255, 255, 0.77);
    font-size: 20px;
    line-height: 25.2px;
}
.about-text-block-btns {
    gap: 49px;
    margin-top: 51px;
}
.about-text-block-btns .outlined {
    width: 173px;
}
.about-main {
    margin: 137px 35px 87px 28px;
    min-height: 421px;
}
.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 42px;
}
.about-block {
    border-radius: 30px;
    border: 1px solid #FBFBFB;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    width: 32%;
    max-width: 400px;
    height: calc(100% - 50px);
    min-height: 372px;
}
.about-block h3 {
    color: #F5F5F7;
    font-size: 32px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: -0.32px;
    margin: 50px 0 28px;
}
.about-block p {
    color: #F5F5F7;
    font-size: 20px;
    line-height: normal;
    opacity: 0.72;
}
.about-block:nth-child(2) { transform: translate(-28px, -67px); }
.about-block:nth-child(3) { transform: translate(0, 87px); }
.about-block:nth-child(4) { transform: translate(35px, -33px); }

.approach {
    padding: 60px 0 120px;
}
.approach .orange-circle {
    border-radius: 258px;
    background: #C37B22;
    filter: blur(250px);
    width: 258px;
    height: 258px;
    top: 10%;
    left: 10%;
}
.approach .green-circle {
    width: 286px;
    height: 286px;
    border-radius: 286px;
    background: #02787B;
    filter: blur(250px);
    top: 20%;
    left: 40%;
}
.approach .right {
    width: 50%;
    max-width: 500px;
}
.approach .right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.approach-title {
    gap: 18px;
}
.approach-body {
    margin: 0 20px 0 35px;
}
.left {
    gap: 32px;
    width: 50%;
    max-width: 565px;
}
.left-top {
    color: rgba(255, 255, 255, 0.77);
    font-size: 30px;
    line-height: normal;
}
.left-top span { font-weight: 700; }
.left-bottom {
    color: rgba(255, 255, 255, 0.77);
    font-size: 20px;
    line-height: 25.2px;
}

.services {
    padding: 80px 0 120px;
}
.services-text {
    color: rgba(255, 255, 255, 0.77);
    font-size: 24px;
    line-height: 25.2px;
    margin: 18px 0 80px;
}
.services-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    border-radius: 30px;
}
.services-block-content {
    border-radius: 30px;
    border: 1px solid #FBFBFB;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 35px 64px 65px 37px;
    height: 315px;
}
.services-block-num {
    color: #FFF;
    font-size: 30px;
    line-height: 25.2px;
}
.services .mobile-btn { display: none; }
.services .desk-btn { left: 50%; transform: translateX(-50%); }
.services-block-title {
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 27px 0 23px;
}
.services-block-right {
    color: rgba(255, 255, 255, 0.77);
    font-size: 20px;
    line-height: 25.2px;
    width: 40%;
    max-width: 415px;
}
.services-block-tag {
    border-radius: 30px;
    border: 1px solid #FBFBFB;
    opacity: 0.5;
    color: #FFF;
    font-size: 15px;
    line-height: 25.2px;
    height: 34px;
    text-transform: lowercase;
}
.services-block-tags {
    row-gap: 12px;
    column-gap: 3px;
    max-width: 271px;
}
.services-block {
    transform: translateX(-20px);
    position: sticky;
}
.services-block-content {
    transform: translate(20px, -30px);
    width: calc(100% - 40px);
}
.services-blocks {
    gap: 100px;
}
.services-blocks .desk-btn {
    margin: 63px auto 0;
}

.services-block:nth-child(1) { top: 50px; }
.services-block:nth-child(2) { top: 120px; }
.services-block:nth-child(3) { top: 190px; }

.services-block:nth-child(1) .services-block-tag:nth-child(1) { width: 108px; }
.services-block:nth-child(1) .services-block-tag:nth-child(2) { width: 147px; }
.services-block:nth-child(1) .services-block-tag:nth-child(3) { width: 155px; }
.services-block:nth-child(1) .services-block-tag:nth-child(4) { width: 108px; }

.services-block:nth-child(2) .services-block-tag:nth-child(1) { width: 155px; }
.services-block:nth-child(2) .services-block-tag:nth-child(2) { width: 108px; }
.services-block:nth-child(2) .services-block-tag:nth-child(3) { width: 170px; }

.services-block:nth-child(3) .services-block-tag:nth-child(1) { width: 108px; }
.services-block:nth-child(3) .services-block-tag:nth-child(2) { width: 147px; }
.services-block:nth-child(3) .services-block-tag:nth-child(3) { width: 209px; }


.services-block:nth-child(4) .services-block-tag:nth-child(1) { width: 108px; }
.services-block:nth-child(4) .services-block-tag:nth-child(2) { width: 147px; }
.services-block:nth-child(4) .services-block-tag:nth-child(3) { width: 209px; }

.achievements {
    margin-top: 140px;
    padding: 60px 0;
}
.achievements-left {
    width: 65%;
    max-width: 790px;
}
.achievements-left p {
    color: rgba(255, 255, 255, 0.77);
    font-size: 24px;
    line-height: 25.2px;
}
.achievements-left h2 {
    margin: 18px 0;
}
.achievements-stat {
    font-family: "Caveat", cursive;
    font-size: 153px;
    line-height: normal;
    text-transform: uppercase;
    width: fit-content;
    background: linear-gradient(90deg, #6DE4EB 0%, #F8A750 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    bottom: -20%;
    right: 10%;
    padding-right: 15px;
    transform: rotate(-19deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.achievements-slog {
    position: absolute;
    font-family: "Roboto", sans-serif;
    font-size: 140px;
    letter-spacing: -1.5px;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(109, 228, 235, 0.08) 0%, rgba(248, 167, 80, 0.08) 100%);
    width: fit-content;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    top: -26%;
    z-index: -2;
    left: 41%;
    transform: translateX(-50%);
}
.swiper-container {
    width: 100%;
    height: 400px;
    margin: 255px 0 305px;
}
.slider { overflow: hidden; }
.slider-content {
    max-width: 1570px;
    overflow: hidden;
    margin: 0 auto;
}
@media (min-width: 1500px) {
    .slider-content {  padding: 0 90px; }
}
.swiper-slide-prev, .swiper-slide-next {
    z-index: 99;
}
.swiper-wrapper {
    margin-left: 6%;
}
.swiper-slide {
    position: relative;
    display: flex !important;
    align-items: center;
    width: 35% !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-right: 80px;
}
.swiper-slide-active {
    transform: scale(1.3) !important;
    margin-right: 60px !important;
}
.swiper-slide-active .achievements-stat, .swiper-slide-active .achievements-slog {
    opacity: 1;
}
.achievements-slide {
    user-select: none;
    border-radius: 30px;
    border: 1px solid #FBFBFB;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 418px;
    min-width: 418px;
    height: 373px;
    position: relative;
}
.achievements-slide h3 {
    color: #FFF;
    font-family: "Roboto",sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    max-width: 304px;
    margin: 14px 0 37px;
}
.achievements-slide p:not(.achievements-slog) {
    color: #F5F5F7;
    font-size: 14px;
    line-height: normal;
    opacity: 0.72;
    max-width: 325px;
}
.achievements-slide img {
    width: 53px;
    height: auto;
}
.orange-ellipse {
    border-radius: 311px;
    background: #C37B22;
    filter: blur(250px);
    width: 311px;
    height: 311px;
    left: 25%;
    top: 35%;
    z-index: 1;
}
.green-ellipse {
    border-radius: 346px;
    background: #02787B;
    filter: blur(250px);
    width: 346px;
    height: 345px;
    left: 50%;
    top: 55%;
    z-index: 1;
}

.contacts {
    padding: 20px 0 127px;
}
.contacts .section-title {
    margin: 0 auto;
    max-width: 865px;
}
.contacts-text {
    color: rgba(255, 255, 255, 0.77);
    text-align: center;
    font-size: clamp(10px, 2.4vw, 25px);
    line-height: normal;
    margin: 37px auto 71px;
    max-width: 560px;
}
.contacts-body {
    gap: 8%;
}
.contacts-body > img {
    width: 50%;
    max-width: 604px;
}
.contacts-body form {
    width: 70%;
}

@media (max-width: 1280px) {
    .swiper-slide {
        width: 40% !important;
    }
    .swiper-slide-active { margin-right: 80px !important; }
    .achievements-slog { left: 46%; }
    .approach-body {
        margin: 32px 0 0;
        gap: 16px;
        width: calc(100% + 20px);
    }
}

@media (max-width: 1024px) {
    .swiper-slide {
        width: 35% !important;
    }
    .swiper-slide-active {
        width: 45% !important;
    }
    .achievements-slide {
        width: 100%;
        min-width: 100%;
    }
    .achievements-slog {
        font-size: clamp(80px, 12vw, 100px);
        left: 50%;
        top: -17%;
    }
    .banner-slogan p {
        transform: translate(-13%, 33%);
    }
    .banner-title {
        margin: 60px 0 40px;
        transform: translateX(0);
    }
    .banner-bottom { margin: 0; }
    .banner-bottom > .flex:nth-child(1) { width: 55%; }
    .banner-bottom > .flex:nth-child(2) { width: 45%; }
    .banner-bottom > .flex:nth-child(2) img:nth-child(1) { width: 60%; }
    .banner-bottom > .flex:nth-child(2) img:nth-child(2) { width: 90%; }

    .about-top {
        flex-direction: column;
        gap: 32px;
    }
    .about-top-title, .about-text-block {
        width: 100%;
        max-width: none;
    }
    .about-main {
        flex-direction: column;
        gap: 30px;
        position: sticky;
        top: 0;
        padding: 24px;
        margin: 80px 0 60px;
    }
    .about-block {
        position: sticky;
        width: 100%;
        max-width: none;
    }
    .about-block:nth-child(2) { transform: translate(0, 0); top: 30px; }
    .about-block:nth-child(3) { transform: translate(0, 0); top: 70px; }
    .about-block:nth-child(4) { transform: translate(0, 0); top: 100px; }

    .contacts-body { gap: 15px; }
    .contacts-body > img { width: 40%; }
}

@media (max-width: 768px) {
    .section-title-colored {
        font-size: 20px;
    }
    .main-banner { padding: 15px 0 0; overflow: visible; }
    .banner-title { margin: 148px 0 47px; align-items: center }
    .banner-title h1 {
        font-size: clamp(30px, 15.7vw, 90px);
    }
    .banner-title h2 {
        font-size: clamp(30px, 17.9vw, 90px);
        margin: -5px 0 0;
    }
    .banner-title h2 a {
        width: 14vw;
        max-width: 75px;
        height: 14vw;
        max-height: 75px;
    }
    .banner-bottom {
        flex-direction: column;
        gap: 107px;
    }
    .banner-bottom > .flex:nth-child(1) {
        width: 95%;
        text-align: center;
        gap: 50px;
        align-items: center;
    }
    .banner-text { font-size: 18px; }
    .banner-bottom > .flex:nth-child(2) { width: 100%; gap: 13px; }
    .banner-bottom > .flex:nth-child(2) img:nth-child(1) { width: 70%; }
    .banner-bottom > .flex:nth-child(2) img:nth-child(2) { width: 100%; }
    .banner-slogan { overflow: hidden; margin-top: 29px; width: 100vw; margin-left: -20px; }
    .banner-slogan p { transform: translate(0, 0); font-size: clamp(12px, 4vw, 30px); }
    .main-banner > img { height: 102%; }

    .about-us { padding: 40px 0 30px; margin-top: 40px; }
    .about-top-title {
        font-size: clamp(20px, 14vw, 50px);
    }
    .about-top-title span {
        font-size: clamp(10px, 10vw, 25px);
        transform: translateY(-8px);
    }
    .about-text-block p { font-size: 18px; }
    .about-text-block-btns { margin-top: 32px; gap: 6px; }
    .about-text-block-btns .outlined { width: 123px; }
    .about-main { margin: 47px 0 0; }
    .about-main-img {
        position: absolute;
        height: 100%;
        width: 100%;
        overflow: hidden;
        border-radius: 42px;
        left: 0;
        top: 0;
    }
    .about-main-img img { width: auto; position: relative; }
    .about-block:nth-child(2) > img { width: 47px; }
    .about-block:nth-child(3) > img { width: 47px; }
    .about-block:nth-child(4) > img { width: 47px; }
    .about-block { padding: 20px; }
    .about-block h3 {
        font-size: 20px;
        letter-spacing: -0.2px;
        margin: 27px 0 8px;
    }
    .about-block p {
        font-size: 18px;
    }

    .services { padding: 60px 0 50px; }
    .services-top > img { width: 108px; max-height: 31px; }
    .services-text {
        font-size: 20px;
        line-height: 25.2px;
        margin: 32px 0;
    }
    .services .mobile-btn {
        display: block;
        width: fit-content;
    }
    .services-blocks {
        gap: 35px;
        margin: 47px 0 0;
        padding: 32px 0 0 23px;
        flex-direction: row;
        overflow-x: auto;
        width: calc(100vw - 20px);
    }
    .services-blocks button { display: none; }
    .services-block {
        transform: translateX(0);
        position: relative;
        top: 0 !important;
        width: calc(100vw - 65px);
        min-width: calc(100vw - 65px);
        min-height: 500px;
    }
    .services-block-content {
        flex-direction: column;
        padding: 30px 16px 50px;
        gap: 82px;
        height: calc(100% + 23px);
        transform: translate(-23px, -32px);
        width: calc(100% + 9px);
    }
    .services-block-num {
        font-size: 20px;
        line-height: 25.2px;
    }
    .services-block-title {
        font-size: 30px;
    }
    .services-block-tags { max-width: none; }
    .services-block-right {
        width: 100%;
        font-size: 18px;
    }

    .contacts { padding: 20px 0 90px; }
    .contacts-body > img { display: none; }
    .contacts-body form {
        width: 100%;
    }
    .contacts-text {
        font-size: 20px;
        line-height: 25.2px;
        margin: 32px 0 42px;
    }
    .form-inputs { max-width: 100%; }

    .inputs { flex-direction: column; }
    .section-title {
        font-size: clamp(20px, 11vw, 40px);
    }

    .achievements {
        overflow: hidden;
        margin-top: 60px;
        padding: 30px 0 0;
    }
    .achievements-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .achievements-left {
        width: 100%;
    }
    .achievements-left h2 {
        margin: 8px 0 32px;
    }
    .achievements-left p {
        font-size: 20px;
    }
    .achievements-top a {
        width: 155px;
        height: 40px;
        margin: 40px 0 0;
    }
    .achievements-top a button {
        width: 100%;
        height: 100%;
    }
    .achievements .orange-ellipse, .achievements .green-ellipse { display: none; }
    .achievements-slog {
        font-size: clamp(20px, 13.5vw, 80px);
        top: -14%;
    }
    .achievements-stat {
        font-size: 78px;
        bottom: 4%;
        right: 2%;
    }
    .achievements-slide {
        padding: 16px 32px 46px;
        justify-content: flex-start;
    }
    .achievements-slide p:not(.achievements-slog) {
        font-size: 18px;
    }
    .achievements-slide h3 {
        font-size: 20px;
        margin: 27px 0;
    }
    .swiper-container {
        margin: 104px 0 70px;
    }
    .swiper-slide {
        width: 53% !important;
        max-width: 350px;
        margin-right: 14px !important;
    }
    .swiper-slide-active {
        transform: scale(1) !important;
        margin-right: 14px !important;
    }

    .approach { padding: 60px 0 30px; }
    .approach-title {
        gap: 4px;
    }
    .approach-body {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .approach .left {
        width: 100%;
    }
    .left-top {
        font-size: 25px;
    }
    .left-bottom {
        font-size: 18px;
    }
    .approach .green-circle { display: none; }
    .approach .right {
        width: 80%;
        max-width: 400px;
        margin: -7% -20% auto auto;
    }
    .approach .orange-circle { top: 0; left: 15%; }
}

@media (max-width: 590px) {
    .swiper-slide {
        width: 80% !important;
        max-width: none;
        min-width: 316px;
    }
    .swiper-wrapper {
        margin-left: 1%;
    }
    .achievements-slog {
        font-size: clamp(40px, 20vw, 58px);
        top: -9%;
    }
    .approach .section-title {
        font-size: clamp(20px, 10vw, 40px);
    }
}
@media (max-width: 350px) {
    .swiper-slide {
        min-width: 90%;
    }
}
/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/privacy.css ***!
  \**************************************************************************/
.privacy-bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 0;
}
.privacy-title h1 {
    color: #FFF;
    font-size: clamp(90px, 11.4vw, 160px);
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.privacy-banner .container {
    position: relative;
    z-index: 2;
}
.privacy-banner {
    padding: 60px 0 86px;
}
.privacy-title > .flex:nth-child(1) img {
    width: 30%;
    max-width: 272px;
}
.privacy-title > .flex:nth-child(2) img {
    width: 40%;
    max-width: 417px;
}
.privacy-title > .flex:nth-child(2) h2 {
    font-family: "Lexend Exa", sans-serif;
    font-size: clamp(77px, 11.5vw, 186px);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    background: linear-gradient(90deg, #6DE4EB 0%, #F8A750 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin: -3% 0 0 auto;
    display: flex;
    align-items: center;
}
.privacy-title > .flex:nth-child(2) h2 a {
    width: 9vw;
    height: 9vw;
    animation: round 5s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 150px;
    max-width: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100%;
}
.privacy-title > .flex:nth-child(2) h2 a svg {
    width: 35%;
    height: auto;
}
.privacy-title { margin: 58px 0 31px; }
.privacy-text {
    color: #D1D0CF;
    font-size: 20px;
    font-weight: 600;
    line-height: 33px;
    margin: 0 auto 51px;
}
.privacy-desc {
    color: rgba(255, 255, 255, 0.77);
    font-size: 30px;
    line-height: normal;
    max-width: 1120px;
    width: 100%;
    font-weight: 400;
    margin: 0 auto;
}
.privacy-desc a, .privacy-desc a:visited, .privacy-desc span {
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.77);
}

.privacy-body {
    padding: 140px 0 127px;
}
.privacy-body-content { gap: 61px; }
.privacy-block h4 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    margin-bottom: 25px;
}
.privacy-block p, .privacy-block li, .privacy-block a, .privacy-block a:visited {
    opacity: 0.8;
    color: #ADAEAE;
    font-size: 20px;
    line-height: 25.2px;
    text-decoration: none;
}
.privacy-block {
    width: 100%;
    max-width: 917px;
}
.privacy-body ul {
    margin-left: 25px;
}

@media (max-width: 768px) {
    .privacy-banner {
        padding: 15px 0 102px;
    }
    .privacy-title {
        margin: 105px 0 39px;
        align-items: center;
    }
    .desk-img { display: none; }
    .privacy-title-img {
        margin: 0 auto;
        display: block;
        max-height: none;
        height: auto;
        width: calc(100% - 13px);
    }
    .privacy-title h1 {
        font-size: clamp(30px, 15.7vw, 90px);
    }
    .privacy-title > .flex:nth-child(2) h2 {
        font-size: clamp(30px, 17.9vw, 90px);
    }
    .privacy-title > .flex:nth-child(2) h2 a {
        width: 14vw;
        height: 14vw;
    }
    .privacy-text { display: none; }
    .privacy-desc {
        color: #FFF;
        text-align: center;
        font-size: 20px;
        opacity: 0.8;
        line-height: 26px;
    }
    .privacy-block h4 {
        color: #FFF;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        line-height: 25.2px;
        margin-bottom: 10px;
    }
    .privacy-block p, .privacy-block li, .privacy-block a, .privacy-block a:visited {
        color: #ADAEAE;
        text-align: center;
        font-size: 18px;
        line-height: 26px;
        opacity: 0.8;
    }
    .privacy-body-content { gap: 54px; }
    ul { list-style: none; }
    .privacy-body { padding: 0 0 76px; }
}
/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/swiper-bundle.css ***!
  \*****************************************************************************************/
/**
 * Swiper 11.1.14
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 12, 2024
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
: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;
  /* Fix of Webkit flickering */
  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: translate3d(0px, 0, 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;
}
/* Auto Height */
.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;
}
/* 3D Effects */
.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;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.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);
}
/* Slide styles start */
/* 3D Shadows */
.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,
.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: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.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(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.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 {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}

/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/swiper.css ***!
  \**********************************************************************************/
/**
 * Swiper 11.1.14
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 12, 2024
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
: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;
  /* Fix of Webkit flickering */
  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: translate3d(0px, 0, 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;
}
/* Auto Height */
.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;
}
/* 3D Effects */
.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;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.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);
}
/* Slide styles start */
/* 3D Shadows */
.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,
.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: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.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(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/*!**********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/modules/navigation.css ***!
  \**********************************************************************************************/
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */

/*!**********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/modules/pagination.css ***!
  \**********************************************************************************************/
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}

