/* Main styles - Kult Interiors landing */

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.header {
    width: 100%;
    /* max-width: 1280px; */
    margin: 0 auto;
    height: 130px;
    margin-bottom: -130px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    /* background-color: black; */
    z-index: 1000;
}

.header img {
    width: 218px;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 0;
    background-image: url('/images/hero_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 120px;
}

/* Soft veil over the photo: keeps text readable without heavy shadows */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.56) 0%,
        rgba(0, 0, 0, 0.36) 45%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    height: 50px;
    width: 182px;
    min-height: 50px;
    min-width: 182px;
}

.header_dropdown {
    position: relative;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.header_dropdown > .button,
.header_dropdown > .header_submenu {
    pointer-events: auto;
}

.header_dropdown.is_open::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 50px;
    height: 12px;
    pointer-events: auto;
}

.button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    cursor: pointer;
    border: 1px solid rgba(197, 197, 197, 1);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    
    color: #fff;
    
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: 0;
    vertical-align: middle;
    backdrop-filter: blur(10px);
    }

    .button img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

.button-text {
    align-items: flex-start;
    padding-top: 15px;
}

h1 {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 72px;
    line-height: 115%;
    letter-spacing: -2.5px;
    text-align: center;
    vertical-align: middle;
    color: rgba(247, 247, 247, 1);
}

.hero_intro {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    gap: 24px;
}

.hero_intro h1,
.hero_intro h2 {
    width: 100%;
}

.hero_intro h1 {
    font-weight: 600;
    color: #fff;
}

.hero_intro h2 {
    font-weight: 600;
    color: #fff;
}

h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: -0.15px;
    text-align: center;
    vertical-align: middle;
    color: rgba(247, 247, 247, 1);
}

.hero_buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    flex-shrink: 0;
}

.hero_button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    background-color: #fff;
    border-radius: 26px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 19px;
    letter-spacing: 0%;
    vertical-align: middle;
    height: 52px;
    padding-top: 16px;
    padding-right: 20px;
    padding-bottom: 16px;
    padding-left: 20px;
    color: rgba(0, 0, 0, 1);
}

.hero_button span {
    margin-bottom: 2px;
}

.hero_button_right {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 197, 197, 1);
}

.section_for_whom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    padding: 150px 40px 0;
    gap: 80px;
    background: rgba(247, 247, 247, 1);
}

.section_for_whom h3 {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    line-height: 115%;
    letter-spacing: -2.5px;
    color: rgba(0, 0, 0, 1);
    line-height: 70.4px;
    letter-spacing: -2.5px;
    text-align: center;
    vertical-align: middle;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-self: stretch;
    width: 100%;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 0px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.card_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    align-self: stretch;
    flex: 1 1 auto;
    width: 100%;
    padding: 40px;
}

.card_content h4 {
    margin-top: 50px;
    font-family: Montserrat, sans-serif;    
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 28.8px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
}

.card_content p {
    margin-top: 24px;
    font-family: Montserrat, sans-serif;    
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: -0.15px;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
}

.card_image {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 0px;
    color: rgba(26, 26, 26, 0.7);
}

.card_icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    object-fit: contain;
    max-height: 42px;
    max-width: 42px;
}

.advantages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    background: rgba(247, 247, 247, 1);
}

.advantages_title {
    padding: 150px 0 80px;
    font-family: Montserrat, sans-serif;    
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    line-height: 70.4px;
    letter-spacing: -2.5px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
}

.advantages_description {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: -0.15px;
    text-align: center;
    vertical-align: middle;
    color: rgba(26, 26, 26, 0.7);
    padding-bottom: 150px;
    max-width: 600px;
}

.advantages_cards {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
}

.advantages_card {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 15px;
}

.advantages_card_image {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    object-fit: contain;
    max-height: 48px;
    max-width: 48px;
}

.advantages_card_title {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 22.4px;
    letter-spacing: -0.15px;
    text-align: center;
    vertical-align: middle;
    color: rgba(26, 26, 26, 0.7);
    min-height: calc(22.4px * 2);
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section_projects {
    background: rgba(247, 247, 247, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    padding: 0 40px;
}

.projects_title {
    padding: 150px 0 80px;
    width: 100%;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    line-height: 70.4px;
    letter-spacing: -2.5px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
}

.projects_cards {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 18px;
}

.projects_cards_column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: calc((100% / 3) - 12px);
}

.projects_card {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
}

.projects_card_image {
    width: 100%;
    object-fit: cover;
}

.projects_card_title {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: end;
    vertical-align: middle;
    color: white;
    padding: 0 24px 18px;
    width: 100%;
    margin-top: -64px;
}

.projects_card_description {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: 0%;
    vertical-align: middle;
    padding: 14px 24px 24px;
    color: rgba(26, 26, 26, 0.7);
    width: 100%;
}

.project_modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.project_modal[hidden] {
    display: none;
}

.project_modal_backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.project_modal_close {
    position: fixed;
    top: calc(20px + env(safe-area-inset-top, 0px));
    right: calc(20px + env(safe-area-inset-right, 0px));
    z-index: 1102;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    box-sizing: border-box;
}

.project_modal_close:hover {
    background-color: rgba(255, 255, 255, 0.22);
}

.project_modal_close img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.project_modal_scroll {
    position: absolute;
    inset: 0;
    z-index: 1;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.project_modal_scroll::-webkit-scrollbar {
    display: none;
}

/* Padding moved here so wheel over “margins” still targets the scroll container (fixes browser padding quirk). */
.project_modal_scroll_inner {
    box-sizing: border-box;
    min-height: 100%;
    padding: calc(72px + env(safe-area-inset-top, 0px)) calc(20px + env(safe-area-inset-right, 0px)) calc(40px + env(safe-area-inset-bottom, 0px)) calc(20px + env(safe-area-inset-left, 0px));
}

.project_modal_heading {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.08em;
    color: #fff;
    margin: 0 auto;
    width: min(800px, 100%);
    box-sizing: border-box;
    text-align: left;
}

.project_modal_subheading {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    margin: 14px auto 0;
    width: min(800px, 100%);
    box-sizing: border-box;
    text-align: left;
}

.project_modal_gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
    width: min(800px, 100%);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.project_modal_gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}


.section_reviews {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    background: rgba(247, 247, 247, 1);
}

.reviews_title {
    padding: 150px 0 80px;
    width: 100%;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    line-height: 70.4px;
    letter-spacing: -2.5px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
}

.reviews_carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: auto;
    touch-action: auto;
    cursor: grab;
}

.reviews_carousel::-webkit-scrollbar {
    display: none;
}

.reviews_carousel.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.reviews_cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 0 40px 32px;
    width: max-content;
    box-sizing: border-box;
}

.reviews_card {
    display: flex;
    flex-direction: column;
    gap: 150px;
    border-radius: 16px;
    background-color: #fff;
    padding: 32px 24px;
    flex: 0 0 auto;
    width: clamp(280px, calc((100vw - 128px) / 4), 420px);
    scroll-snap-align: start;
    box-sizing: border-box;
}

.header_review {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.user_review {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.reviews_card_image {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    object-fit: cover;
    border-radius: 50%;
    max-height: 56px;
    max-width: 56px;
}

.user_review_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.user_review_name {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 22.4px;
    letter-spacing: -0.15px;
    vertical-align: middle;
    color: rgba(26, 26, 26, 0.7);
}

.reviews_card_stars {
    height: 16px;
    min-height: 16px;
}

.reviews_card_g_logo {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    object-fit: contain;
    max-height: 42px;
    max-width: 42px;
}

.content_review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex: 1;
}

.reviews_card_description {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 145%;
    letter-spacing: -0.15px;
    vertical-align: middle;
    margin: 0;
}

.review_date {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 22.4px;
    letter-spacing: -0.15px;
    vertical-align: middle;
    color: rgba(26, 26, 26, 0.7);
}

.section_about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    background: rgba(247, 247, 247, 1);
}

.about_title {
    padding: 150px 0 80px;
    width: 100%;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    line-height: 70.4px;
    letter-spacing: -2.5px;
    text-align: center;
    vertical-align: middle;
    color: #000;
}

.about_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 150px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.about_description {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 145%;
    letter-spacing: -0.15px;
    vertical-align: middle;
    color: rgba(26, 26, 26, 0.7);
    width: calc(67% - 75px);
}

.about_image_container {
    width: calc(33% - 75px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about_image_wrap {
    position: relative;
    width: 100%;
}

.about_image_wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 52%;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.4) 48%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.about_image {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.about_name {
    position: absolute;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 2;
    margin: 0;
    padding: 0;
    text-align: right;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.15px;
    vertical-align: middle;
    color: #fff;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.95),
        0 2px 4px rgba(0, 0, 0, 0.85),
        0 6px 24px rgba(0, 0, 0, 0.55);
}

.section_contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    background: rgba(247, 247, 247, 1);
    padding-bottom: 150px;
}

.contact_title {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    line-height: 70.4px;
    letter-spacing: -2.5px;
    text-align: center;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
    padding-top: 150px;
    padding-bottom: 80px;
}

.contact_content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.contact_form_container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    flex: 3 1 0;
    min-width: 0;
    /* column + wrap can create extra columns on iOS Safari and push the submit button off-screen */
    flex-wrap: nowrap;
    background-color: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    align-self: stretch;
}

.contact_info {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    flex: 2 1 0;
    min-width: 0;
    border-radius: 16px;
    align-self: stretch;
}

.contact_info_card {
    background-color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
    padding: 32px;
    border-radius: 16px;
    flex: 1 1 0;
    min-height: 0;
    align-self: stretch;
    min-height: 180px;
}

.contact_form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.contact_form_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 12px;
}

.contact_form_item_half_width {
    width: calc(50% - 16px);
}

.contact_form_item label {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 19.2px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(26, 26, 26, 1);
}

.contact_form_item input, textarea {
    width: 100%;
    height: 66px;
    border-radius: 40px;
    border: 1px solid rgba(197, 197, 197, 1);
    padding: 22px 32px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(197, 197, 197, 1);
    color: black;   
}

.contact_form_item textarea {
    min-height: 120px;
    resize: none;
    border-radius: 24px;
}

.contact_form_item input::placeholder, textarea::placeholder {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(197, 197, 197, 1);
}

.contact_form_button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 52px;
    border-radius: 40px;
    padding: 16px 20px;
    font-family: Montserrat, sans-serif;
    background-color: rgba(0, 0, 0, 1);
    align-self: flex-start;
    box-sizing: border-box;
    max-width: 100%;
}

.contact_form_button span {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 19px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(247, 247, 247, 1);
}

.contact_form_button img {
    width: 18px;
    height: 12px;
    object-fit: contain;
}

.contact_info_card img {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    object-fit: contain;
    max-height: 42px;
    max-width: 42px;
    margin-bottom: 18px;
}

.contact_info_card_title {
    font-family: Montserrat, sans-serif;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 22.4px;
    letter-spacing: -0.15px;
    vertical-align: middle;
}

.contact_info_card_data {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.15px;
    vertical-align: middle;
    color: rgba(26, 26, 26, 1);
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
}

/* iOS Safari auto-links tel/mail in plain text; explicit mailto/tel links stay styled like body copy */
.contact_info_card_link {
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-decoration: none;
    overflow-wrap: inherit;
    word-break: inherit;
}

.contact_info_card_data a {
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-decoration: none;
}

.contact_info_card_link:active,
.contact_info_card_data a:active {
    opacity: 0.85;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    background: rgba(26, 26, 26, 1);
    padding: 40px;
    gap: 40px;
}

.footer_logo {
    align-self: flex-start;
    width: 218px;
}

.footer_navigation {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 0;
}

.footer_navigation_buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.footer_nav_link {
    font-family: Montserrat, sans-serif;
    color: rgba(247, 247, 247, 1);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 19.2px;
    letter-spacing: 0%;
    vertical-align: middle;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-align: left;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer_nav_link:hover {
    color: #fff;
    opacity: 0.85;
}

.footer_navigation_links {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    object-fit: contain;
    max-height: 42px;
    max-width: 42px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_navigation_links:hover {
    opacity: 0.7;
}

.footer_navigation_links img {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    object-fit: contain;
    max-width: 20px;
    max-height: 20px;
}

.footer_copy {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 22.4px;
    letter-spacing: -0.15px;
    vertical-align: middle;
    color: rgba(220, 216, 213, 0.7);
    padding: 17px 0;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.main_form_container,
.main_form_thanks_container {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
    transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.main_form_container.is_open,
.main_form_thanks_container.is_open {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    visibility: visible;
    pointer-events: auto;
}

.main_form_container.is_closing,
.main_form_thanks_container.is_closing {
    visibility: visible;
    pointer-events: none;
}

.main_form {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 40px;
    width: 50%;
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    visibility: hidden;
    opacity: 0;
}

.main_form_container.is_open .main_form,
.main_form_thanks_container.is_open .main_form {
    visibility: visible;
    opacity: 1;
}

.main_form_header {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    width: 100%;
}

.main_form_header h5 {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 48px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(26, 26, 26, 1);
    width: 100%;
}

.main_form_close,
.main_form_thanks_close {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    object-fit: contain;
    max-width: 24px;
    max-height: 24px;
    cursor: pointer;
    position: relative;
    top: 0;
    right: 0;
}

.main_form_close img,
.main_form_thanks_close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
}

.main_form_thanks {
    padding: 56px 44px;
}

.main_form_thanks_title {
    font-size: 36px;
    line-height: 1.25;
}

.main_form_thanks .main_form_thanks_close {
    transform: translateY(-12px);
}

.display_none {
    display: none;
}

.header_submenu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0px;
    background-color: #fff;
    border-radius: 16px;
    padding: 0px;
    position: absolute;
    top: calc(100% + 12px);
    left: auto;
    right: 0;
    z-index: 20;
    min-width: 230px;
}

.header_submenu.is_hidden {
    display: none;
}

.header_submenu a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background-color: transparent;
    width: 100%;
}

.header_submenu a img {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    object-fit: contain;
    max-width: 22px;
    max-height: 22px;
}

.header_submenu a span,
.header_submenu--languages .header_lang_option span {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 22.4px;
    letter-spacing: -0.15px;
    vertical-align: middle;
    color: rgba(26, 26, 26, 1);
}

.header_submenu--languages {
    min-width: 230px;
}

.header_lang_option {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    margin: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left;
}

.header_lang_code {
    flex: 0 0 auto;
    text-transform: uppercase;
}

.header_lang_name {
    flex: 0 0 auto;
    text-align: right;
}

.button_divider {
    width: 100%;
    height: 1px;
    background-color: rgba(228, 228, 228, 1);
    min-height: 1px;
    max-height: 1px;
    min-width: 100%;
    max-width: 100%;
    z-index: 50;
}

.mobile_menu_toggle,
.mobile_menu_overlay,
.mobile_panel_overlay {
    display: none;
}

@media (max-width: 1024px) {
    .header {
        height: 108px;
        margin-bottom: -108px;
        padding: 28px 24px;
    }

    .header img {
        width: 178px;
    }

    .hero {
        padding-top: 108px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 80px;
        justify-content: space-between;
        text-align: left;
        align-items: flex-start;
    }

    .hero_intro {
        flex: 0 0 auto;
        align-items: flex-start;
        gap: 18px;
        margin-top: 96px;
    }

    .hero_intro h1,
    .hero_intro h2 {
        text-align: left;
        max-width: 680px;
    }

    .hero_intro h1 {
        font-size: 56px;
        line-height: 108%;
        letter-spacing: -1.8px;
    }

    .hero_intro h2 {
        font-size: 30px;
        line-height: 128%;
        letter-spacing: -0.2px;
    }

    .hero_buttons {
        width: 100%;
        max-width: 680px;
        height: auto;
        min-height: 0;
        max-height: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 40px;
    }

    .hero_button {
        width: 100%;
        justify-content: space-between;
    }

    .main_form {
        width: min(680px, calc(100% - 48px));
    }

    .section_for_whom {
        padding: 96px 24px 0;
        gap: 44px;
    }

    .section_for_whom h3 {
        font-size: 46px;
        line-height: 108%;
        letter-spacing: -1.2px;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .card_content {
        padding: 24px 20px;
    }

    .card_content h4 {
        margin-top: 20px;
        font-size: 20px;
        line-height: 118%;
    }

    .card_content p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 132%;
    }

    .card_icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        max-width: 30px;
        max-height: 30px;
    }

    .about_title {
        padding: 110px 0 44px;
        font-size: 46px;
        line-height: 108%;
        letter-spacing: -1.2px;
    }

    .about_content {
        gap: 44px;
        padding-left: 24px;
        padding-right: 24px;
        align-items: flex-start;
    }

    .about_description {
        width: calc(62% - 22px);
        font-size: 18px;
        line-height: 136%;
    }

    .about_image_container {
        width: calc(38% - 22px);
    }

    .about_name {
        font-size: 24px;
        line-height: 120%;
    }

    .section_contact {
        padding-bottom: 96px;
    }

    .contact_title {
        padding-top: 110px;
        padding-bottom: 44px;
        font-size: 46px;
        line-height: 108%;
        letter-spacing: -1.2px;
    }

    .contact_content {
        gap: 12px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .contact_form_container {
        padding: 24px 20px;
        gap: 20px;
    }

    .contact_form {
        gap: 16px;
    }

    .contact_form_item_half_width {
        width: 100%;
    }

    .contact_info_card {
        min-height: 142px;
        padding: 18px 16px;
    }

    .contact_info_card img {
        margin-bottom: 8px;
    }

    .contact_info_card_data {
        font-size: 18px;
        line-height: 126%;
    }
}

@media (max-width: 768px) {
    .header {
        height: 90px;
        margin-bottom: -90px;
        padding: 20px 16px;
    }

    .header .buttons {
        display: none;
    }

    .header .logo img {
        width: 192px;
    }

    .mobile_menu_toggle {
        display: flex;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid rgba(197, 197, 197, 1);
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        cursor: pointer;
        z-index: 1002;
    }

    .mobile_menu_toggle span {
        display: block;
        width: 16px;
        height: 2px;
        border-radius: 2px;
        background-color: #fff;
    }

    .hero {
        min-height: 100dvh;
        padding-top: 90px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 60px;
        justify-content: space-between;
    }

    .hero_intro {
        width: 100%;
        margin-top: auto;
        margin-bottom: 30px;
        gap: 30px;
    }

    .hero_intro h1 {
        font-size: 32px;
        line-height: 44px;
        letter-spacing: -1.5px;
        max-width: 350px;
        font-weight: 500;
    }

    .hero_intro h2 {
        font-size: 20px;
        line-height: 145%;
        letter-spacing: -0.15px;
        max-width: 344px;
    }

    .hero_buttons {
        margin-top: 0;
        gap: 8px;
        margin-bottom: 6px;
    }

    .hero_button {
        height: auto;
        min-height: 58px;
        border-radius: 30px;
        padding: 12px 22px;
        align-items: center;
    }

    .hero_button span {
        flex: 1;
        min-width: 0;
        font-size: 18px;
        line-height: 1.28;
        margin-bottom: 0;
        text-align: left;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .hero_button img {
        width: 16px;
        height: 12px;
        flex-shrink: 0;
        align-self: center;
    }

    .section_for_whom {
        padding: 60px 24px 24px;
        gap: 24px;
    }

    .section_for_whom h3 {
        width: 100%;
        text-align: center;
        font-size: 32px;
        line-height: 145%;
        letter-spacing: -2.5px;
        vertical-align: middle;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card {
        border-radius: 10px;
    }

    .card_content {
        padding: 32px 24px;
    }

    .card_icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        max-width: 42px;
        max-height: 42px;
    }

    .card_content h4 {
        margin-top: 32px;
        font-size: 20px;
        line-height: 28.8px;
        letter-spacing: -0.3px;
    }

    .card_content p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 145%;
        letter-spacing: -0.15px;
        color: rgba(26, 26, 26, 0.7);
    }

    .advantages {
        align-items: stretch;
        padding: 0px 24px 0;
    }

    .advantages_title {
        padding: 60px 0;
        text-align: center;
        font-size: 32px;
        line-height: 145%;
        letter-spacing: -2.5px;
    }

    .advantages_description {
        text-align: left;
        font-size: 16px;
        line-height: 132%;
        letter-spacing: -0.08px;
        padding-bottom: 26px;
        max-width: 320px;
    }

    .advantages_cards {
        width: 100%;
        flex-direction: column;
        background-color: transparent;
    }

    .advantages_card {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        gap: 18px;
        padding: 32px 24px;
    }

    .advantages_card_image {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        max-width: 48px;
        max-height: 48px;
    }

    .advantages_card_title {
        min-height: 0;
        font-size: 18px;
        line-height: 22.4px;
        letter-spacing: -0.15px;
        text-align: right;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .section_projects {
        align-items: stretch;
        padding: 0 24px;
    }

    .projects_title {
        padding: 60px 0;
        text-align: center;
        font-size: 32px;
        line-height: 145%;
        letter-spacing: -2.5px;
    }

    .projects_cards {
        flex-direction: column;
        gap: 16px;
    }

    .projects_cards_column {
        width: 100%;
        gap: 16px;
    }

    .projects_card {
        border-radius: 10px;
    }

    .section_reviews {
        align-items: stretch;
        padding: 0;
    }

    .reviews_title {
        padding: 60px 0;
        text-align: center;
        font-size: 32px;
        line-height: 145%;
        letter-spacing: -2.5px;
    }

    .reviews_carousel {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        scroll-padding-inline: 24px;
    }

    .reviews_cards {
        width: max-content;
        padding: 0 24px 8px;
        gap: 12px;
    }

    .reviews_card {
        width: min(332px, calc(100vw - 56px));
        max-width: none;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-radius: 12px;
        padding: 32px 24px;
        gap: 60px;
    }

    .header_review {
        align-items: flex-start;
    }

    .user_review {
        gap: 15px;
    }

    .reviews_card_image {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        max-width: 42px;
        max-height: 42px;
    }

    .user_review_info {
        gap: 5px;
    }

    .user_review_name {
        font-size: 16px;
        line-height: 22.4px;
        letter-spacing: -0.15px;
    }

    .reviews_card_stars {
        height: 12px;
        min-height: 12px;
    }

    .reviews_card_g_logo {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        max-width: 42px;
        max-height: 42px;
    }

    .content_review {
        gap: 18px;
    }

    .reviews_card_description {
        font-size: 18px;
        line-height: 145%;
        letter-spacing: -0.15px;
    }

    .review_date {
        font-size: 16px;
        line-height: 22.4px;
        letter-spacing: -0.15px;
    }

    .section_about {
        align-items: stretch;
        padding: 0 24px;
    }

    .about_title {
        padding: 60px 0;
        text-align: center;
        font-size: 32px;
        line-height: 145%;
        letter-spacing: -2.5px;
    }

    .about_content {
        flex-direction: column-reverse;
        gap: 32px;
        padding: 0;
    }

    .about_description {
        width: 100%;
        font-size: 18px;
        line-height: 145%;
        letter-spacing: -0.15px;
    }

    .about_image_container {
        width: 100%;
    }

    .about_image {
        border-radius: 12px;
    }

    .about_image_wrap::after {
        border-radius: 0 0 12px 12px;
    }

    .about_name {
        right: 12px;
        left: 12px;
        bottom: 10px;
        font-size: 24px;
        line-height: 116%;
    }

    .section_contact {
        align-items: stretch;
        padding: 0 24px 60px;
    }

    .contact_title {
        padding: 60px 0;
        text-align: center;
        font-size: 32px;
        line-height: 145%;
        letter-spacing: -2.5px;
    }

    .contact_content {
        flex-direction: column;
        gap: 8px;
        padding: 0;
    }

    .contact_form_container {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
        padding: 32px 24px;
        gap: 24px;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .contact_form {
        gap: 24px;
    }

    .contact_form_item {
        gap: 8px;
    }

    .contact_form_item label {
        font-size: 13px;
        line-height: 16px;
    }

    .contact_form_item input,
    .contact_form_item textarea {
        height: 44px;
        border-radius: 22px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .contact_form_item textarea {
        min-height: 96px;
        border-radius: 10px;
        padding-top: 12px;
    }

    .contact_form_item input::placeholder,
    .contact_form_item textarea::placeholder {
        font-size: 13px;
    }

    .section_contact .contact_form_button {
        align-self: flex-start;
        flex-shrink: 0;
        min-width: 132px;
        height: 40px;
        border-radius: 24px;
        padding: 10px 14px;
        max-width: 100%;
    }

    .section_contact .contact_form_button span {
        font-size: 14px;
        line-height: 1;
    }

    .section_contact .contact_form_button img {
        width: 14px;
        height: 10px;
    }

    .contact_info {
        width: 100%;
        gap: 10px;
    }

    .contact_info_card {
        flex: 0 0 auto;
        border-radius: 10px;
        padding: 32px 24px;
        gap: 10px;
        min-height: auto;
    }

    .contact_info_card img {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        max-width: 42px;
        max-height: 42px;
        margin-bottom: 10px;
    }

    .contact_info_card_title {
        font-size: 18px;
        line-height: 22.4px;
        letter-spacing: -0.15px;
    }

    .contact_info_card_data {
        font-size: 22px;
        line-height: 28.8px;
        letter-spacing: -0.15px;
    }

    .footer {
        align-items: stretch;
        padding: 40px 24px;
        gap: 40px;
    }

    .footer_logo {  
        width: 230px;
        align-self: flex-start;
    }

    .footer_navigation {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 0;
    }

    .footer_navigation_buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer_nav_link {
        font-size: 18px;
        line-height: 19.2px;
        letter-spacing: 0;
    }

    .footer_navigation_links {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .footer_copy {
        font-size: 14px;
        line-height: 22.4px;
        letter-spacing: -0.15px;
        padding: 0;
        text-align: center;
    }

    .main_form_container,
    .main_form_thanks_container {
        padding: 0 12px;
    }

    .main_form {
        width: 100%;
        border-radius: 14px;
        padding: 32px 24px;
        gap: 18px;
    }

    .main_form_header h5 {
        font-size: 24px;
        line-height: 28.8px;
        letter-spacing: -0.2px;
    }

    .contact_form {
        gap: 24px;
    }

    .contact_form_item {
        gap: 10px;
    }

    .contact_form_item_half_width {
        width: 100%;
    }

    .contact_form_item label {
        font-size: 14px;
        line-height: 16px;
    }

    .contact_form_item input,
    .contact_form_item textarea {
        height: 46px;
        border-radius: 24px;
        padding: 12px 16px;
        font-size: 18px;
        line-height: 100%;
    }

    .contact_form_item textarea {
        min-height: 106px;
        border-radius: 12px;
        padding-top: 14px;
    }

    .contact_form_button {
        width: auto;
        min-width: 190px;
        justify-content: space-between;
        height: 48px;
        border-radius: 24px;
    }

    .contact_form_button span {
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0%;
    }
    

    .main_form_thanks {
        padding: 60px 24px;
        text-align: center;
    }

    .main_form_thanks_title {
        font-size: 24px;
        line-height: 28.8px;
        letter-spacing: -0.2px;
    }

    .mobile_menu_overlay {
        position: fixed;
        inset: 0;
        z-index: 1005;
        background-color: rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        align-items: flex-start;
        justify-content: center;
        padding: 58px 12px 0;
    }

    .mobile_menu_overlay.is_open {
        display: flex;
    }

    .mobile_menu_card {
        width: 100%;
        max-width: 342px;
        border-radius: 16px;
        background-color: #fff;
        overflow: hidden;
    }

    .mobile_menu_header {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 14px 14px 12px;
        border-bottom: 1px solid rgba(228, 228, 228, 1);
    }

    .mobile_menu_header img {
        width: 142px;
        filter: brightness(0) saturate(100%);
    }

    .mobile_menu_close {
        width: 24px;
        height: 24px;
        cursor: pointer;
    }

    .mobile_menu_close img {
        width: 100%;
        height: 100%;
    }

    .mobile_menu_list {
        display: flex;
        flex-direction: column;
    }

    .mobile_menu_item {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        text-align: left;
        padding: 14px;
        border-bottom: 1px solid rgba(228, 228, 228, 1);
    }

    .mobile_menu_item:last-child {
        border-bottom: none;
    }

    .mobile_menu_item_icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 50%;
        border: 1px solid rgba(206, 206, 206, 1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile_menu_item_icon img {
        width: 18px;
        height: 18px;
    }

    .mobile_menu_item_icon_text {
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        color: #1a1a1a;
    }

    .mobile_menu_item_content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile_menu_item_title {
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 110%;
        color: #1a1a1a;
    }

    .mobile_menu_item_subtitle {
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        color: rgba(26, 26, 26, 0.85);
    }

    .mobile_panel_overlay {
        position: fixed;
        inset: 0;
        z-index: 1006;
        background-color: rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        align-items: flex-start;
        justify-content: center;
        padding: 86px 12px 0;
    }

    .mobile_panel_overlay.is_open {
        display: flex;
    }

    .mobile_panel_card {
        width: 100%;
        max-width: 342px;
        border-radius: 16px;
        background-color: #fff;
        overflow: hidden;
    }

    .mobile_panel_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 18px 16px;
        border-bottom: 1px solid rgba(228, 228, 228, 1);
    }

    .mobile_panel_header h4 {
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-size: 28px;
        line-height: 108%;
        letter-spacing: -0.4px;
        color: #1a1a1a;
    }

    .mobile_panel_close {
        width: 24px;
        height: 24px;
        cursor: pointer;
    }

    .mobile_panel_close img {
        width: 100%;
        height: 100%;
    }

    .mobile_panel_list {
        display: flex;
        flex-direction: column;
    }

    .mobile_panel_row {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(228, 228, 228, 1);
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 110%;
        color: rgba(26, 26, 26, 1);
    }

    .mobile_panel_row:last-child {
        border-bottom: none;
    }

    .mobile_panel_row_icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile_panel_row_icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .mobile_panel_list_languages {
        gap: 0;
    }

    .mobile_panel_list_languages .header_lang_option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px;
        width: 100%;
        text-align: left;
    }

    .mobile_panel_list_languages .button_divider {
        z-index: auto;
    }

    .mobile_panel_list_languages .header_lang_option span {
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 110%;
        color: rgba(26, 26, 26, 1);
    }
}