/* Global css start here... */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('../node_modules/bootstrap-icons/font/bootstrap-icons.min.css');

:root {

    --primary: #D9291C;
    --secondary: #00205B;
    --chartreuse-green-7: #Addc91;
    --blue-21: #152256;
    --grey-20: #333333;
    --grey-95: #F2F2F2;
    --grey-10: #191919;
    --blue-47: #6C6C85;

    --fs-10: 10px;
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 18px;


    --background-white: #ffffff;
    --white-02: rgba(255, 255, 255, 0.00);



    --font-family-Font-1: "Montserrat", sans-serif;
    --font-family-Font-2: "Inter", sans-serif;

    --radius-50: 50px;
}

* {
    padding: 0rem;
    margin: 0rem;
    box-sizing: border-box;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--background-white);
}

::selection {
    background: var(--secondary);
    color: var(--background-white);
}

body {
    font-family: var(--font-family-Font-1);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--secondary);
    -webkit-font-smoothing: antialised;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast !important;
    }
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance: none) and (stroke-color: transparent) {
        img {
            image-rendering: unset !important;
        }
    }
}

a,
a:focus,
a:hover {
    color: var(--secondary);
    outline: none;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-primary,
.btn.btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    height: 44px;
    padding: 0 25px;
    /* border-radius: 50px; */
    font-size: 16.4px;
    line-height: 44px;
}

.btn.btn-primary {
    background-color: var(--secondary);
    color: var(--background-white);
}

.btn.btn-secondary {
    background-color: var(--primary);
    color: var(--background-white);
}


.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary.active {
    background-color: var(--chartreuse-green-7);
}



.btn.btn-primary.sm {
    color: var(--background-white);
    font-family: var(--font-family-Font-1);
    font-size: calc(var(--fs-14) + .3px);
    font-style: normal;
    font-weight: 500;
    line-height: 195.804%;
    background: var(--secondary);
    height: 28px;
    border: 0px;
    /* border-radius: var(--radius-50);
    -webkit-border-radius: var(--radius-50);
    -moz-border-radius: var(--radius-50);
    -ms-border-radius: var(--radius-50);
    -o-border-radius: var(--radius-50); */
    padding: 0px 21.4px;
}

.btn.btn-primary.sm:hover,
.btn.btn-primary.sm:active,
.btn.btn-primary.sm.active {
    background: var(--chartreuse-green-7);
    border: 0px;
}

@media screen and (min-width: 1400px) {
    .container-thin {
        max-width: 1140px;
    }
}

/* Global css end here... */

/* Header css start here... */

.header {
    box-shadow: 0px 5px 11px 0px rgba(0, 0, 0, 0.12);
    padding: 18px 0px 10px 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--background-white);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.top-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 42px;
}

.top-head .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1px 2.48px 1px 2.47px;
    gap: var(--fs-12);
}

.top-head .right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.top-head .right p {
    color: var(--blue-21);
    font-family: var(--font-family-Font-1);
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 300;
    line-height: 128.571%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.top-head .right .btn.btn-primary {
    font-weight: 300;
}

.navbar .navbar-brand {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.navbar .navbar-brand .brand-title-img {
    width: 160px;
    height: auto;
    margin-left: 28px;
}

.navbar .navbar-brand>img {
    width: 50px;
    height: 50px;
}

.navbar .navbar-collapse ul {
    gap: 4.2px;
}

.navbar .navbar-collapse .nav-item {
    padding: 11.7px 0px 11.7px 20px;
}

.navbar .navbar-collapse .nav-item .nav-link {
    color: var(--secondary);
    font-size: calc(var(--fs-14) + .3px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding: 0;
    z-index: 2000 !important;
    position: relative;
}

.navbar .navbar-collapse .nav-item .nav-link:active,
.navbar .navbar-collapse .nav-item .nav-link:hover,
.navbar .navbar-collapse .nav-item .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-collapse .nav-item .mega-menu-dropdown {
    position: absolute;
    left: 0 !important;
    width: 65%;
    margin: 0 auto;
    background: var(--background-white);
    padding: 35.7px 64.3px;
    box-shadow: 0 5px 11px rgba(0, 0, 0, .12);
    right: 0;
    border-radius: 15px;
    border: 0;
    display: block;
    opacity: 0;
    transition: visibility 0s, opacity .3s linear;
    top: -9999px;
}

.navbar .navbar-collapse .nav-item.hover-content .mega-menu-dropdown {
    width: 80%;
    max-width: 1067px;
    padding: 25px 30px;
}

.navbar .navbar-collapse .nav-item.hover-content.find_branch .mega-menu-dropdown .btn {
    font-size: 17.9px !important;
}

.navbar .navbar-collapse .nav-item.hover-content.find_branch .mega-menu-dropdown h2 {
    white-space: nowrap;
    color: var(--primary);
    font-weight: 300 !important;
    margin-bottom: 49px;
}

.navbar .navbar-collapse .nav-item.hover-content.find_branch .mega-menu-dropdown input {
    background-color: #f2f2f2;
}

@media screen and (min-width: 992px) {

    .navbar .navbar-collapse .nav-item.hover-content.find_branch .mega-menu-dropdown {
        max-width: 700px;
        padding: 35.7px 50px;
    }

    .navbar .navbar-collapse .nav-item.hover-content.find_branch .mega-menu-dropdown .btn {
        padding: 0px 42.5px;
    }

    .navbar .navbar-collapse .nav-item.hover-content.find_branch .mega-menu-dropdown h2 {
        font-size: 28.58px;
        line-height: 35px;
        margin-bottom: 35px;
    }

    .navbar .navbar-collapse .nav-item.hover-content.search-box .search-menu-dropdown {
        max-width: 428px;
        padding: 28.58px 18px 28.58px 28.58px;
    }

}


.navbar .navbar-collapse .nav-item.hover-content:hover .mega-menu-dropdown {
    opacity: 1;
    top: 60px !important;
}

.navbar .navbar-collapse .nav-item.hover-content:hover .mega-menu-dropdown::after {
    content: "";
    position: absolute;
    top: -52px;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    height: 70px;
}

.navbar .navbar-collapse .nav-item.hover-content.search-box .search-menu-dropdown {
    right: 0;
    left: initial !important;
    box-shadow: 0 5px 11px rgba(0, 0, 0, .12);
    border-radius: 15px;
}

.search-box .search-menu-dropdown .find-search-sec input {
    padding: 0 30px 0px 30px;
}

.search-box .search-menu-dropdown .find-search-sec .btn {
    height: 45px;
}

.search-menu-dropdown .bottom-main-section {
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    scrollbar-color: #e6e6e6;
    padding-right: 25px;
}

.search-menu-dropdown .bottom-main-section .suggested-section h2,
.search-menu-dropdown .bottom-main-section .need-some-help h2 {
    color: var(--secondary);
    font-size: 11.4px;
    line-height: 16px;
    margin-bottom: 0;
    letter-spacing: 1.2px;
    font-weight: 400;
    padding-left: 4px;
    margin-bottom: 17.86px;
}

.search-menu-dropdown .bottom-main-section .need-some-help {
    margin-top: 27.9px;
    padding-left: 4px;
}

.search-menu-dropdown .bottom-main-section .suggested-section ul {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0 !important;
    row-gap: 14px !important;
}

.search-menu-dropdown .suggested-section ul li {
    padding: 0 1px 0 10px;
}

.search-menu-dropdown .suggested-section ul li a,
.search-menu-dropdown .need-some-help ul li a {
    color: gray;
    box-shadow: 0 5px 11px rgba(0, 0, 0, .12);
    display: inline-block;
    font-weight: 400;
    text-decoration: none;
}

.search-menu-dropdown .need-some-help ul li a {
    box-shadow: none !important;
    font-size: 12.9px;
}

.search-menu-dropdown .need-some-help ul li h3 {
    margin-bottom: 0;
    line-height: normal;
    font-size: 100%;
}

.search-menu-dropdown .need-some-help ul {
    margin-top: 13.5px;
    padding-bottom: 0;
}

.search-menu-dropdown .need-some-help ul li {
    padding-left: 10px !important;
    border-left: 2px solid var(--secondary);
    padding-right: 0;
    margin-bottom: 20px;
}

.search-menu-dropdown .need-some-help ul li p a {
    font-size: 10px;
    color: #b3b3b3;
    margin-bottom: 0;
    padding-left: 3px;
}

@media screen and (min-width: 992px) {

    .search-menu-dropdown .bottom-main-section {
        max-height: 293.85px;
        margin-top: 29px;
    }

    .search-menu-dropdown .suggested-section ul li a {
        height: 33.6px;
        padding: 0 10px;
        border-radius: 50px;
        font-size: 12.9px;
        line-height: 33.6px;
    }

}

.mega-menu-dropdown .main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.mega-menu-dropdown .main .main-content .inner-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.mega-menu-dropdown .main .main-content .inner-menu .list-content h3 {
    font-size: 20px;
    line-height: 30px;
    color: var(--primary);
    margin: 0;
    font-weight: 300;
}

.border-right-light {
    border-right: 1px solid #e6e6e6;
}

.mega-menu-dropdown .main .main-content .inner-menu .list-content:nth-child(1) {
    padding: 0 14.3px 0 0;
}

.mega-menu-dropdown .main .main-content .inner-menu .list-content:nth-child(2) {
    padding: 0 14.3px 0 14.3px;
}

.mega-menu-dropdown .main .main-content .inner-menu .list-content:nth-child(3) {
    padding: 0 14.3px 0 14.3px;
}

.main-content .inner-menu .list-content ul {
    margin-top: 22px;
}

.mega-menu-dropdown .main .main-content .more {
    margin-top: 36px;
}

.mega-menu-dropdown .main .main-content .more .btn-link {
    font-size: var(--fs-16);
    color: var(--blue-21);
    font-weight: 400;
    line-height: 30px;
}

.mega-menu-dropdown .main .main-content .more .btn-link:hover,
.mega-menu-dropdown .main .main-content .more .btn-link:active,
.mega-menu-dropdown .main .main-content .more .btn-link.active {
    color: var(--primary);
}

.main-content .inner-menu .list-content ul li a {
    color: var(--grey-20);
    display: block;
    word-wrap: break-word;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: calc(var(--fs-14) + .3px);
    line-height: 22px;
    font-weight: 500;
}

.main-content .inner-menu .list-content ul li a:hover .main-content .inner-menu .list-content ul li a:active,
.main-content .inner-menu .list-content ul li a.active,
.mega-menu-dropdown .main .main-content .more .btn-link:hover,
.mega-menu-dropdown .main .main-content .more .btn-link:active,
.mega-menu-dropdown .main .main-content .more .btn-link.active {
    color: var(--primary);
}

.mega-menu-dropdown .main .side-content {
    width: auto;
    padding: 0 0 0 22px;
}

.mega-menu-dropdown .main .side-content .green-box {
    background-color: var(--chartreuse-green-7);
}

.mega-menu-dropdown .main .side-content .green-box .btn.btn-primary:hover,
.mega-menu-dropdown .main .side-content .green-box .btn.btn-primary:active,
.mega-menu-dropdown .main .side-content .green-box .btn.btn-primary.active {
    background-color: var(--primary);
}

.mega-menu-dropdown .main .side-content .green-box h3 {
    font-weight: 400;
    padding-bottom: 18px;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 30px;
}

@media screen and (min-width: 992px) {

    .mega-menu-dropdown .main .side-content .green-box {
        width: 260px;
        padding: 36px 39px 34px;
        border-radius: 21px;
    }

}


.navbar .navbar-collapse .right-sec ul {
    gap: 24.9px;
}

.navbar .navbar-collapse .right-sec ul li:first-child,
.navbar .navbar-collapse .right-sec ul li:last-child {
    padding-left: 20.7px;
}

.navbar .navbar-collapse .right-sec ul li .btn {
    font-size: calc(var(--fs-14) + .3px);
    font-weight: 300;
}

@media screen and (min-width: 1200px) {

    .navbar .navbar-brand {
        width: 28%;
        padding: 0 30px;
        justify-content: initial;
        margin: 0;
    }

    .navbar .navbar-brand .brand-title-img {
        width: 250px;
        margin-left: 14px;
        display: block;
    }
}

/* Header css end here... */

/* banner css start here... */

.head-info,
.head-info .btn {
    color: var(--grey-20);
    text-align: center;
    font-size: var(--fs-12);
    font-weight: 500;
    line-height: 116.667%;
    letter-spacing: 0.5px;
    padding: 12px 0px;
}

.head-info .btn {
    margin-left: 20px;
}

.home-banner {
    height: auto;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 1200px) {

    .home-banner.service-banner {
        height: 278.6px;
    }
}


.home-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 66.66%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 100%);
}

.home-banner.service-banner::before {
    content: none;
}

.home-banner .right-video-container {
    width: 100%;
    height: 551px;
    position: relative;
}

.home-banner .right-video-container .banner-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner.service-banner .right-video-container {
    width: 100%;
    height: 278.6px;
    position: relative;
}

.home-banner.service-banner .right-video-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.home-banner .left-section {
    position: absolute;
    left: calc(50vw - 570px + 12px);
    z-index: 3;
    width: 420px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    top: 0;
    bottom: 0;
}

.home-banner .left-section span {
    color: var(--chartreuse-green-7);
    font-size: calc(var(--fs-14) + .3px);
    font-style: normal;
    font-weight: 300;
    line-height: 125.874%;
    text-transform: uppercase;
}

.home-banner .left-section h1 {
    color: var(--background-white);
    font-size: 35.7px;
    font-weight: 300;
    line-height: 112.045%;
    letter-spacing: 1px;
}

.home-banner .left-section p {
    color: var(--background-white);
    font-size: 16.4px;
    font-weight: 300;
    line-height: 121.951%;
    max-width: 328px;
}

.home-banner .left-section .btn.btn-primary {
    padding: 0px 38px;
    line-height: 275%;
    font-weight: 300;
    height: auto;
    font-size: var(--fs-16);
    margin-top: 13px;
}

/* banner css start here... */


/* Services css start here... */

.section.p-60 {
    padding: 60px 0;
}

.section .title {
    color: var(--primary);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 111.111%;
    margin-bottom: 32px;
}

.section .desc {
    color: var(--grey-20);
    text-align: center;
    font-size: calc(var(--fs-18) + 2px);
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 62px;
}

.section .desc .btn {
    color: var(--primary);
    font-size: inherit;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 24px;
}

.service-list .list-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(var(--fs-14) + 1px);
    text-align: center;
}

.service-list .list-item .item-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    background: var(--white-02);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.29);
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding: var(--fs-18);
    position: relative;
    transition: all .3s;
}

.service-list .list-item .item-main::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 0 var(--chartreuse-green-7);
    pointer-events: none;
    transition: all .3s;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.service-list .list-item .item-main .item-img {
    width: 100%;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-list .list-item .item-title {
    color: var(--primary);
    font-size: calc(var(--fs-18) + 2px);
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 10px !important;
    min-height: 50px;
}

.service-list .list-item .item-desc {
    color: var(--grey-20);
    font-size: 16.4px;
    font-weight: 400;
    line-height: 121.951%;
    height: 48px;
}

.service-list .list-item .item-title span, .service-list .list-item .item-desc span{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.service-list .list-item .bottom{
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #000000;
}

.service-list .list-item .bottom .btn span{
    background-color: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.service-list .list-item:hover .item-main {
    box-shadow: 7px 7px 15px rgba(0, 0, 0, .29);
    transform: scale(1.0338);
    transform-origin: center center;
}

.service-list .list-item:hover .item-main::after {
    box-shadow: 0 0 0 7px var(--chartreuse-green-7);

}

/* Services css end here... */

/* Nation-Services css start here... */

.nation-service {
    background-color: var(--secondary);
    padding: 72px 0;
}

.nation-service .title {
    color: var(--background-white);
    font-size: 35.7px;
    line-height: 112.045%;
    margin-bottom: 30px;
}

.serv-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 48px;
}

.serv-box .img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.serv-box .entry-text {
    max-width: 230px;
    margin: 0 auto;
}

.serv-box .entry-text h3 {
    height: 48px;
}

.serv-box .entry-text h3,
.serv-box .entry-text p {
    font-size: calc(var(--fs-18) + 2px);
    line-height: 120%;
    font-weight: 400;
    margin: 22px 0px 0px;
    color: var(--background-white);
}

.serv-box .entry-text p {
    font-size: calc(var(--fs-16)) + .4px;
    line-height: 146.341%;
}


/* Nation-Services css end here... */

/*  Industries-Services css start here...  */
/* Services css start here... */

.service-list-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
    row-gap: 24px;
    margin-top: 60px;
}

.service-list-2 .list-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: stretch;
}
.service-list-2 .list-item.box {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.29);
}

.service-list-2 .list-item .item-main{
    position: relative;
}

.service-list-2 .list-item .item-main .item-img {
    width: 100%;
    height: 195px;
}

.service-list-2 .list-item .item-main .logo-icon{
    background-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 5px solid var(--background-white);
    border-radius: 50%;
    bottom: -16%;
    position: absolute;
    left: 4%;
}

.service-list-2 .list-item .text-start{
    padding: 0 15px;
}

@media screen and (min-width: 1200px) {
    .service-list-2.service-content .list-item .item-main .item-img {
        height: 213.6px;
    }
}


.service-list-2 .list-item .item-main .item-img img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    object-fit: cover;
    transition: all .3s;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.service-list-2 .list-item.box .item-main .item-img img {
    padding: 6px;
}

.service-list-2.service-content .list-item .item-main .item-img img {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.service-list-2 .list-item.box:hover{
    box-shadow: 7px 7px 15px rgba(0, 0, 0, .29);
}
.service-list-2 .list-item:hover .item-main .item-img img {
    transform: scale(1.035);
    transform-origin: center center;
}


.service-list-2 .list-item .card-title {
    font-size: calc(var(--fs-18) + 2px);
    font-weight: 400;
    line-height: 120%;
    color: var(--primary);
}
.service-list-2 .list-item .card-title span{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 50px;
}

.service-list-2 .list-item .desc {
    color: var(--grey-20);
    font-size: calc(var(--fs-16) + .4px);
    font-weight: 400;
    line-height: 146.341%;
    margin: 21.4px 0;
    text-align: start;
    height: 230px;
}

.service-list-2 .list-item ul.service li {
    padding-bottom: 15px;
}

.service-list-2 .list-item ul.service li .service-link {
    color: var(--grey-20);
    font-size: calc(var(--fs-16) + .4px);
    font-style: normal;
    font-weight: 500;
    line-height: 121.951%;
    text-decoration: none;
}

.service-list-2 .list-item ul.service li .service-link:hover,
.service-list-2 .list-item ul.service li .service-link:active {
    color: var(--primary);
}

/* Industries css start here... */

.industries-list-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
    row-gap: 24px;
    margin-top: 60px;
}

.industries-list-2 .list-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.industries-list-2 .list-item .item-main{
    position: relative;
}

.industries-list-2 .list-item .item-main .item-img {
    width: 100%;
    height: 195px;
}

@media screen and (min-width: 1200px) {
    .industries-list-2.industries-content .list-item .item-main .item-img {
        height: 213.6px;
    }
}


.industries-list-2 .list-item .item-main .item-img img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    object-fit: cover;
    transition: all .3s;
    -webkit-border-radius: 15px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.industries-list-2.industries-content .list-item .item-main .item-img img {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.industries-list-2 .list-item .card-title {
    font-size: calc(var(--fs-18) + 2px);
    font-weight: 400;
    line-height: 120%;
    color: var(--primary);
}

.industries-list-2 .list-item:hover .item-main .item-img img{
    transform: scale(1.035);
    transform-origin: center center;
}
.industries-list-2 .list-item:hover .card-title {
    text-shadow: 0 0 1px var(--primary);
}

.seo-mainfaq-sec {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding: 60px 0;
}
.seo-mainfaq-sec .faq-head1{
    display: flex;
    flex-direction: row;
}
.seo-mainfaq-sec .faq-head1 .faq-title1{
    background-color: var(--primary);
    color: white;
    font-size: var(--fs-14);
    font-weight: 500;
    line-height: 107.692%;
    letter-spacing: 1.82px;
    position: relative;
    padding: 6px;
    border-radius: 10px;
}
.seo-mainfaq-sec .faq-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    /* height: 382px; */
    height: 241px;
}

.seo-mainfaq-sec .faq-right-sec .faq-head {
    display: flex;
    flex-direction: row;
}

.faq-right-sec .faq-head .faq-title {
    color: var(--grey-20);
    font-size: calc(var(--fs-14) * 2 - 2px);
    font-weight: 500;
    line-height: 107.692%;
    letter-spacing: 1.82px;
    position: relative;
    padding-bottom: 13px;
}

.faq-right-sec .faq-head .faq-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--chartreuse-green-7);
    height: 5px;
    border-radius: 4px;
}

.faq-list {
    position: relative;
    z-index: 10;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.faq-list .accordion .accordion-item {
    border-bottom: 3px solid #eeeeee !important;
    transition: all .6s ease;
}

.faq-list .accordion .accordion-item .accordion-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all .6s ease;
}

.faq-list .accordion .accordion-item .accordion-header .accordion-button {
    font-weight: 400;
    letter-spacing: 1.15px;
    word-break: break-word;
    color: var(--grey-20);
    background-color: transparent;
    box-shadow: none;
    padding: 16px;
}

.faq-list .accordion .accordion-item .accordion-header .accordion-button::after {
    content: "\F4FE";
    background: none;
    font-family: "bootstrap-icons";
    font-size: 30px;
    line-height: 24px;
    font-weight: 700;
    color: var(--chartreuse-green-7);
    margin-right: 10px;
}

.togal-icon{
    content: "\F4FE";
    background: none;
    font-family: "bootstrap-icons";
    font-size: 30px;
    line-height: 24px;
    font-weight: 700;
    color: var(--chartreuse-green-7);
    margin-right: 10px;
}

.seo-mainbenifits-sec {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    padding: 60px 0;
}
.benifits-list {
    position: relative;
    z-index: 10;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.benifits-list .accordion .accordion-item {
    text-align: center;
    border: 2px solid var(--primary);
    transition: all .6s ease;
    padding: 22px 20px;
    border-top: none;
}
.benifits-list .accordion .accordion-item:first-of-type{
    border-top: 2px solid var(--primary);
}

.benifits-list .accordion .accordion-item .accordion-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all .6s ease;
}

.benifits-list .accordion .accordion-item .accordion-header .accordion-button {
    font-weight: 400;
    letter-spacing: 1.15px;
    word-break: break-word;
    color: var(--grey-20);
    background-color: transparent;
    box-shadow: none;
    padding: 16px;
}

.benifits-list .accordion .accordion-item .accordion-header .accordion-button::after {
    content: "\F4FE";
    background: none;
    font-family: "bootstrap-icons";
    font-size: 30px;
    line-height: 24px;
    font-weight: 700;
    color: var(--chartreuse-green-7);
    margin-right: 10px;
}
.benifits-list .accordion .accordion-item .accordion-header .accordion-button[aria-expanded="true"]::after {
    content: "\F2EA";
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
.seo-mainbenifits-sec .faq-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 382px;
}
.seo-mainbenifits-sec .faq-right-sec .faq-head {
    display: flex;
    flex-direction: row;
}
.benifits-qus{
    width: 100%;
    margin: 0 auto;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d9291c;
    text-align: center;
    font-size: 17px;
        line-height: 19px;
}

.top_detail_headings {
    color: #d9291c; /* Change this to your desired color */
} 
.bootam_detail_heading{
    color: #d9291c; /* Change this to your desired color */
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.faq-list .accordion .accordion-item .accordion-header .accordion-button[aria-expanded="true"]::after {
    content: "\F2EA";
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}

.faq-list .accordion .accordion-item .accordion-collapse.collapse {
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    background-color: var(--background-white);
}

.faq-list .accordion .accordion-item .accordion-body {
    padding-right: 44px;
    color: var(--grey-20);
    font-size: 16.4px;
    line-height: 20px;
    padding: 16px 44px 16px 16px;

}

/* .faq-list .accordion .accordion-item .accordion-collapse.collapse.show {
    padding-bottom: 14px;
    opacity: 1;
} */

/* Industries-Services css end here... */

/* promotion css start here... */

.promotions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.promotions .left-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotions .right-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promotions .right-section .container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
}

.promotions .right-section h2 {
    font-size: 35.7px;
    font-style: normal;
    font-weight: 400;
    line-height: 112.045%;
    margin-bottom: 0;
}

.promotions .right-section p {
    font-size: 16.4px;
    font-weight: 300;
    line-height: 170.732%;
    margin-bottom: 0;
}

.promotions.navy-component .right-section {
    background-color: var(--background-white);
}

.promotions.red-component .right-section {
    background-color: var(--background-white);
}

.promotions.navy-component .right-section h2 {
    color: var(--secondary);
}

.promotions.navy-component .right-section p {
    color: var(--primary);

}

.promotions.red-component .right-section h2 {
    color: var(--primary);
}

.promotions.red-component .right-section p {
    color: var(--secondary);

}

@media screen and (min-width: 1200px) {

    .promotions .right-section {
        padding: 72px 100px;
    }
}


.find-it .card-content {
    position: relative;
    /* overflow: hidden; */
    margin: 0 auto;
    background: var(--primary);
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    -ms-border-radius: 36px;
    -o-border-radius: 36px;
}

.find-it .card-content .content {
    position: absolute;
    top: 0;
    left: 6vw;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.find-it .card-content .content h2 {
    color: var(--background-white);
    font-size: 35.7px;
    font-weight: 400;
    line-height: 112.045%;
    margin-bottom: 44px;
    width: 68%;
}

/* promotion css end here... */

/* accredition-component css start here... */

.accredition-component {
    background-color: var(--grey-95);
    padding: 21.53px 8.75px;
}

.accredition-component ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 47.5px;
}

.accredition-component ul li img {
    max-width: 100%;
    object-fit: contain;
    height: 78px;
}

/* accredition-component css end here... */

/* review-content css start here... */

.tp-content {
    font-family: var(--font-family-Font-2);

}

.tp-content .left-total span {
    color: var(--grey-10);
    text-align: center;
    font-size: 22.313px;
    font-weight: 500;
    line-height: 107.563%;
}

.tp-content .left-total a.btn {
    color: var(--grey-10);
    text-align: center;
    font-size: calc(var(--fs-12) + 1px);
    font-weight: 300;
    line-height: 123.077%;
}

.right-review-content .tp-review .slick-arrow.slick-prev::before,
.right-review-content .tp-review .slick-arrow.slick-next::before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
}

.right-review-content .tp-review .slick-arrow.slick-prev::before {
    background-image: url("../img/slider-left-arrow.svg");
}

.right-review-content .tp-review .slick-arrow.slick-next::before {
    background-image: url("../img/slider-right-arrow.svg");
}

.right-review-content .review {
    margin: 0 15px 10px 0;
    padding: 0 0 0 20px;
}

.right-review-content .review .top {
    margin-bottom: 12px;
}

.right-review-content .review .top span {
    color: var(--blue-47);
    font-size: 11.984px;
    font-weight: 400;
    line-height: 133.507%;
}

.right-review-content .review .tp-widget-review-content {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
}

.right-review-content .review .tp-widget-review-content .head {
    color: var(--grey-10);
    font-size: var(--fs-14);
    font-weight: 700;
    line-height: 101.587%;
    height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 230px;
}

.right-review-content .review .tp-widget-review-content .text {
    color: var(--grey-10);
    font-size: var(--fs-12);
    font-weight: 400;
    line-height: 132.385%;
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.right-review-content .review .tp-widget-review-content .name,
.right-review-content .review .tp-widget-review-content .date {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.60);
    font-weight: 400;
    line-height: 101.587%;
}

/* review-content css end here... */


/* footer css start here... */

.footer {
    background-color: var(--secondary);
}

.footer .footer-inner {
    padding: 21.4px 0;
    height: initial;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.footer .footer-inner .foot-link {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    grid-column-gap: 66px;
    align-items: center;
    margin-bottom: 0;
    padding-left: 5px;
}

.footer .footer-inner .foot-link .nav-link {
    color: var(--background-white);
    font-size: 14.3px;
    line-height: 150%;
}

.footer .footer-inner .foot-link .nav-link:hover,
.footer .footer-inner .foot-link .nav-link:active,
.footer .footer-inner .foot-link .nav-link.active {
    color: var(--primary);
}

@media screen and (min-width: 1200px) {

    .footer .footer-inner .foot-link {
        margin: 0 0 0 50px;
        padding: 0;
        grid-column-gap: 47.15px;
    }
}

.footer .foot-credit h2 {
    color: var(--background-white);
    font-size: calc(var(--fs-14) + .3px);
    font-style: normal;
    font-weight: 400;
    line-height: 244.755%;
    margin-bottom: 8px;
}

.footer .foot-credit .btn {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 2px solid var(--background-white);
}

.footer .foot-credit .btn:hover,
.footer .foot-credit .btn:active {
    border-color: var(--primary);
}

.footer .foot-credit .btn:hover svg path,
.footer .foot-credit .btn:active svg path {
    fill: var(--primary);
}

.footer .foot-credit .page-footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14.2px;
}

/* footer css end here... */

/* breadcrumb css start here... */

.page-bread .breadcrumb li a {
    font-size: 16.4px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    color: var(--grey-20);
}

/* breadcrumb css end here... */

/* service-find css start here... */

.find-service .service-main {
    display: grid;
    grid-template-columns: 1fr 37.18%;
    background-color: var(--primary);
}

.find-service .service-main .left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.find-service .service-main .left-content h1 {
    font-size: 60px;
    line-height: 74px;
    font-weight: 500;
    color: var(--background-white);
    margin-bottom: 24px;
}

.find-service .service-main .left-content p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    color: var(--background-white);
    margin-bottom: 54px;
}

/* menu offcanvas start here... */

.offcanvas.menu-offcanvas {
    border-radius: 0 0 50px 50px;
    height: calc(100vh - 100px);
    background-color: var(--secondary);
}

.offcanvas.menu-offcanvas .offcanvas-body {
    border-radius: 0 0 50px 50px;
}

.offcanvas.menu-offcanvas .offcanvas-body ul li {
    padding-bottom: 25px;
}

.offcanvas.menu-offcanvas .offcanvas-body ul li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 26px;
    padding: 0;
    width: 205px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--background-white);
    gap: 20px;
    text-align: center;
}

.offcanvas.menu-offcanvas .offcanvas-body ul.service li a {
    font-size: 18px;
    width: 100%;
}

.offcanvas.menu-offcanvas .offcanvas-body .title {
    padding: 0 30px;
    margin-bottom: 22.78px;
    font-size: 25px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}

.offcanvas.menu-offcanvas .offcanvas-body hr {
    width: 85vw;
    border: 1px solid #ffffff;
    opacity: 1;
}

.offcanvas.menu-offcanvas .offcanvas-body .green-box {
    padding: 35px 49px 41px;
    border-radius: 21px;
    margin-top: 0;
    width: 288.3px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--chartreuse-green-7);
}

.offcanvas.menu-offcanvas .offcanvas-body .green-box h3 {
    width: 190px;
    font-size: 25px !important;
    line-height: 35px !important;
    color: var(--blue-21);
    font-weight: 400;
}

/* menu offcanvas end here... */


@media screen and (min-width: 1400px) {

    .find-service .service-main {
        height: 341px;
    }
}

@media screen and (min-width: 1200px) {

    .find-service .service-main .left-content .btns {
        gap: 3.8vw;
    }

    .find-service .service-main .left-content .btns .btn {
        min-width: 160px;
    }
}

.find-service .service-main .right-content {
    background: url("../img/step-banner-1.jpg") no-repeat 0 0;
    position: relative;
}

.find-service .service-main .right-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 12%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0, rgba(255, 255, 255, 0) 100%);
}


/* service-find css end here... */

/* compare css start here... */




.compare-vehicle {
    background-color: var(--primary);
    position: relative;
}

.compare-vehicle::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0px;
    pointer-events: none;
    background-image: url("../img/compare-bg-left.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(0deg);
}

.compare-vehicle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    pointer-events: none;
    background-image: url("../img/compare-bg-left.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.compare-vehicle::before,
.compare-vehicle::after {
    width: 44%;
    height: 180px;
}

.compare-vehicle {
    padding-top: 90px !important;
    padding-bottom: 100px !important;
}

.compare-vehicle .wehicles-compare-inner {
    padding-bottom: 20px;
    margin-top: 66px;
}

.compare-vehicle .wehicles-compare-inner .compare-item {
    max-width: 288px;
    height: 380px;
    padding-top: 35px;
    border-width: 7px;
    border-radius: 31px;
    margin: 0 24px 48px;
    -webkit-border-radius: 31px;
    -moz-border-radius: 31px;
    -ms-border-radius: 31px;
    -o-border-radius: 31px;
}

.wehicles-compare-inner .compare-item .compare-img {
    width: 198px;
    height: 106px;
    margin-top: 3px;
}

.compare-vehicle .wehicles-compare-inner .compare-item::after {
    border: 7px solid var(--background-white);
    border-radius: 31px;
}

.compare-vehicle .wehicles-compare-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.compare-vehicle .wehicles-compare-inner .compare-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-white);
    cursor: pointer;
}

.compare-vehicle .wehicles-compare-inner .compare-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: all .4s;
}

.compare-vehicle .wehicles-compare-inner .compare-item:hover::after,
.compare-vehicle .wehicles-compare-inner .compare-item:active::after {
    border-color: var(--chartreuse-green-7);
}

.wehicles-compare-inner .compare-item .compare-title {
    color: var(--secondary);
    text-align: center;
    font-size: var(--fs-18);
    font-weight: 400;
    line-height: 122.222%;
}

.wehicles-compare-inner .compare-item .compare-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transform: perspective(1px) translateZ(0);
}

.compare-vehicle .compare-item:active .compare-img {
    animation: hvr-buzz .3s 1 linear;
}

@keyframes hvr-buzz {
    50% {
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        transform: translateX(-3px) rotate(-2deg);
        -webkit-transform: translateX(-3px) rotate(-2deg);
        -moz-transform: translateX(-3px) rotate(-2deg);
        -ms-transform: translateX(-3px) rotate(-2deg);
        -o-transform: translateX(-3px) rotate(-2deg);
    }
}

.compare-vehicle .wehicles-compare-inner .compare-item-specs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.compare-item .specs-item {
    margin: 12px 10px 0;
    min-width: 70px;
}

.compare-item .specs-item-name,
.compare-item .specs-item-value {
    font-size: 12px;
    line-height: 16px;
}

.compare-item .specs-item-icon {
    height: 32px;
    margin-bottom: 8px;
    background-size: auto 32px !important;
}

.compare-item.btn-green {
    border: 7px solid var(--chartreuse-green-7);
    border-radius: 31px;
    font-size: 16px;
    line-height: 46px;
}

.compare-item .specs-item-name,
.compare-item .specs-item-value {
    font-weight: 300;
    color: var(--secondary);
    text-align: center;
}

.compare-item .specs-item-icon {
    background: no-repeat center 0;
}

.compare-item .specs-item-icon.is-length {
    background-image: url("../img/vehicle-length.svg");
}

.compare-item .specs-item-icon.is-width {
    background-image: url("../img/vehicle-width.svg");
}

.compare-item .specs-item-icon.is-height {
    background-image: url("../img/vehicle-height.svg");
}

.compare-item .specs-item-icon.is-pallets {
    background-image: url("../img/vehicle-pallets.svg");
}

.compare-item .specs-item-icon.is-maximum {
    background-image: url("../img/vehicle-max-width.svg");
}

.compare-item .btn-green {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Ensure it's not interactable */
    transition: opacity 0.4s ease, visibility 0.4s ease;
    box-sizing: border-box;
    width: 100%;
    font-weight: 300;
    text-align: center;
    color: var(--secondary);
    background-color: var(--chartreuse-green-7);
    border-radius: 30px;
    height: 50px;
}

.compare-item .btn-green.active {
    opacity: 1; /* Make button visible */
    visibility: visible;
}
.specialist-btn {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    box-sizing: border-box;
    width: 100%;
    font-weight: 300;
    text-align: center;
    color: #ffff;
    background-color:#00205b;
    transition: all .4s;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    height: 60px;
    width: 50%;
    margin: 30px;
    margin-left: 70px;
}

.compare-vehicle .wehicles-compare-inner:active .btn-green {
    opacity: 1;
}
.compare-item.selected {
    border: 7px solid var(--chartreuse-green-7); /* Green border */
    transition: border 0.4s ease;
}
/* Popup background */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Smooth overlay */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.visible {
    display: flex; /* Show when active */
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Popup content */
.popup-content {
    background: linear-gradient(to bottom, #ffffff, #f4f4f4); /* Subtle gradient */
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}

/* Close button */
.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4d4d;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.close-popup:hover {
    transform: scale(1.2);
    background: #ff1a1a;
}

/* Header styles */
.popup-content h2 {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* Popup image container */
.vehicle-img-wrapper {
    width: 100%;
    max-width: 200px; /* Adjust this for responsive design */
    height: 150px; /* Set fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #f4f4f4; /* Neutral background color */
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 0 auto 15px; /* Center image and add spacing below */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.vehicle-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures no distortion and scales properly */
}

/* Comparison container */
.comparison-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns content to the top */
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

/* Individual vehicle details */
.vehicle-detail {
    flex: 1;
    max-width: 48%; /* Adjust for equal width */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

/* Hover effect for individual cards */
.vehicle-detail:hover {
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

/* Styling for the specs section */
.vehicle-specs {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Align in two columns */
    gap: 10px;
}

.vehicle-spec {
    text-align: left;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.vehicle-spec:hover {
    background-color: #eaf3ff;
    transform: scale(1.02);
}

.vehicle-spec strong {
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.vehicle-spec span {
    color: #0047ab;
    font-size: 16px;
    font-weight: bold;
}


/* compare css end here... */

/* Vehicle-banner css start here... */

.vehicle-banner {
    background-color: var(--primary);
    margin-bottom: 100px;
    position: relative;
}

.vehicle-banner::before {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0;
    background: url('../img/vehicle-banner-bg.webp') no-repeat bottom;
    background-size: cover;
    width: 100%;
    height: 100%;
}


.vehicle-banner {
    padding: 69.6px 0 80px;
}

.vehicle-banner .vehicle-types-header {
    margin-bottom: 42.9px;
}


.vehicle-banner .vehicle-types-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    position: relative;
}

.vehicle-banner .vehicle-types-header h1 {
    color: var(--background-white);
    text-align: center;
    font-size: 43px;
    font-weight: 400;
    line-height: 176.744%;
}

.vehicle-slide-content {
    margin-bottom: 20px;
}

.vehicle-slide-content .vehicles .vehicle-item {
    opacity: .4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    flex-wrap: wrap;
    display: block;
    /* margin: 0px 115.2px; */
}

.vehicles .vehicle-img img {
    position: relative;
    margin: 0 auto;
    width: 38vw;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.vehicles .vehicle-item.slick-center .vehicle-img img {
    animation: vehicle_wobble .5s forwards;
}

@keyframes vehicle_wobble {

    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(-1deg);
    }

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

.vehicles .vehicle-item .title {
    color: var(--background-white);
    text-align: center;
    /* margin-bottom: 15px; */
    position: static;
    width: 100%;
    font-weight: 400;
    opacity: 0;
}


.vehicles .vehicle-item .para {
    color: var(--background-white);
    text-align: center;
    opacity: 0;
    transition: all .3s ease-in-out;
    max-width: 610px;
    margin: 0 auto;
    font-weight: 400;
    padding-top: 20px !important;
}


.vehicles .vehicle-item .title {
    font-size: 20px;
    line-height: 32px;
}

.vehicles .vehicle-item .para {
    font-size: 16.4px;
    line-height: 20px;
}

.vehicle-slide-content .vehicles .slick-arrow {
    width: 44.59px;
    height: 44.59px;
}

/* .vehicle-slide-content .vehicles .vehicle-item {
        min-width: 890px;
    } */



.vehicles .vehicle-item .vehicle-img img {
    height: 245.5px;
    object-fit: contain;
}

.vehicles .vehicle-item .title {
    font-weight: 400;
}

.vehicles .vehicle-item .para {
    width: 440px;
    padding-top: 14.29px !important;
}


.vehicle-slide-content .vehicles .vehicle-item.slick-center,
.vehicle-slide-content .vehicles .vehicle-item.slick-center .title,
.vehicle-slide-content .vehicles .vehicle-item.slick-center .para {
    opacity: 1;
}

.vehicle-slide-content .vehicles .slick-arrow::before {
    content: none;
}

.vehicle-slide-content .vehicles .slick-arrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: var(--secondary) url('../img/vehicle-arrow.svg') no-repeat;
    background-size: 22%;
    background-position: center;
    border-radius: 50%;
    z-index: 2;
}

.vehicle-slide-content .vehicles .slick-arrow:hover,
.vehicle-slide-content .vehicles .slick-arrow:active {
    background-color: var(--chartreuse-green-7);
}

.vehicle-slide-content .vehicles .slick-arrow.slick-prev {
    left: 25%;
    transform: translate(0, -50%) rotate(180deg);
}

.vehicle-slide-content .vehicles .slick-arrow.slick-next {
    right: 25%;
}

.vehicle-slide-content .vehicles .slick-arrow.slick-disabled {
    display: none !important;
}

.vehicle-types-detail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
}

.vehicle-types-detail .vehicle-types-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    max-width: 886px;
    margin: 0 auto;
    border-radius: 90px;
    box-shadow: -3px 5px 3px #eee;
    text-align: center;
    background: var(--background-white);
}



.vehicle-types-detail .vehicle-types-main {
    height: 155px;
    padding: 0 50px;
}

.vehicle-types-main .vehicle-type-item .vehicle-type-icon img {
    height: 49px;
}

.vehicle-types-main .vehicle-type-item .vehicle-type-title {
    margin-top: 10px;
    font-size: 14.3px;
    line-height: 22px;
}

.vehicle-types-main .vehicle-type-item .vehicle-type-value {
    font-size: 14.3px;
    line-height: 22px;
}


.vehicle-types-detail .vehicle-types-main .vehicle-type-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 20%;
    padding: 0 12px;
}

.vehicle-types-main .vehicle-type-item .vehicle-type-icon {
    position: relative;
    padding-bottom: 0;
}

.vehicle-types-main .vehicle-type-item .vehicle-type-title,
.vehicle-types-main .vehicle-type-item .vehicle-type-value {
    color: var(--secondary);
    font-weight: 400;
    margin-bottom: 0;
}

.find-branch-component {
    padding: 0 0px 60px 0;
}

.find-branch-component .inner-find {
    border-radius: 30px;
    margin: 0 auto;
    text-align: center;
    background: var(--secondary);
}

.find-branch-component .inner-find h2 {
    font-weight: 400;
    color: var(--primary);
}

.find-branch-component .inner-find p {
    color: var(--background-white);
}

.find-search-sec {
    position: relative;
    display: flex;
    align-items: stretch;
    margin: 0 auto;
}

.find-branch-component .find-search-sec .map-icon {
    position: absolute;
}

.find-search-sec input {
    border-radius: 50px 0 0 50px;
    border: 0;
    width: 100%;
    font-weight: 400;
    color: gray;
    background: #f2f2f2;
}

.find-search-sec .btn {
    border-radius: 0 50px 50px 0;
    height: 100%;
}


.find-branch-component .inner-find {
    width: 800px;
    padding: 50px 85.7px;
}

.find-branch-component .inner-find>img {
    width: 87px;
    height: 76px;
    object-fit: contain;
}

.find-branch-component .inner-find h2 {
    font-size: 35.7px;
    line-height: 48px;
    margin-top: 21.43px;
    margin-bottom: 11.4px;
}

.find-branch-component .inner-find p {
    font-size: 16.4px;
    line-height: 20px;
    margin-bottom: 40.7px;
}

.find-branch-component .find-search-sec {
    width: 80%;
}

.find-branch-component .find-search-sec .map-icon img {
    width: 20px;
}

.find-branch-component .find-search-sec .map-icon {
    top: 15px;
    left: 30px;
}

.find-search-sec input {
    padding: 20px 50px 20px 80px;
    font-size: 16.4px;
    line-height: 22px;
}

.find-search-sec .btn {
    height: 62px;
    padding: 0px 30px;
    font-size: 35px;
}

.find-search-sec .btn img {
    width: 25px;
}

/* Vehicle-banner css end here... */


/* responsive css start here... */

@media (min-width: 1400px) {
    .container-thin-xl {
        max-width: 1140px !important;
    }
}

@media (min-width: 1200px) {
    .container-thin-xl {
        max-width: 960px !important;
    }

    .find-service .service-main {
        height: 341px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .container-thin {
        max-width: 720px !important;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {

    .find-it .card-content .content {
        left: 35px;
    }

    .find-it .card-content .content h2 {
        font-size: 28.6px;
        line-height: 32px;
    }

    .section .title {
        margin-bottom: 40px;
        font-size: 28px;
        line-height: 30px;
    }

    .section.p-60 {
        padding: 40px 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199.98px) {

    .footer .footer-inner .foot-logo {
        width: 60px;
    }

    .footer .footer-inner .foot-logo img {
        min-width: 70px;
    }

    .footer .footer-inner .foot-link {
        grid-gap: 14px;
        padding: 0;
        margin-left: 0px;
    }

    .footer .foot-credit .btn {
        width: 30px;
        height: 30px;
    }

    .footer .foot-credit .btn svg {
        width: 12px;
        height: 12px;
    }

    .accredition-component ul {
        gap: 30px;
        justify-content: space-between;
    }

    .accredition-component ul li img {
        max-width: 100%;
        object-fit: contain;
        height: 44px;
    }

    .promotions .right-section .container {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .promotions .right-section {
        padding: 48px;
    }

    .promotions .right-section h2 {
        font-size: 28.6px;
        line-height: 32px;
    }

    .promotions .right-section p {
        font-size: 14.3px;
        line-height: 26px;
    }

    .section.p-60 {
        padding: 40px 0;
    }

    .service-list-2 .list-item .card-title {
        font-size: var(--fs-18);
        line-height: 22px;
    }

    .section .desc {
        margin-bottom: 30px;
        font-size: 17px;
        line-height: 22px;
    }

}

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

    .service-list-2 .list-item .desc {
        height: auto;
    }

    .find-service .service-main {
        height: 341px;
    }

    .find-service .service-main .left-content .btns {
        gap: 2.8vw;
    }

    .service-list-2 {
        column-gap: 24px;
        row-gap: 24px;
    }

    .service-list {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 24px;
        row-gap: 24px;
    }

    .service-list .list-item .item-title {
        font-size: 18px;
        line-height: 22px;
    }

    .service-list .list-item .item-desc {
        font-size: 14.3px;
        line-height: 18px;
    }

    .navbar .navbar-collapse .nav-item.hover-content .mega-menu-dropdown {
        width: 100%;
        padding: 20px;
    }

    .mega-menu-dropdown .main .main-content .inner-menu .list-content h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .mega-menu-dropdown .main .side-content .green-box {
        width: 240px;
        padding: 30px 30px 30px;
        border-radius: 21px;
    }

    .mega-menu-dropdown .main .side-content .green-box h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .mega-menu-dropdown .main .main-content .more {
        margin-top: 25px;
    }

    .home-banner .left-section {
        left: 50%;
        z-index: 3;
        align-items: center;
        gap: 16px;
        top: 0;
        bottom: 0;
        transform: translateX(-50%);
        justify-content: flex-end;
        width: 668px;
        min-height: auto;
        padding-bottom: 47px;
        text-align: center;
    }

    .home-banner .left-section p {
        max-width: 100%;
    }

    .home-banner .right-video-container {
        height: 723px;
    }

    .home-banner .left-section h1 {
        font-size: 28.6px;
        line-height: 32px;
    }

    .vehicle-types-main .vehicle-type-item .vehicle-type-title,
    .vehicle-types-main .vehicle-type-item .vehicle-type-value {
        margin-top: 10px;
        font-size: 10px;
        line-height: 18px;
    }

    .vehicle-types-main .vehicle-type-item .vehicle-type-value {
        margin: 0;
    }

    .find-branch-component .inner-find {
        width: 100%;
        padding: 40px 20.7px;
    }
}

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

    .find-service .service-main {
        grid-template-columns: 1fr;
        background-color: var(--primary);
    }

    .find-service .service-main .right-content {
        display: none;
    }

}

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

    .find-it .card-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .find-it .card-content .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        left: 0;
        padding-top: 24px;
        padding-bottom: 50px;
    }

    .find-it .card-content .content h2 {
        margin-bottom: 44px;
        width: 57%;
        font-weight: 300;
        font-size: 28.6px;
        line-height: 32px;
    }

    .navbar .navbar-collapse .nav-item.hover-content .mega-menu-dropdown {
        display: none !important;
    }

    .navbar .navbar-collapse .nav-item {
        padding: 9.7px 0px 9.7px 0px;
    }

    .navbar .navbar-collapse .right-sec ul li:first-child,
    .navbar .navbar-collapse .right-sec ul li:last-child {
        padding: 0px;
    }
}


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

    .section .title {
        margin-bottom: 20px;
        font-size: 25px;
        line-height: 30px;
    }

    .section .desc {
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 19px;
    }

    .service-list,
    .service-list-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-mainfaq-sec {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        padding: 40px 0;
    }

    .home-banner .right-video-container {
        height: 593px;
    }

    .home-banner .left-section {
        width: 316px;
    }

    .promotions {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .promotions.red-component {
        flex-direction: column-reverse;
        display: flex;
    }

    .promotions .right-section {
        padding: 40px;
    }

    .footer .footer-inner {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer .footer-inner .foot-link {
        flex-direction: column;
        grid-gap: 24.26px;
    }

    footer .footer-inner .foot-link .nav-link {
        font-size: 20px !important;
        line-height: 30px !important;
    }

    .footer .foot-credit h2 {
        display: none;
    }

    .accredition-component {
        padding: 21.53px 50.75px;
    }

    .accredition-component ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14.5px;
    }

    .accredition-component ul li img {
        max-width: 100%;
        object-fit: contain;
        height: 49px;
    }


    .vehicle-banner .vehicle-types-header h1 {
        font-size: 30px;
        line-height: 140.744%;
    }

    .vehicle-banner {
        padding: 46px 0 25px;
        margin-bottom: 200px;
    }

    .vehicle-banner .vehicle-types-header {
        margin-bottom: 30px;
    }

    .vehicles .vehicle-item .vehicle-img img {
        height: 88px;
        width: 274px !important;
        opacity: 1;
        object-fit: contain;
    }

    .vehicles .vehicle-item .title {
        font-size: 18px;
        line-height: 30px;
        padding-top: 20px;
        margin-bottom: 0;
        opacity: 1;
    }

    .vehicles .vehicle-item .para {
        max-width: 259px;
        padding-top: 20px !important;
        opacity: 1;
        font-size: 14.3px;
        line-height: 18px;
    }

    .vehicle-slide-content .vehicles .slick-arrow {
        width: 30.59px;
        height: 30.59px;
    }

    .vehicle-slide-content .vehicles .slick-arrow.slick-next {
        right: 15%;
    }

    .vehicle-slide-content .vehicles .slick-arrow.slick-prev {
        left: 15%;
    }

    .vehicle-banner::before {
        background-size: contain;
    }

    .vehicle-types-detail {
        bottom: -227px;
    }

    .vehicle-types-detail .vehicle-types-main {
        max-width: 318px;
        height: auto;
        padding: 20px 15px;
        border-radius: 20px;
        row-gap: 10px;
        flex-wrap: wrap;
    }

    .vehicle-types-detail .vehicle-types-main .vehicle-type-item:nth-child(1),
    .vehicle-types-detail .vehicle-types-main .vehicle-type-item:nth-child(2) {
        width: 50%;
    }

    .vehicle-types-detail .vehicle-types-main .vehicle-type-item:nth-child(3),
    .vehicle-types-detail .vehicle-types-main .vehicle-type-item:nth-child(4),
    .vehicle-types-detail .vehicle-types-main .vehicle-type-item:nth-child(5) {
        width: 33.3%;
    }

    .compare-vehicle::before,
    .compare-vehicle::after {
        background-size: contain;
        background-position: bottom;
    }

    .compare-vehicle .wehicles-compare-inner .compare-item {
        height: 200px;
        margin: 0px 10px 10px;
        border-radius: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        -ms-border-radius: 16px;
        -o-border-radius: 16px;
    }

    .compare-vehicle .wehicles-compare-inner .compare-item .compare-item-specs {
        display: none;
    }

    .compare-vehicle .wehicles-compare-inner .compare-item::after {
        border-radius: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        -ms-border-radius: 16px;
        -o-border-radius: 16px;
    }

    .compare-vehicle .wehicles-compare-inner a {
        width: 50%;
    }

    .wehicles-compare-inner .compare-item .compare-title {
        font-size: var(--fs-14);
    }

    .wehicles-compare-inner .compare-item .compare-img {
        width: 100%;
    }
}

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

    .service-list,
    .service-list-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* responsive css end here... */

/* nik custom css start here... */
.quote-from-div {
    position: relative;
    background-color: var(--primary);
}
@media(min-width: 1200px) {
    .quote-from-div {
        padding:50px 0
    }

    .quote-from-div::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 388px;
        height: 336px;
        -webkit-mask-image: url("../img/quote-form-left-bg-1440.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: -50px 36px;
        -webkit-mask-size: 100%;
        mask-image: url("../img/quote-form-left-bg-1440.svg");
        mask-repeat: no-repeat;
        mask-position: -50px 36px;
        mask-size: 100%;
        background-color: var(--chartreuse-green-7);
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .quote-from-div {
        padding:50px 0
    }

    .quote-from-div::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 324px;
        height: 328px;
        -webkit-mask-image: url("../img/quote-form-left-bg-768.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: -60px 100px;
        -webkit-mask-size: 100%;
        mask-image: url("../img/quote-form-left-bg-768.svg");
        mask-repeat: no-repeat;
        mask-position: -60px 100px;
        mask-size: 100%;
        background-color: var(--chartreuse-green-7)
    }
}

@media(max-width: 767.98px) {
    .quote-from-div {
        padding:42px 0
    }
}

.quote-from-component-div {
    position: relative;
    z-index: 2
}

@media(min-width: 1400px) {
    .quote-from-component-div {
        display:grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 96px
    }
}

@media(min-width: 1200px) and (max-width:1399.98px) {
    .quote-from-component-div {
        display:grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 96px
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .quote-from-component-div {
        display:grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 48px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div {
        display:grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 48px
    }
}

.quote-from-component-div .left-section h2,.quote-from-component-div .left-section .h2 {
    margin: 0;
    font-weight: 500;
    color: #fff
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section h2,.quote-from-component-div .left-section .h2 {
        font-size:35.7px;
        line-height: 40px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .left-section h2,.quote-from-component-div .left-section .h2 {
        font-size:28.6px;
        line-height: 32px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section h2,.quote-from-component-div .left-section .h2 {
        font-size:28.6px;
        line-height: 32px
    }
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section h2,.quote-from-component-div .left-section .h2 {
        margin-bottom:36px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .left-section h2,.quote-from-component-div .left-section .h2 {
        margin-bottom:30px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section h2,.quote-from-component-div .left-section .h2 {
        margin-bottom:30px;
        text-align: center
    }
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section .first-para+.second-para {
        margin-top:24px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .left-section .first-para+.second-para {
        margin-top:28px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section .first-para+.second-para {
        margin-top:24px
    }
}

.quote-from-component-div .left-section .first-para,.quote-from-component-div .left-section .second-para {
    margin: 0;
    font-weight: 400;
    color: #fff
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section .first-para,.quote-from-component-div .left-section .second-para {
        font-size:16.4px;
        line-height: 24px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .left-section .first-para,.quote-from-component-div .left-section .second-para {
        font-size:14.3px;
        line-height: 22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section .first-para,.quote-from-component-div .left-section .second-para {
        font-size:14.3px;
        line-height: 22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section .first-para,.quote-from-component-div .left-section .second-para {
        text-align:center
    }
}

.quote-from-component-div .left-section ul {
    padding: 0;
    list-style: none
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section ul {
        margin:36px 0 0 0
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .left-section ul {
        margin:30px 0 0 0
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section ul {
        margin:30px 0 0 0
    }
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section ul li+li {
        margin-top:22px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .left-section ul li+li {
        margin-top:20px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section ul li+li {
        margin-top:20px
    }
}

.quote-from-component-div .left-section ul li {
    display: flex
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section ul li {
        justify-content:center
    }
}

.quote-from-component-div .left-section ul li a:before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section ul li a:before {
        width:40px;
        height: 40px;
        margin-right: 28px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .left-section ul li a:before {
        width:25px;
        height: 25px;
        margin-right: 16px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section ul li a:before {
        width:25px;
        height: 25px;
        margin-bottom: 10px
    }
}

.quote-from-component-div .left-section ul li:nth-child(1) a:before {
    background-image: url(../img/phone-ico.png)
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section ul li:nth-child(1) a:before {
        background-size:80%
    }
}

.quote-from-component-div .left-section ul li:nth-child(2) a:before {
    background-image: url(../img/msg-ico.png)
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section ul li:nth-child(2) a:before {
        width:25px;
        height: 18px
    }
}

.quote-from-component-div .left-section ul li a {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 400;
    color: #fff;
    text-decoration: none
}

@media(min-width: 1400px) {
    .quote-from-component-div .left-section ul li a {
        font-size:20px;
        line-height: 24px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .left-section ul li a {
        font-size:18px;
        line-height: 22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section ul li a {
        font-size:18px;
        line-height: 22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .left-section ul li a {
        flex-direction:column
    }
}

.quote-from-component-div .contact-form-panel {
    padding: 0
}

.quote-from-component-div .quote-form fieldset.form-columns-1 .input,.quote-from-component-div .quote-form fieldset.form-columns-2 .input {
    margin: 0
}

.quote-from-component-div .quote-form fieldset.form-columns-2 .hs-form-field {
    float: none;
    width: 100%
}

.quote-from-component-div .quote-form .hs-form-field>label {
    display: block;
    padding: 0;
    margin: 0;
    color: #fff
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-form-field>label {
        font-size:14.3px;
        line-height: 18px;
        margin-bottom: 10px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-form-field>label {
        font-size:14px;
        line-height: 16px;
        margin-bottom: 10px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-form-field>label {
        font-size:12px;
        line-height: 15px;
        margin-bottom: 10px
    }
}

.quote-from-component-div .quote-form .hs-form-field>label span {
    display: block;
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    color: inherit
}

.quote-from-component-div .quote-form .hs-field-desc,.quote-from-component-div .quote-form .hs-richtext {
    padding: 0;
    font-weight: 400;
    color: #fff
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-field-desc,.quote-from-component-div .quote-form .hs-richtext {
        font-size:14.3px;
        line-height: 18px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-field-desc,.quote-from-component-div .quote-form .hs-richtext {
        font-size:14px;
        line-height: 16px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-field-desc,.quote-from-component-div .quote-form .hs-richtext {
        font-size:12px;
        line-height: 15px
    }
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-field-desc {
        margin-bottom:22px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-field-desc {
        margin-bottom:22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-field-desc {
        margin-bottom:20px
    }
}

.quote-from-component-div .quote-form .hs-error-msgs {
    background: 0
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-error-msgs {
        margin-bottom:10px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-error-msgs {
        margin-bottom:10px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-error-msgs {
        margin-bottom:10px
    }
}

.quote-from-component-div .quote-form .hs-error-msgs li {
    padding: 0 10px
}

.quote-from-component-div .quote-form .hs-error-msgs li label {
    display: block;
    margin: 0;
    font-weight: 400
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-error-msgs li label {
        font-size:14.3px;
        line-height: 18px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-error-msgs li label {
        font-size:14px;
        line-height: 16px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-error-msgs li label {
        font-size:12px;
        line-height: 15px
    }
}

.quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox) input::placeholder,.quote-from-component-div .quote-form .hs-fieldtype-text input::placeholder,.quote-from-component-div .quote-form .hs-fieldtype-textarea textarea::placeholder {
    color: #292929 !important;
    font-weight: 400
}

/* .quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox) input.error:not(:focus)::placeholder,.quote-from-component-div .quote-form .hs-fieldtype-text input.error:not(:focus)::placeholder,.quote-from-component-div .quote-form .hs-fieldtype-textarea textarea.error:not(:focus)::placeholder {
    color: #dc3545 !important;
    font-weight: 700
}

.quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox) input.invalid:not(:focus),.quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox) input.error:not(:focus),.quote-from-component-div .quote-form .hs-fieldtype-text input.invalid:not(:focus),.quote-from-component-div .quote-form .hs-fieldtype-text input.error:not(:focus),.quote-from-component-div .quote-form .hs-fieldtype-textarea textarea.invalid:not(:focus),.quote-from-component-div .quote-form .hs-fieldtype-textarea textarea.error:not(:focus) {
    color: #dc3545 !important;
    font-weight: 700
}

.quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox,.hs-fieldtype-textarea) label,.quote-from-component-div .quote-form .hs-fieldtype-text label {
    display: none
}

.quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox,.hs-fieldtype-textarea) .hs-field-desc,.quote-from-component-div .quote-form .hs-fieldtype-text .hs-field-desc {
    display: none !important
}

.quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox,.hs-fieldtype-textarea) .hs-error-msgs,.quote-from-component-div .quote-form .hs-fieldtype-text .hs-error-msgs {
    display: none
} */
.quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox,.hs-fieldtype-textarea) input,.quote-from-component-div .quote-form .hs-fieldtype-text input, .quote-from-component-div .quote-form .hs-fieldtype-text select {
    border: 0;
    margin-bottom: 0;
    font-weight: 400;
    font-family: "Montserrat",sans-serif;
    color: #292929
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox,.hs-fieldtype-textarea) input,.quote-from-component-div .quote-form .hs-fieldtype-text input, .quote-from-component-div .quote-form .hs-fieldtype-text select {
        height:45px;
        font-size: 14.6px;
        line-height: 19px;
        padding: 13px 29px;
        /* border-radius: 37px; */
        margin-bottom: 10px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox,.hs-fieldtype-textarea) input,.quote-from-component-div .quote-form .hs-fieldtype-text input, .quote-from-component-div .quote-form .hs-fieldtype-text select {
        height:45px;
        font-size: 14px;
        line-height: 19px;
        padding: 13px 20px;
        /* border-radius: 24px; */
        margin-bottom: 10px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-form-field:not(.hs-fieldtype-select,.hs-fieldtype-checkbox,.hs-fieldtype-booleancheckbox,.hs-fieldtype-textarea) input,.quote-from-component-div .quote-form .hs-fieldtype-text input, .quote-from-component-div .quote-form .hs-fieldtype-text select {
        height:45px;
        font-size: 12px;
        line-height: 19px;
        padding: 13px 15px;
        /* border-radius: 24px; */
        margin-bottom: 10px
    }
}

/* .quote-from-component-div .quote-form .hs-fieldtype-textarea label {
    display: none
}

.quote-from-component-div .quote-form .hs-fieldtype-textarea .hs-error-msgs {
    display: none
} */

.quote-from-component-div .quote-form .hs-fieldtype-textarea textarea {
    display: block;
    border: 0;
    margin-bottom: 0;
    font-weight: 400;
    font-family: "Montserrat",sans-serif;
    color: #292929
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-textarea textarea {
        height:158px;
        font-size: 14.6px;
        line-height: 18px;
        padding: 22px 22px;
        /* border-radius: 23px; */
        margin-bottom: 10px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-textarea textarea {
        height:152px;
        font-size: 14px;
        line-height: 16px;
        padding: 15px 18px;
        /* border-radius: 12px; */
        margin-bottom: 10px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-textarea textarea {
        height:102px;
        font-size: 12px;
        line-height: 15px;
        padding: 11px 15px;
        /* border-radius: 12px; */
        margin-bottom: 10px
    }
}

/* .quote-from-component-div .quote-form .hs-fieldtype-select label {
    display: none
}

.quote-from-component-div .quote-form .hs-fieldtype-select .hs-field-desc {
    display: none !important
}

.quote-from-component-div .quote-form .hs-fieldtype-select .hs-error-msgs {
    display: none
} */

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select .input {
        margin-bottom:10px !important
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select .input {
        margin-bottom:10px !important
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select .input {
        margin-bottom:10px !important
    }
}

.quote-from-component-div .quote-form .hs-fieldtype-select .input,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container {
    position: relative
}

.quote-from-component-div .quote-form .hs-fieldtype-select .input::after,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container::after {
    content: "";
    position: absolute;
    z-index: 10;
    -webkit-mask-image: url("../img/arrow-down-circle.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0;
    -webkit-mask-size: 100%;
    mask-image: url("../img/arrow-down-circle.svg");
    mask-repeat: no-repeat;
    mask-position: 0;
    mask-size: 100%;
    background-color: var(--primary);
    pointer-events: none;
    transition: all .4s
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select .input::after,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container::after {
        width:28px;
        height: 28px;
        right: 12px;
        top: 8.5px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select .input::after,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container::after {
        width:28px;
        height: 28px;
        right: 12px;
        top: 8.5px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select .input::after,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container::after {
        width:28px;
        height: 28px;
        right: 12px;
        top: 8.5px
    }
}

.quote-from-component-div .quote-form .hs-fieldtype-select select,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container .select2-selection {
    border: 0;
    margin-bottom: 0;
    font-weight: 400;
    font-family: "Montserrat",sans-serif;
    color: #292929;
    background: #fff
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select select,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container .select2-selection {
        height:45px;
        font-size: 14.6px;
        line-height: 19px;
        padding: 13px 29px;
        border-radius: 37px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select select,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container .select2-selection {
        height:45px;
        font-size: 14px;
        line-height: 19px;
        padding: 13px 20px;
        border-radius: 24px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-select select,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container .select2-selection {
        height:45px;
        font-size: 12px;
        line-height: 19px;
        padding: 13px 15px;
        border-radius: 24px
    }
}

.quote-from-component-div .quote-form .hs-fieldtype-select select:focus-visible,.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container .select2-selection:focus-visible {
    outline: 0
}

.quote-from-component-div .quote-form .hs-fieldtype-select .select2-container {
    width: 100% !important
}

.quote-from-component-div .quote-form .hs-fieldtype-select .use-select2::after {
    display: none
}

.quote-from-component-div .quote-form .hs-fieldtype-select .use-select2 select {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
    margin-bottom: 0 !important
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox {
    padding: 0;
    float: none
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label input,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label input {
    flex-shrink: 0;
    padding: 0;
    border: 1px solid #fff;
    background: #fff;
    margin: 0;
    -webkit-appearance: none;
    position: relative
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label input,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label input {
        height:20px;
        width: 20px !important;
        /* border-radius: 6px */
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label input,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label input {
        height:20px;
        width: 20px !important;
        /* border-radius: 6px */
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label input,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label input {
        height:25px;
        width: 25px !important;
        /* border-radius: 6px */
    }
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label input:before,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label input:before {
    content: "✔";
    font-size: 14px;
    color: #000;
    font-weight: 100;
    background: transparent;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .2s ease-in-out
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label input:before,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label input:before {
        font-size:12px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label input:before,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label input:before {
        font-size:12px
    }
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label input:checked:before,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label input:checked:before {
    opacity: 1
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label span,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label span {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    color: #fff
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label span,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label span {
        margin-left:16px;
        font-size: 14.3px;
        line-height: 18px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label span,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label span {
        margin-left:16px;
        font-size: 14px;
        line-height: 18px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label span,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label span {
        margin-left:16px;
        font-size: 12px;
        line-height: 15px
    }
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-form-checkbox label span p,.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label span p {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox {
        margin-top:12px;
        margin-bottom: 10px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox {
        margin-top:12px;
        margin-bottom: 10px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox {
        margin-top:10px;
        margin-bottom: 10px
    }
}

.quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label {
    align-items: flex-start
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-booleancheckbox .hs-form-booleancheckbox label {
        align-items:center
    }
}

.quote-from-component-div .quote-form .hs-checkbox-fieldset+.hs-checkbox-fieldset .hs-fieldtype-checkbox {
    margin-top: 0 !important
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox {
        margin-top:12px;
        margin-bottom: 22px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox {
        margin-top:12px;
        margin-bottom: 22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox {
        margin-top:10px;
        margin-bottom: 20px
    }
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-field-desc {
    display: none !important
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .hs-error-msgs {
    display: none
}

.quote-from-component-div .quote-form .hs-fieldtype-checkbox .multi-container {
    display: flex;
    flex-wrap: wrap
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .multi-container {
        grid-gap:10px 48px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .multi-container {
        grid-gap:10px 28px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-fieldtype-checkbox .multi-container {
        grid-gap:10px 22px
    }
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .legal-consent-container {
        margin-top:12px;
        margin-bottom: 22px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .legal-consent-container {
        margin-top:12px;
        margin-bottom: 22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .legal-consent-container {
        margin-top:10px;
        margin-bottom: 20px
    }
}

.quote-from-component-div .quote-form .legal-consent-container .hs-error-msgs {
    display: none
}

.quote-from-component-div .quote-form .legal-consent-container .field.hs-form-field {
    margin-bottom: 0
}

.quote-from-component-div .quote-form .legal-consent-container .hs-form-booleancheckbox-display {
    margin-top: 0
}

.quote-from-component-div .quote-form .legal-consent-container .hs-fieldtype-booleancheckbox {
    margin-top: 0
}

.quote-from-component-div .quote-form .legal-consent-container .hs-richtext {
    clear: both
}

.quote-from-component-div .quote-form .legal-consent-container .hs-richtext p {
    padding: 0;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .legal-consent-container .hs-richtext+div .hs-dependent-field,.quote-from-component-div .quote-form .legal-consent-container .hs-richtext+.hs-richtext,.quote-from-component-div .quote-form .legal-consent-container div+.hs-richtext {
        margin-top:22px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .legal-consent-container .hs-richtext+div .hs-dependent-field,.quote-from-component-div .quote-form .legal-consent-container .hs-richtext+.hs-richtext,.quote-from-component-div .quote-form .legal-consent-container div+.hs-richtext {
        margin-top:22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .legal-consent-container .hs-richtext+div .hs-dependent-field,.quote-from-component-div .quote-form .legal-consent-container .hs-richtext+.hs-richtext,.quote-from-component-div .quote-form .legal-consent-container div+.hs-richtext {
        margin-top:20px
    }
}

.quote-from-component-div .quote-form .hs-recaptcha {
    float: left;
    text-align: center;
    margin-bottom: 0
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs-recaptcha {
        float:none;
        text-align: right;
        margin-bottom: 22px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-recaptcha {
        float:none;
        margin-bottom: 20px
    }
}

.quote-from-component-div .quote-form .hs-recaptcha .input {
    display: flex;
    justify-content: flex-end
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs-recaptcha .input {
        justify-content:center
    }
}

.quote-from-component-div .quote-form .hs_error_rollup {
    display: none !important
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs_error_rollup {
        justify-content:center
    }
}

.quote-from-component-div .quote-form .hs_error_rollup .hs-error-msgs {
    background: #2c2a29
}

.quote-from-component-div .quote-form .hs_error_rollup .hs-error-msgs li {
    padding: 10px 20px
}

.quote-from-component-div .quote-form .hs_submit {
    text-align: center;
    float: right
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs_submit {
        float:none
    }
}
.quote-from-component-div .quote-form .hs_submit .actions .sf-btn:hover {
    background: var(--chartreuse-green-7) !important;
    transition: .3s;
    text-decoration: none !important
}
.quote-from-component-div .quote-form .hs_submit .actions input,.quote-from-component-div .quote-form .hs_submit .actions button {
    width: initial !important;
    border: 0;
    margin-bottom: 0;
    font-style: initial;
    font-weight: 500;
    font-family: "Montserrat",sans-serif;
    color: #fff;
    background: var(--secondary)
}

@media(min-width: 1400px) {
    .quote-from-component-div .quote-form .hs_submit .actions input,.quote-from-component-div .quote-form .hs_submit .actions button {
        height:44px;
        padding: 0 48px !important;
        /* border-radius: 24px; */
        font-size: 16px;
        line-height: 19px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .quote-from-component-div .quote-form .hs_submit .actions input,.quote-from-component-div .quote-form .hs_submit .actions button {
        min-width:154px;
        height: 44px;
        padding: 0 48px !important;
        /* border-radius: 24px; */
        font-size: 16px;
        line-height: 19px
    }
}

@media(max-width: 767.98px) {
    .quote-from-component-div .quote-form .hs_submit .actions input,.quote-from-component-div .quote-form .hs_submit .actions button {
        min-width:154px;
        height: 44px;
        padding: 0 48px !important;
        /* border-radius: 24px; */
        font-size: 16px;
        line-height: 19px
    }
}

.quote-from-component-div .quote-form .hs_submit .actions input:before,.quote-from-component-div .quote-form .hs_submit .actions button:before {
    display: none
}

/* ======= */
.contact-form-hubspot .selectArrow:after {
    pointer-events: none !important
}
.contact-form-hubspot label {
    font-size: 12px;
    font-weight: 600
}

.contact-form-hubspot input,.contact-form-hubspot textarea {
    width: 100% !important;
    padding: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #9b2743
}

.contact-form-hubspot input::-webkit-input-placeholder,.contact-form-hubspot textarea::-webkit-input-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot input:-moz-placeholder,.contact-form-hubspot textarea:-moz-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot input::-moz-placeholder,.contact-form-hubspot textarea::-moz-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot input:-ms-input-placeholder,.contact-form-hubspot textarea:-ms-input-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot input::-ms-input-placeholder,.contact-form-hubspot textarea::-ms-input-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot textarea {
    min-height: 120px
}

.contact-form-hubspot select {
    background-color: #fff;
    width: 100% !important;
    padding: 20px;
    appearance: none;
    border-radius: 0;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #9b2743;
    position: relative
}

.contact-form-hubspot select::-webkit-input-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot select:-moz-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot select::-moz-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot select:-ms-input-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot select::-ms-input-placeholder {
    color: #9b2743 !important
}

.contact-form-hubspot .selectArrow {
    position: relative
}

.contact-form-hubspot .selectArrow::after {
    display: block;
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 20px;
    color: #999;
    font-family: "speedy-freight" !important;
    content: "\e917"
}

.contact-form-hubspot fieldset {
    max-width: 100% !important
}

.contact-form-hubspot .legal-consent-container {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 30px
}

.contact-form-hubspot .legal-consent-container ul,.contact-form-hubspot .legal-consent-container ol {
    list-style: none;
    margin: 0;
    padding: 0
}

.contact-form-hubspot .legal-consent-container p {
    font-size: 11px;
    color: #fff
}

.contact-form-hubspot .legal-consent-container input[type=checkbox] {
    width: auto !important;
    margin-top: 2px
}

.contact-form-hubspot .legal-consent-container .hs-form-booleancheckbox-display {
    margin-top: 20px
}

.contact-form-hubspot .legal-consent-container .hs-form-booleancheckbox-display input[type=checkbox] {
    -webkit-appearance: none;
    border: 1px solid #fff;
    width: 12px !important;
    height: 12px;
    padding: 0;
    cursor: pointer;
    position: relative
}

.contact-form-hubspot .legal-consent-container .hs-form-booleancheckbox-display input[type=checkbox]::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 0;
    transition: all .2s ease-in-out
}

.contact-form-hubspot .legal-consent-container .hs-form-booleancheckbox-display input[type=checkbox]:hover {
    cursor: pointer
}

.contact-form-hubspot .legal-consent-container .hs-form-booleancheckbox-display input[type=checkbox]:checked::before {
    opacity: 1
}

.contact-form-hubspot .hs-recaptcha {
    margin-bottom: 20px
}

.contact-form-hubspot .hs-error-msgs {
    background: #333;
    color: #fff;
    padding: 0;
    list-style: none
}

.contact-form-hubspot .hs-error-msgs li {
    padding: 10px
}

.contact-form-hubspot .sf-btn {
    width: 186px !important;
    color: #fff !important;
    padding: 15px 30px !important
}

@media(max-width: 767.98px) {
    .contact-form-hubspot .hs_submit {
        text-align:center
    }
}

.contact-form .input ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.contact-form .input li {
    float: left;
    padding: 20px
}
/* ------------------------ */
.branch-cms .alphabetical-nav {
    position: relative
}

.branch-cms .alphabetical-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}
.branch-cms .alphabetical-nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    border: 2px solid #b2b2b2;
    margin-left: -2px;
    margin-top: -2px;
    font-weight: 600;
    text-decoration: none;
    color: #b2b2b2;
    background-color: #fff;
    cursor: pointer
}

.branch-cms .alphabetical-nav ul li.active,.branch-cms .alphabetical-nav ul li:hover {
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    z-index: 999 !important
}

.branch-cms .alphabetical-nav ul li:nth-child(1) {
    z-index: 30
}

.branch-cms .alphabetical-nav ul li:nth-child(2) {
    z-index: 29
}

.branch-cms .alphabetical-nav ul li:nth-child(3) {
    z-index: 28
}

.branch-cms .alphabetical-nav ul li:nth-child(4) {
    z-index: 27
}

.branch-cms .alphabetical-nav ul li:nth-child(5) {
    z-index: 26
}

.branch-cms .alphabetical-nav ul li:nth-child(6) {
    z-index: 25
}

.branch-cms .alphabetical-nav ul li:nth-child(7) {
    z-index: 24
}

.branch-cms .alphabetical-nav ul li:nth-child(8) {
    z-index: 23
}

.branch-cms .alphabetical-nav ul li:nth-child(9) {
    z-index: 22
}

.branch-cms .alphabetical-nav ul li:nth-child(10) {
    z-index: 21
}

.branch-cms .alphabetical-nav ul li:nth-child(11) {
    z-index: 20
}

.branch-cms .alphabetical-nav ul li:nth-child(12) {
    z-index: 19
}

.branch-cms .alphabetical-nav ul li:nth-child(13) {
    z-index: 18
}

.branch-cms .alphabetical-nav ul li:nth-child(14) {
    z-index: 17
}

.branch-cms .alphabetical-nav ul li:nth-child(15) {
    z-index: 16
}

.branch-cms .alphabetical-nav ul li:nth-child(16) {
    z-index: 15
}

.branch-cms .alphabetical-nav ul li:nth-child(17) {
    z-index: 14
}

.branch-cms .alphabetical-nav ul li:nth-child(18) {
    z-index: 13
}

.branch-cms .alphabetical-nav ul li:nth-child(19) {
    z-index: 12
}

.branch-cms .alphabetical-nav ul li:nth-child(20) {
    z-index: 11
}

.branch-cms .alphabetical-nav ul li:nth-child(21) {
    z-index: 10
}

.branch-cms .alphabetical-nav ul li:nth-child(22) {
    z-index: 9
}

.branch-cms .alphabetical-nav ul li:nth-child(23) {
    z-index: 8
}

.branch-cms .alphabetical-nav ul li:nth-child(24) {
    z-index: 7
}

.branch-cms .alphabetical-nav ul li:nth-child(25) {
    z-index: 6
}

.branch-cms .alphabetical-nav ul li:nth-child(26) {
    z-index: 5
}

.branch-cms .alphabetical-nav ul li:nth-child(27) {
    z-index: 4
}

.branch-cms .alphabetical-nav ul li:nth-child(28) {
    z-index: 3
}

.branch-cms .alphabetical-nav ul li:nth-child(29) {
    z-index: 2
}

.branch-cms .alphabetical-nav ul li:nth-child(30) {
    z-index: 1
}

.branch-cms .alphabetical-list {
    margin: 0 auto
}

@media(min-width: 1200px) {
    .branch-cms .alphabetical-list {
        width:77%;
        margin: 100px auto 0
    }
}

@media(min-width: 992px) and (max-width:1199.98px) {
    .branch-cms .alphabetical-list {
        margin-top:100px
    }
}

@media(min-width: 768px) and (max-width:991.98px) {
    .branch-cms .alphabetical-list {
        width:90%;
        margin: 100px auto 0
    }
}

@media(max-width: 767.98px) {
    .branch-cms .alphabetical-list {
        margin-top:50px;
        text-align: center
    }
}

.branch-cms .alphabetical-list .alphabet-child-list {
    border-bottom: 1px solid #ccc
}

@media(min-width: 1200px) {
    .branch-cms .alphabetical-list .alphabet-child-list {
        margin-bottom:38px
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .branch-cms .alphabetical-list .alphabet-child-list {
        margin-bottom:38px
    }
}

@media(max-width: 767.98px) {
    .branch-cms .alphabetical-list .alphabet-child-list {
        margin-bottom:30px
    }
}

.branch-cms .alphabetical-list .alphabet-child-list:last-child {
    border-bottom: 0
}

.branch-cms .alphabetical-list .alphabet-child-list h2,.branch-cms .alphabetical-list .alphabet-child-list .h2 {
    font-weight: 600;
    color: var(--primary)
}

@media(min-width: 1200px) {
    .branch-cms .alphabetical-list .alphabet-child-list h2,.branch-cms .alphabetical-list .alphabet-child-list .h2 {
        font-size:20px;
        line-height: 35px;
        margin-bottom: 15px
    }
}

@media(max-width: 1199.98px) {
    .branch-cms .alphabetical-list .alphabet-child-list h2,.branch-cms .alphabetical-list .alphabet-child-list .h2 {
        font-size:20px;
        line-height: 25px;
        margin-bottom: 22px
    }
}

.branch-cms .alphabetical-list .main-column-section {
    list-style: none;
    padding: 0;
    margin: 0
}

.branch-cms .alphabetical-list .main-column-section .common-row {
    display: grid;
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0
}

@media(min-width: 1200px) {
    .branch-cms .alphabetical-list .main-column-section .common-row {
        grid-template-columns:repeat(3,1fr);
        grid-gap: 50px
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .branch-cms .alphabetical-list .main-column-section .common-row {
        grid-template-columns:repeat(3,1fr);
        grid-gap: 36px
    }
}

@media(max-width: 767.98px) {
    .branch-cms .alphabetical-list .main-column-section .common-row {
        grid-template-columns:repeat(1,1fr);
        grid-gap: 24px
    }
}

.branch-cms .alphabetical-list .main-column-section .common-row li a {
    color: #333;
    list-style: none;
    text-decoration: none;
    cursor: pointer
}

@media(min-width: 1400px) {
    .branch-cms .alphabetical-list .main-column-section .common-row li a {
        font-size:16px;
        line-height: 30px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .branch-cms .alphabetical-list .main-column-section .common-row li a {
        font-size:16px;
        line-height: 25px;
        text-decoration: underline
    }
}

@media(max-width: 767.98px) {
    .branch-cms .alphabetical-list .main-column-section .common-row li a {
        font-size:16px;
        line-height: 25px;
        text-decoration: underline
    }
}

.branch-cms .alphabetical-list .main-column-section .common-row li a:hover {
    color: var(--primary)
}
.text-trim-15 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 15vw;
}

.text-trim-25 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 25vw;
}

.text-trim-50 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 50vw;
}

.text-trim-60 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 50vw;
}

.text-trim-70 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70vw;
}

#branch-info .img-section img {
    width: 100%;
    object-fit: cover;
    box-shadow: 2px 2px 15px 13px #e3e3e3;
}

@media(min-width: 1200px) {
    #branch-info .img-section img {
        height:372px;
    }
}

@media(max-width: 1199.98px) {
    #branch-info .img-section img {
        height:242px
    }
}

#branch-info .branch-details h3{
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333
}
#branch-info .branch-details p {
    margin-bottom: 0;
    color: #333
}
@media(min-width: 1400px) {
    #branch-info .branch-details p {
        font-size:17px;
        line-height: 25px
    }
    #branch-info .branch-details h3{
        font-size:14.29px;
        line-height: 28px;
        font-weight: 600;
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    #branch-info .branch-details p {
        font-size:16px;
        line-height: 25px
    }
    #branch-info .branch-details h3{
        font-size:12px;
        line-height: 25px;
        font-weight: 600
    }
}

@media(max-width: 767.98px) {
    #branch-info .branch-details p {
        font-size:16px;
        line-height: 25px
    }
    #branch-info .branch-details h3{
        font-size:12px;
        line-height: 25px;
        font-weight: 600
    }
}

#branch-info .branch-details p a {
    color: var(--primary);
    text-decoration: none;
}

#branch-info .branch-details p a:hover {
    color: var(--primary);
    text-decoration: none;
}

.find-model {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 99999
}

.find-model.active {
    display: flex;
    flex-wrap: wrap
}

.find-model .overlay-bg {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0,0,0,0.5);
    z-index: 999
}

.find-model .branches {
    background-color: #fff;
    border-radius: 31px;
    text-align: center;
    position: relative;
    z-index: 999999
}

@media(min-width: 1400px) {
    .find-model .branches {
        width:39%;
        max-width: 545.7px;
        padding-top: 32.02px;
        padding-bottom: 32.02px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .find-model .branches {
        width:36%;
        min-width: 347px;
        padding-bottom: 32.02px;
        padding-top: 32.02px
    }
}

@media(max-width: 767.98px) {
    .find-model .branches {
        width:92.5%;
        max-width: 347px;
        padding-top: 32.02px;
        padding-bottom: 32.02px
    }
}

.find-model .branches .close-btn {
    position: absolute;
    width: 25px;
    height: 25px
}

.find-model .branches .close-btn span {
    line-height: 18px
}

@media(min-width: 1200px) {
    .find-model .branches .close-btn {
        top:31px;
        right: 31px
    }
}

@media(max-width: 1199.98px) {
    .find-model .branches .close-btn {
        top:15px;
        right: 15px
    }
}

@media(min-width: 1400px) {
    .find-model .branches .top .map img {
        height:62px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .find-model .branches .top .map img {
        width:54.8px;
        height: 44.57px
    }
}

@media(max-width: 767.98px) {
    .find-model .branches .top .map img {
        width:54.8px;
        height: 44.57px
    }
}

.find-model .branches .top p {
    color: var(--secondary);
    font-weight: 500
}

@media(min-width: 1400px) {
    .find-model .branches .top p {
        font-size:16.4px;
        line-height: 20px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .find-model .branches .top p {
        font-size:14.3px;
        line-height: 18px
    }
}

@media(max-width: 767.98px) {
    .find-model .branches .top p {
        font-size:14.3px;
        line-height: 18px
    }
}

@media(min-width: 1400px) {
    .find-model .branches .top p {
        margin-top:18px;
        margin-bottom: 15px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .find-model .branches .top p {
        margin:10px 0
    }
}

@media(max-width: 767.98px) {
    .find-model .branches .top p {
        margin-top:14.47px;
        margin-bottom: 6.66px
    }
}

.find-model .branches .top span {
    color: var(--primary);
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase
}

@media(min-width: 1400px) {
    .find-model .branches .top span {
        font-size:35.7px;
        line-height: 40px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .find-model .branches .top span {
        font-size:28.6px;
        line-height: 32px
    }
}

@media(max-width: 767.98px) {
    .find-model .branches .top span {
        font-size:28.6px;
        line-height: 32px
    }
}

@media(min-width: 1400px) {
    .find-model .branches .top span {
        margin-bottom:29px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .find-model .branches .top span {
        margin-bottom:20.42px
    }
}

@media(max-width: 767.98px) {
    .find-model .branches .top span {
        margin-bottom:20.42px
    }
}

.find-model .branches .bottom {
    display: flex;
    justify-content: center;
    align-items: center
}

@media(min-width: 1200px) {
    .find-model .branches .bottom {
        grid-gap:39px
    }
}

@media(max-width: 1199.98px) {
    .find-model .branches .bottom {
        grid-gap:15px
    }
}

.find-model .branches .bottom a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 54px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background-color: var(--secondary)
}

@media(min-width: 1400px) {
    .find-model .branches .bottom a {
        font-size:16.4px;
        line-height: 20px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .find-model .branches .bottom a {
        font-size:14.3px;
        line-height: 18px
    }
}

@media(max-width: 767.98px) {
    .find-model .branches .bottom a {
        font-size:14.3px;
        line-height: 18px
    }
}

@media(min-width: 1400px) {
    .find-model .branches .bottom a {
        width:171px;
        height: 44.29px
    }
}

@media(min-width: 768px) and (max-width:1399.98px) {
    .find-model .branches .bottom a {
        width:134px;
        height: 44.07px
    }
}

@media(max-width: 767.98px) {
    .find-model .branches .bottom a {
        width:134px;
        height: 44.07px
    }
}

.find-top-banner {
    background: url(../img/branch-banner.webp) no-repeat center center;
    background-size: cover;
    margin-top: 0
}

@media(min-width: 1400px) {
    .find-top-banner {
        padding:122px 40px
    }
}

@media(min-width: 1200px) and (max-width:1399.98px) {
    .find-top-banner {
        padding:100px 40px
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .find-top-banner {
        padding:86px 40px
    }
}

@media(max-width: 767.98px) {
    .find-top-banner {
        padding:90px 20px
    }
}

@media(max-width: 991.98px) {
    .find-top-banner+.padding-component {
        display:none
    }
}

.find-top-banner .main-input-div {
    display: flex
}

@media(min-width: 1200px) {
    .find-top-banner .main-input-div {
        width:500px;
        height: 60px;
        margin: 0 auto
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .find-top-banner .main-input-div {
        width:310px;
        height: 50px;
        margin: 0 auto
    }
}

@media(max-width: 767.98px) {
    .find-top-banner .main-input-div {
        width:259px;
        height: 50px;
        margin: 0 auto
    }
}

.find-top-banner .main-input-div .input-box {
    width: 100%;
    position: relative
}

.find-top-banner .main-input-div .input-box .location-icon {
    position: absolute
}

@media(min-width: 1200px) {
    .find-top-banner .main-input-div .input-box .location-icon {
        top:15px;
        left: 30px;
        width: 23px;
        height: 50px
    }
}

@media(max-width: 1199.98px) {
    .find-top-banner .main-input-div .input-box .location-icon {
        top:12px;
        left: 16px;
        width: 13px;
        height: auto
    }
}

.find-top-banner .main-input-div .input-box input {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 50px 0 0 50px;
    background: #f2f2f2
}

@media(min-width: 1200px) {
    .find-top-banner .main-input-div .input-box input {
        padding-left:69px;
        font-size: 16px
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .find-top-banner .main-input-div .input-box input {
        padding-left:40px;
        font-size: 12px
    }
}

@media(max-width: 767.98px) {
    .find-top-banner .main-input-div .input-box input {
        padding-left:40px;
        font-size: 12px
    }
}

.find-top-banner .main-input-div .input-box input:focus-visible {
    outline: 0
}

.find-top-banner .main-input-div .search-btn {
    flex-shrink: 0
}

.find-top-banner .main-input-div .search-btn button:hover {
    background: var(--chartreuse-green-7) !important;
    transition: .3s;
    text-decoration: none !important;
}

@media(min-width: 1200px) {
    .find-top-banner .main-input-div .search-btn {
        width:90px
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .find-top-banner .main-input-div .search-btn {
        width:56px
    }
}

@media(max-width: 767.98px) {
    .find-top-banner .main-input-div .search-btn {
        width:56px
    }
}

.find-top-banner .main-input-div .search-btn button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0 50px 50px 0;
    background: var(--secondary)
}

@media(min-width: 1200px) {
    .find-top-banner .main-input-div .search-btn button .icon-search {
        width:28px;
        height: 28px
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .find-top-banner .main-input-div .search-btn button .icon-search {
        width:22px;
        height: 22px
    }
}

@media(max-width: 767.98px) {
    .find-top-banner .main-input-div .search-btn button .icon-search {
        width:16px;
        height: 16px
    }
}

.find-top-banner .main-input-div .search-btn button .icon-loader {
    display: none;
    width: 60%;
    height: auto;
    margin: 0
}

.find-top-banner .search-drop-down {
    position: absolute;
    left: 0;
    right: 0;
    box-shadow: 5px 5px 7px 0 rgba(51,51,51,0.1);
    background: #fff;
    max-width: 564px;
    margin-left: 40px;
    display: none
}

@media(min-width: 1200px) {
    .find-top-banner .search-drop-down {
        top:60px
    }
}

@media(max-width: 1199.98px) {
    .find-top-banner .search-drop-down {
        top:64px
    }
}

.find-top-banner .search-drop-down.active {
    display: block
}
.find-top-banner .search-drop-down.active .overlay-search {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: block
}

.find-top-banner .search-drop-down ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 999
}

.find-top-banner .search-drop-down ul li a {
    padding: 10px 20px;
    display: block;
    color: #2c2a29;
    text-decoration: none
}

.find-top-banner .search-drop-down ul li a:hover {
    background: #797979;
    color: #fff;
    transition: .5s
}
.branch-details-top{
    background: var(--primary);
    position: relative;
}

.branch-details-top .main-hero-section {
    position: relative;
    display: flex;
    align-items: center
}
.branch-details-top .main-hero-section .left-section {
    display: flex;
    flex-direction: column
}
.branch-details-top .main-hero-section .left-section .main-left {
    opacity: 1;
    transition: none;
    transition-delay: 0
}
.branch-details-top .main-hero-section .left-section .main-left h3 {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--chartreuse-green-7);
    font-weight: bold;
    text-transform: uppercase
}

.branch-details-top .main-hero-section .left-section .main-left h2{
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px
}
.branch-details-top .main-hero-section .left-section .main-left p {
    margin-bottom: 0;
    color: #fff
}
.branch-details-top .main-hero-section .left-section .main-left .ui-button {
    display: inline-block;
    border: 0;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    /* border-radius: 31px; */
    margin-bottom: 0;
    color: #fff;
    background: var(--secondary);
}
.branch-details-top .main-hero-section .left-section .main-left .ui-button:hover {
    color: #fff !important;
    background: var(--chartreuse-green-7) !important;
}
.branch-details-top .main-hero-section .right-section img {
    display: block;
    width: 100%;
    object-fit: cover
}
@media(min-width: 1400px) {
    .branch-details-top  .main-hero-section {
        padding-left:calc(50vw - 570px + 12px);
    }
    .branch-details-top .main-hero-section .left-section .main-left h3 {
        font-size:14.3px;
        line-height: 18px
    }
    .branch-details-top .main-hero-section .left-section .main-left h2{
        font-size:35.7px;
        line-height: 40px
    }
    .branch-details-top .main-hero-section .left-section .main-left p {
        font-size:16.4px;
        line-height: 20px
    }
}
@media(min-width: 1200px) {
    .branch-details-top {
        padding:37px 0
    }
    .branch-details-top .main-hero-section {
        padding-left:calc(44vw - 480px + 12px);
        align-items:stretch;
    }
    .branch-details-top .main-hero-section .left-section {
        justify-content:center;
        width: 47.64%;
        padding-right: 9.2%
    }
    .branch-details-top .main-hero-section .left-section .main-left p {
        max-width:320px
    }
    .branch-details-top .main-hero-section .left-section .main-left .ui-button {
        margin-top:29px;
        height: 44px;
        padding: 0 38px;
        font-size: 16px;
        line-height: 44px
    }
    .branch-details-top .main-hero-section .right-section {
        width:52.36%
    }
    .branch-details-top .main-hero-section .right-section img {
        height:411px;
    }
}

@media(min-width: 768px) and (max-width:1199.98px) {
    .branch-details-top {
        padding:22px 0 0
    }
    .branch-details-top .main-hero-section {
        display:flex;
        flex-direction: column;
        align-items: center;
    }

    .branch-details-top .main-hero-section .left-section {
        padding-bottom: 43px
    }
    .branch-details-top .main-hero-section .left-section {
        justify-content:center;
        width: 654px;
        min-height: 295px;
        padding: 0;
        margin: 0 auto;
        order: 2
    }
    .branch-details-top .main-hero-section .left-section .main-left {
        display:flex;
        flex-direction: column;
        align-items: center;
        text-align: center
    }
    .branch-details-top .main-hero-section .left-section .main-left h3 {
        font-size:12px;
        line-height: 16px
    }
    .branch-details-top .main-hero-section .left-section .main-left h2{
        font-size:28.6px;
        line-height: 32px
    }
    .branch-details-top .main-hero-section .left-section .main-left p {
        font-size:14.3px;
        line-height: 18px;
        max-width:none;
    }
    .branch-details-top .main-hero-section .left-section .main-left .ui-button {
        margin-top:20px;
        height: 44px;
        padding: 0 30px;
        font-size: 16px;
        line-height: 44px
    }
    .branch-details-top .main-hero-section .right-section {
        width:100%;
        order: 1
    }
    .branch-details-top .main-hero-section .right-section img {
        width:654px;
        height: 337px;
        margin: 0 auto
    }
}

@media(max-width: 767.98px) {
    .branch-details-top {
        padding:10px 0 0
    }
    .branch-details-top .main-hero-section {
        display:flex;
        flex-direction: column;
        align-items: center;
    }
    .branch-details-top .main-hero-section .left-section {
        padding-bottom: 34px
    }
    .branch-details-top .main-hero-section .left-section {
        justify-content:center;
        width: 316px;
        min-height: 337px;
        padding: 0;
        margin: 0 auto;
        order: 2
    }
    .branch-details-top .main-hero-section .left-section .main-left {
        display:flex;
        flex-direction: column;
        align-items: center;
        text-align: center
    }
    .branch-details-top .main-hero-section .left-section .main-left h3 {
        font-size:12px;
        line-height: 16px
    }
    .branch-details-top .main-hero-section .left-section .main-left h2{
        font-size:28.6px;
        line-height: 32px
    }
    .branch-details-top .main-hero-section .left-section .main-left p {
        font-size:14.3px;
        line-height: 18px;
        max-width:none;
    }
    .branch-details-top .main-hero-section .left-section .main-left .ui-button {
        margin-top:20px;
        height: 44px;
        padding: 0 30px;
        font-size: 16px;
        line-height: 44px
    }
    .branch-details-top .main-hero-section .right-section {
        width:100%;
        order: 1
    }
    .branch-details-top .main-hero-section .right-section img {
        width:347px;
        height: 173px;
        margin: 0 auto
    }
}


.news-list  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
    row-gap: 24px;
    margin-top: 25px;
}
.news-list a{
    text-decoration: none;
}

.news-list a .list-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: stretch;
}
.news-list a .list-item .item-main{
    position: relative;
}

.news-list a .list-item .item-main .item-img {
    width: 100%;
    height: 195px;
}
.news-list a .list-item .item-main .item-img img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    object-fit: cover;
    transition: all .3s;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.news-list a .list-item:hover .item-main .item-img img {
    transform: scale(1.035);
    transform-origin: center center;
}

.news-list a .list-item .item-main .cate{
    background-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 33px;
    border: 2px solid var(--background-white);
    /* border-radius: 50%; */
    bottom: 0%;
    position: absolute;
    left: 0%;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.news-list a .card-title {
    font-size: calc(var(--fs-18) + 2px);
    font-weight: 400;
    line-height: 120%;
    color: var(--primary);
}

.news-list a .date {
    color: var(--grey-20);
    font-size: calc(var(--fs-16) + .4px);
    font-weight: 400;
    line-height: 146.341%;
    margin: 10.4px 0;
    text-align: start;
}
.news-filters{
    display: flex;
    justify-content: space-between;
}
.news-filters .left{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.news-filters .right{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.news-filters .left label{
    color: var(--primary);
    font-size: calc(var(--fs-16) + .4px);
    font-weight: 400;
}
.news-filters .left select{
    border: 1px solid var(--primary);
    border-radius: 8px;
    font-size: var(--fs-14);
    padding: 2px 5px;
}
.news-filters .right .pagination {
    list-style: none; 
    display: flex; 
    padding: 0; 
    margin: 20px 0; 
    justify-content: center;
}
.news-filters .right .pagination li{
    color: var(--primary);
    border: 1px solid var(--primary);
    margin: 0 5px; 
    cursor: pointer; 
    padding: 5px 10px;
}
.news-filters .right .pagination li.active-page {
    background-color: var(--primary);
    color: white;
}


.news-details-banner {
    height: auto;
    position: relative;
    overflow: hidden;
}
.news-details-banner .right-img-container {
    width: 100%;
    height: 551px;
    position: relative;
}

.news-details-banner .right-img-container .banner-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.news-details-banner .left-section {
    position: absolute;
    left: 0;
    top: 8vw;
    border-radius: 30px;
    background: var(--primary);
    position: absolute;
    left: calc(50vw - 570px );
    z-index: 3;
    width: 470px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 35px 40px;
}

.news-details-banner .left-section span {
    color: var(--chartreuse-green-7);
    font-size: calc(var(--fs-14) + .3px);
    font-style: normal;
    font-weight: 300;
    line-height: 125.874%;
    text-transform: uppercase;
}

.news-details-banner .left-section h1 {
    color: var(--background-white);
    font-size: 35.7px;
    font-weight: 300;
    line-height: 112.045%;
    letter-spacing: 1px;
}

.news-details-banner .left-section p {
    color: var(--background-white);
    font-size: 16.4px;
    font-weight: 300;
    line-height: 121.951%;
}
.news-details-breadcrumb{
    background-color: var(--secondary);
    color: var(--background-white);   
}
.news-details-breadcrumb .page-bread .breadcrumb {
    --bs-breadcrumb-divider-color: var(--background-white);
}
.news-details-breadcrumb .page-bread .breadcrumb li a {
    color: var(--background-white);
}
.new-box h2{
    color: var(--primary);
    text-align: center;
}
.new-box .news-list  {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 25px;
}
.new-box .news-list a .list-item .item-main .item-img{
    height: 160px;
}
.new-box .news-list a .date{
    font-size: calc(var(--fs-14) + .4px);
    margin: 5px 0;
}
.new-box .news-list a .card-title {
    font-size: calc(var(--fs-16) + 2px);
}
/* nik custom css end here... */