html {
    scroll-behavior: smooth;
}

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

body {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    min-height: 700px;
    margin-top: 0;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: #1d1d1d;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar_root.full {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    padding-bottom: 80px;
    box-shadow: none;
}

.toolbar_root .main_content {
    border-bottom: 2px solid transparent;
}

.toolbar_root #main_logo {
    width: 250px;
    height: 68px;
    margin: 8px 16px;
    transition: 0.4s;
    background: url("../images/rl_logo.png") no-repeat center;
    background-size: contain;
}

.toolbar_badge {
    height: auto;
    align-self: flex-start;
    margin-bottom: -40px;
}

.toolbar_badge:first-of-type {
    width: 100px;
    margin-right: 4px;
}

.toolbar_badge:last-of-type {
    width: 80px;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex: 1 1 auto;
    padding: 0 14px;
}

.menu_item {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.4s ease;
}

.menu_item span {
    color: white;
    padding: 8px 16px;
    font-size: 18px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 6px;
    margin: 0 12px;
    font-family: 'Marcellus', sans-serif;
    transition: 0.4s ease;
}

.menu_item:hover {
    /*background-color: var(--colorAccent);*/
}

.menu_item:hover > span {
    color: white;
    background-color: var(--colorAccent);
}

.menu_item:hover span.highlight {
    background-color: rgba(0, 0, 0, 0.1);
}


.countdown_widget {
    padding: 4px 16px;
    gap: 2px;
}

.countdown_subtitle {
    font-size: 10px;
    color: var(--colorAccent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: "Satoshi", sans-serif;
}

.countdown_title {
    font-size: 14px;
    color: white;
    font-weight: 600;
    font-family: "Marcellus", sans-serif;
    white-space: nowrap;
}

.countdown_boxes {
    gap: 4px;
    margin-top: 2px;
}

.countdown_box {
    min-width: 40px;
}

.countdown_value {
    font-size: 16px;
    color: white;
    font-weight: 700;
    font-family: "Satoshi", sans-serif;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    padding: 2px 8px;
    line-height: 1.2;
}

.countdown_label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Satoshi", sans-serif;
}

.toolbar_dropdown_container {
    position: relative;
}

.toolbar_dropdown_content {
    position: absolute;
    top: 100%;
    right: 0;
    /*border-bottom-left-radius: 6px;*/
    /*border-bottom-right-radius: 6px;*/
    display: none !important;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    max-height: 500px;
    background-size: 400% 400%;
    overflow-y: auto;

}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    display: flex !important;
}

.toolbar_dropdown_content .menu_item {
    min-height: 40px;
    padding: 8px;
    color: #212121;
    transition: 0.4s ease;
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 12px 10px 12px 30px;
    font-size: 16px;
    transition: 0.4s;
    color: white;
    font-family: 'Satoshi', sans-serif;
}

.drawer_item:hover span {
    color: var(--colorAccent)
}

.main_content {
    width: 95%;
    padding: 0 12px;
    max-width: 1500px;
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.home-sideNav {
    position: fixed;
    top: 0;
    width: 90%;
    max-width: 400px;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    left: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: relative;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

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

.side_navigation_content_wrapper {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
}

.side_navigation_content {
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
}

.accent_button {
    color: var(--colorAccent);
    border-radius: 8px;
    background: #000000;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: uppercase;
    font-family: "Marcellus", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    background: var(--colorAccent);
    color: #000000;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.accent_button.white {
    background-color: white;
    color: #212121;
}

.accent_button.light {
    background-color: var(--colorAccent2);
    color: var(--colorAccent);
}

.bordered_button {
    background: transparent;
    color: var(--colorAccent);
    font-weight: normal;
    padding: 12px 18px;
    border: 1px solid var(--colorAccent);
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Satoshi", sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.bordered_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--colorAccent);
    z-index: -1;
    transition: 1s ease;
}

.bordered_button:hover {
    color: white;
    border-color: var(--colorAccent);
    background: transparent;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.bordered_button:hover::before {
    width: 100%;
}

.bordered_button.white {
    border: 2px solid white;
    color: white;
}

.page_heading {
    color: white;
    font-size: 48px;
    padding: 8px;
    font-weight: 500;
    margin: 0;
    font-family: "Marcellus", sans-serif;
    position: relative;
}

.page_sub_heading {
    color: #212121;
    margin: 0 8px;
    line-height: 1;
    font-size: 20px;
    font-family: "Marcellus", sans-serif;
}

.section_wrapper {
    width: 100%;
    padding: 40px 0;
}

.section_wrapper.dark {
    background: rgba(0, 0, 0, 0.7);
}

.footer_logo {
    width: 90%;
    max-height: 80px;
    object-fit: contain;
    object-position: left;
    min-width: 100px;
}

.footer_container {
    width: calc((100% / 3) - 16px);
    padding: 20px;
    margin: 8px;
}

.footer_social_link {
    font-weight: 500;
    font-size: 16px;
    padding-top: 5px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: white;
    margin: 4px;
    border-radius: 50%;
    transition: 0.4s ease;
    border: 1px solid transparent;
}

.footer_social_link:hover {
    background-color: var(--colorAccent);
    border: 1px solid var(--colorAccent);
    color: white;
}

.footer_logo_icon {
    width: 80%;
    max-width: 200px;
}

.footer_heading {
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: "Satoshi", sans-serif;
}

.footer_link {
    color: white;
    font-size: 16px;
    font-family: "Marcellus", sans-serif;
    margin: 8px;
    transition: 0.4s ease;
}

.footer_link:hover {
    color: var(--colorAccent);
}

#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
}

.dialog-container {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    padding: 12px;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.dialog-container .close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    text-align: center;
    top: 24px;
    right: 16px;
    border-radius: 50%;
    font-size: 16px;
    padding: 4px;
    color: var(--colorAccent);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.header_scroll_wrapper {
    position: relative;
    width: 100%;
    /* Extra height creates scroll room for the animation */
    height: 280vh;
}

.header_container {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.header_container .header_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: none;
}

.header_container .header_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(3);
    transform-origin: center center;
    padding: 24px;
    will-change: transform, opacity;
    transition: none;
    opacity: 0;
}

.header_content img {
    width: 300px;
}

.header_content span {
    font-family: "Marcellus", serif;
    font-weight: 500;
    color: white;
    text-align: center;
    font-size: 62px;
    margin-top: 24px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.header_bottom_shadow {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #000000, transparent);
    z-index: 1;
}

.rooted_rising_section {
    background: #000000;
}

.rooted_rising_section img {
    height: 80px;
    margin: 40px 0;
    padding: 0 32px;
}

.our_story_section_wrapper {
    background-color: #000000;
    background-image: url("../images/masktop.png");
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.our_story_heading {
    color: white;
    font-size: 18px;
    margin: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Satoshi", sans-serif;
}

.our_story_heading_border {
    height: 24px;
    width: 100%;
    object-fit: fill;
    margin-top: 24px;
}

.our_story_content span {
    color: white;
    font-size: 52px;
    margin: 16px;
    font-family: "Marcellus", serif;
}

.our_story_content p {
    color: white;
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
    margin: 16px;
    font-family: "Satoshi", sans-serif;
}

.story_image_wrapper {
    width: calc(100% - 16px);
    margin: 8px;
    overflow: hidden;
    position: relative;
}

.story_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    align-self: flex-end;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Slow zoom on hover */
.story_image_wrapper:hover img {
    transform: scale(1.08);
}

/* Glare sweep effect — constrained to image area (inside 8px padding) */
.story_image_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 60%;
    background: linear-gradient(
            105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.08) 35%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.08) 65%,
            transparent 80%
    );
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 1;
    transition: none;
}

.story_image_wrapper:hover::after {
    animation: glare-sweep 0.8s ease-out forwards;
}

.our_values_section {
    margin-top: -150px;
    padding-top: 250px;
    background-image: url("../images/shapping_land_bg@4x.png");
    background-size: 100% 60%;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    overflow: hidden;
}

.our_values_section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 20%, #000000, rgb(0, 0, 0));
    z-index: -1;
}

.our_values_heading {
    color: white;
    font-size: 64px;
    margin: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Satoshi", sans-serif;
}

.values_content_wrapper {
    padding: 24px 8px;
    border-bottom: rgba(255, 255, 255, 0.25) 1px solid;
    will-change: transform, opacity;
    transform: translateX(100%);
    opacity: 0;
}

.values_content_wrapper span {
    font-weight: bold;
    color: var(--colorAccent);
    padding: 8px;
    font-size: 48px;
    width: 25%;
    align-self: center;
    font-family: "Satoshi", sans-serif;
}

.values_content_wrapper p {
    color: white;
    font-size: 24px;
    opacity: 0.8;
    margin: 16px 24px;
    font-weight: 500;
    align-self: center;
    width: 50%;
    font-family: "Satoshi", sans-serif;
}

.values_content_wrapper span.small {
    font-size: 18px;
    width: 25%;
    font-weight: 300;
    text-align: right;
    text-transform: uppercase;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
}

.explore_section_item {
    width: 25%;
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    transition: 2s ease;
}

.explore_section_item img {
    width: 100%;
    object-fit: cover;
    height: 650px;
}

.explore_section_item .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 60px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.explore_section_item .content .title {
    text-align: center;
    color: white;
    font-size: 42px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    opacity: 0;
    align-self: center;
    transition: 0.4s ease;
    font-weight: bold;
    font-family: "Satoshi", sans-serif;
    position: relative;
}

.explore_section_item .content .title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    height: 1px;
    z-index: 1;
    background: white;
}

.explore_section_item .content .explore_link {
    font-size: 20px;
    margin-top: 12px;
    align-self: center;
    color: white;
    font-weight: normal;
    font-family: "Satoshi", sans-serif;
    padding: 0 0 4px 0;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.4s ease;
}

.explore_section_item.active {
    width: 50%;
}

.explore_section_item.active .content span,
.explore_section_item.active .content .explore_link {
    opacity: 1;
}

.parallax_section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.parallax_section .content_wrapper {
    padding: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.parallax_section .content_wrapper span {
    font-size: 46px;
    color: white;
    font-weight: 500;
    font-family: "Marcellus", sans-serif;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.parallax_section .content_wrapper span b {
    font-size: 18px;
    font-family: "Satoshi", sans-serif;
}

.testimonial_wrapper {
    width: 90%;
    max-width: 1000px;
}

.testimonial_wrapper .client_image {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50%;
    overflow: hidden;
    margin: 16px 16px 24px;
    background: #000000;
}

.testimonial_wrapper .quote_icon {
    width: 80px !important;
    height: 80px;
    object-fit: contain;
}

.testimonial_wrapper p {
    color: #212121;
    font-size: 18px;
    font-weight: normal;
    margin: 16px 0;
    font-family: "Satoshi", sans-serif;
}

.testimonial_wrapper .client_name {
    color: #212121;
    font-size: 16px;
    font-weight: 500;
    font-family: "Satoshi", sans-serif;
}

.testimonial_section_wrapper {
    background-color: white;
    background-image: url("../images/testimonilal_bg.png");
    background-size: 30% auto;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.blogs_section_wrapper {
    background-color: #000000;
    background-image: url("../images/blogs_bg.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top right;
    overflow: hidden;
}

.blog_card {
    width: calc(100vw / 3 - 24px);
    min-width: calc(100vw / 3 - 24px);
    margin: 0 12px;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog_card:hover {
    transform: translateY(-4px);
}

.blog_card_img_wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
}

.blog_card_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog_card:hover .blog_card_img_wrapper img {
    transform: scale(1.05);
}

.blog_card_info {
    padding: 12px 4px;
    gap: 4px;
}

.blog_card_title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    font-family: "Satoshi", sans-serif;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_card_meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Satoshi", sans-serif;
}


@keyframes glare-sweep {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Scroll fade-up animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer_bg_section {
    background-image: url("../images/footer_bg@2x-100.jpg");
    height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact_form_image {
    margin-left: -200px;
}

.contact_form_wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 12px auto;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 24px;
    padding: 24px;
}

.input_field {
    width: 100%;
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    padding: 12px 16px;
    overflow: hidden;
    font-family: "Satoshi", sans-serif;
    border: 1px solid transparent;
    transition: 0.4s;
}

.input_field:focus,
.input_field:hover {
    border: 1px solid var(--colorAccent);
}

.input_field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


.side_navigation_content .heading {
    font-family: "Satoshi", sans-serif;
    font-weight: bold;
    border-bottom: 1px solid var(--divider);
    padding: 8px 12px;
    margin: 0 16px;
    color: white;
    text-transform: uppercase;
}

.floating_chat_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #000000;
    color: white;
    border: 2px solid var(--colorAccent);
    border-radius: 50px;
    padding: 12px 28px;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.floating_chat_btn span {
    font-size: 18px;
    font-family: "Marcellus", sans-serif;
    white-space: nowrap;
}

.floating_chat_btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.floating_chat_btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
}

.floating_chat_btn:hover i {
    transform: translateX(4px);
}

@media only screen and (max-width: 780px) {

    .floating_chat_btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
    }

    .floating_chat_btn span {
        font-size: 15px;
    }

    .blog_card {
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px);
    }

    .toolbar_root {
        padding-bottom: 0;
    }

    .toolbar_root.full {
        padding-bottom: 40px;
    }

    .toolbar_root #main_logo {
        height: 40px;
        width: 120px;
        min-width: 120px;
        margin: 4px 8px;
        transition: 0.4s;
        flex: 0 0 auto;
        object-fit: contain;
    }

    .toolbar_badge:first-of-type {
        width: 60px;
    }

    .toolbar_badge:last-of-type {
        width: 50px;
    }

    .toolbar_badge {
        margin-bottom: -24px;
    }

    .page_heading {
        font-size: 26px;
    }

    .section_wrapper {
        padding: 30px 0;
    }

    .page_heading.left_aligned {
        text-align: center;
    }

    .footer_container {
        width: calc(100% - 6px);
    }

    .base_margin {
        margin-top: 0;
    }

    .explore_section_item {
        width: calc(100%) !important;
        position: sticky;
        top: 0; /* stick at top */
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .explore_section_item .content a {
        opacity: 1;
    }

    .explore_section_item .content span {
        opacity: 1;
    }


    .explore_section_item .content span,
    .explore_section_item .content .explore_link {
        opacity: 1 !important;
    }

    .rooted_rising_section img {
        height: 50px;
        margin: 24px 0;
        padding: 0 16px;
    }

    .our_values_section {
        margin-top: -80px;
        padding-top: 150px;
    }

    .our_values_heading {
        font-size: 32px;
        margin: 12px;
    }

    .values_content_wrapper {
        padding: 24px 16px;
        align-items: flex-start;
    }

    .values_content_wrapper span {
        width: 100%;
        font-size: 28px;
        padding: 4px 0;
    }

    .values_content_wrapper p {
        width: 100%;
        font-size: 16px;
        margin: 8px 0;
    }

    .values_content_wrapper span.small {
        width: 100%;
        font-size: 14px;
        text-align: left;
        line-height: 1.8;
    }

    .our_values_section {
        background-size: 100% 40%;
    }

    .our_values_section:before {
        background: linear-gradient(to bottom, transparent, transparent 20%, #000000 0%, rgb(0, 0, 0));
    }


    .parallax_section .content_wrapper {
        padding: 40px 24px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    }

    .parallax_section .content_wrapper span {
        font-size: 32px;
    }

    .testimonial_wrapper .quote_icon {
        width: 40px !important;
        height: 40px;
        margin-top: 20px;
        margin-bottom: -60px;
        margin-left: -90px;
        z-index: 2;
        object-fit: contain;
    }

    .contact_form_image {
        margin-left: auto;
    }
}
