@import url(fonts.css);
@import url(var.css);

* {
    margin: 0;
    padding: 0;
}
body {
    color: var(--bodyColor);
    font-size: var(--font16);
    font-family: var(--font_Prompt); 
	line-height: 1.5;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.2px;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
::-moz-selection {
    color: var(--white);
    background: var(--primary);
}
/* ::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #d6d6d6;
}
::-webkit-scrollbar-thumb {
    background: #9e9e9e;
    cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
} */
ul {
    list-style: none;
}
p {
    /* letter-spacing: -0.36px; */
    line-height: 1.4;
}
a,
a:hover,
a:focus,
a:visited {
    outline: 0;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
button::-moz-focus-inner {
    outline: 0;
}
h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--font_Prompt);
}
h1{
    font-size: var(--font58);
    color: var(--primary);
    line-height: 110%;
}
h2{
    font-size: var(--font56);
    /* color: var(--primary); */
    color: var(--black);
    letter-spacing: 0.65px;
    line-height: 1.15;
    font-weight: 500;
}
h3{
    font-size: var(--font32);
    line-height: 100%;
}
h4{
    font-size: var(--font24);
    line-height: 1.3;
    font-weight: 600;
    color: var(--black);
}
h5{
    font-size: var(--font20);
    color: var(--black);
    font-weight: 600;
}
.main-container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}
.contentwrap {
    margin-top: 5rem;
}
.section-pt {
    padding-top: var(--space110px);
}
.section-pb {
    padding-bottom: var(--space110px);
}
.img-contain, .img-cover {
    width: 100%;
    height: 100%;
    display: block;
}
.img-cover {
    object-fit: cover;
}
.img-contain {
    object-fit: contain;
}
.img-radius{
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    overflow: hidden;
}
.text-primary {
    color: var(--primary);
}
.btn {
    font-family: var(--font_Prompt);
    font-size: var(--font16);
    font-weight: 400;
    padding: 12px 22px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    transition: all .4s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* opacity: 0; */
    display: inline-flex;
}
.btn.whitebackground-btn{

}
.btn.primary-btn{
    background: var(--primary);
    color: var(--white);
}
.btn.btn-solid {
    background: var(--secondary);
    color: var(--white);
    border: 1px solid transparent;
}
.btn.btn-outline,
.btn.whitebackground-btn{
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}
.btn.btn-blue{
    background: var(--primary);
    color: var(--white);
}
.btn:hover svg path{
    fill: var(--primary);
}
.btn svg path{
    fill: var(--white);
}
.btn svg{
    height: 20px;
    width: 20px;
    transition: all .3s ease-in-out;
}
.btn.btn-blue::after,
.btn.btn-blue::before,
.btn.btn-outline::after,
.btn.btn-outline::before,
.btn.primary-btn::after,
.btn.primary-btn::before{
    background: rgb(39 89 136 / 50%) !important;
}
.btn.whitebackground-btn::after,
.btn.whitebackground-btn::before{
    background: rgb(176 176 176 / 20%);
}


.btn::after,
.btn::before,
.btn.btn-blue::after,
.btn.btn-blue::before,
.btn.btn-outline::after,
.btn.btn-outline::before,
.btn.primary-btn::after,
.btn.primary-btn::before
{
    top: -40px;
    width: 60px;
    height: 140px;
    background:  rgb(79 173 67 / 50%);
    z-index: -1;
    transition: all .8s;
    opacity: 0;
    transform: rotate(40deg);
}   
.btn:hover svg path{
    fill: var(--white);
}
.btn::after,
.btn.btn-blue::after,
.btn.btn-outline::after,
.btn.primary-btn::after,
.btn.whitebackground-btn::after{
    right: 50%;
}
.btn::before,
.btn.btn-blue::before,
.btn.btn-outline::before,
.btn.primary-btn::before,
.btn.whitebackground-btn::before{
    left: 50%;
}

.btn:hover::before,
.btn:hover::after,
.btn.btn-blue:hover::before,
.btn.btn-blue:hover::after,
.btn.btn-outline:hover::before,
.btn.btn-outline:hover::after,
.btn.primary-btn:hover::before,
.btn.primary-btn:hover::after,
.btn.whitebackground-btn:hover::before,
.btn.whitebackground-btn:hover::after{
    opacity: 1;
}
.btn:hover::before,
.btn.btn-blue:hover::before,
.btn.btn-outline:hover::before,
.btn.primary-btn:hover::before,
.btn.whitebackground-btn:hover::before{
    left: -40px;
    z-index: 1;
}
.btn:hover::after,
.btn.btn-blue:hover::after,
.btn.btn-outline:hover::after,
.btn.primary-btn:hover::after,
.btn.whitebackground-btn:hover::after{
    right: -45px;
}
.btn::after, .btn::before,
.btn.btn-blue::after, .btn.btn-blue::before,
.btn.btn-outline::after, .btn.btn-outline::before,
.btn.primary-btn::after, .btn.primary-btn::before,
.btn.whitebackground-btn::after, .btn.whitebackground-btn::before{
    position: absolute;
    content: "";
}
.btn span,
.btn.btn-blue span,
.btn.btn-outline span,
.btn.primary-btn span,
.btn.whitebackground-btn span{
    z-index: 1;
}
.btn:hover svg{
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    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;
}
/* .btn:hover {
    color: var(--white);
} */




.sec-head-content,
.sec-head{
    display: flex;
    flex-direction: column;
}
.sec-head-content{
    gap: 1rem;
}
.sec-head {
    gap: 20px;
}
.sec-head-wrap{
    padding-bottom: var(--spacing60px);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.vi-feature-style-21 .sec-head-content p,
.vi-footer-style-3 .sec-head-content p,
.vi-blog-style-3 .sec-head-content p{
    padding-right: 7rem;
}
/*---------------------- header ----------------------*/

header {
    position: fixed;
    top: 0;
    z-index: 999;
    background: var(--white);
    width: 100%;
}

/*---------------------- footer ----------------------*/
.ftr-widget-wrap p{
    margin: 1.7rem 0;
}
.ftr-quote-wrap h2{
    font-size: var(--font40);
}

.social-info ul li svg path,
.contact-detail svg path{
    fill: var(--secondary);
} 
.social-info ul li svg {
    height: 20px;
    width: 20px;
}
.service-items .ftr-widget ul{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
}
.ftr-btm p{
    font-size: var(--font16);
}

.vi-footer-style-3
{
    background: var(--lightGray);
}
.vi-footer-style-3{
    position: relative;

}

.vi-footer-style-3 .footer-main-wrap{
    background: var(--white);
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    padding: 4rem 0 0;
}

.vi-footer-style-3 .ftr-widget{
    color: var(--black);
}

.vi-footer-style-3 .ftr-widget ul{
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
}

.vi-footer-style-3 .ftr-logo {
    max-width: 250px;
}

.vi-footer-style-3 .ftr-widget ul li:last-child{
    margin-bottom: 0;
}
.vi-footer-style-3 .ftr-widget ul li{
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.vi-footer-style-3 .ftr-widget ul li a:hover{
    color: var(--primary);
}
.vi-footer-style-3 .ftr-widget ul li a{
    color: var(--bodyColor);
    font-size: var(--font16);
}

.vi-footer-style-3 .ftr-widget ul li i{
    font-size: 12px;
}

.vi-footer-style-3 .ftr-widget ul li:hover, .vi-footer-style-3 .ftr-widget ul li a:hover, .vi-footer-style-3 .ftr-contact p a:hover{
    color: var(--secondary);
}

.vi-footer-style-3 .ftr-widget ul li:hover{
    padding-left: 5px;
}

.vi-footer-style-3 .ftr-btm{
    padding: 25px 0;
    border-top: 1px solid hsl(0deg 0% 43% / 15%);
    margin-top: 3rem;
}

.vi-footer-style-3 .ftr-contact{
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.vi-footer-style-3 .ftr-contact p, .vi-footer-style-3 .ftr-contact p a, .vi-footer-style-3 .ftr-widget-head h5{
    /* color: var(--black); */
}

.vi-footer-style-3 .ftr-contact .icon i{
    font-size: var(--font16);
    color: var(--bodyColor);
}

.vi-footer-style-3 .ftr-social-link{
    display: flex;
    gap: 16px;
    
}

.vi-footer-style-3 .ftr-social-link a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--black);
    color: var(--black);
    justify-content: center;
    align-items: center;
    display: flex;
    transition: 0.3 ease-in-out;
    -webkit-transition: 0.3 ease-in-out;
    -moz-transition: 0.3 ease-in-out;
    -ms-transition: 0.3 ease-in-out;
    -o-transition: 0.3 ease-in-out;
}

.vi-footer-style-3 .ftr-social-link a:hover{
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}
.vi-footer-style-3 .ftr-logo img{
    width: 100%;
    height: 100%;
    display: block;
}
.vi-footer-style-3 .sec-head-wrap {
    padding-bottom: 0;
    gap: 1.7rem;
}
.ftr-quote-img-wrap {
    aspect-ratio: 9 / 5;
}
/* ---------------------hm-services section ------------------- */


/* navigation */

.navigation {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.nav-button-next:hover svg path,
.nav-button-prev:hover svg path{
    fill: var(--white);
}
/* .nav-button-next:hover,
.nav-button-prev:hover {
    background: var(--secondary);
    transition: all 0.3s ease-in-out;
} */
.nav-button-next,
.nav-button-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    padding: 10px;
    height: 60px;
    width: 60px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.navigation svg path{
    fill: var(--white);
}
.navigation svg {
    height: 20px;
    width: 25px;
}

/* --------------------------------------------- */

.section-tag p,
.section-tag-center p{
    color:var(--secondary);
    font-size: var(--font18);
    text-transform: uppercase;
    font-weight: 600;
}
.section-tag img,
.section-tag-center img{
    max-width: 63px;
    height: 27px;
}
.section-tag-center{
    justify-content: center;
}
.section-tag,
.section-tag-center{
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
/* .vi-slider-style-14 .section-btn-wrap .btn:hover svg path{
    fill: var(--primary);
} */
.vi-slider-style-14 .btn:hover svg path,
.contact-form-wrap .btn:hover svg path{
    fill: var(--white);
}
.vi-slider-style-14, .testimonial-slider{
    background: var(--lightGray);
    padding-top: 9rem;
}
.vi-slider-style-14 .swiper-slide {
    height: auto;
}
/* 
.vi-slider-style-14 .navigation {
    display: flex;
    gap: 12px;
    justify-content: end;
}

.vi-slider-style-14 .nav-button-next:hover svg path,
.vi-slider-style-14 .nav-button-prev:hover svg path{
    fill: var(--white);
}
.vi-slider-style-14 .nav-button-next:hover,
.vi-slider-style-14 .nav-button-prev:hover {
    background: var(--gray80);
    transition: all 0.3s ease-in-out;
}
.vi-slider-style-14 .nav-button-next,
.vi-slider-style-14 .nav-button-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--grayBE);
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    height: 40px;
    width: 40px;
    transition: all 0.3s ease-in-out;
}
.vi-slider-style-14 .navigation svg path{
    fill: var(--black);
}
.vi-slider-style-14 .navigation svg {
    height: 20px;
    width: 20px;
} */

.vi-slider-style-14 .feature-card{
    transition: all 0.3s ease-in-out;
}
.vi-slider-style-14 .left-wrap-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 2rem;
    border-radius: 8px;
    border-bottom: 3px solid transparent;
    margin-top: 2rem;
}
.vi-slider-style-14 .card-top {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.vi-slider-style-14 .card-top p{
    margin-bottom: 0;
}
.vi-slider-style-14 .vi-slider-card{
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}
.vi-slider-style-14 .vi-slider-card h5{ 
    font-size: var(--font31);
    font-weight: 600;
    margin-bottom: .9375rem;
    color: var(--white);
}

.vi-slider-style-14 .slider-panel{
    height: 100%;
}
.vi-slider-style-14 .swiper{
    height: 100%;
}

.slider-img-wrap {
    position: relative;
    aspect-ratio: 9 / 10;
}
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    padding: 0 60px 60px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: var(--white);
}
.section-btn-wrap{
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 0;
}
.vi-slider-style-14 .section-btn-wrap{
    padding: 0;
}
.vi-slider-style-14 .vi-slider-card:hover::before {
    /* background: linear-gradient(0deg, var(--primary) 0%, rgba(20, 53, 140, 0) 100%); */
    background: linear-gradient(0deg, var(--secondary) 0%, rgba(20, 53, 140, 0) 100%);
}
.vi-slider-style-14 .vi-slider-card::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000513 0%, rgba(0, 32, 121, 0) 100%);
    transition: all .8s;
    z-index: 1;
}
/* -------------------hm feature section ------------------- */


 .vi-feature-style-5 h4 a,
 .vi-feature-style-5 h4,
 .vi-feature-style-5 .sec-head-wrap p{
    color: var(--black);
 }
.vi-feature-style-5 .card-img{
    height: 75px;
    width: 75px;
    background:rgb(74 123 67 / 10%);
    padding: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
}
.vi-feature-style-5 .card-wrap:first-child .cardfill svg path{
    fill: transparent;
}

.vi-feature-style-5 .card-img svg path{
    fill: var(--secondary);
} 
.vi-feature-style-5 .card-img svg{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.vi-feature-style-5 .card-btn svg{
    height:15px;
    width:15px;
    margin-left: 5px;
}
.vi-feature-style-5 .card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
    
}
.vi-feature-style-5 .card-btn a{
    text-decoration: none;
}
.vi-feature-style-5 .card-wrap {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    border: 1px solid var(--borderColor);
}

.vi-feature-style-5 .card-wrap{
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}
.vi-feature-style-5 .card-wrap:hover::before{
    left: 48%;
}
.vi-feature-style-5 .card-wrap::before{
    width: 52%;
    height: 100%;
    top: 0;
    left: -52%;
}
.vi-feature-style-5 .card-wrap::before, .vi-feature-style-5 .card-wrap::after{
    position: absolute;
    content: "";
    transition: all .8s;
    z-index: -1;
}
.vi-feature-style-5 .card-wrap:hover::after{
    right: 48%;
}


.vi-feature-style-5 .card-wrap::after,
.vi-feature-style-5 .card-wrap::before{
    background: var(--secondary);
}

.vi-feature-style-5 .card-wrap::after{
    width: 52%;
    height: 100%;
    top: 0;
    right: -52%;
}
.vi-feature-style-5 .card-wrap:hover h4 a,
.vi-feature-style-5 .card-wrap:hover p,
.capabilities-Benefit-sec.vi-feature-style-5 .card-wrap:hover h4{
    color: var(--white);
}
.capabilities-Benefit-sec.vi-feature-style-5 .card-wrap h4{
    color: var(--black);
}
.vi-feature-style-5 .card-wrap:hover .card-img{
    background:var(--white);
}

/* ---------------------hm why choose -------------------- */

.vi-feature-style-21 .card-wrap{
    margin-bottom: 25px;
}

.vi-feature-style-21 .feature-style-right {
    background: var(--grayF5);
    height: 100%;
    padding: 60px 30px;
    border-radius: 12px;
}

.vi-feature-style-21 .feature-card {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 25px;
}

.vi-feature-style-21 .feature-card:last-child{
    margin-bottom: 0;
}

.vi-feature-style-21 .feature-card .icon {
    height: 45px;
    width: 50px;
    border: 1px solid var(--gray98);
    border-radius: 6px;
    padding: 5px;
    background: var(--white);
}

.vi-feature-style-21 .feature-card .icon svg{
    height: 100%;
    width: 100%;
}

.vi-feature-style-21 .card-content h5{
    margin-bottom: 10px;
}

.counter-card h3{
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 5px;
}

.vi-feature-style-21 .counter-card-content-wrap {
    margin-bottom: 30px;
}

.vi-feature-style-21 .card-wrap {
    padding: 20px;
    color: var(--black);
    border: 1px solid var(--borderColor);
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 0;
}

.vi-feature-style-21 .card-wrap .number-block {
    border-right: 1px solid var(--black);
    width: 70px;
    height: 60px;
    padding-right: 1.4rem;
}
.vi-feature-style-21 .card-wrap .number-block span {
    font-size: var(--font48);
    color: var(--secondary);
    font-weight: 700;
}

.vi-feature-style-21 .card-wrap .card-description {
    text-align: left;
    border-left: 1px solid var(--white);
}

.vi-feature-style-21 .card-wrap .card-description h4 {
    margin-bottom: 8px;

}

.vi-feature-style-21 .card-wrap .card-description span {
    font-size: max(1rem, min(1vw, 1.125rem));
    font-weight: 400;
}
.vi-feature-style-21 .card-wrap p{
    margin-bottom: 0;
    color: var(--bodyColor);
}

.section-icon img{
    max-width: 250px;
    max-height: 250px;
}
.section-icon {
    display: flex;
    justify-content: flex-end;
}
.section-icon img{
    display: block;
    animation: runnings 14s linear infinite;
    -webkit-animation: runnings 14s linear infinite;
}
@keyframes runnings {
    100% {
        transform: rotate(360deg);
    }

}
/* ----------------------bg icons code --------------------- */
.bg-icon-wrap{
    position: relative;
}
.vi-feature-style-5 .bg-section-icon .plane2{
    animation:normal;
    -webkit-animation:normal;
}
.bg-section-icon .plane2{
    right: 0;
    bottom: 23px;
    width: 260px;
    animation: animation2 2s linear infinite;
    -webkit-animation: animation2 2s linear infinite;
}
@keyframes animation2{
    50% {
        transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
}
}
.bg-section-icon .arrow-bg{
    right: 60px;
    z-index: -1;
    top: 20px;
    width: 170px;
}
.bg-section-icon .plane1{
    left: 10px;
    top: 20px;
    z-index: -1;
    width: 300px;
    animation: animation1 2s linear infinite;
    -webkit-animation: animation1 2s linear infinite;
}
@keyframes animation1{
    50% {
        transform: translateX(-10px);
    }
}
.bg-section-icon img{
    height: auto;
    position: absolute;
}

/* ------------------hm testimonial slider -------------------- */

.swiper-slide {
    height: auto;
}

.testimonial-slider .navigation {
    margin-top: 3rem;
}
.testimonial-slider .quote-icon-wrap svg path{
    fill: var(--lightGray);
}
.testimonial-slider .quote-icon-wrap svg{
    height: 80px;
    width: 80px;
}
.quote-icon-wrap {
    position: absolute;
    right: 5px;
    top: 5px;
}
.testimonial-panel {
    position: relative;
}

.testimonial-reviewslider {
    position: initial;
}

.testimonial-heading h6 {
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 10px;
}

.testimonial-heading h2 {
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 40px;
}
.star-ratings-css i {
  display: block;
  height: 100%;
}

.testimonial-slider .ratings {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.testimonial-slider .ratings p {
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
}

.testimonial-slider .star-ratings-css {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    color: #2d2d2d;
    margin-left: 5px;
}

.testimonial-slider .star-ratings-css::before {
    content: "★";
    opacity: 0.3;
}

.testimonial-slider .star-ratings-css i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
}

.testimonial-slider .star-ratings-css i::after {
    content: "★";
    color: var(--dandelion-yellow);
}
.testimonial-slider .review-card p,
.testimonial-slider .review-card h5{
    margin-bottom: 0;
}
.testimonial-slider .review-card .client-info{
    gap: 5px;
}
.testimonial-slider .review-card .client-info p{
    color: var(--secondary);
    font-size: var(--font18)
}
.testimonial-slider .review-card .review-content,
.testimonial-slider .review-card .client-info
{
    display: flex;
    flex-direction: column;
}
.testimonial-slider .review-card .review-content{
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.testimonial-slider .review-card {
    padding: 7rem 40px 35px;
    border: 1px solid var(--borderColor);
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--white);
    position: relative;
    height: 100%;
}

.testimonial-slider .user-review {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.testimonial-slider .user-profile img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.testimonial-slider .custom-pagination {
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 1;
    width: 100%;
}
.testimonial-slider .swiper-pagination {
    display: flex;
    justify-content: center;
    position: initial;
}

.testimonial-slider .swiper-pagination-bullet {
    height: 4px;
    width: 50px;
    border-radius: 0;
    background: var(--primary);
    opacity: 1;
}

.testimonial-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--secondary);
}
.testimonial-slider .sec-head-content p{
    color: var(--black)
}



.review-card{
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.review-card::before
 {
    width: 52%;
    height: 100%;
    background: var(--secondary);
    top: 0;
    left: -52%;
}

.review-card::after {
    width: 52%;
    height: 100%;
    background: var(--secondary);
    top: 0;
    right: -52%;
}

.review-card::before, .review-card::after {
    position: absolute;
    content: "";
    transition: all .8s;
    z-index: -1;
}
.review-card:hover::before {
    left: 48%;
}
.review-card:hover::after {
    right: 48%;
}

.review-card:hover h5,
.review-card:hover p,
.review-card:hover .client-info p{
    color: var(--white);
}
.testimonial-slider .swiper-slide-active{
    background: var(--secondary);
}
/* .review-card.active, .review-card:hover {
    background: var(--secondary);
} */

/* ------------------------hm blog section ----------------------- */
.vi-blog-style-3 .blog-card .blog-btn-main:hover svg {
    transform: rotate(90deg);
}
.vi-blog-style-3 .blog-card .blog-btn svg{
    transition: all .4s;
}
.vi-blog-style-3 .blog-card .btn-wrap span{
    border-bottom: 2px solid var(--secondary);
}
.vi-blog-style-3 .blog-card .btn-wrap{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 5px;
    font-size: var(--font18);
    font-weight: 600;
    color: var(--secondary);
}
.vi-blog-style-3 .blog-card{
    border: 1px solid var(--borderColor);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.vi-blog-style-3{
    background: var(--white);
}
.vi-blog-style-3 .blog-card h3 a:hover{
    color: var(--secondary);
}
.vi-blog-style-3 .blog-card h3 a{
    font-weight: 500;
    line-height: 128%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.vi-blog-style-3 .blog-card a{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    color: var(--black);
}
.vi-blog-style-3 .blog-date::before {
    position: absolute;
    left: 0;
    width: 38px;
    height: 38px;
    content: "";
    background:  rgb(74 123 67 / 40%);
    z-index: -1;
}
.vi-blog-style-3 .blog-date{
    font-size: var(--font20);
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
    padding-left: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vi-blog-style-3 .blot-btm p{
    font-size: var(--font18);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.vi-blog-style-3 .blog-card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    row-gap: 3rem;
}
.vi-blog-style-3 .blog-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    /* border-radius: 8px; */
    transition: 0.5s;
    position: relative;
}
.vi-blog-style-3 .blog-img img{
    transition: 0.5s;
}
.vi-blog-style-3 .blog-content h5,
.vi-blog-style-3 .blog-content p{
    margin-bottom: 0;
}
.vi-blog-style-3 .blog-content h5{
    font-size: var(--font22);
    color: var(--black);
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.vi-blog-style-3 .blog-content,
.content-top {
    gap: 1.3rem;
}
.vi-blog-style-3 .blog-content {
    display: flex;
    flex-direction: column;
    padding: 0 2rem 0 0;
    width: 100%;
}
.vi-blog-style-3 .content-top{
    display: flex;
    flex-direction: column;
}
.vi-blog-style-3 .blog-btn svg path{
    fill: var(--primary);
}
.vi-blog-style-3 .blog-btn svg{
    height: 30px;
    width: 30px;
}
.vi-blog-style-3 .blog-btn{
    display: flex;
    justify-content: flex-start;
}
.vi-blog-style-3 .blog-btn svg{
  transition: none;
  animation: none;
  /* transform: translateX(0);  */
}
/* 
.vi-blog-style-3 .blog-card a:hover svg {
  animation: arrow-slide 0.6s ease-in-out forwards;
}

@keyframes arrow-slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(20px); 
    opacity: 0;
  }
  41% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
} */

.vi-blog-style-3 .section-btn-wrap{
    justify-content: flex-end;
}

/* ------------------------------------------------ */

.blog-card:hover .blog-img img:nth-child(2) {
    width: 100% !important;
    visibility: visible;
    height: 100%;
}
.blog-card:hover .blog-img img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.blog-card .blog-img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 1s;
    overflow: hidden;
}


/* ---------------------------- cta and form section -------------------------- */

.vi-contact-form-style-2 .vi-input-proup {
    margin-bottom: 20px;
}

.vi-contact-form-style-2 .vi-input-proup input, .vi-contact-form-style-2 .vi-input-proup select, .vi-contact-form-style-2 .vi-input-proup textarea {
    padding: 15px;
    width: 100%;
    border: 1px solid #f4f4f4;
    font-size: 1rem;
    border-radius: 8px;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
.vi-contact-form-style-2 .icon-card{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.vi-contact-form-style-2 .map-wrap{
    height: auto;
    border-radius: 24px;
}
.vi-contact-form-style-2 .map-wrap iframe {
    height: 367px;
    width: 100%;
    border-radius: 24px;
}
.vi-contact-form-style-2 .contact-form-main-wrap{
    height: 100%;
}
.vi-contact-form-style-2 .icon-card p a{
    color: black;
    text-decoration: none;
}
.vi-contact-form-style-2 .vi-input-proup label{
    margin-bottom: 15px;
}
.vi-contact-form-style-2 .icon-wrap{
    margin-bottom: 50px;
}
.vi-contact-form-style-2 .about_button{
    width: 100%;
}
.vi-contact-form-style-2 .custom-btn {
    font-weight: 600;
    font-size: 18px;
    width: 100%;
    letter-spacing: 1.2px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    letter-spacing: -0.36px;
}
.vi-contact-form-style-2 .vi-input-proup label span{
    color: var(--danger);
}
.vi-contact-form-style-2 .icon-card i {
    font-size: 20px;
}


/*  --------------- Quote Contact Section---------------------- */

.quote-logistics {
    z-index: 2;
}
.logistics-quote-banner {
    position: relative;
    overflow: hidden;
}
.quote-wrap{
    /* background:url('../images/circle-shape-group.png') no-repeat center / cover; */
    padding: 185px 0 185px 85px;
    position: relative;
    z-index: 99;
    background-color: var(--primary);
}

.logistics-quote-banner::after {
        content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 404px;
    height: 100%;
    z-index: 1;
    background: var(--primary);
}
.banner-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}
.banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--white);
    padding-right: 30px;
}
.banner-title {
    font-size: var(--font58);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--white);
}
.banner-text {
    font-size: var(--font18);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
}
.banner-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}


.banner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    position: absolute;
    right: 0;
    top: 0;
    width: 44%;
    height: 100%;
}

.circle-img {
    position: absolute;
    top: 0;
    right: 7%;
    height: 100%;
    opacity: 0.2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logistics-quote-banner {
        padding: 60px 0;
    }

    .banner-title {
        font-size: var(--font48);
    }

    .banner-text {
        font-size: var(--font16);
    }

    .banner-content {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .logistics-quote-banner {
        padding: 50px 0;
    }

    .logistics-quote-banner::before {
        width: 400px;
        height: 400px;
        right: -20%;
    }

    .logistics-quote-banner::after {
        width: 250px;
        height: 250px;
    }

    .banner-container {
        padding: 0 15px;
    }

    .banner-content {
        gap: 20px;
        padding-right: 15px;
        padding-bottom: 40px;
    }

    .banner-title {
        font-size: var(--font32);
        line-height: 1.3;
    }

    .banner-text {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .banner-buttons {
        gap: 12px;
    }

    .btn-quote-primary,
    .btn-quote-secondary {
        padding: 12px 24px;
        font-size: var(--font14);
    }

    .container-img {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .logistics-quote-banner {
        padding: 40px 0;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-text {
        font-size: 0.9rem;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-quote-primary,
    .btn-quote-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .banner-content {
        padding-right: 10px;
        padding-bottom: 30px;
    }

    .banner-image {
        padding: 0 15px;
    }

    .container-img {
        max-width: 100%;
    }
}

/* ----------------------hm contact form ------------------- */
.contact-form-wrap .btn:hover{
    /* border: 1px solid var(--primary); */
    border: 1px solid var(--primary);
    color: var(--white);
}
.contact-form-wrap .btn{
    width: 100%;
}
.contact-badge-text p{
    margin-bottom: 0;
}
.contact-badge-text{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.quote-contact-section .sec-head-wrap p,
.quote-contact-section .sec-head-wrap h2,
.quote-contact-section .contact-phone{
    color: var(--white) !important;
}


.quote-contact-section .sec-head-wrap{
    padding: 0;
}
.quote-contact-section .sec-head-wrap h2, .success-msg h2{
    font-size: var(--font40);

}
.quote-contact-section::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--black);
    opacity: 0.5;
}
.quote-contact-section {
    background: url('../images/cta.webp') no-repeat center / cover;
    min-height: 450px;
    background-attachment: fixed;
    position: relative;
}

.quote-section {
    padding: 4.25rem;
    background: var(--primary);
    color: var(--white);
    position: relative;
}
.quote-box {
    background: var(--secondary);
    padding: 60px;
    color: var(--black);
}

.quote-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
}

.quote-tag svg {
    width: 20px;
    height: 20px;
}

.quote-title {
    font-size: var(--font32);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--black);
}

.quote-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-badge .icon-warp{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--primary);
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-badge svg path{
    fill: var(--white);
}
.contact-badge svg {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
}

.contact-phone {
    font-size: var(--font20);
    font-weight: 700;
    margin: 0;
}
.quote-box-wrap, .quote-box{
    height: 100%;
}
.vi-form-label{
    color: var(--white);
    font-size: var(--font16);
}
.vi-form-label .label-span {
    color: var(--danger);
    font-size: 15px;
}
.vi-input-group {
    margin-bottom: 25px;
}
.vi-input-group input,
.vi-input-group textarea,
.vi-input-group select {
    padding: 16px 25px;
    width: 100%;
    margin-top: 5px;
    border: 1px solid #dddddd;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.vi-contact-heading h2 {
    font-size: max(1.5rem, min(4vw, 3rem));
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--primary);
}

.vi-contact-heading p {
    font-size: max(1rem, min(4vw, 1.125rem));
    font-weight: 400;
    color: var(--primary);
}

.icon-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.icon-wrap:last-child {
    margin-bottom: 0;
}

.icon-wrap .icon-block {
    padding: 12px 18px;
    background: var(--primary);
    border-radius: 12px;
    color: #fff;
    font-size: 24px;
}

.info-detail {
    color: var(--primary);
}

.info-detail h5 {
    font-size: max(1.0625rem, min(4vw, 1.5rem));
    margin-bottom: 10px;
    font-weight: 600;
}

.info-detail p {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0;
}

.info-detail a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
}

.info-detail a:hover {
    color: var(--primary);
}

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 14px 0 0;
}

.social-icon-wrap a {
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}


/* ==================== Global Logistics Section ==================== */

.global-logistics-section {
    background: var(--white);
    position: relative;
}

.logistics-content {
    /* padding-right: 2rem;
    padding-top: 5rem; */
}


.logistics-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.logistics-buttons .btn-primary {
    background: #2563EB;
    color: white;
    padding: 12px 28px;
    font-size: var(--font16);
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logistics-buttons .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.logistics-buttons .btn-secondary {
    background: transparent;
    color: var(--black);
    padding: 12px 28px;
    font-size: var(--font16);
    font-weight: 600;
    border: 1px solid #000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logistics-buttons .btn-secondary:hover {
    background: var(--black);
    color: white;
}
.banner-counter-warap {
    display: flex;
    justify-content: flex-end;
}

/* Stats Box */
.logistics-stats-box {
    background: var(--primary);
    padding: 3rem;
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 740px;
    margin-top: -75px;
    margin-bottom: -7rem;
    z-index: 1;
}

.rotating-circle svg textPath{
    fill: var(--black);
    font-size: 15px;
}
.rotating-circle {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    right: -30px;
    top: -80px;
}

.circle-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    padding: 6px;
}

.rotating-text {
    animation: rotateText 15s linear infinite;
    font-weight: 600;
    letter-spacing: 5px;
    transform-origin: center;
    animation: textRotation 18s linear infinite;
    -webkit-animation: textRotation 18s linear infinite;
}
@keyframes textRotation {
  
    100% {
        transform: rotate(360deg);
    }
}

.circle-center svg path{
    fill: var(--white);
}
.circle-center svg{
    height: 45px;
    width: 45px;
}
.circle-center {
    position: absolute;
    width: 75px;
    height: 75px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.circle-icon {
    width: 50px;
    height: 50px;
}

.stats-content {
    width: 100%;
    text-align: center;
    display: flex;
    gap: 25px;
}

.stat-item:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.stat-item {
    border-right: 1px solid hsl(0deg 0% 100% / 18%);
    padding-right: 1.5rem;
}

.stat-item:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-number {
    font-size: var(--font48);
    font-weight: 600;
    line-height: 128%;
    display: flex;
    justify-content: center;
}

.stat-number .plus,
.stat-number .percent {
    font-size: var(--font88);
    margin-left: 2px;
    font-weight: 300;
    line-height: 0.6;
}

.stat-label {
    font-size: var(--font16);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.truck-image-container {
    text-align: center;
    margin-top: 3rem;
}

.truck-image {
    max-width: 100%;
    height: auto;
}
.logistics-stats-box h4{
    color: var(--white);
    font-size: var(--font16);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .logistics-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .logistics-heading {
        font-size: var(--font32);
    }

    .logistics-description {
        font-size: var(--font14);
    }

    .logistics-buttons {
        flex-direction: column;
    }

    .logistics-buttons button {
        width: 100%;
    }

    .logistics-stats-box {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .rotating-circle {
        width: 150px;
        height: 150px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ==================== End Global Logistics Section ==================== */

/* ----------------------- hero banner section --------------------------- */

.vi-hero-banner-style-1 .swiper-slider-wrap {
    width: 100%;
}

.vi-hero-banner-style-1 .swiper-slider-bg {
    width: 100%;
    height: 88vh;
    display: flex;
    align-items: center;
}

.vi-hero-banner-style-1 .swiper-slider-bg-2 {
    text-align: center;
    align-items: flex-start;
}

.vi-hero-banner-style-1 .slider-content-wrap-2 {
    margin-top: 6.625rem;
}

.vi-hero-banner-style-1 .swiper-container {
    width: 100%;
    height: 100%;
}

.vi-hero-banner-style-1 .swiper-slide {
    background-position: center;
    background-size: cover;
}

.vi-hero-banner-style-1 .swiper-slide img {
    display: block;
    width: 100%;
}

.vi-hero-banner-style-1 .slider-content h2 {
    font-size: 3.2vw;
    color: #fff;
    margin-bottom: 22px;
}

.vi-hero-banner-style-1 .swiper-slide {
    display: flex;
    align-items: center;
}

.vi-hero-banner-style-1 .swiper-button-next,
.vi-hero-banner-style-1 .swiper-button-prev {
    color: var(--white);
}

.vi-hero-banner-style-1 .slider-content p {
    line-height: 1.2;
    margin-bottom: 22px;
    color: var(--white);
    max-width: 40%;
    letter-spacing: -0.84px;
    font-size: 1.8vw;
    font-weight: 300;
}

.vi-hero-banner-style-1 .slider-content-2 p {
    max-width: 50%;
    margin: 0 auto 21px;
}

.vi-hero-banner-style-1 .slider-content .text-red {
    text-shadow: 0px 1px 0 rgb(0 0 0 / 23%);
}

.vi-hero-banner-style-1 .banner-overlay::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: var(--black);
    opacity: 0.4;
}
.vi-hero-banner-style-1 .banner-overlay{
    position: relative;
}
.vi-hero-banner-style-1 .banner-one {
    background: url('../images/banner-01.webp') center no-repeat;
    background-size: cover;
}

.vi-hero-banner-style-1 .banner-two {
    background: url('../images/banner-02.webp')  center no-repeat;
    background-size: cover;
}

/* .vi-hero-banner-style-1 .banner-three {
    background: url('https://img.freepik.com/premium-photo/headers-truck-running-3d-rendering-illustration_37416-525.jpg')  center no-repeat;
    background-size: cover;
} */

.logistics-content h1,
.logistics-content p{
    position: relative;
    z-index: 1;
}
.logistics-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logistics-heading {
    font-size: var(--font88);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--white);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.logistics-description {
    font-size: var(--font16);
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.logistics-content .btn.btn-outline{
    border: 1px solid var(--white);
    color: var(--white);
}

.swiper-pagination-bullet-active{
    background: var(--white);
}
.swiper-pagination-bullet{
    background: var(--white);
    width: 30px;
    border-radius: 0;
    height: 3px;
    
}
.vi-hero-banner-style-1 .swiper-pagination{
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    bottom: 65px;
    left: auto;
}
.banner-content-wrap {
    padding: 3rem 0 0;
}
.vi-hero-banner-style-1 .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 35px;
}

/* --------------------------about us page ----------------------- */

.top-banner .bg-section-icon .plane1 {
    left: 30px;
    top: 90px;
    z-index: -1;
    width: 320px;
    z-index: 1;
    animation: none;
    -webkit-animation: none;
}

.abt-value-sec .sec-btn a {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 24px;
}
.abt-value-sec .vi-value-img {
    aspect-ratio: 9 / 11;
}

.abt-value-sec .team-value-dec {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.abt-value-sec .team-value-dec p{
    margin-bottom: 0;
}
.abt-value-sec .team-value-dec h4{
    font-weight: 600;
    font-size: var(--font31);
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.vi-values-card {
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
}

/* ----------------------Our Legacy---------------------- */

.our-legacy-sec{
    position: relative;
        margin-top: var(--space110px);
}
.our-legacy-sec::before {
    position: absolute;
    right: 0;
    content: "";
    top: 0;
    height: 580px;
    width: 81%;
    background: var(--primary);
}
.our-legacy-img {
    margin-left: -20%;
    position: relative;
}
.our-legacy-img img {
    aspect-ratio: 9/8;
}
.news-media{
    display: flex;
    align-items: center;
    gap: 20px;
}
.our-legacy-content h2,
.our-legacy-content p{
    color: var(--white);
}
.our-legacy-content{
    position: relative;
    z-index: 1;
}

.mission-vision-sec.vi-feature-style-5 .card-wrap {
    height: 100%;
}
/* -------------------------group companies ---------------------------- */


.vi-feature-card-style-9 .feature-card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 32px;
    padding: 2.5rem;
    border: 1px solid var(--borderColor);
    transition: 0.3s ease-in-out;
    height: 100%;
}

.vi-feature-card-style-9 .feature-card .feature-card-img img{
    height: 80px;
    max-width: 280px;
}

.vi-feature-card-style-9 .feature-card svg{
    max-width: 35px;
    height: 100%;
    width: 100%;
    margin-bottom: 5px;
}

.vi-feature-card-style-9 .feature-card h5{
    margin-bottom: 0;
}
/* .vi-feature-card-style-9 .feature-card:hover h5,
.vi-feature-card-style-9 .feature-card:hover p{
    color: var(--white);
} */
/* .vi-feature-card-style-9 .feature-card:hover{
    background: var(--secondary);
    border-color: var(--secondary);
} */
/* .vi-feature-card-style-9 .feature-card:hover .feature-card-content{
    background: rgba(255, 255, 255, 0.2);
} */
.vi-feature-card-style-9 .feature-card:hover svg{
    fill: var(--white);
}
.feature-card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-card-content {
    padding:20px;
    background: rgb(14 153 72 / 5%);
    height: 100%;
    width: 100%;
}
/* ----------------membership section ------------------- */

/* .vi-feature-card-style-9.memberships-sec .feature-card .feature-card-img img {
    height: 80px;
} */

/* ----------------certification section ------------------- */

.certificate-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
}

.certificate-img {
    height: 100%;
    width: 100%;
    border: 1px solid var(--borderColor);
}


.certificate-card {
    border: 1px solid var(--borderColor);
    overflow: hidden;
    padding: 15px;
    border-radius: 8px;
    height: 100%;
}
/* ----------------team section ------------------- */


.vi-team-style-3 .vi-team-member-wrap {
    aspect-ratio: 9 / 11;
}

.vi-team-style-3 .team-member-dec {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.vi-team-card p{
    font-size: var(--font18);
    font-weight: 600;
    margin-bottom: 0;
}
.vi-team-card p,
.vi-team-style-3 .team-member-dec h4 a{
    color: var(--white);
}
.vi-team-style-3 .team-member-dec h4 a{
    font-weight: 600;
}


.vi-team-card{
    position: relative;
    overflow: hidden;
}

.vi-team-card::before {
    position: absolute;
    bottom: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, var(--secondary) 0%, rgba(20, 53, 140, 0) 100%);
    transition: 0.4s;
}
.vi-team-card:hover::before {
    bottom: 0%;
    left: 0px;
    background: linear-gradient(0deg, var(--secondary) 0%, rgba(20, 53, 140, 0) 100%);
}

.vi-team-card .team-member-dec {
    position: absolute;
    bottom: 0px;
    left: 0px;
    opacity: 0;
    transition: 0.4s;
}

.vi-team-card:hover .team-member-dec {
    bottom: 32px;
    left: 32px;
    opacity: 1;
}


/* -------------------breadcrumb ----------------------- */

.breadcrumb h1{
    font-size: var(--font75);
    color: var(--white);
    padding-bottom: 1.5rem;
    display: none;
}
.breadcrumb{
    height: 60px;
    width: 100%;
    /* background: url('../images/bg-pattern.png') fixed repeat #171461; */
    background: #171461;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    margin-bottom: 0;
}

/* --------------------- contact us ----------------------- */
.contact-us-sec .contact-detail ul span svg path{
    fill: var(--white);
}
.contact-us-sec.quote-contact-section .quote-section {
    background: var(--lightGray);
}
.contact-us-sec.quote-contact-section::before{
    content: none;
}
.contact-us-sec.quote-contact-section{
    background: none;
}
.contact-us-sec.quote-contact-section .sec-head-content p{
    padding-right: 6rem;
}

.contact-us-sec .contact-detail ul a,
.contact-us-sec .contact-detail ul span{
    color: var(--white);
    font-size: var(--font18);
    font-size: 400;
}
.contact-us-sec .contact-detail ul a:hover{
    color: var(--primary);
}
.contact-us-sec .contact-detail ul li{
    display: flex;
    gap: 10px;
}
.contact-us-sec .contact-detail ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.contact-address-sec .map-wrap iframe {
    width: 100%;
    height: 450px;
}

.contact-address-sec .address-nav {
    margin-top: -65px;
    overflow: hidden;
}

.contact-address-sec .address-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border: 0;
}

.contact-address-sec .address-nav .nav-link:hover,
.contact-address-sec .address-nav .nav-link.active {
    color: var(--white);
    background-color: var(--primary);
    border: 0;
}

.contact-address-sec .address-nav .nav-link {
    color: var(--black);
    background-color: var(--white);
    border: 0;
    padding: 15px 50px;
    font-size: var(--font20);
    border-radius: 0;
    font-weight: 500;
}

.contact-address-sec .address-wrap {
    border-top: 3px solid var(--primary);
    padding: 40px 32px;
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--lightGray);
}
.contact-address-sec .address-wrap a {
    color: var(--bodyColor);
}
.contact-address-sec .address-wrap p,
.contact-address-sec .address-wrap a {
    font-size: var(--font16);
    text-decoration: none;
}

.address-wrap p {
    margin-bottom: 30px;
}

/* .contact-detail svg path{
    fill: var(--primary);
} */
.contact-detail svg {
    height: 20px;
    width: 20px;
}

.contact-address-sec .contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.contact-address-sec .contact-detail ul {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
    text-wrap-style: balance;
    row-gap: 0;
}

.contact-address-sec .contact-detail ul li a {
    margin-bottom: 0;
}

.contact-address-sec .address-wrap a i {
    padding-right: 15px;
    font-size: var(--font22);
}

.contact-address-sec .address-wrap h5 {
    background: var(--primary);
    padding: 15px 32px;
    color: var(--white);
    display: flex;
    gap: 6px;
    font-weight: 400;
    font-size: var(--font18);
    margin-top: -66px;
    width: max-content;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.contact-address-sec .address-content-wrap {
    margin-top: 2rem;
    display: block;
}

.contact-address-sec .address-content-wrap a {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-address-sec .address-main-wrap {
    margin-bottom: 6rem;
}

.contact-address-sec .address-content-wrap strong {
    font-size: var(--font20);
    margin-bottom: 12px;
    color: var(--black);
    display: block;
}
.contact-address-sec .tab-content{
    padding-top: 8rem;
}
.contact-us-sec .vi-form-label {
    color: var(--black);
}
/* ------------------------------ network page ------------------------------ */

#chartdiv,
#worldmap {
    width: 100%;
    height: 630px;
}

.map-sec .map-btn {
    color: var(--black);
    padding: 12px 18px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.map-sec .map-btn.active {
    background-color: var(--primary);
}

.map-contact {
    color: #000;
    font-size: 10px;
}

.map-btn-wrap {
    display: flex;
    border: 1px solid var(--primary);
}
.nav-pills{
    margin-bottom: 3.5rem;
}


/* ------------------ Client Logos ---------------- */
.client-logo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 20px;    */
}

.client-logo {
    padding: 40px 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 300px;
    border: 1px solid #e0e0e0;
}

.client-logo img {
    width: 100%;
    object-fit: contain;
    max-height: 80px;
    max-width: 95%;
    height: 100%;
    display: block;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    -webkit-filter: grayscale(0);
}

.membership-logos-wrap p {
    color: var(--dark-blue);
}

.client-logo h5 {
    font-size: var(--font14);
    color: var(--dark-blue);
    text-align: center;
    background: var(--lightGray);
    padding: 15px;
    border-radius: 12px;
}
/* -----------------------------client logo end ------------------------------ */


/* ----------------------- Resources page ------------------ */

.accordion-item p {
    color: var(--secondary);
}

.accordion-item p b {
    color: var(--primary);
}

.resources-tabs {
    position: sticky;
    top: 10rem;
}

.resources-tabs ul li {
    margin-bottom: 1.5rem;
}

.resources-tabs ul {
    position: relative;
    border: none;
}

.resources-tabs ul li a {
    color: var(--black);
}

.resources-tabs .nav-link.active,
.resources-tabs .nav-link:hover {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--black);
}

.resources-accordion .number-list li {
    list-style-type: decimal;
    margin-bottom: 10px;
    color: var(--secondary);
    padding-left: 8px;
}

.resources-accordion .number-list li::marker {
    font-weight: 600;
    color: var(--primary);
}

.resources-tabs ul.nav-tabs li a {
    /* font-size: var(--font20);
    font-weight: 600;
    line-height: 1.6;
    padding: 40px 30px;
    position: relative;
    border-radius: 24px;
    background: var(--lightGray);
    border: 1px solid transparent; */
        font-size: var(--font20);
    font-weight: 500;
    line-height: 1.6;
    padding: 40px 30px;
    position: relative;
    border-radius: 0;
    background: var(--white);
    border: 1px solid var(--borderColor);
}

.resources-tabs ul li a.nav-link::after {
    content: " ";
    position: absolute;
    right: -12px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 15px solid transparent;
    border-left: 15px solid var(--primary);
    width: 22px;
    height: 22px;
    border-top: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
    /*transform: rotate(135deg);
    */transform: rotate(90deg);
    background: var(--white);
    opacity: 0;
    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;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

.resources-tabs ul li a.nav-link.active::after {
    opacity: 1;
}

.resources-tabs ul.nav-tabs li a span {
    font-size: var(--font16);
    color: var(--red);
}

.resources-tabs ul.nav-tabs li a:focus {
    color: var(--primary);
}

.resources-accordion .tab-Content {
    padding: 0 4rem;
}

.cust-accordion-wrap .accordion-item {
        margin-bottom: 15px;
    border: none;
    border-radius: 0;
    background: var(--white);
    border: 0;
    border-width: 0;
    --bs-accordion-border-width: 0;
    overflow: hidden;
}

.cust-accordion-wrap .accordion-item button {
    background: transparent;
    color: var(--black);
    font-size: var(--font18);
    font-weight: 500;
    padding: 1.5rem;
    border: 1px solid var(--borderColor);
}

.resources-accordion svg {
    height: 22px;
    width: 22px;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--white);
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.dashed-list {
    margin: 0;
}

ul.dashed-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

ul.dashed-list>li {
    display: flex;
    position: relative;
    padding-left: 30px;
    color: var(--secondary);
}

ul.dashed-list>li:before {
    content: "\2756";
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.section_heading h3 {
    color: var(--black);
    font-weight: 500;
    margin: 2rem 0;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.cust-accordion-wrap .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2320264f' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5L8 11L14 5'/%3E%3C/svg%3E");
    /* background-image: url('../images/add-icon.svg'); */
}

.resources-accordion .cust-accordion-wrap .accordion-item .accordion-body {
    padding: 2rem 2rem 2rem;
    border: 1px solid var(--borderColor);
    border-top: none;
    background: var(--lightGray);
}
table th{
    font-weight: 500;
}

/* ---------------------- services ---------------------- */

.services-sec.vi-slider-style-14 .slide-content{
    padding: 0 40px 40px;
    gap: 1.5rem;
}
.services-sec.vi-slider-style-14{
    background: var(--white);
    padding-top: var(--space110px);
}

.split-img-left-sec .content-wrap{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.split-img-left-sec .img-wrap {
    aspect-ratio: 9 / 8;
}

/* ------------------- service pages ----------------------- */

.bordered-sec .img-wrap{
    aspect-ratio: 16/14;
}
.border-sec-wrap{
    padding: 3.75rem;
    border: 1px solid var(--borderColor);
}
.featured-card-wrap svg{
    height: 50px;
    width: 50px;
}

.vi-feature-card-style-10 .featured-card-wrap {
    padding: 2rem;
    background: var(--lightGray);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}
.vi-feature-card-style-10 .featured-card-wrap h5{
    font-weight: 400;
    margin-bottom: 0;
}

.vi-feature-style-21 .sec-head-wrap {
    position: sticky;
    top: 7rem;
}

.check-list-warp ul {
    padding: 0;
    margin: 0;
}

.check-list-warp ul li {
    display: flex;
    gap: 15px;
}
.check-list-warp .featured-list-icon svg {
    width: 16px;
    height: 16px;
}
.check-list-warp .icon-wrap{
    background: var(--secondary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.check-list-warp .featured-list-icon svg path{
    fill: var(--white);
}

.vi-feature-style-21 .card-wrap{
    margin-bottom: 10px;
}

.breadcrumb-wrap {
    margin-top: 3rem;
    padding-bottom: 70px;
}

.breadcrumb-wrap h1 {
    font-size: var(--font18);
    text-align: center;
    color: #006fd3;
    display: none;
}

.breadcrumb-nav {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 9px;
    color: #000;
    margin-top: 10px;
    font-size: 14px;
}

.breadcrumb-nav span a, .breadcrumb-nav span{
    color: var(--black);
    font-size: 14px;
}

.border-sec-ul ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.border-sec-ul li {
    display: flex;
    align-items: start;
    gap: 10px;
    border: 1px solid #e4e4e4;
    padding: 10px;
}

/* ------------------- blog-details page -------------------- */

.blog-deatails-img {
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 8;
    display: block;
    overflow: hidden;
}

.blog-deatails-info {
    background: var(--white);
    padding: 38px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.06);
    position: relative;
}

.blog-details-card{
    margin-bottom: 40px;
}

.blog-details-card:last-child{
    margin-bottom: 0;
}

/* .blog-details-heading h3{
    font-size: var(--font31);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
} */

.blog-deatails-info h3{
    font-size: var(--font31);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    margin-top: 40px;
    line-height: 1.2;
}

.blog-deatails-info .blog-details-img{
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 30px 0;
}

.blog-footer {
    display: flex;
    border-top: 1px solid #00000016;
    padding-top: 30px;
    margin-top: 30px;
    align-items: center;
    gap: 10px;
}

.blog-footer .ftr-spcial-icons svg{
    width: 20px;
}

.blog-footer h6{
    font-weight: 500;
    color: var(--black);
    text-align: start;
    margin-bottom: 0;
    margin-top: 3px;
}

.blog-sidebar {
    background: #fff;
    padding: 30px 25px;
    /* border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px; */
    margin-bottom: 30px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.06);
}

.blog-sidebar:last-child{
    margin-bottom: 0;
}

.blog-sidebar h6{
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 700;
}

.search-btn button{
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: var(--white);
    background: var(--primary);
    padding: 13px 32px;
    border-radius: 0.25rem;
    z-index: 1;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out 0s;
    box-shadow: none;
    border: 1px solid transparent;
}

.search-btn button:hover{
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--black);
}

.searchbar-wrap{
    display: flex;
}

.searchbar-wrap input{
    background: var(--white);
    border: 0;
}

.searchbar-wrap input:focus{
    box-shadow: none;
}

.post-info p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.15;
    margin-bottom: 5px;
    color: var(--black);
    font-weight: 500;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.post-info span{
    font-size: 14px;
    font-weight: 500;
}

.recent-post-card {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

.recent-post-card:last-child{
    margin-bottom: 0;
}

.recent-post-card .post-img {
    width: 100%;
    max-width: 85px;
    max-height: 75px;
    display: block;
    overflow: hidden;
    /* border-radius: 6px; */
    overflow: hidden;
}

.recent-post-card .post-img img, .blog-details-card .blog-deatails-img img{
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.recent-post-card:hover .post-info p{
    color: var(--primary);
}

.recent-post-card:hover .post-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.blog-details-card:hover .blog-deatails-img img{
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
}

.blog-next-prev-wrap {
    display: grid;
    gap: 60px;
    grid-template-columns: calc(50% - 30px) calc(50% - 30px);
}

.blog-next-prev-wrap .recent-post-card{
    margin-bottom: 0;
}

.blog-next .post-info{
    text-align: end;
}

.blog-details-card{
    position: relative;
}

.blog-details-card .blog-date{
    top: -60px;
}

.navbar-toggler{
    padding: 0 !important;
    border: none !important;
}

.mobile-contact{
    display: none;
}

.border-sec-ul-icon svg {
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-width: 25px;
}

.blog-detail-breadcrumb h1{
    font-size: var(--font25);
}

.ftr-quote-wrap {
    background: #171461;
    color: #fff;
}

.ftr-quote-wrap h2{
    color: #fff;
}


.vi-slider-style-14 .logo-img {
    height: 120px;
    max-width: 200px;
}

.vi-slider-style-14 .logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    text-align: center;
}
.vi-slider-style-14 .logo-wrap h5{
    text-align: center;
}



.cross-border-sec .content-warp{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}
.cross-border-sec h5{
    margin-bottom: 0;
    font-size:var(--font25);
}
.cross-border-sec .img-wrap{
    display: flex;;
    gap: 30px;
    justify-content: center;
}
.cross-border-sec .sec-head-content{
    gap: 10px;
}
.cross-border-sec h2,
.cross-border-sec h5,
.cross-border-sec span{
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}
.cross-border-sec span{
    font-size: var(--font32);
}
.cross-border-sec .img-wrap img{
    max-width: 150px;
}   
.cross-border-sec{
    background: url('../images/cross-border-bg.webp') no-repeat center / cover;
    position: relative;
    padding-bottom: 15rem;
    padding-top: 5rem;
}
.cross-border-sec::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--black);
    /* background: linear-gradient(to right, rgb(37 94 122), rgb(52 50 134)); */
    opacity: 0.6;
}

header .navbar .dropdown-menu ul li a{
    padding: 0;
}

.error {
    color: red;
    font-size: 12px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.loading-animation{
    width:100%;
    bottom:0;
    z-index: 1
}
#loadingSpinner{
    display:none
}
.spinner{
    border: 5px solid var(--primary);
    border-top: 4px solid var(--white);
    border-radius:50%;
    width:40px;
    height:40px;
    animation:1s linear infinite spin;
    /* margin:20px auto 0 */
}

@keyframes spin{
    0%{
        transform:rotate(0)
    }
    100%{
        transform:rotate(360deg)
    }
}

.quote-box-wrap, .contact-form-wrap {
    margin: 0 1rem;
}
.contact-form-wrap {
    height: 100%;
}
.success-msg {
    height: 100%;
}
.response-msg-card {
    background: var(--primary);
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
