@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");



* {

    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



/* ------Scrollbar CSS Start----- */

/* Firefox */





/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {

    width: 5px;

}



*::-webkit-scrollbar-track {

    background: var(--white);

}



*::-webkit-scrollbar-thumb {

    background-color: var(--dark-blue);

    border-radius: 5px;

    border: 0px;

}



/* ------Scrollbar CSS End----- */



/*--- Common Style Start---*/



:root {

    --black: #000;

    --white: #ffffff;

    --blue: #1d86c8;

    --color-blue2: #1e96ab;

    --dark-blue: #0E1347;

    --text-blue: #0E2240;

    --grey: #6B6C78;

    --color-green: #41b063;

    --body-font: 'Outfit', sans-serif;

    --heading-font: 'Fraunces',

            serif;

    

}



/*



font-family: 'Fraunces',

serif;

font-family: 'Manrope',

sans-serif;

font-family: 'Outfit',

sans-serif;

*/





html,

body {

    overflow-x: hidden;

}



body {

    margin: 0;

    padding: 0;

    font-size: 13px;

    line-height: 22px;

    font-family: var(--body-font);

    color: var(--grey);

}



a {

    display: inline-block;

    text-decoration: none !important;

    -webkit-transition: all 300ms ease-in-out;

    -moz-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}





figure {

    margin: 0;

    padding: 0;

    display: block;

}





h1{

    font-size: 40px;

    font-family: var(--heading-font);

}

h2{

    font-size: 38px;

    font-family: var(--heading-font);

}

h3 {

    font-size: 22px;

}



h4 {

    font-size: 20px;

}



h5 {

    font-size: 18px;

}



h6 {

    font-size: 16px;

}



ul {

    padding-left: 0px;

    margin-bottom: 0px;

}

.section-heading{

    max-width: 546px;

    margin: 0 auto 40px auto;

}

.section-heading h2, .about-text h2{

    color: var(--dark-blue);

    font-weight: 600;

}

.section-heading h4,  .about-text h4{

    font-size: 13px;

    letter-spacing: 2px;

    margin-bottom: 15px;

    font-weight: 700;

    color: var(--blue);

}

.section-heading p, .about-text p{

    color: var(--grey);

    font-weight: 500;

    margin-bottom: 0;

}

/*--- Common Style End---*/



/*--- Bootstrap Form Start ---*/



.form-control {

    height: 40px;

    border: 1px solid var(--white);

    padding: 10px 15px;

    background-color: var(--white);

    font-size: 14px;

    color: var(--black);

    letter-spacing: 0;

    border-radius: 0;

    box-shadow: none !important;

}



.form-control:focus {

    outline: none !important;

    border: 1px solid transparent !important;

    box-shadow: none !important;

}



select.form-control:not([size]):not([multiple]) {

    height: 50px;

}



textarea.form-control {

    height: 100px;

    resize: none;

}



.form-control::placeholder {

    color: var(--color-gray);

}



.sec-space {

    padding: 70px 0;

}



.sec-space-bottom {

    padding: 0 0 70px;

}



.sec-space-top {

    padding: 70px 0 0;

}



/*- Bootstrap Form End -*/





/*-- Button Start --*/



.btn {

    height: 38px;

    line-height: 38px;

    padding: 0 22px;

    font-size: 12px;

    border-radius: 4px !important;

    font-family: var(--body-font);

    border: 1px solid transparent;

    text-transform: capitalize;

    position: relative;

    transition: all .5s;

    -webkit-transition: all .5s;

    -moz-transition: all .5s;

    -ms-transition: all .5s;

    -o-transition: all .5s;

}



buton:focus,

.btn:focus,

buton:active,

.btn:active {

    outline: none;

    box-shadow: none !important;

    border: 1px solid transparent;

}



.btn-primary {

    color: var(--white);

    background-color: var(--blue);

    border-color: var(--blue);

    position: relative;

    z-index: 1;

    font-weight: 400;

}



.btn-primary:hover, .btn-primary:focus{

    background-color: var(--color-blue2) !important;

    color: var(--white);

    border-color: var(--color-blue2) !important;

}

.btn-primary:not(:disabled):not(.disabled).active,

.btn-primary:not(:disabled):not(.disabled):active,

.show>.btn-primary.dropdown-toggle, .btn-primary:focus {

    color: #fff;

    background-color: var(--dark-blue);

    border-color: var(--dark-blue);

}







.btn-blank{

    font-size: 13px;

    color: var(--blue);

    font-weight: 600;

    position: relative;

    z-index: 1;

    padding: 0;

}

.btn-blank:hover {

    color: var(--blue);

}

.btn-blank i{

    font-size: 12px;

    margin-left: 5px;

    transition: all .4s;

}

.btn-blank:hover i{

    margin-left: 8px;

}



.btn-primary i{

    margin-left: 5px;

}

/*-- Button End --*/









/*--- Animation Start ---*/





@-webkit-keyframes animationFade {

    from {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none;

    }

}



@-o-keyframes animationFade {

    from {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        -o-transform: none;

        transform: none;

    }

}



@keyframes animationFade {

    from {

        opacity: 0;

        -webkit-transform: translate3d(0, -100%, 0);

        transform: translate3d(0, -100%, 0);

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        -o-transform: none;

        transform: none;

    }

}



.scale {

    animation: scale 2s alternate infinite;

    webkit-animation: scale 2s alternate infinite;

}



@-webkit-keyframes scale {

    0% {

        transform: scale(0.9);

        -webkit-transform: scale(0.9);

    }



    100% {

        transform: scale(1);

        -webkit-transform: scale(1);

    }

}



/*--- Animation End ---*/







/*----   HEADER  START  ----*/



.main-header {

    width: 100%;

    z-index: 999;

    padding:9px 0;

}

.main-header .navbar-nav {

    padding-left: 60px;

}

.navbar {

    padding: 0;

}



.navbar-brand {

    padding: 0px;

}



.navbar-brand img {
    height:76px;
    width: auto;
}



.navbar-collapse ul>li {

    margin-right: 50px;

    position: relative;

}





.navbar .navbar-collapse ul>li>a {

    color: var(--dark-blue);

    font-size: 14px;

    font-weight: 600;

    position: relative;

    z-index: 9;

    text-transform: capitalize;

    transition: all 0.4s;

    padding: 24px 0;

}

.navbar .navbar-collapse ul>li>a::before, .current-menu-parent::before{

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    height: 3px;

    width: 0%;

    background: var(--blue);

    transition: 0.3s ease-in-out;

}

.navbar .navbar-collapse ul>li.active a::before, .navbar .navbar-collapse ul>li:hover a::before, .main-header .current-menu-parent::before{

    width: 100%;

}

.navbar-text strong{

    font-size: 11px;

    color: var(--dark-blue);

    line-height: 14px;

    display: block;

    font-weight: 500;

}

.sub-menu{

    display: none !important;

}

.navbar-text a {

    font-size: 16px;

    line-height: 16px;

    color: var(--dark-blue);

    font-weight: 700;

    position: relative;

    padding-left: 32px;

}

.navbar-text a::after{

    content: "\f095";

    font: normal normal normal 16px/1 FontAwesome;

    color: var(--white);

    text-align: center;

    width: 28px;

    position: absolute;

    top: 50%;

    left: 0;

    transform: translateY(-50%);

}

.navbar-text a::before{

    content: "";

    position: absolute;

    top: 50%;

    left: 0;

    transform: translateY(-50%);

    height: 28px;

    width: 28px;

    border-radius: 50%;

    background: var(--color-green);

    

}





/* 

.drop-menu {

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 180px;

    background: var(--white);

    opacity: 0;

    visibility: hidden;

    transform: translateY(30px);

    transition: all .4s;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}



.navbar-collapse ul>li:hover .drop-menu {

    transform: translateY(0px);

    visibility: visible;

    opacity: 1;

    transition: all .4s;

}



.navbar-collapse ul>li>.drop-menu li {

    margin-right: 0px;

}



.navbar-collapse ul>li>.drop-menu li a {

    padding: 5px 10px !important;

    border-bottom: 1px solid #dedede;

    display: inline-block;

    width: 100%;

}



.navbar-collapse ul>li>.drop-menu li a:hover {

    color: #699ffe;

}



.has-dropdown:before {

    position: absolute;

    right: 0px;

    top: 50%;

    transform: translateY(-50%);

    background: url(../images/icon/down-arrow.svg) no-repeat center;

    width: 12px;

    height: 12px;

    line-height: 12px;

    background-size: 12px 12px;

    content: '';

} */

/* sticky menu  */

/* .header-appear {

    position: fixed;

    top: 0;

    z-index: 999;

    width: 100%;

    background-color: var(--black);

    -webkit-animation-name: animationFade;

    -o-animation-name: animationFade;

    animation-name: animationFade;

    -webkit-animation-duration: 1s;

    -o-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    -o-animation-fill-mode: both;

    animation-fill-mode: both;

    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

}



.header-appear .navbar{

    padding: 2px 0px;  

} */



/*---   HEADER END   ---*/







/*---   BANNER START   ---*/



.banner {

    position: relative;

    overflow: hidden;

}

.banner-img{

    height: 600px;

}

.banner-img img{

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.banner-wrapper {

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    width: 100%;

}

.banner-text{

    max-width: 430px;

    position: relative;

}

.banner-text::before{

    content: "";

    background: url(../images/design.png) no-repeat center;

    position: absolute;

    top: -52px;

    left: 0;

    height: 90px;

    width: 40px;

    background-size: contain;

}



.banner-text h1 {

    font-size: 44px;

    line-height: 50px;

    padding-bottom: 12px;

    color: var(--text-blue);

    font-weight: 600;

}

.banner-text p{

    color: var(--text-blue);

}



.home-slider .owl-carousel .owl-item img {

    width: 55%;

}

.home-slider .owl-dots {

    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

}

.home-slider .owl-carousel button.owl-dot {

    border-radius: 50%;

    background: #744E75AD;

    height: 5px;

    width: 5px;

    margin: 0 2px;

    border: none;

    padding: 0 !important;

    font: inherit;

}

.home-slider .owl-carousel button.owl-dot.active{

    background: var(--white);

}

/*---   BANNER END   ---*/





/* Services start */

/* 

.service-slider .owl-nav{

    width: 100%;

    display: flex;

    justify-content: space-between;

    position: absolute;

    top: 40%;

    transform: translateY(-50%);

}



.service-slider .owl-nav .owl-prev,

.service-slider .owl-nav .owl-next{

    background: #F8F8F8 !important;

    width: 40px;

    height: 40px;

    line-height: 32px !important;

    text-align: center;

    font-size: 10px !important;

    color: var(--black) !important;

    border-radius: 50%;

    transition: all .5s;

    top: 20%;

    transform: translateY(-50%);

    position: absolute;

}



.service-slider .owl-nav .owl-prev{

    left: -20px;

}



.service-slider .owl-nav .owl-next {

    right: -20px;

}



.service-slider .owl-nav .owl-prev:hover,

.service-slider .owl-nav .owl-next:hover{

    background: var(--color-white) !important;

    color: var(--color-yellow) !important;

    transition: all .5s;

} */



.service-box{

    background: var(--white);

    border-radius: 8px 8px 0 0;

    overflow: hidden;

}

.service-details {

    padding: 20px 20px 0 20px;

    margin-right: 50px;

    background: var(--white);

    border-radius: 0 8px 0 0;

    margin-top: -54px;

    z-index: 1;

    position: relative;

}

.service-details h3 a{

    font-size: 18px;

    font-weight: 600;

    color: var(--dark-blue);

    display: block;

    display: -webkit-box;

    -webkit-line-clamp: 1;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

}

.service-box:hover .service-details h3 a{

    color: var(--blue);

}

.service-details p{

    margin-bottom: 0;

    font-size: 12px;

}

.service-image{

    height: 360px;

    width: 100%;

}

.service-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;
    transition: 0.5s;

}
.service-box:hover img{
    transform: scale(1.1);
}

/* Services end */





/* About start */



.about-img img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 8px;

}

.about-text {

    padding: 40px;

}

.about-text h2 strong{

    font-weight: inherit;

    display: block;

}

.about-text h2{

    padding: 10px 0;

}

/* About end */









/* Why us start */

.why-us{

    background: url(../images/whyus-bg.jpg) no-repeat center;

    width: 100%;

    height: 100%;

    position: relative;

    z-index: 1;

}

.why-us::before{

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: var(--color-blue2);

    opacity: 97%;

    z-index: -1;

}


.why-us .section-heading{

    margin-bottom: 60px;

}

.why-us .section-heading h2, .whyus-content h5{

    color: var(--white);

}

.why-us .section-heading p, .whyus-content p{

    color: #fff;

    margin-bottom: 0;
    font-weight: 400;

}
.why-us .section-heading h4{
    color: #fff;
    font-weight: 600;
}

.whyus-content{
    padding: 0 20px;
}

.whyus-content h5{

    margin-top: 25px;

    font-size: 16px;

}

.whyus-content p{

    line-height: 20px;

}

.why-img{

    height: 65px;

    width: 65px;

    line-height: 65px;

    border-radius: 50%;

    background: var(--white);

    outline: 1px dashed #fff;

    outline-offset: 4px;

    position: relative;

    z-index: 1;

    overflow: hidden;

}

.why-img::before{

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    background: #BAE5F6;

    height: 40px;

    width: 40px;

    border-radius: 50%;

    z-index: -1;

}

.why-img img{

    max-width: 32px;

    height: auto;

}

.why-us .btn{

    margin-top: 75px;
    background-color: var(--color-green);
    border-color: var(--color-green);

}
.why-us .btn:hover, .why-us .btn:focus{
    background-color: var(--dark-blue) !important;
    border-color: var(--dark-blue) !important;
} 

/* Why us end */









/* Testimonial Start */



.testimonial p {

    margin-bottom: 0;

}

.testimonial-head {

    position: absolute;

    top: 50%;

    left: 0;

    transform: translateY(-50%);

    width: 100%;

}

.testimonial-left {

    position: relative;

}

.testimonial-left::before {

    content: "";

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    left: 0;

    background: url('../images/quote-right.svg') no-repeat;

    height: 230px;

    width: 230px;

    z-index: -1;

    background-size: contain;

}

.testimonial-wrapper {

    background: #F2F7F9;

    border-radius: 8px;

    padding: 40px 25px 20px 25px;

}

.blue-quote {

    width: 38px;

    height: 38px;

    text-align: center;

    margin-bottom: 20px;

}

.blue-quote img{

    height: 100%;

    width: 100%;

    object-fit: contain;

}



.customer-review {

    height: 142px;

    font-size: 14px;

    color: #0E2240;

    font-weight: 500;

    overflow-y: auto;

}

.customer-img img {

    border-radius: 50%;

    width: 50px;

    height: 50px;

    object-fit: cover;

}

.cust-details{

    border-top: 1px solid #E4EDF1;

}

.customer-details h6 {

    color: var(--dark-blue);

    font-size: 14px;

    font-weight: 700;

}



.customer-details p {

    font-size: 13px;

    font-weight: 500;

    color: #AEAFBF;

}



.testimonial-slider .owl-stage-outer {

    position: relative;

    overflow: hidden;

    -webkit-transform: translate3d(0, 0, 0);

}



.testimonial .owl-dot {

    background: #E4EDF1 !important;

    height: 2px;

    width: 24px;

    margin-right: 5px;

}

.testimonial .owl-dot.active, .testimonial .owl-dot:focus {

    background: var(--dark-blue) !important;

    outline: none;

}



.testimonial .owl-dots {

    position: absolute;

    transform: translate(-324px, -18px);

}



/* Testimonial End */





/* Contact bar start  */

.call-bar{

    background: url(../images/subscribe-bg.png) no-repeat center;

    width: 100%;

    padding: 60px 88px;

    height: auto;

    background-size: cover;

    border-radius: 8px;

    position: relative;

}

.call-bar::before{

    content: "";

    position: absolute;

    top: 50%;

    left: 60%;

    transform: translate(-50%, -50%);

    background: url(../images/dotted-path.svg) no-repeat center;

    background-size: contain;

    height: 80px;

    width: 300px;

}

.call-bar h3{

    color: var(--white);

    font-size: 23px;

    font-family: var(--heading-font);

    font-weight: 400;

    margin-bottom: 0;

    letter-spacing: 0.5px;



}

.call-bar h3 strong{

    font-weight: inherit;

    display: block;

}

.call-bar .navbar-text a::before{

    height: 50px;

    width: 50px;

}

.call-bar .navbar-text a{

    padding-left: 62px;

}

.call-bar .navbar-text a::after{

    font-size: 28px;

    width: 50px;

}

.call-bar .navbar-text a {

    font-size: 26px;

    line-height: 26px;

    color: var(--white);

    letter-spacing: 1.5px;

    font-weight: 600;

}

.call-bar .navbar-text strong {

    font-size: 15px;

    line-height: 22px;

    color: var(--white);

    font-weight: 400;

}



/* Contact bar end  */



/*--  Contact Map Start  --*/

.contact {

    position: relative;

}

.contact .section-heading{

    margin-bottom: 30px;

}



.contact-form .form-control {

    height: 40px;

    background: #F6F8F9;

    border: none;

    color: grey;

    font-size: 12px;

    border-radius: 4px;

}



.contact-form textarea.form-control {

    height: 132px;

    background: #F6F8F9;

    border: none;

    color: grey;

    font-size: 12px;

    border-radius: 4px;

}



.form-group:not(:last-child) {

    margin-bottom: 20px;

}



.form-row>.col,

.form-row>[class*=col-] {

    padding-right: 20px;

    padding-left: 0px !important;

}

.contact-left {

    position: absolute;

    top: 0;

    left: 0;

    height: 100%;

    width: 50%;

}

.contact-left img{

    height: 100%;

    width: 100%;

    object-fit: cover;    

}

.single-input p{

    margin-bottom: 0;

}

.submit-btn{

    position: relative;

}

.submit-btn::before {

    content: "\f054";

    position: absolute;

    top: 57%;

    right: 90px;

    transform: translateY(-50%);

    font: normal normal normal 12px/1 FontAwesome;

    z-index: 2;

    color: #fff;

}

.submit-btn .btn{

    padding-right: 34px;

}

.submit-btn p{

    margin-bottom: 0;

}



/* Contact Map end */





/*--  Footer Start  --*/



.footer-main {

    background: #F5F8F9;

}



.quick-link-box ul {

    list-style: none;

    padding-left: 0px;

    display: inline-block;

}



.quick-link-box{

    padding: 30px 0;

}

.quick-link-box ul li {

    display: inline;

    margin: 0 30px;

}



.quick-link-box ul li a {

    text-decoration: none;

    color: var(--dark-blue);

    font-size: 14px;

    line-height: 16px;

    font-weight: 600;

    transition: all .4s;

}



.quick-link-box ul li a:hover {

    color: var(--blue);

    transition: all .4s;

}



.ft-social ul li {

    margin: 0 14px;

}



.ft-social ul li a {

    color: var(--dark-blue);

    font-size: 16px;

    border-radius: 50%;

    text-align: center;

    background: var(--white);

    height: 34px;

    line-height: 36px;

    width: 34px;

    transition: all 0.4s;

}



.ft-social ul li a:hover {

    color: var(--white);

    background: var(--blue);

    transition: all .4s;

    -webkit-transition: all .4s;

    -o-transition: all .4s;

    -ms-transition: all .4s;

    -moz-transition: all .4s;

}



.copy-right {

    padding: 20px 0;

    text-align: center;

    background: var(--white);

}



.copy-right p {

    line-height: 12px;

    font-size: 12px;

    color: #A8A39B;

    margin-bottom: 0;

}



.copy-right p a {

    color: var(--blue);

    font-weight: 500;

}



/* Loader CSS Start  */



.loaderWrap {

    position: fixed;

    height: 100%;

    left: 0;

    top: 0;

    right: 0;

    bottom: 0;

    z-index: 9991;

    display: flex;

    justify-content: center;

    align-items: center;

    background-color: rgba(0, 0, 0, 0.95);

    transition: 300ms ease-in-out;

}



.loader-off.loaderWrap {

    opacity: 0;

    visibility: hidden;

}



/* Loader CSS End  */





#top-button {

    display: inline-block;

    background-color: var(--blue);

    width: 40px;

    height: 40px;

    text-align: center;

    border-radius: 50%;

    position: fixed;

    bottom: 30px;

    right: 30px;

    transition: background-color .3s,

        opacity .5s, visibility .5s;

    opacity: 0;

    visibility: hidden;

    z-index: 1000;

    overflow: hidden;

}



#top-button::after {

    content: "\F148";

    font-family: bootstrap-icons !important;

    font-size: 16px;

    line-height: 40px;

    color: #fff;

}



#top-button:hover {

    cursor: pointer;

    background-color: var(--dark-blue);

}



#top-button:active {

    background-color: var(--dark-blue);

    color: var(--blue);

}



#top-button.show {

    opacity: 1;

    visibility: visible;

}







/* Breadcrumb Start  */





.innerBanner {

    position: relative;

    height: 300px;

}



.innerBanner:before {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    content: '';

    /* background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(18, 18, 18, 0.9) 21%, rgba(255, 255, 255, 0) 100%); */

    background: rgb(0 0 0 / 63%);

}



.innerBanner img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.title_breadcrumb {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    justify-content: center;

    width: 100%;

}



.title_breadcrumb h1 {

    font-size: clamp(20px, 4vw, 42px);

    color: var(--white);

    text-align: center;

    text-transform: uppercase;

    font-weight: 500;

}



.breadcrumbs {

    list-style-type: none;

    display: flex;

    justify-content: center;

}



.breadcrumb_bottom ul li a,

.breadcrumb_bottom ul li {

    color: var(--white);

}



.breadcrumb_bottom ul li {

    margin-right: 10px;

}



.breadcrumb_bottom ul li:last-child {

    margin-right: 0px;

}



/* Breadcrumb End */















/* Contact PAge start  */

.contact-cms .contact-left{

    position: relative;

    width: 100%;

    background: url(../images/cover.jpg) no-repeat center;

    height: 100%;

    background-size: cover;

    z-index: 1;

}



.contact-cms .contact-left::before{

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: #000;

    opacity: 0.76;

    z-index: -1;

}

.wpcf7 form.invalid .wpcf7-response-output,

.wpcf7 form.unaccepted .wpcf7-response-output,

.wpcf7 form.payment-required .wpcf7-response-output {

    border-color: #ff0000;

}

/* Multiple Error line prevention */
.wpcf7-not-valid-tip:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
}


/* Form Restriction */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-white);
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.contact-cms h3 {

    color: var(--blue);

    font-family: var(--heading-font);

    margin-bottom: 30px;

}



.contact-cms .contact-form {

    padding: 40px;

}

.contact-cms .contact-details{

    padding: 60px;

}

.contact-cms .contact-details .con-box{

    color: var(--white);

    font-size: 14px;

    margin-bottom: 40px;

}

.contact-cms .contact-details h6 {

    color: #7d8284;

    font-size: 13px;

    margin-bottom: 0;

}



.contact-cms .contact-details .con-box{

    display: block;

    position: relative;

    padding-left: 60px;

}



.contact-cms .contact-details .bi {

    height: 38px;

    width: 38px;

    background: var(--blue);

    border-radius: 50%;

    display: block;

    line-height: 38px;

    text-align: center;

    color: var(--white);

    font-size: 18px;

    position: absolute;

    left: 0;

}



.c-map {

    margin-bottom: -7px;

}

.contact-cms .contact-form {

    background: #f5f8f9;

}

.contact-cms .contact-form .form-control, .contact-cms .contact-form textarea.form-control{

    background: var(--white);

}

.contact-cms .contact-left .ft-social ul li a{

    background: #ffffffbd;

    color: var(--dark-blue);

    margin-bottom: 0;

}

.contact-cms .contact-left .ft-social ul li:hover a{

    background: var(--blue);

    color: var(--white);

}

.contact-cms .contact-form{

    height: 100%;

}

/* Contact PAge end  */









/* About page start  */



.about-cms .about-img{

    height: 400px;

    width: 50%;

    margin: 0 40px 26px 0;

    float: left;

}

.about-cms .about-text h2 {

    padding: 0;

}



/* About page end  */



/* Service page start  */

.service-cms .service-slider{

    row-gap: 30px;

}

.service-data{

    padding-right: 40px;

}

.service-data h2{

    color: var(--blue);

}

.single-service{

    background: #f5f8f9;

}

.single-service-image img{

    width: 100%;

    height: auto;

    border-radius: 8px;
	
	max-height: 400px;
	
	object-fit: contain;

}

.single-service ul li{

    list-style-type: none;

    padding-left: 20px;

    position: relative;

    font-size: 14px;

}

.single-service ul li::before{

    content: "\f138";

    color: var(--blue);

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    left: 0;

    top: 9px;

    font: normal normal normal 14px/1 FontAwesome;

}

.single-service ul li:not(:last-child){

    margin-bottom: 10px;

}

.single-service-image {

    outline: 2px dashed var(--blue);

    border-radius: 1px;

    margin: 20px;

    outline-offset: 10px;

}


.single-service table td{
	padding: 6px 10px;
	border: 1px solid #dee2e6;
}
.single-service table{
	background: #fff;
	border-collapse: collapse;
}
/* Service page end  */



/* Thank you page  */
.thankyou {
    padding: 45px;
}

.thankyou .message-image img {
    width: 300px;
    height: auto;
}

/* Error page */
.error-404 {
    padding: 40px 0;
}

.error-404 .message-image img {
    width: 100%; 
    height: auto;
}

.product-slider .service-box {
    border-radius: 0;
}

.product-slider .service-box .service-image {
    background: #f5f8fd;
    width: 100%;
    height: 300px;
    padding: 40px 30px;
    border: 1px solid #d5e5ff;
    display: block;
    border-radius: 8px 8px 0 0;
}
.product-slider .service-box .service-details {
    padding: 15px 15px !important;
    border-radius: 0;
    z-index: 1;
    position: relative;
    width: 100%;
    border: 1px solid #d5e5ff;
    border-top: 0;
    margin-top: 0;
    margin-right: 0;
    border-radius:  0 0 8px 8px;
    min-height: 69px;
}

.product-slider .service-box .service-details h3 {
    margin-bottom: 0;
}
.product-slider .service-box .service-details h3 a{
    font-size: 16px;
    display: block;
    text-align: center;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-slider .service-box .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.product-slider .service-box:hover .service-image img{
    transform: scale(1.1);
  }

.c-mar {
    margin-top:80px;
}



.owlnav-active .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: solid 1px #E5EBF3 !important;
    box-shadow: 0px 3px 6px #00000024;
    background: url(../images/left-i.png) no-repeat center #fff !important;
    border-radius: 50px;
    left: -20px;
    font-size: 0 !important;
    background-size: 14px !important;
    outline:none;
  }
  
  .owlnav-active .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: solid 1px #E5EBF3 !important;
    right: -20px;
    box-shadow: 0px 3px 6px #00000024;
    background: url(../images/right-i.png) no-repeat center #fff !important;
    border-radius: 50px;
    font-size: 0 !important;
    background-size: 14px !important;
    outline:none;
  }
  
  .owlnav-active.vehicle-list .owl-nav .owl-prev {
    width: 40px;
    height: 40px;
    left: -18px;
  }
  
  .owlnav-active.vehicle-list .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    right: -18px;
  }
  
  /* OWL Aro End */


  .breadcrumb-container {
    position: relative;
    background: #0785c5;
}
.breadcrumb-wrapper {
	padding:20px 0;
}
.breadcrumb-wrapper h4 {
	margin:0;
	color:#fff;
}
.breadcrumb-wrapper .breadcrumbs li {
    margin: 0 3px;
    color: #dcdcdc;
    font-weight: 300;
}
.breadcrumb-wrapper .breadcrumbs li a {
	color:#fff;
}
.blog-wrap a h5 {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 17px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px
}

.blog-para {
    height: 135px;
    overflow: hidden;
    color: #707070
}

.related-wrap .single-relate {
    margin-bottom: 15px;
    padding: 7px 10px
}

.single-relate {
    display: block;
    background: #fff
}

.single-relate .sr-image {
    flex: 0 0 80px;
    height: 60px;
    margin-right: 10px
}

.single-relate .sr-image img {
    width: 100%
}

.sr-title h6 {
    font-size: 14px;
    line-height: 18px;
    color: var(--dark-blue)
}

.sr-title .btn-noline {
    display: inline-block;
    margin-top: 0
}

.sr-title p {
    color: var(--green)
}

.single-blog-image img {
    width:100%;
}

.single-blog-content {
    padding-top: 15px
}
.single-blog-content h4 {
	margin-top:4px;
	margin-bottom:10px;
	font-size:26px;
	font-weight:600;
	font-family: var(--heading-font);
	color:#000;
}
.side-blog h5 {
	font-family: var(--heading-font);
    color: #000;
    font-size: 22px;
    font-weight: 700;
}



/* products Details */

.service-data h2{
    font-size: 32px;
    margin-bottom: 15px;
}
.service-data h4{
    font-size: 16px;
    margin-bottom: 10px;
}
.single-service ul li{
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 18px;
}
.list-unstyled table{
    border: 1px solid #dee2e6;
	border-collapse: collapse;
	width: 100%;
}

.service-data .table td{
    padding: 8px 14px;
    font-size: 12px;
	border: 1px solid #dee2e6;
}
.service-data p {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 6px;
}


.service-data h4 em{
    font-size: 10px;
    font-style: normal;
}
.single-product .innerBanner{
    background: var(--blue);
    background: var(--color-blue2);
}
.single-product .innerBanner::before{
    display: none;
}

.single-product .innerBanner .title_breadcrumb h1{
    font-size: clamp(20px, 4vw, 35px);
}

.sameheight.owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
}

.sameheight .item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 1px;
}

.pagination {
    align-items: center;
    justify-content: center;
	margin-top: 30px;
}
a.page-numbers {
    margin: 0 6px;
    color: var(--blue);
}
span.page-numbers.current {
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    text-align: center;
}