* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}


.menu_cont>ul>li {
    list-style: none;
}

.menu_cont>ul>li>a {
    text-decoration: none !important;
    background: none !important;
    color: #141422;
    font-weight: 500;
    font-size: 18px;
}

.menu_cont {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
}
.menu_cont > h3 {
    color: #092860;
}

.menu_cont>ul {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.service_dropdown {
    background: #fff;
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .5s ease;
    top: 100%;
    min-width: 100px;
    width: 300px;
    max-width: 300px;
    color: #141422;
    font-weight: 500;
    border-radius: 0px 0px 5px 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    visibility: hidden;
    padding: 10px;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);

}

.service_dropdown>a {
    text-decoration: none;
    color: #141422;
}

.header_service {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: #141422;
    font-weight: 500;
    cursor: pointer;
    font-size: 18px;

}

.header_service:hover+.service_dropdown,
.service_dropdown:hover {
    height: 150px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.service_dropdown>a:hover {
    color: #1765E5;
}

.header_contact_info {
    /* border-left: 1px solid #F0F0F0; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_contact_info>div>div {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 500;
}

.service_footer_cont a {
    background-image: linear-gradient(#1765E5, #1765E5), linear-gradient(#1765E5, #1765E5);
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 83%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
    line-height: 1.5;
    padding: 2% 0;
    text-decoration: none;
    color: #ffffffbb;
}

.service_footer_cont a:hover {
    color: #1765E5;
    background-size: 0 1px, 100% 1px;
}

.page_cont {
    width: 100%;
    height: 100vh;
    overflow: auto;
}

.hero__img {
    position: absolute;
    right: 0;
    top: 0;
}

.hero__img>img {
    height: 450px;
    width: 500px;
    object-fit: contain;
}

.main_header_wrapper {
    width: 100%;
    height: 75px;
    /* padding: 10px 20px; */
    display: flex;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
    margin-top: -1px;
}
/* .logo>img {
    transform: scale(1.3);
} */
.main_header_section {
    width: 100%;
    height: 100%;
    background-color: white;
    /* border-radius: 50px; */
    display: grid;
    grid-template-columns: 200px auto 400px;
    /* -webkit-box-shadow: 1px 1px 12.5px 5px #efecec;
    -moz-box-shadow: 1px 1px 12.5px 5px #efecec;
    box-shadow: 1px 1px 12.5px 5px #efecec; */
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    padding-left: 20px;

}

.logo>img {
    height: 65px;
    object-fit: contain;
    width: 100%;
    border-radius: inherit;
}

/* FOOTER STYLES */
button {
    outline: 0;
    border: transparent;
    cursor: pointer;
}

.main_footder_section {
    width: 100%;
    height: auto;
    display: grid;
    padding: 0px 10px;
    gap: 30px;
}

.footer_service {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: 20px;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    background: linear-gradient(135deg, #ffffff, #f4e0f7, #cbe7ff);
    color: #333;
    padding-bottom: 50px;
    background: #011440;
    color: #ffffffbb;
    position: relative;
    justify-items: center;
}

.footer_service>.cmpny_details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
}
.cmpny_details > h2 {
    color: #fff;
}
.footer_service>div {
    height: auto;
}

.service_footer_cont,
.contact_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service_footer_cont>ul,
.contact_info>ul {
    list-style: none;
}

.service_footer_cont>ul>li,
.contact_info>ul>li {
    padding: 5px 0px;
    cursor: pointer;
}

.service_footer_cont>span,
.contact_info>span {
    color: #6B7278;
    font-weight: 500;
    font-size: medium;
    color: #fff;
}

.copy_rights_aegan {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0px;
    border-top: 1px solid #042459;
    font-size: 15px;
}

.choose_section_tle {
    padding: 10px 30px;
    border-radius: 20px;
    background-color: #F2D6F4;
    font-weight: 500;
}

.header_menu {
    display: none;
    cursor: pointer;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style for the div */
.fade-in {
    opacity: 0;
    /* Start hidden */
    animation: fadeSlideIn 0.8s ease-out forwards;
    /* Apply the animation */
}
.cmpy_name {
    display: none;
    text-align: center;
    color: #092860;
    background-color: white;
    margin-top: -1px;
}
@media (max-width: 600px) {
    .hero_sec_banner img {
        height: 400px !important;
        object-position: center center !important;
    }
    .main_header_wrapper {
        flex-direction: column;
        height: 100px;
    }
    .cmpy_name {
        display: block;
    }
    .inquiry-form_cont {
        order: -1;
    }
    .loop-slider-2 {
        display: none;
    }
    .header_menu {
        display: block;
    }
    .service_detail_banner_content {
        padding: 0px 10px !important;
    }
    .service_detail_banner_content > h2 {
        font-size: x-large !important;
    }
    .header_contact_info {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .footer_service {
        grid-template-columns: 1fr;
        justify-items: left;
    }

    h1,
    h2 {
        font-size: large;
    }

    .copy_rights_aegan {
        font-size: 13px;
        text-align: center;
    }

    .service_footer_cont>ul>li,
    .contact_info>ul>li {
        font-size: medium;
    }

    .footer_service>.cmpny_details {
        width: 100%;
    }

    .main_header_section {
        grid-template-columns: 120px auto;
    }

    .menu_cont {
        display: none;
    }

    .logo>img {
        width: 90px;
        height: 100%;
    }

    .logo {
        justify-content: flex-start;
        padding-left: 0px;
    }

    .header_contact_info {
        font-size: 12px;
        font-weight: 500;
    }

    .header_contact_info>div span {
        font-size: 12px !important;
    }

    .hero__img>img {
        height: 100%;
        width: 300px;
        object-fit: contain;
        opacity: 0.1;
    }

    .contact-section {
        grid-template-columns: 1fr !important;
        /* grid-auto-rows: 1fr; */
        gap: 50px;
    }

    .pattern_bg {
        height: 50% !important;
    }

    .inquiry-form,
    .contact-card {
        width: 86% !important;
    }

    .image-container img {
        width: 33.333% !important;
    }

    .hero_section {
        height: 400px !important;
    }

    .hero_content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 100% !important;
        left: 0px !important;
        bottom: 80px !important;
        padding: 5px !important;
    }

    .hero_content li {
        align-items: center;
        justify-content: center;
    }

    .content-wrapper {
        align-items: center !important;
    }

    .content-wrapper>h1 {
        font-size: 30px !important;
    }

    .contact-methods {
        flex-direction: column-reverse !important;
    }
    .loop-slider-2 {
        display: none;
    }
    .galary_cont {
        height: auto !important;
    }

    .service_galary {
        order: 1 !important;
        height: 100% !important;
    }

    .galary_cont {
        height: auto !important;
    }

    .galary_cont {
        order: 1;
    }

    .inquiry-form {
        width: 100% !important;
    }

    .inquiry-form>iframe {
        height: 1100px !important;
    }

    .contact-section {
        padding: 0px 0px 20px 0px !important;
    }
    .gallery__item img{
        height: 200px !important;
        width: 200px !important;
    }
    .gallery {
        padding-top: 10px !important;
    }
    #contactus {
        flex-direction: column-reverse !important;
        gap: 20px;
        padding: 20px 0px;
    }
    #contactus {
        margin: 0px !important;
    }
    .logo>img {
        position: absolute;
        top: 5px;
        height: 65px;
    }
    .cmpy_name > h1 {
        font-size: 15px !important;
    }
}

@media (min-width: 601px) and (max-width: 830px) {
    .logo>img {
        position: absolute;
        top: 5px;
        height: 90px;
    }
    .hero_sec_banner img {
        height: 450px !important;
        object-position: center center !important;
    }
    .main_header_wrapper {
        flex-direction: column;
        height: 100px;
    }
    .cmpy_name {
        display: block;
    }
    #contactus {
        flex-direction: column-reverse !important;
        gap: 20px;
        padding: 20px 0px;
    }
    #contactus {
        margin: 0px !important;
    }
    .gallery__item img{
        height: 200px !important;
        width: 200px !important;
    }
    .inquiry-form_cont {
        order: -1;
    }
    .loop-slider-2 {
        display: none;
    }
    .inquiry-form {
        width: 100% !important;
    }
    .service_detail_banner_content {
        padding: 0px 10px !important;
    }
    .gallery {
        padding-top: 10px !important;
    }
    .service_detail_banner_content > h2 {
        font-size: x-large !important;
    }

    .inquiry-form>iframe {
        height: 1100px !important;
    }

    .contact-section {
        padding: 0px 0px 20px 0px !important;
    }

    .galary_cont {
        height: auto !important;
    }

    .hero_section {
        height: 400px !important;
    }

    .contact-methods {
        flex-direction: column-reverse !important;
    }

    .hero_content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 100% !important;
        left: 0px !important;
        bottom: 20px !important;
        padding: 5px !important;
    }

    .hero_content li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .image-container img {
        width: 33.333% !important;
    }

    .hero_section {
        height: 400px !important;
    }

    .hero__img>img {
        height: 100%;
        width: 400px;
        object-fit: contain;
        opacity: 0.2;
    }

    .header_menu {
        display: block;
    }

    .header_contact_info {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .service_details_banner>h2 {
        font-size: large;
    }

    .contact-section {
        grid-template-columns: 1fr !important;
    }

    .pattern_bg {
        height: auto !important;
    }

    .inquiry-form,
    .contact-card {
        width: 80% !important;
    }
}

/* Medium devices (tablets, 601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .loop-slider-2 {
        display: none;
    }
    .inquiry-form {
        width: 80% !important;
    }

    .galary_cont {
        height: auto !important;
    }

    .pattern_bg {
        height: auto !important;
    }

    .inquiry-form_cont {
        order: -1;
    }

    .header_menu {
        display: block;
    }

    .header_contact_info {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .contact-section {
        grid-template-columns: 1fr !important;
        /* grid-auto-rows: 1fr; */
        gap: 50px;
    }

    .footer_service {
        grid-template-columns: 1fr 1fr;
        justify-items: left;
    }

    .main_header_section {
        grid-template-columns: 150px auto;
    }

    .menu_cont {
        display: none;
    }

    .logo>img {
        width: 100px;
    }

    .logo {
        justify-content: flex-start;
    }

    .header_contact_info {
        font-size: 14px;
    }

    h1,
    h2 {
        font-size: x-large;
    }

    span {
        font-size: medium;
    }

    .hero__img>img {
        height: 100%;
        width: 400px;
        object-fit: contain;
    }

}

.logo {
    position: relative;
    /* background: #f9f94e;
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%); */
}


/* Large devices (laptops, 1025px and above) */
@media (min-width: 1025px) {}

/* Extra large devices (desktops, 1440px and above) */
@media (min-width: 1440px) {}

.slider_banner_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    height: 550px;
    width: 100%;
    padding: 50px 0px 0px 0px;
    background-image: url("assets/side-wave_background.jpg");
}

.slider_banner_cont>.swiper {
    width: 90%;
    padding: 10px 0px;
    height: 100%;
}

.card-wrapper {
    position: relative;
    height: 100%;
}

.swiper-pagination {
    position: relative !important;
    bottom: 0;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service_slider_item {
    height: 100% !important;
    position: relative;
}

.service_slider_list {
    height: auto !important;
}


.service_slider_item>a {
    text-decoration: none;
    font-weight: 600;
}

.service_slide_cont {
    font-weight: 500;
    font-size: smaller;
    color: black;
}


body.active .menu_slider {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    z-index: 9999;
}

.menu_drawer {
    display: none;
}

body.active .menu_drawer {
    animation: slideDown 0.3s ease-in-out;
    height: 100vh;
    width: 70%;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    display: block;

}

.drawer_menu_list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
}

.drawer_menu_list a,
.submenu a {
    text-decoration: none;
    color: #333;
}

.menu_item_with_submenu {
    position: relative;
    cursor: pointer;
}

.menu_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    padding: 0px 10px;
}

.submenu a {
    padding: 5px 0;
    font-size: 0.9em;
}

.submenu.open {
    max-height: 300px;
    opacity: 1;

}

.arrow_icon {
    transition: transform 0.4s ease;
}

.menu_item_with_submenu.open .arrow_icon {
    transform: rotate(180deg);
}


/* Define the animation */
@keyframes slideDown {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.service_details_banner {
    width: 100%;
    height: 500px;
    position: relative;
    /* background-image: url("assets/basement-development_banner.webp"); */

    margin-bottom: 20px;
}

.service_detail_banner_content {
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 10px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.service_details_banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #F0F0F0;
}

.swiper-container,
.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}


.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    background-color: #f7f7f7;
}

/* Contact Methods */
.service_detail_contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
}

.contact-section {
    position: relative;
}

.pattern_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
}

.contact-card>.icon {
    position: relative;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Inquiry Form */
.inquiry-form_cont {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.inquiry-form {
    background-color: #ffffff;
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.wf-parent {
    padding: 0px !important;
    background-color: transparent !important;
}

/* Support Statement */
.support-statement {
    max-width: 500px;
    background-color: #e9f7ef;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #333;
    font-size: 1em;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loop_slide {
    width: 100%;
    min-height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    /* background: rgba(0, 0, 0, 0.8); */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 30%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.1) 90%,
            rgba(0, 0, 0, 0) 100%);

}

.highway-slider {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 75px;
}

.highway-slider .highway-barrier {
    overflow: hidden;
    position: relative;
}

.highway-slider .highway-lane {
    display: flex;
    height: 100%;
    gap: 50px;
}

.highway-slider .highway-lane .highway-car {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c7c7c7;
    font-size: 12px;
}

@keyframes translatestf {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-500%);
    }
}

#stffull .highway-barrier .highway-lane {
    width: 500%;
}

#stffull .highway-barrier .highway-lane .highway-car {
    animation: translatestf 30s linear infinite;
}

#stffull .highway-barrier .highway-lane .highway-car h4 {
    font-size: 28px;
}

@keyframes translateinfinite {
    100% {
        transform: translateX(calc(-180px * 12));
    }
}

#infinite .highway-barrier {
    /* box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.3); */
    position: relative;
}

#infinite .highway-barrier::before,
#infinite .highway-barrier::after {
    content: " ";
    position: absolute;
    z-index: 9;
    width: 180px;
    height: 100%;
}

#infinite .highway-barrier::before {
    top: 0;
    left: 0;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
}

#infinite .highway-barrier::after {
    top: 0;
    right: 0;
    /* background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
}

#infinite .highway-barrier .highway-lane {
    width: calc(180px * 24);
}

#infinite .highway-barrier .highway-lane .highway-car {
    min-width: 180px;
    animation: translateinfinite 25s linear infinite;
}

#infinite .highway-barrier .highway-lane .highway-car .fab {
    font-size: 65px;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.image-container img {
    height: 160px;
    object-fit: cover;
    width: calc(100% / 6);
}

.hero_section {
    position: relative;
    height: 800px;
    background: rgba(0, 0, 0, 0.8)
}

.hero_sec_banner {
    /* height: 100%; */
}

.hero_content {
    position: absolute;
    left: 0%;
    padding-left: 40px;
    bottom: 40%;
    z-index: 99;
    background: transparent;
    min-width: 10%;
    max-width: 100%;
}

.hero_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 30%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.2) 90%,
            rgba(0, 0, 0, 0) 100%);

}

.content-wrapper>h1 {
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
}

.content-wrapper>button {
    background-color: yellow;
    color: #333;
    padding: 10px;
    height: 40px;
    width: 200px;
    font-weight: 600;
    font-size: 15px;
}

.service_slider_item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service_banner_content {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 240px;
    z-index: 99;
    background-image: url(./assets/blue-bg-shape.png);
    border-radius: 3px;
    border-top: 1.5px solid #f9f94e;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 0px 20px;
    background-size: cover;
    background-position: center;
}

.service_banner_svg {
    position: absolute;
    top: -23%;
    color: #f9f94e;
    left: 10px;
}

.service_svg {
    position: absolute;
    top: -20px;
    left: 45px;
    fill: #333;
    transition: transform 0.4s;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
}

.service_slider_item:hover .service_svg {
    transform: rotateY(180deg);
}

.service_slide_title {
    color: #f9f94e;
}

.service_slide_cont {
    color: #F3F1F2;
}

.service_banner_content_readmore {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #E63A27;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
}

.service_banner_content_logo {
    height: 150px !important;
    width: 150px !important;
    position: absolute;
    top: -53px;
    left: 3px;
    object-fit: contain !important;
}

.fadeSlide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Content wrapper for animation */
.content-wrapper {
    opacity: 0;
    transform: translateX(-100px);
    /* Start position to the left */
    transition: opacity 0.2s ease, transform 0.8s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: baseline;
    align-items: baseline;
}

/* When the slide is active */
.swiper-slide-active .content-wrapper {
    opacity: 1;
    transform: translateX(0);
    /* Move to its original position */
}

.service_galary {
    width: 100%;
    /* Ensure full width for the container */
    overflow: hidden;
    /* Hide the overflowing content */
    position: relative;
}

.gallery_wrapper {
    display: flex;
    gap: 20px;
    animation: slide 15s linear infinite;
    height: 100%;
    width: 100%;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
  }
  .gallery > h3 {
    font-size: medium;
  }
  
  .loop-slider .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
    gap: 15px;
  }
  
  .gallery__item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #334155; */
    border-radius: 0.4rem;
  }
  
  .gallery__item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .fade {
    pointer-events: none;
    background: linear-gradient(90deg, #f7f7f7, transparent 10%, transparent 90%, #f7f7f7);
    position: absolute;
    inset: 0;
  }
  
  @keyframes loop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  


@keyframes slide {
    0% {
        transform: translateX(0);
        /* Start from the initial position */
    }

    100% {
        transform: translateX(-100%);
        /* Move left by one group width */
    }
}

.standardForm {
    overflow: hidden;
}

iframe {
    height: 1250px !important;
}

.fieldContWrapper {
    padding: 0px !important;
}