/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #3A7BBD;
}
html::-webkit-scrollbar-thumb {
    background-color: #152B63;
    border-radius: 50rem;
}
a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}
ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-size: 20px;
    font-family: "RobotoCondensed Regular";
    font-weight: normal;
    color: #171717;
}
a,
a:hover,
a:focus {
    color: #ffffff;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
p {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
h1,h2{
    font-family: "D-DINCondensed Bold";
    font-weight: normal;
}
h3,h4,h5{
    font-family: "D-DINExp Bold";
    font-weight: normal;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
main {
    overflow: clip;
}
img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}
.w-100 {
    width: 100% !important;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}
.container-fluid {
    padding: 0 40px;
}
.fixed-btn {
    position: fixed;
    right: -10px;
    top: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    z-index: 9999;
}
.call {
    width: 55px;
    height: 55px;
    background-color: #FFD900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 6px;
    img{
        filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(211deg) brightness(115%) contrast(115%);
    }
}
.enq-btn {
    color: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    overflow: clip;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    padding-left: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #177EE5 0%, #1B548E 100%);
    width: 59px;
    height: 157px;
    z-index: 1;
    &:after{
    inset: 0;
    background: linear-gradient(90deg, #379729 0%, #249E11 100%);
    content: "";
    z-index: -1;
    position: absolute;
    scale: 0 1;
    transition: all .5s;
    transform-origin: right;
    }
    &:hover:after{
        scale: 1 1;
    }
}
.call-wp {
    position: fixed;
    bottom: 5%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}
.enq-btn:hover::after,
.enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}
.call:hover,
.fw:hover {
    transform: scale(1.1);
}
.vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-style: normal;
    font-style: normal;
}
 .button-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 300px;
        }

        .contact-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 22px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: normal;
            color: white;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }

        .contact-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .contact-button:active {
            transform: translateY(0);
        }

        .whatsapp-button {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .call-button {
            background: linear-gradient(135deg, #0084FF 0%, #0058D4 100%);
        }

        .icon {
            width: 32px;
            height: 32px;
            fill: white;
        }

/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}
.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}
.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}
.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #CD0D14;
    transition: all .5s;
    z-index: 9;
}
.popup .popup__content .close:hover {
    background-color: #ffffff;
}
.popup .popup__content .close:hover span {
    background-color: #15222B;
}
.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #FFF;
}
.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}
.left {
    background: url(../img/other-service3.webp);
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
        background-position: 65%;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        background: #ffffff8a;

    }
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 30px;
    text-align: left;
    background: #152B63;
    label,.title{
        color: #fff;
    }
    .form-control{
        background: #FFF;
    }
    .form-control:focus {
        border-color: #CD0D14;
    }
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40{
    margin-bottom: 40px;
}
p{
    color: #000;
    font-size: 18px;
    line-height: 127.778%;
}
.dec{
    color: #212121;
font-size: 20px;
font-style: normal;
font-weight: normal;
line-height: 170%;
}
.title {
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
}
.section-title {
    color: #152B63;
    font-size: 68px;
    line-height: 97.059%;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.card-title{
color: #152B63;
font-size: 24px;
line-height: normal;
margin-bottom: 8px;
}
.small-line {
    display: inline-block;
    margin-top: 9px;
    margin-bottom: 9px;
    background: #CD0D14;
    width: 40px;
    height: 2px;

}
.primary-btn {
border-radius: 7px;
background: #CD0D14;
padding: 11px 24px;
display: inline-block;
color: #FFF;
font-size: 22px;
font-style: normal;
font-weight: normal;
line-height: 145.455%;
text-transform: uppercase;
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
position: relative;
overflow: hidden;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
overflow: hidden;
letter-spacing: 0.5px;
}
.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}
.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}
.primary-btn:after,
.secondary-btn::after {
  left: 100%;
  transform: rotate(180deg);
  background:#152B63;
}
.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}
.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}
.primary-btn:hover {
  color: #fff;
}
.link-btn{
    color: #152B63;
    font-family: "D-DINExp Bold";
    font-size: 20px;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    img{
        filter: brightness(0) saturate(100%) invert(19%) sepia(8%) saturate(6255%) hue-rotate(191deg) brightness(94%) contrast(105%);
    }
}
.call-btn{
    box-shadow: none;
    background: transparent;
    border: none;
    gap: 8px;
    padding-block: 0;
    color: #152B63;
    font-family: "D-DINExp Bold";
    font-size: 47px;
    line-height: normal;
    small{
        color: #CD0D14;
        font-size: 37px;
        line-height: normal;
    }
    &:hover{
        color: #177EE5;
        img{
            filter: brightness(0) saturate(100%) invert(38%) sepia(53%) saturate(1890%) hue-rotate(186deg) brightness(98%) contrast(88%);
        }
        &::after, &::before{
            display: none;
        }
    }
    img{
        margin-top: 9px;
    }
}
.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}
.form-control:focus {
    border-color: #CD0D14;
}
form .btn-group {
    justify-content: center;
}
.form-group {
    margin-bottom: 10px;
}
form .primary-btn{
    border: 0;
    &::after{
        background: #FFF;
    }
    &:hover{
        color: #CD0D14;
        background: #FFF
    }
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}
.form-group {
    position: relative;
}
form .primary-btn{
    &::after{
        background: #FFF;
    }
    &:hover{
        color: #CD0D14;
    }
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}
/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}
.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}
.slideInRight {
    animation-name: slideInRight;
}
/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}
/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}
.zoomReverseIn {
    animation-name: zoomReverseIn;
}
/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}
.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
/*******************************
	Menu
*******************************/
.topbar{
    background: #ECEEF6;
    padding: 20px 0;
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    a{
        display: flex;
        align-items: center;
        gap: 10px;
        color: #000;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px; /* 145.455% */
    }
}
header {
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
    background: #00000000;
    transition: all .5s;
    .menu-btn{
        background: linear-gradient(90deg, #379729 0%, #249E11 100%);
        &::after{
            background: linear-gradient(90deg, #177EE5 0%, #3A7BBD 100%);
            box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
        }
    }
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.logo{
    transition: all .5s;
}
header.sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
    background-color: #fff;
    .topbar{
        display: none;
    }
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    z-index: 999;
    transition: ease-in-out .4s;

}
.fix-call{
    width: 46px;
    height: 46px;
    background-color: #152B63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 20px 5px rgba(255, 255, 255, 0.26);
    &:hover{
        transform: scale(1.1);
        background-color: #152B63;
    }
}
/************************************* Home Page **************************************/
.banner {
    background: #ECEEF6;
    position: relative;
    padding-top: 60px;
    z-index: 1;
    .banner-content{
        position: relative;
        z-index: 1;
        h1{
            color: #152B63;
            font-size: 84px;
            font-style: normal;
            line-height: 100% ;
            text-transform: uppercase;
            position: relative;
            margin-bottom: 13px;
            &::before{
                content: "";
                position: absolute;
                top: 10px;
                left: -10px;
                width: 5px;
                height: 90%;
                background: #CD0D14;
                z-index: -1;
            }
        }
        p{
           color: #000;
            font-size: 23px;
            line-height: 133.333%;
            margin-bottom: 26px;
        }
    }
    
}
.banner-vector {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
}
.banner-car {
    position: absolute;
    bottom: -70px;
    z-index: 1;
}
.men-img{
   text-align: right;
    margin-bottom: -6px;
    z-index: 1;
    position: relative;
}
.btn-group {
    display: flex;
    gap: 25px;
}
.cta-bar{
    background: #CD0D14;
    text-align: center;
    color: #fff;
    padding: 22px 0;
    text-transform: uppercase;
    position: relative;
a{
    text-decoration: underline;
}
span{
    background: #FFF;
    color: #CD0D14;
    border-radius: 50rem;
    padding: 4px 10px;
    margin-bottom: 5px;
    display: inline-block;
}
a:hover{
    color: #152B63;
}
}
.services{
    background-color: #ECEEF6;
    padding-block: 110px;
    position: relative;
    .service-vector {
    position: absolute;
    bottom: 0;
    z-index: -1;
    top: 0;
    height: 100%;
    width: 100%;
}
}
.service-item{
    background: #FFF;
    position: relative;
    text-align: center;
    overflow: hidden;
    height: 100%;
    padding: 32px 6px;
    z-index: 1;
    transition: 0.5s;
    .service-icon{
       width: 122px;
        height: 122px;
        border: 4px solid #152B63;
        background-color: #EBEBEB;
        margin-inline: auto;
        margin-bottom: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    &:hover{
        background: #CD0D14;
        .card-title, p{
            color: #FFF;
        }
        .link-btn{
            color: #FFF;
        }
    }
}
.how-we-work-item{
    text-align: center;
    padding-bottom: 10px;
    transition: 0.5s;
    .icon{
        width: 183px;
        height: 183px;
        border-radius: 50%;
        box-shadow: 0 0 0 12px rgba(217, 217, 217, 0.5);
        margin-inline: auto;
        transition: 0.5s;
    }
    .number{
        background-color: #CD0D14;
        color: #FFF;
        font-family: "D-DINExp Bold";
        font-size: 24px;
        width: 37px;
        height: 37px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-inline: auto;
        margin-bottom: 10px;
        margin-top: -16px;
        z-index: 1;
        position: relative;
    }
    &:hover{
        /* box-shadow: 0 4px 2px 0 rgba(0, 0, 0, 0.25); */
        .card-title{
            color: #CD0D14;
        }
        .icon{
            transform: rotateY(180deg);
        }
    }
}
.how-we-work{
    padding-top: 60px;
    .col:nth-child(2n){
        .number{
            transform: translateY(-185px);
        }
    }
    .col:last-child .how-we-work-item{
        &::after{
            display: none;
        }
    }
    .how-we-work-item{
        position: relative;
        &::after{
            content: '';
            position: absolute;
            background-image: url(../img/line.webp);
            width: 146px;
            height: 146px;
            top: 20px;
            right: -85px;
        }
    }
}
.work-vector{
    width: 100%;
}

.why-choose {
    background: #ECEEF6;
    position: relative;
    padding-top: 34px;
    z-index: 1;
.why-choose-vector{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
}
    p {
        line-height: 26px;
    }

    .choose-item {
        position: relative;
        padding-left: 122px;
        margin-bottom: 60px;
        padding-right: 60px;
        &:hover{
            .icon{
                transform: rotate(-180deg);
            }
            img{
            transform: rotate(180deg) scale(.9);
            }
            .card-title{
                color: #CD0D14;
            }
        }
        &::after{
            content: '';
            position: absolute;
            background: linear-gradient(90deg, #000 0%, rgba(102, 102, 102, 0.00) 100%);
            height: 1px;
            left: 30px;
            right: 0;
            bottom: -32px;
        }
        .card-title{
            font-size: 28px;
        }
    }
.choose-content{
    .choose-item:last-child{
        &::after{
            display: none;
        }
    }
}
    .choose-img {
        position: absolute;
        top: 0;
        right: 0;
        display: inline-block;

        .dots {
            position: absolute;
            left: -45px;
            bottom: -44px;
            z-index: -1;
        }
    }

    .icon {
        width: 104px;
        height: 104px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        top: -5px;
        z-index: 1;
    }

    .container {
        position: relative;
        z-index: 1;
    }
}
.why-choose-img{
    margin-bottom: -4px;
}

.other-service-item{
    position: relative;
    z-index: 1;
    overflow: hidden;
    h3{
        position: absolute;
        left: 30px;
        bottom: 30px;
        z-index: 1;
        font-size: 33px;
    }
    &:after{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.82) 100%);
        transition: .5s;
    }
}
.overlay-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .5s;
    padding: 30px;
    z-index: 1;
    h3{
       position: relative;
       left: unset;
       bottom: unset;
       margin-bottom: 10px;
    }
    p{
        color: #fff;
    }
    .link-btn{
        color: #fff;
        img{
            filter: brightness(0) invert(1);
            display: inline-block;
        }
        &:hover{
            color: #CD0D14;
            img{
                filter: brightness(0) saturate(100%) invert(22%) sepia(75%) saturate(2575%) hue-rotate(340deg) brightness(83%) contrast(122%);
            }
        }
    }
}
.other-service-item:hover {
    h3{
        opacity: 0;
    }
    .overlay-content{
    opacity: 1;
    h3{
        opacity: 1;
    }
}
}
.other-service-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        padding: 0 15px;
    }
}

.experience{
    background: #CD0D14;
    .section-title{
        color: #fff;
    }
}
.slick-arrow{
    width: 60px;
    height: 60px;
    background: #CD0D14;
    border-radius: 50%;
    z-index: 2;
    transition: 0.5s;
    &::before {
        position: absolute;
        content: '';
        width: 30%;
        height: 30%;
        left: 45%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        transition: 0.5s;
        border-right: 2px solid #FFF;
        border-bottom: 2px solid #FFF;
    }
    &:hover,
    &:focus{
        background: #FFF;
        &::before{
            border-color: #CD0D14;
        }
    }
}
.slick-prev{
    left: 0;
    &::before{
        left: 55%;
        transform: translate(-50%, -50%) rotate(132deg);
    }
}
.slick-next{
    right: 0;
}
.counter-item{
    text-align: center;
    h3{
        color: #FFF;
        font-family: "D-DINCondensed Bold";
        font-size: 68px;
        font-style: normal;
        font-weight: normal;
        line-height: 97.059%;
        text-transform: uppercase;
        margin-bottom: 19px;
    }
    p{
        color: #FFF;
        font-family: "D-DINExp Bold";
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
}
.counter {
    background: rgba(0, 0, 0, 0.30);
    padding: 30px;
}
.feature-box {
    position: relative;
    margin-top: 25px;
    padding-left: 90px;
    .icon-box {
        width: 77px;
        height: 77px;
        background: #F0F0F0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        outline: 2px solid #CD0D14;
        transition: all .5s;
    }
    p{
        padding-bottom: 10px;
    }
    &:hover{
        .icon-box{
            background: #cd0d131e;
            outline-color: #CD0D14;
            img{
                filter: brightness(0) saturate(100%) invert(14%) sepia(8%) saturate(3802%) hue-rotate(185deg) brightness(96%) contrast(92%);
                transform: rotateY(180deg);
            }
        }
        .card-title{
            color: #CD0D14;
        }
    }

}
.who-we-are-content{
    .section-title{
        margin-bottom: 15px;
    }
    h5{
        color: #CD0D14;
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 143.478%;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
}
.who-we-are{
    .container{
        position: relative;
    }
}
.exp{
    width: 637px;
    height: 188px;
    border: 15px solid #6B6B6B;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: -18px;
    z-index: 1;
    left: 53%;
    
    h3{
        color: #FFF;
        font-family: "RobotoCondensed Regular";
        font-size: 158px;
        font-style: normal;
        font-weight: bold;
        line-height: 115px;
        text-transform: uppercase;
    }
    h4{
        color: #CD0D14;
        font-family: "RobotoCondensed Regular";
        font-size: 28px;
        font-style: normal;
        font-weight: bold;
        line-height: 125%;
        letter-spacing: 3.08px;
        text-transform: uppercase;
        width: 174px;
    }
}
.testimonials{
    background: #ECEEF6;
    position: relative;
    z-index: 1;
}
.testi-vector{
position: absolute;
height: 100%;
top: 0;
bottom: 0;
z-index: -1
}
.testi-box {
    background: #FFF;
    padding: 12px 20px;
    margin-bottom: 20px;
    transition: all .5s;

    &:hover {
        background-color: #152b63b7;

        h4,
        p {
            color: #fff !important;
        }
    }

    .head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-top: 1px solid #9E9E9E;
        padding-top: 10px;
        .user-info {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 23px;

            .user-img {
                width: 61px;
                height: 61px;
                border-radius: 50%;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            h4 {
                font-style: italic;
                color: #000000;
            }

        }
    }

    .body {
        p {
            color: #565656;
            font-size: 21px;
            font-style: italic;
            font-weight: 400;
            line-height: 147.619%;
        }
    }
}

.testi-slider {

    .slick-list {
        margin: 0 -10px;
    }

    .slick-slide {
        margin: 0 10px;
    }
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    background: #b07b3600;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    border-radius: 50%;
    outline: 1px solid #ffffff;
    outline-offset: 3px;

    &::before {
        display: none;
    }

    &:hover,
    &:focus {
        outline: 1px solid #ffffff;
    }
}

.slick-dots li.slick-active button {
    background: #ffffff;
}











.locations{
    ul{
        display: flex;
        flex-wrap: wrap;
        li{
            color: #000000;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 265%;
            position: relative;
            padding-left: 30px;
            width: 50%;
            &::before{
                content: '';
                position: absolute;
                background-image: url(../img/address-icon.webp);
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 24px;
                height: 24px;
                background-repeat: no-repeat;
                background-size: contain;
            }
        }

    }
}

.areas-map{
    display: flex;
    align-items: flex-start;
}

/*******************************
Faq 
*******************************/
.faq{
    background: #F4F4F4;
    .section-title{
        span{
            &::after{
                bottom: -43px;
            }
        }
    }
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    position: relative;
}
.accordion__title:hover{
    transform: translateY(-5px);
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 10px 16px;
    padding-right: 32px;
    margin-bottom: 0px;
    color: #152B63;
    font-size: 24px;
    font-family: "D-DINExp Bold";
    font-style: normal;
    font-weight: normal;
    line-height: 125%;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
    background: #ECEEF6;
}
.accordion__title.accordion-active {
    color: #fff;
    background: #152B63;
}
.accordion__title::after {
    content: '+';
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    right: 16px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    content: '-';
    color: red;
}
.accordion__item .accordion__content {
    padding: 16px;
    margin-bottom: 0;
    display: none;
    padding-top: 0;
    color: #fff;
    background: #152B63;
    p{
        color: #ffffff;
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 166.667%;
    }
}
.cta-banner{
    background-image: url(../img/cta-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0;
    text-align: center;
    border-bottom: 9px solid #CD0D14;
    .section-title,p{
        color: #fff;
    }
    .section-title{
        margin-bottom: 10px;
    }
    .btn-group{
        justify-content: center;
    }
}

/****************************
        Footer
******************************/
footer {
    width: 100%;
    background: #F5F2F2;
    .logo{
        margin-bottom: 30px;
    }
    p{
        margin-bottom: 10px;
    }
    .card-title{
        text-transform: uppercase;
    }
    .col-lg-9{
        padding-block: 50px;
    }
}

footer p,
footer p a,
footer ul li a {
color: #2D2D2D;
font-size: 18px;
font-style: normal;
font-weight: normal;
line-height: 205.556%;
}
footer p{
    line-height: 144.444%;
}
footer p a:hover,
footer ul li a:hover {
    color: #CD0D14;
}
.contact-info{
    padding-right: 14%;
}
.copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    p{
        margin: 0;
    }
}
.copyright a {
    color: #F67809;
    text-decoration: underline;
}

textarea{
    font-family: "RobotoCondensed Regular";
}
.social{
    display: flex;
    gap: 12px;
    a{
        width: 36px;
        height: 33px;
        border-radius: 6px;
        background: rgba(21, 43, 99, 0.103);
        display: flex;
        align-items: center;
        justify-content: center;
        &:hover{
            transform: scale(1.2);
            background: #CD0D14;
            img{
                filter: invert(1);
            }
        }
    }
}
.form-box {
    background: #152B63;
    padding: 26px 19px;
    height: 100%;
    .card-title{
        color: #fff;
    }
    .form-control{
        margin-bottom: 12px;
    }
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1600px),
(max-width: 1536px) {
    .banner-car {
        width: 38%;
    }
    .men-img{
        img{
            width: 50%;
        }
    }
    .other-service-item {
        h3 {
            font-size: 28px;
        }
    }
}
@media (max-width: 1440px),
(max-width: 1366px) {
    .contact-button{
        font-size: 15PX;
    }
    .icon {
        width: 28px;
        height: 28px;
    }
    .button-container {
        gap: 15px;
    }
    p {
        font-size: 15px;
    }
    .primary-btn{
        font-size: 17px;
    }
    .section-title {
        font-size: 48px;
    }
.topbar{
    padding: 11px 0;
    a{
        font-size: 18px;
        img{
            width: 18px;
            height: 18px;
        }
    }
}
header{
    .logo {
        width: 346px;
    }
}
.sec-gap {
    padding: 40px 0;
}
.call-btn {
    font-size: 32px;
    small {
        font-size: 24px;
    }
    img{
        width: 12%;
    }
}
.banner {
    & .banner-content {
        h1 {
            font-size: 66px;
            margin-bottom: 8px;
        }
        p {
            font-size: 18px;
            margin-bottom: 15px;
        }
    }
}
.banner-vector {
    width: 46%;
}
.men-img {
    img {
        width: 46%;
    }
}
.cta-bar {
    padding: 15px 0;
    h3{
        font-size: 18px;
    }
}
.service-item {
    .service-icon {
        width: 100px;
        height: 100px;
        padding: 20px;
    }
}
.card-title {
    font-size: 20px;
}
.link-btn {
    font-size: 14px;
}
.how-we-work-item {
    .number {
        font-size: 21px;
    }
    .icon {
        width: 163px;
        height: 163px;
        box-shadow: 0 0 0 9px rgba(217, 217, 217, 0.5);
    }
}
.how-we-work{
    .col:nth-child(2n) {
        .number {
            transform: translateY(-169px);
        }
    }
}
.why-choose {
    .choose-item {
        margin-bottom: 50px;
        padding-left: 112px;
        .card-title{
            font-size: 24px;
            margin-bottom: 2px;
        }
        .icon {
            width: 90px;
            height: 90px;
        }
    }
    .why-choose-vector {
        width: 55%;
    }
    p{
        line-height: 22px
    }
}
.other-service-item {
    h3 {
        font-size: 24px;
        left: 15px;
        bottom: 15px;
    }
}
.overlay-content{
    padding: 20px;
    h3{
        left: 0;
        bottom: 0;
    }
}
.counter-item {
    h3 {
        font-size: 54px;
        margin-bottom: 9px;
    }
    p {
        font-size: 21px;
    }
}
.who-we-are-content {
    h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}
.exp {
    width: 551px;
    height: 160px;
    h3{
        font-family: "RobotoCondensed Regular";
        font-size: 136px;
    }
    h4 {
        font-size: 22px;
    }
}
.testi-box {
    & .body {
        p {
            font-size: 18px;
        }
    }
}
.locations {
    ul{
        li{
            font-size: 17px;
            &::before {
                width: 20px;
                height: 20px;
            }
        }
    }
}
.mb-60 {
    margin-bottom: 40px;
}

.accordion__item .accordion__title{
    font-size: 19px;
}
.accordion__item .accordion__content p{
    font-size: 16px;
}
.popup .popup__content {
    width: 70%;
}
footer{
    .footer-title{
        font-size: 20px;
    }
}
footer p, footer p a, footer ul li a{
    font-size: 16px;
}
.form-control{
    font-size: 14px;
}
.form-control::placeholder{
    font-size: 14px;
}
.slick-arrow {
    width: 50px;
    height: 50px;
}
}
@media (max-width:1199.99px){
    .popup .popup__content {
        width: 80%;
    }
    .card-title{
        font-size: 19px;
    }
    .banner-car {
        bottom: -40px;
    }
    .how-we-work {
        & .how-we-work-item {
            &::after {
                width: 93px;
                height: 93px;
                right: -60px;
                background-size: contain;
            }
        }
    }
    .why-choose {
        p {
            line-height: 20px;
        }
        .choose-item{
            margin-bottom: 45px;
            padding-left: 100px;
            padding-right: 50px;
            .icon {
                width: 82px;
                height: 82px;
            }
        }
    }
    .counter-item {
        p {
            font-size: 17px;
        }
    }
    .who-we-are-content {
        h5 {
            font-size: 16px;
            margin-bottom: 5px;
        }
    }
    .feature-box {
        margin-top: 20px;
    }
    .exp {
        width: 482px;
        height: 140px;
        left: 0%;
        bottom: -9px;
        h3 {
            font-size: 105px;
        }
        h4 {
            font-size: 20px;
        }
    }
    .testi-box {
        & .body {
            p {
                font-size: 16px;
            }
        }
        .head {
            & .user-info {
                .user-img {
                    width: 55px;
                    height: 55px;
                }
            }
        }
    }
}
@media (max-width: 991.99px) {
    .section-title {
        font-size: 41px;
    }
    .topbar{
        a{
            font-size: 14px;
            gap: 4px;
        }
    }
    header{
        .logo {
            width: 280px;
        }
    }
    .call-btn {
        font-size: 26px;
        small {
            font-size: 19px;
        }
    }
    .banner{
        height: 440px;
        .banner-content{
            text-align: left;
            width: 58%;
            margin-left: auto;
            h1{
                font-size: 52px;
            }
            p{
                font-size: 17px;
            }
        }
    }
    .banner-car {
        z-index: 2;
    }
    .men-img {
        img {
            width: 34%;
            position: absolute;
            left: 5%;
            z-index: -7;
            transform: translateY(-50px);
        }
    }
    .primary-btn {
        font-size: 16px;
    }
    .cta-bar {
        h3 {
            font-size: 16px;
        }
    }
    .services {
        padding-block: 40px;
    }
    .how-we-work {
        .col:nth-child(2) .how-we-work-item {
            &::after{
                display: none;
            }
        }
    }
    .why-choose {
        .why-choose-img {
            display: none;
        }
        .why-choose-vector {
            width: 55%;
            opacity: 0.2;
        }
    }
    .who-we-are-img{
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .exp {
        bottom: unset;
        top: 87%;
        left: unset;
        right: -1%;
    }
    .areas-served{
        .section-title{
            margin-bottom: 20px;
        }
        .row{
            .col-lg-6:last-child{
                order: -1;
            }
        }
    }
    .faq{
        .section-title{
            margin-bottom: 0;
        }
    }
    .cta-banner{
        padding: 50px 0;
    }
    footer {
        .logo {
            width: 300px;
            margin-bottom: 10px;
            margin-inline: auto;
        }
        .col-lg-9 {
            padding-block: 30px;
        }
        .row{
            .col-lg-5:first-child{
                text-align: center;
                p{
                    margin-bottom: 20px;
                }
            }
        }
    }
    .social {
        justify-content: center;
    }
    .copyright {
        margin-top: 20px;
    }
    .overlay-content {
        opacity: 1;
        .title{
            display: block;
        }
    }
    .other-service-item {
        h3 {
            display: none;
        }
    }
    .slick-arrow {
        width: 45px;
        height: 45px;
    }
}
@media (max-width: 575.98px){
    .contact-button{
        padding: 7px;
        width: 40px;
        height: 40px;
        span{
            display: none;
        }
    }
    .icon {
        width: 24px;
        height: 24px;
    }
    .button-container {
        gap: 8px;
        margin-right: 5px;
    }
    label{
        font-size: 14px;
        margin-bottom: 2px;
    }
    .form-control::placeholder{
        font-size: 14px;
    }
    .title {
        font-size: 34px;
        margin-bottom: 5px;
    }
    .right {
        padding: 15px;
    }
    .popup .popup__content {
        width: 90%;
    }
    .sec-gap {
        padding: 20px 0;
    }
    .call-wp {
        right: 0px;
    }
    .fw{
        width: 49px;
        height: 49px;
    }
    .fix-call {
        width: 40px;
        height: 40px;
        padding: 11px;
    }
    p{
        font-size: 14px;
    }
    .topbar {
        padding: 8px 0;
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            a{
                font-size: 11px;
                text-align: center;
                line-height: 14px;
                img {
                    width: 13px;
                    height: 13px;
                }
            }
        }
    }
    header {
        .logo {
            width: 220px;
        }
    }
    .call-btn{
        span{
            display: none;
        }
        img {
            width: 50%;
            margin: 0;
        }
    }
    header.sticky{
        #menu{
            padding-block: 5px;
        }
    }
    .banner {
        height: 350px;
        padding-top: 15px;
        .banner-content {
            width: 66%;
            h1{
                font-size: 28px;
                &::before {
                    content: "";
                    left: -6px;
                    width: 3px;
                    height: 78%;
                }
            }
            p {
                font-size: 14px;
            }
        }
    }
    .men-img {
        img {
            width: 40%;
            left: -6%;
            transform: translateY(-3px);
        }
    }
    .primary-btn{
        font-size: 14px;
        padding: 9px 18px;
    }
    .banner-car {
        bottom: -20px;
        width: 44%;
    }
    .cta-bar {
        h3 {
            font-size: 12px;
        }
    }
    .services {
        padding-block: 20px;
    }
    .section-title{
        font-size: 28px;
        margin-bottom: 15px;
    }
    .service-item {
        .service-icon {
            width: 110px;
            height: 110px;
            margin-bottom: 7px;
        }
    }
    .how-we-work{
        padding-top: 20px;
        .col:nth-child(2n) {
            .number {
                transform: translateY(-146px);
            }
        }
    }
    .how-we-work-item {
        padding-inline: 20px;
        .icon {
            width: 145px;
            height: 145px;
            box-shadow: 0 0 0 7px rgba(217, 217, 217, 0.5);
        }
        .number {
            font-size: 19px;
            width: 32px;
            height: 32px;
        }
        &::after {
            display: none;
        }
    }
    .why-choose {
        margin-top: 0;
        & .choose-item {
            padding-right: 30px;
            .card-title {
                font-size: 19px;
            }
        }
    }
    .exp {
        width: 350px;
        height: 110px;
        top: 79%;
        right: -6px;
        padding: 0;
        padding-left: 20px;
        gap: 85px;
        h3 {
            font-size: 66px;
        }
        h4 {
            font-size: 15px;
        }
    }
    .who-we-are-content {
        .section-title {
            margin-bottom: 5px;
        }
    }
    .locations {
        & ul {
            li {
                font-size: 14px;
                padding-left: 18px;
                line-height: 120%;
                margin-bottom: 15px;
                &::before {
                    width: 15px;
                    height: 15px;
                    top: 6%;
                    transform: unset;
                }
            }
        }
    }
    .accordion__item .accordion__title {
        font-size: 16px;
        margin-bottom: -5px;
    }
    .accordion__item .accordion__content p {
        font-size: 14px;
        margin-bottom: 0;
    }
    footer{
        text-align: center;
        padding-bottom: 10px;
        .logo{
            width: 230px;
        }
        p {
            margin-bottom: 5px;
        }
        .col-lg-9 {
            padding-block: 15px;
        }
        .card-title{
            margin-bottom: -5px;
        }
    }
    .small-line{
        margin-bottom: 4px;
    }
    footer p, footer p a, footer ul li a {
        font-size: 14px;
    }
    .copyright{
        justify-content: center;
    }
    .mb-40 {
        margin-bottom: 20px;
    }
    .slick-arrow {
        width: 34px;
        height: 34px;
    }
}