/*
Theme Name: BrightBridge
Author: Ocean Agency
Author URI: https://ocean-agency.com.ua/
Description: BrightBridge Landing
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');

/* === Base Container === */
*,
::after,
::before {
    box-sizing: border-box;
}

:root {
    scroll-behavior: smooth
}

html {
    font-size: 16px;
}

body {
    max-width: 1440px;
    margin: 0 auto;
    font-family: Manrope;
    font-size: 16px;
    line-height: 24px;
    min-height: 100vh;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    background: #fafbff;
}

/* === Flexbox Utilities === */
.s-flex {
    display: flex;
}

.s-inline-flex {
    display: inline-flex;
}

.s-column {
    flex-direction: column;
}

.s-row {
    flex-direction: row;
}

.s-wrap {
    flex-wrap: wrap;
}

.s-nowrap {
    flex-wrap: nowrap;
}

.s-j-start {
    justify-content: flex-start;
}

.s-j-center {
    justify-content: center;
}

.s-j-end {
    justify-content: flex-end;
}

.s-j-between {
    justify-content: space-between;
}

.s-j-around {
    justify-content: space-around;
}

.s-a-start {
    align-items: flex-start;
}

.s-a-center {
    align-items: center;
}

.s-a-end {
    align-items: flex-end;
}

.s-a-stretch {
    align-items: stretch;
}

.s-center {
    justify-content: center;
    align-items: center;
}

.s-grow {
    flex-grow: 1;
}

.s-shrink {
    flex-shrink: 1;
}

/* === Gap Utilities === */
.s-gap-4 {
    gap: 4px;
}

.s-gap-8 {
    gap: 8px;
}

.s-gap-12 {
    gap: 12px;
}

.s-gap-16 {
    gap: 16px;
}

.s-gap-24 {
    gap: 24px;
}

.s-gap-32 {
    gap: 32px;
}

.s-gap-40 {
    gap: 40px;
}

.s-gap-48 {
    gap: 48px;
}

.s-gap-56 {
    gap: 56px;
}

/* === Section Spacing === */
.section {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .section {
        margin-bottom: 40px;
    }
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #FEE9E7;
}

::-webkit-scrollbar-thumb {
    background: #F98D80;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F98D80;
}

/* === Misc Utilities === */
.s-full {
    width: 100%;
}

.s-max {
    max-width: 100%;
}

.s-text-center {
    text-align: center;
}

.s-hide {
    display: none !important;
}

.s-h5 {
    font-family: Manrope;
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
    margin: 0px;
    padding: 0px;
}

.s-body-m-regular {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

}

.s-color-content-primary {
    color: #0C0F2B
}

a {
    font-family: Manrope;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    color: #FFFFFF;
    text-decoration: none;
}

header {
    position: relative;
    /* background: url(assets/images/hero_v2.jpeg) no-repeat center center; */
    background-color: #000;
    height: 700px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: 1;
    user-select: none;
    /* Standard syntax */
    -webkit-user-select: none;
    /* Safari, Chrome, Opera */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE 10+ */
    -webkit-touch-callout: none;
    /* iOS Safari */
}

.hero_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    mix-blend-mode: hard-light;
    z-index: 1;
} */

.s-container {
    max-width: 1019px;
    margin: 0 auto;
}

header>* {
    position: relative;
    z-index: 2;
}

header {
    padding: 24px 80px;

}

.sidebar-container {
    position: fixed;
    width: 277px;
    top: 0px;
    z-index: 999;
    height: 100%;
}

.sidebar {
    padding-top: 2rem;
    height: 100%;
    padding-bottom: 1rem;
}

header ul,
.mobile-menu-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header li,
.mobile-menu-list li {
    list-style: none;
}

.lang-switcher {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    color: #fff;
    margin-top: 22px;
    gap: 18px;
    cursor: pointer;
}

.sidebar .contacts {
    margin-top: 68px;
}

.main-content {
    margin-left: 277px;
}

.s-h2 {
    font-family: "Prata";
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    text-transform: none;
    color: #FFFFFF;
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    text-align: center;
}

.s-h1 {
    font-family: "Sansation", sans-serif;
    font-weight: 300;
    font-size: 3.625rem;
    line-height: 72px;
    text-transform: uppercase;
    color: #0C0F2B;
}

h2.s-h2.hero-title {
    margin-left: -12px;
    padding-top: 30px;
}

.hero-button {
    display: flex;
    margin-left: -9px;
    margin-top: 4px;
    gap: 1rem;
}

@media (max-width: 620px) {
    .hero-button {
        flex-direction: column;
    }
}

.hero-button-top {
    justify-content: end;
}

.hero-horizontal-line {
    background: #B3B4C0;
    position: absolute;
    right: 0px;
    width: calc(100% - 277px);
    height: 1px;
    top: calc(50% - -35px);
}

.hero-vertical-line {
    position: absolute;
    background: #B3B4C0;
    top: 0px;
    height: 100%;
    width: 1px;
    left: 277px;
}

.sidebar .inverted,
.modal-mobile-menu.inverted,
.modal-mobile-menu.inverted a {
    color: #55576B !important;
}

.logo-normal {
    display: block;
}

.logo-inverted {
    display: none;
}

.inverted .logo-normal {
    display: none;
}

.inverted .logo-inverted {
    display: block;
}

.hero-horizontal-line-sidebar {
    background: #B3B4C0;
    position: absolute;
    left: -80px;
    width: 277px;
    height: 1px;
    top: 485px;
}

nav ul a:hover {
    text-decoration: underline;
}

.sidebar .inverted a.btn.grad>* {
    color: #0C0F2B !important;
}

.mobile-header {
    display: none;
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    60% {
        opacity: 1;
        transform: translateX(30px);
    }

    80% {
        opacity: 1;
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.sidebar__btn.s-hide {
    display: none;
    opacity: 0;
    transform: translateX(-100%);
    transition: none;
}


.scrolled .sidebar__btn.s-hide {
    display: flex !important;
    animation: bounceInLeft 0.6s ease-out forwards;
    opacity: 1;
    margin-top: 8px;
    margin-left: 4px;
}




.scrolled .hero-horizontal-line-sidebar {
    top: 557px;
}

.mobile-menu-wrapper {
    display: none;
}

.main-content-wrapper {
    color: #0C0F2B
}

footer {
    background: #27292E;
    color: #fff;
    position: relative;

}


footer .s-container {
    border-left: 2px #B3B4C0 solid;
    margin-left: 277px;
    padding: 40px 0px 40px 64px;
    max-width: 1083px;
}

.footer-top-contacts {
    justify-content: flex-end;
    text-align: right;
}

.footer-top-contacts a {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

}

.footer-top-social-links {
    justify-content: flex-end;
}

.footer-top-logo img {
    width: 225;
}

.footer-bottom-links a {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;

}

.footer-bottom {
    border-top: 1px #B3B4C0 solid;
    padding-top: 16px;
}

.footer-top {
    padding-bottom: 16px;
}

.main-content-wrapper .s-container {
    border-left: 2px #B3B4C0 solid;
    margin-left: 277px;
    padding: 28px 0px 0px 64px;
    max-width: fit-content;
}

.sidebar .btn.grad .inverted {
    color: #0C0F2B !important;
}

.card-reason {
    box-shadow: 0px 4px 16px 0px #ADACAC40;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    width: 360px;
}

ul.reason-list {
    margin: 0px;
    padding-left: 24px;
    padding-right: 0px;
    padding-top: 0px;
    margin-top: -6px;
}

div#why .s-h1 {
    margin-bottom: 40px;
}

.list-wrapper::-webkit-scrollbar {
    height: 4px;
    padding-left: 16px;
    /* горизонтальный */
}

.list-wrapper::-webkit-scrollbar-track {
    background: #FEE9E7;
}

.list-wrapper::-webkit-scrollbar-thumb {
    background: #e57465;

}



.list-wrapper {
    overflow-x: auto;
    padding-left: 16px;
    padding-right: 16px;

}

.list-outer {
    margin-left: -16px;
    overflow: hidden;
}

.list-wrapper.dragging {
    cursor: grabbing;
    user-select: none;
}

.list-wrapper {
    cursor: grab;
}

.list-of-reasons {
    width: fit-content;
    padding-bottom: 20px;
}

.list-of-services {
    max-width: 1019px;
}

.card-service {
    position: relative;
    background: #fff;
    padding: 1rem;
    box-shadow: 0px 4px 16px 0px #ADACAC40;
    border-radius: 0.75rem;
    width: calc(50% - 12px);
}

.card-service:nth-last-child(1):nth-child(odd) {
    width: 50%;
    margin: 0 auto;
}

.card-reason .s-h5 {
    min-height: 5rem;
}

.service-subtitle {
    font-size: .8rem;
    line-height: 1rem;
}

.service-header.s-flex {
    align-items: center;
}

.service-text-small ul {
    padding-left: 1.25rem;
    margin-top: 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

@media(max-width: 1020px) {
    .service-text-small ul {
        grid-template-columns: 1fr;
    }
}

.service-text-small li {
    padding: 0.375rem 0.625rem;
    display: block;
    background: #fff2f1;
    border-radius: 10px;
}

/* .service-text-small li::before {
    content: "- ";
} */

.service-text-small ul li strong {
    color: #e57465;
}

@media (max-width: 1439px) {
    .service-subtitle {
        font-size: 1rem;
        line-height: 1.125rem;
    }
}

@media (max-width: 920px) {
    .card-service {
        width: calc(50% - 12px);
    }
}

@media (max-width: 620px) {

    .card-service {
        width: 100% !important;
    }

    .service-text-small li br {
        display: none;
    }

    .service-icon {
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .service-header-text {
        padding-right: 3rem;
    }

    .card-service h5 {
        border-bottom: none;
    }

}

.service-icon img {
    display: block;
    width: 7.5rem;
    height: auto;
}

.card-process {
    box-shadow: 0px 4px 16px 0px #B2B2B240;
    background: #fff;
    border-radius: 8px;
    width: 333px;
}

.process-wrapper {
    padding: 0px 16px 16px;
    margin-top: -12px;
}

.process-icon {
    border-radius: 8px;
    position: relative;
}

.process-icon img {
    border-radius: 8px 8px 0px 0px;
    width: 100%;
    object-fit: cover;
    height: 200px;
}

.process-number {
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    font-family: Manrope;
    font-weight: 300;
    font-style: Light;
    font-size: 32px;
    line-height: 40px;

    color: #F98478;
    background: #fff;
    width: 72px;
    height: 72px;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 5px;
}

.s-l-regular {
    font-family: Manrope;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.5rem;

    margin-bottom: 1rem;
}

div#why,
div#reviews,
div#benefits,
div#process {
    margin-top: 4rem;
}

#process h2.s-h1 {
    padding-bottom: 0px;
    margin-bottom: 40px;
}

.list-of-process {
    width: fit-content;
    padding-bottom: 20px;
}

div#services h2.s-h1 {
    padding-top: 62px;
    margin-bottom: 42px;
}

#have-questions {
    background: url(assets/images/qa-1.png) no-repeat center center;
    background-size: cover;
    width: 1019px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin: 117px 0px 80px;
    padding: 0px 19px 80px;
    font-family: Manrope;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;

    text-align: center;
}

div#have-questions .s-h1 {
    font-weight: 300;
    font-style: Light;
    font-size: 56px;
    line-height: 64px;

    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding-top: 35px;
    padding-bottom: 0px;
    margin-bottom: -24px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    width: 1019px;
}

.grid-container .item {
    padding: 2rem;
    border-right: 1px solid #B3B4C0;
    border-bottom: 1px solid #B3B4C0;
}

.grid-container .item:nth-child(2n) {
    border-right: none;
}

.grid-container .item:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
    border-right: none;
    border-bottom: none;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #ffefed;
}

.item-number {
    font-family: Manrope;
    font-weight: 300;
    font-size: 4rem;
    line-height: 4rem;
    text-transform: uppercase;
    color: #F98D80;
}

.item-header h5 {
    font-size: 1.75rem;
    line-height: 2rem;
}

#benefits h2.s-h1 {
    margin-top: 42px;
    margin-bottom: 0px;
}

.card-review {
    padding: 24px 16px;
    background: #fff;
    box-shadow: 0px 4px 16px 0px #ADACAC40;
    border-radius: 12px;
    width: 463px;
}

.review-text {
    font-family: Manrope;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;

    text-align: center;
}

.review-author-name {
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;

    text-align: center;
}

.review-author-position {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    text-align: center;
}

div#reviews h2.s-h1 {
    margin-bottom: -18px;
}

.s-flex.s-gap-32.list-of-reviews {
    width: fit-content;
    padding-bottom: 20px;
}

div#faq {
    width: 1019px;
    max-width: 100%;
}

.faq-item {
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 4px 16px 0px #ADACAC40;
}

.faq-item {
    cursor: pointer;
}

.faq-item-header .s-h5 {
    font-family: Manrope;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}

.faq-item .faq-item-content {
    height: 0px;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq-item.active .faq-item-content {
    height: auto;
}

.faq-item .faq-item-header-icon {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.faq-item.active .faq-item-header-icon {
    transform: rotate(-90deg);
}

div#faq {
    margin-top: 120px;
}

div#faq .s-h1 {
    padding: 0px;
    margin: 0px;
    margin-bottom: 12px;
}

a#show-more-faq {
    margin-top: 16px;
}

.s-flex.col-left {
    width: 477px;
    max-width: 100%;
}

.col-right {
    width: 522px;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0px 4px 16px 0px #ADACAC40;
    background: #fff;
    gap: 24px;
    max-width: 100%;
}

input[type="text"],
input[type="tel"],
textarea,
input[type="email"] {
    border: unset;
    border-bottom: 1px solid #D7D8DA;
    padding: 16px 0px 6px;
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    color: #0C0F2B;
    width: 100%;
}

input.wpcf7-not-valid,
textarea.wpcf7-not-valid {
    border-bottom: 1px solid #980C0E;
}

span.wpcf7-not-valid-tip {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;

    color: #980C0E;
    display: contents;
}

div#contacts .s-h1 {
    margin-block: 0px;
    padding-bottom: 16px;
}

div#contacts {
    margin-top: 122px;
}

div#contacts .s-flex.s-column.s-gap-16 {
    gap: 8px;
}

.smaller-note {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;

    color: #0C0F2B;
}

textarea {
    height: 89px;
    resize: none;
}

.smaller-note {
    padding-top: 8px;
    padding-bottom: 16px;
}

div#contacts {
    background: url(assets/images/contact_back.png) no-repeat -30px bottom;
    background-size: contain;
    width: 1019px;
    max-width: 100%;
    padding-bottom: 100px;
}

input::placeholder,
textarea::placeholder {
    color: #55576B;
    opacity: 1;
}

input:hover,
textarea:hover {
    border-bottom: 1px solid #B3B4C0;
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom: 1px solid #F98D80;

}

.lang-list a {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

}

.lang-switcher {
    position: relative;
}

.lang-list {
    position: absolute;
    left: 0px;

    display: none;
    height: 0;
    transition: height 0.4s ease;
}

.lang-list.open {
    display: flex;
    top: -10px;
    height: auto;
    flex-direction: column;
    gap: 4px;
}

.lang-switcher.open span.curr_lang {
    opacity: 0;
}

.wpcf7-response-output {
    display: none !important;
}

.modal-window {
    position: fixed;
    bottom: 10%;
    width: 600px;
    max-width: calc(100% - 32px);
    display: none;
    gap: 40px;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0px 4px 16px 0px #B3B3B340;
    background: #fff;
    left: 50%;
    justify-content: space-between;
    transform: translateX(-50%) translateY(40px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 32;
}

.modal-window.open {
    display: flex;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.modal-close {
    cursor: pointer;
}

.modal-text {
    flex: 2;
}

.sidebar .inverted .lang-list.open a {
    color: #55576B;
}

@media (max-width: 1439px) {
    .mobile-menu-wrapper.active {
        display: block;
    }

    .sidebar-container {
        display: none;
    }

    .main-content {
        margin: 0px;
        padding: 0px 1rem 3rem;
        width: 100%;
    }

    header {
        padding: 0px;
        height: auto;
    }

    .hero-horizontal-line {
        display: none;
    }

    .hero-vertical-line {
        display: none;
    }

    h2.s-h2.hero-title {
        font-weight: 300;
        font-size: 2.375rem;
        line-height: 2.5rem;
    }

    .s-container {
        padding: 0px 16px;
    }

    .main-content .s-container {
        border-left: 1px #B3B4C0 solid;
        border-right: 1px #B3B4C0 solid;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero-button {
        margin: unset;
        width: 100%;
        max-width: 480px;
    }

    .hero-button a.btn.grad {
        width: 100%;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0px;
    }

    h2.s-h2.hero-title {
        margin: 0px;
        padding-top: 24px;
    }

    .mobile-burger {
        cursor: pointer;
    }

    .modal-mobile-menu {
        position: fixed;
        top: 0px;
        background: #ffffff;
        z-index: 9;
        right: 0px;
        width: 335px;
        height: 100%;
        border-radius: 16px 0px 0px 16px;
        color: #0C0F2B;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #3E4673C9;
        z-index: 8;
    }

    .lang-switcher.inverted {
        color: #55576B;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* flex: 1; */
    }

    .mobile-menu-close {
        padding-right: 16px;
        padding-top: 22px;
    }

    .modal-mobile-menu.inverted {
        padding-top: 6px;
        padding-left: 8px;
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    .modal-mobile-menu.inverted .s-container {
        display: flex;
        height: 100%;
        gap: 1rem;
        flex-direction: column;
        justify-content: flex-start;
    }

    .mobile-menu-list.inverted {
        flex: 1;
        padding-top: 10px;
        overflow-y: auto;
    }

    .mobile-menu-footer-btn a {
        width: fit-content;
    }

    .mobile-menu-footer-btn {
        padding-top: 1rem;
        margin-top: auto;
    }

    .mobile-menu-footer-btn a.btn.grad {
        color: #0C0F2B !important;
        margin-bottom: 1rem;
        position: relative;
        padding: .25rem .5rem;
        width: 100%;
        text-align: left;
        justify-content: left;
    }

    .mobile-menu-footer-btn a.btn.grad::after {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 0H2.8V1.5792L11.2952 1.5848L0 12.88L1.12 14L12.4152 2.7048L12.4208 11.2H14V0Z' fill='%230C0F2B' /%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;

    }

    .mobile-menu-wrapper {
        position: fixed;
        inset: 0;
        z-index: 1000;
        pointer-events: none;
    }

    .modal-mobile-menu,
    .mobile-menu-overlay {
        transition: all 0.3s ease;
    }

    /* Активные состояния */
    .mobile-menu-wrapper.active {
        pointer-events: auto;
    }

    .mobile-menu-wrapper.active .modal-mobile-menu {
        transform: translateX(0);
    }

    .mobile-menu-wrapper.active .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    /* Базовые стили для элементов */
    .mobile-menu-close {
        cursor: pointer;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .mobile-menu-wrapper.active .mobile-menu-overlay {
        display: block;
    }

    @keyframes bounceInRight {
        0% {
            transform: translateX(100%);
        }

        50% {
            transform: translateX(-15px);
        }

        70% {
            transform: translateX(8px);
        }

        85% {
            transform: translateX(-4px);
        }

        100% {
            transform: translateX(0);
        }
    }

    .mobile-menu-wrapper.active .modal-mobile-menu {
        animation: bounceInRight 0.9s cubic-bezier(0.25, 1.25, 0.5, 1) forwards;
    }

    .mobile-menu-footer-contacts a {
        font-family: Manrope;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;

    }

    .mobile-menu-footer-social {
        display: flex;
        gap: 12px;
    }

    .mobile-menu-footer {
        border-top: 1px #B3B4C0 solid;
        margin-top: auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
        height: 160px;
    }

    .mobile-menu-footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-bottom: 22px;
    }

    footer .s-container {
        margin: 0px;
        padding: 0px;
        max-width: 100%;
        border-left: none;
    }

    .s-column-mobile {
        flex-direction: column;
    }

    .footer-top-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-top-social {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-top-contacts {
        text-align: center;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
    }

    .s-mobile-reverse {
        flex-direction: column-reverse;
    }

    .footer-top-logo img {
        max-width: 172px;
    }

    footer {
        padding-top: 24px;
    }

    .footer-top-social {
        padding-top: 24px;
    }

    .footer-bottom {
        padding-top: 8px;
    }

    .footer-bottom-links.s-column-mobile.s-flex.s-gap-16 {
        gap: 8px;
        text-align: center;
    }

    .footer-top-logo-text.s-hide-desktop {
        padding-top: 24px;
    }

    .footer-created-by {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .main-content-wrapper .s-container {
        margin: 0px;
        padding: 0px 16px;
    }

    .s-h1 {
        font-weight: 300;
        font-style: Light;
        font-size: 32px;
        line-height: 40px;

    }

    .card-service .service-icon img {
        width: 64px;
        height: 64px;
    }

    .card-reason {
        width: 343px;
    }

    h5.s-h5 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .service-text {
        padding-bottom: 16px;
    }

    .card-service {
        padding: 1rem;
        gap: 1rem;
    }

    div#services h2.s-h1 {
        padding-top: 40px;
        margin-bottom: 24px;
    }

    /* .service-icon {
        padding-bottom: 18px;
    } */

    .card-reason img {
        width: 80px;
        height: 80px;
    }

    div#why .s-h1 {
        margin-bottom: 25px;
    }

    div#process {
        margin-top: 36px;
    }

    #process h2.s-h1 {
        margin-bottom: 18px;
    }

    div#have-questions {
        max-width: calc(100vw - 0px);
        margin-left: -18px;
        border-radius: 0px;
        margin-top: 65px;
        padding-bottom: 163px;
        /* margin-right: -16px; */
        font-family: Manrope;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;

        text-align: center;
        background-size: cover;
    }

    div#have-questions .s-h1 {
        font-family: Manrope;
        font-weight: 300;
        font-size: 32px;
        line-height: 40px;

        text-align: center;
        padding-top: 137px;
        padding-bottom: 0px;
    }

    .grid-container {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        margin-top: -24px;
    }

    .item-number {
        font-weight: 300;
        font-size: 2.5rem;
        line-height: 3rem;
        flex: 0 0 64px;
        text-align: center;
    }

    .item-inner.s-flex.s-column.s-gap-8 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .item-header {
        flex: 0 0 calc(100% - 75px);
    }

    .grid-container .item {
        padding: 16px 0px;
        border-right: unset;
    }

    .item-header .s-h5 {
        font-family: Manrope;
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;

        padding-left: 12px;
    }

    #benefits h2.s-h1 {
        margin-top: -18px;
    }

    .card-review {
        width: 343px;
    }

    .grid-container .item:nth-last-child(1):nth-child(odd) {
        border-bottom: 1px solid #B3B4C0;
    }

    div#reviews {
        margin-top: 38px;
    }



    .review-text {
        font-family: Manrope;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;

        text-align: center;
    }

    .card-review {
        padding: 24px 20px;
        gap: 8px;
    }

    .review-wrapper.s-a-center.s-flex.s-column.s-gap-8 {
        gap: 4px;
    }

    .review-author-name {
        font-family: Manrope;
        font-weight: 700;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
    }

    .review-author-position {
        font-family: Manrope;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
    }

    .s-flex.s-gap-32.list-of-reviews,
    .list-of-process,
    .list-of-reasons {
        padding-bottom: 20px;
    }

    div#faq {
        margin-top: 136px;
    }

    div#faq .s-h1 {
        margin-bottom: 0px;
    }

    a#show-more-faq {
        margin-top: 0px;
    }

    div#contacts {
        background: unset;
        padding-bottom: 48px;
        padding-top: 10px;
    }

    .col-right {
        background: unset;
        box-shadow: unset;
        padding: 0px;
    }

    input[type="text"],
    textarea,
    input[type="email"] {
        background: unset;
    }

    div#contacts .s-h1 {
        padding-bottom: 0px;
    }

    .lang-switcher.open .lang-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    div#why,
    div#services,
    div#process,
    div#have-questions,
    div#benefits,
    div#reviews,
    div#faq,
    div#contacts {
        scroll-margin-top: 90px;
    }

}

@media (max-width: 768px) {
    .s-hide-mobile {
        display: none !important;
    }

    body.custom-scroll .mobile-header {
        position: fixed;
        width: calc(100%);
        top: 0px;
        left: 0px;
        height: 80px;
        padding: 0px;
        padding-left: 30px;
        padding-right: 30px;
        z-index: 1000;
        transition: background 0.3s ease, backdrop-filter 0.3s ease;
    }

    .mobile-header.invert {
        background: #f9fafe21;
        backdrop-filter: blur(9px);
    }

    body.custom-scroll .mobile-header.invert {
        background: #3e467357;
        backdrop-filter: none;
    }

    .mobile-header.invert img {
        filter: invert(1);
    }

    body.custom-scroll .main-content>* {
        padding-top: 120px;
    }

    .simplebar-scrollbar:before {
        position: absolute;
        content: '';
        background: #F98D80 !important;
        border-radius: 7px;
        left: 2px;
        right: 2px;
        opacity: 0;
        transition: opacity .2s .5s linear;
    }
}

@media (min-width: 769px) {
    .s-hide-desktop {
        display: none !important;
    }
}

/* === Button Styles === */
.btn.grad {
    background: linear-gradient(90deg, #FFFFFF 0%, #F98478 24.52%, #F98478 49.04%, #FFFFFF 74%, #FFFFFF 100%);
    background-size: 200% 100%;
    background-position: 50% 50%;
    transition: background-position 0.5s ease;
    border: none;
    border-radius: 60px;
    padding: 12px 24px;
    font-family: Manrope;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0C0F2B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0C0F2B;
}

.btn.grad:hover {
    background-position: 0% 50%;
    box-shadow: 0 4px 12px rgba(249, 132, 120, 0.3);
}

.btn.not-filled {
    background-size: 200% 100%;
    background-position: 50% 50%;
    background:
        linear-gradient(#fafbff, #fafbff) padding-box,
        linear-gradient(275.77deg, #FFFFFF 0%, #F98478 100%) border-box;
    border: 1px solid transparent;
    border-radius: 60px;
    padding: 12px 24px;
    font-family: Manrope, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0C0F2B;
    cursor: pointer;
    transition: background-position 0.8s ease;
    width: 343px;
    text-align: center;
}

.btn.not-filled:hover {
    background-position: 0% 50%;
    background: linear-gradient(#fafbff, #fafbff) padding-box,
        linear-gradient(275.77deg, #F98478 0%, #FFFFFF 100%) border-box;
}


.hero-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-advantage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
    padding: 1rem;
}

.hero-advantage-icon {
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-advantage-icon img,
.hero-advantage-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-advantage-text {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 400;
    color: #fff;
}

@media (max-width: 820px) {
    .hero-advantages {
        grid-template-columns: 1fr;
    }
}

#to-top {
    position: fixed;
    right: 1rem;
    bottom: -50rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: #F98478;
    cursor: pointer;
    opacity: .5;
    transition: all .3s;
    z-index: 999;
}

#to-top.show {
    bottom: 1.5rem;
}

#to-top:hover {
    opacity: 1;
}

#to-top svg {
    stroke: #fff;
    width: 24px;
    height: 24px;
}

#menu-contacts-toggle {
    position: fixed;
    bottom: -20rem;
    right: 1rem;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #F98478;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: bottom 0.3s;
}

#menu-contacts-toggle svg {
    width: 2.5rem;
    height: 2.5rem;
    transition: transform .3s;
}

#menu-contacts-toggle:hover svg {
    transform: scale(0.9);
}

#menu-contacts-toggle.show {
    bottom: 6rem;

}

@media (max-width: 768px) {
    #menu-contacts-toggle {
        right: auto;
        left: 1rem;
    }

    #menu-contacts-toggle.show {
        bottom: 1.5rem;
    }
}

#menu-contacts-toggle.active svg {
    transform: scale(1.1) rotate(-10deg);
}

#menu-contacts {
    position: fixed;
    bottom: 6rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 70px;
    z-index: -1;
    transition: transform 0.5s, width 0.5s, height 0.5s;
    transition-delay: 1s, 0.5s, 0.5s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

#menu-contacts-toggle.active~#menu-contacts {
    width: 80px;
    height: 304px;
    z-index: 999;
    transform: translateY(-80px);
    transition-delay: 0s, 0.5s, 0.5s;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

#menu-contacts-toggle.active~#menu-contacts::before {
    transition-delay: 0.5s;
    bottom: -6px;
}

@media (max-width: 768px) {
    #menu-contacts {
        bottom: 1rem;
        left: 1rem;
        right: auto;
    }
}

#menu-contacts ul {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    margin: 0;
}

#menu-contacts ul li {
    list-style: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: 0.25s;
    transition-delay: calc(0s + var(--i));
}

#menu-contacts-toggle.active~#menu-contacts ul li {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition-delay: calc(0.75s + var(--i));
}

#menu-contacts ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: box-shadow 0.25s;
}

#menu-contacts ul li a.menu-contacts-telegram {
    background: #0088CC;
}

#menu-contacts ul li a.menu-contacts-whatsapp {
    background: #25d366
}

#menu-contacts ul li a.menu-contacts-mail {
    background: #dd4b42
}

#menu-contacts ul li a.menu-contacts-phone {
    background: #5d90fa
}

#menu-contacts ul li a svg {
    width: 2rem;
    height: 2rem;
}

#menu-contacts ul li a:hover {
    box-shadow: -3px 7px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    #menu-contacts-toggle {
        width: 3rem;
        height: 3rem;
        border: 1px solid #F98478;
    }

    #menu-contacts-toggle svg {
        width: 2rem;
        height: 2rem;
    }
}

#modal-form {
    position: fixed;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease, top 0.4s ease;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modal-form.open {
    top: 0;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90vw;
    max-width: 860px;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1rem;
    }
}

.modal-content label {
    font-size: 16px;
    line-height: 24px;
    color: #0C0F2B;
    margin-bottom: 1rem;
    display: block;
}

.modal-content input[type="text"],
.modal-content input[type="tel"],
.modal-content textarea,
.modal-content input[type="email"] {
    padding: 0.375rem 0px 0.625rem;
}

.modal-content .wpcf7-spinner {
    position: absolute !important;
    bottom: .5rem !important;
    right: .5rem !important;
}

.modal-close {
    position: absolute;
    top: -.5rem;
    right: -.5rem;
    font-size: 1rem;
    cursor: pointer;
    background: #F98D80;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: transform 0.25s;
}

.modal-close:hover {
    transform: rotate(180deg);
}

.service-button {
    margin-top: auto;
}

.service-button button {
    margin: 0 auto;
}

.modal-content input[type="submit"],
.service-button button {
    width: 100%;
    max-width: 12.5rem;
    background: linear-gradient(90deg, #FFFFFF 0%, #F98478 24.52%, #F98478 49.04%, #FFFFFF 74%, #FFFFFF 100%);
    background-size: 200% 100%;
    background-position: 50% 50%;
    transition: background-position 0.5s ease;
    border: none;
    border-radius: 60px;
    padding: 12px 24px;
    font-family: Manrope;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0C0F2B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0C0F2B;
}

.modal-content input[type="submit"]:hover,
.service-button button:hover {
    background-position: 0% 50%;
    box-shadow: 0 4px 12px rgba(249, 132, 120, 0.3);
}

body.noscroll {
    overflow: hidden;
}

.home-body .ig-item-title {
    display: none !important;
}

.gallery-home-wrapper {
    max-width: 1019px;
}

.main-content-head {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

@media (max-width: 1439px) {
    .main-content-head {
        display: none !important;
    }
}

.sidebar-container-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
    position: relative;
    left: -58px;
}

.sidebar__btn {
    position: relative;
    left: -58px;
    margin-top: 1rem;
    width: 90%;
}

.sidebar-container-social a {
    width: 38px;
    height: 38px;
    padding: 4px;
    background: white;
    border-radius: 50%;
    opacity: .6;
    transition: opacity .3s;
}

.sidebar-container-social a:hover {
    opacity: 1;
}

.sidebar-container-social a img {
    width: 100%;
    height: auto;
}

.sidebar__bottom {
    margin-bottom: 2rem;
}

@media (max-height: 340px) {
    .mobile-menu-footer-social a {
        width: 28px !important;
        height: 28px !important;
    }

    .mobile-menu-footer-social a img {
        width: 100% !important;
        height: auto !important;
    }

    .mobile-menu-footer-contacts {
        padding-bottom: 10px !important;
    }

    .mobile-menu-footer {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        height: 106px !important;
    }
}