@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --black : #1B1B1B;
    --white: #fff;
    --red: #E74342;
    --light-grey: #F1EBE9;
    --darkgrey: #8b8b8b;
    --body-font: "Montserrat", sans-serif;
    --heading-font: "Lexend", sans-serif;
}
body, html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    background: var(--white);
    color: var(--darkgrey);
    font-size: 13px;
    line-height: 1.7;
    font-family: var(--body-font);
    font-weight: 500;
}
h1, h2, h3, h4, h5{
    font-family: var(--heading-font);
    color: var(--black);
}
p{
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    font-family: var(--body-font);
    color: var(--darkgrey);
}
a{
    text-decoration: none !important;
    font-family: var(--body-font);
}
p:last-child{
    margin-bottom: 0;
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 98px 0;
}
.btn, input[type="submit"] {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-family: var(--body-font);
    padding: 0 24px;
    min-width: 148px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
button:focus, .btn:focus{
    box-shadow: none !important;
}
.btn-primary, input[type="submit"]{
    background: var(--red);
    color: var(--white);
    border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active
{
    background: var(--black);
    color: var(--red);
    border-color: var(--black);
}
.btn-outline{
    color: var(--red);
    border-color: var(--red);
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active{
    border-color: var(--red);
    background: var(--red);
    color: var(--black);
}
.btn-line{
    font-weight: 700;
    color: var(--red);
    text-decoration: underline !important;
}
.section-heading{
    margin-bottom: 42px;
    max-width: 80%;
}
.form-control, .es-email{
    font-size: 13px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 8px 12px 8px 32px;
    width: 100%;
    color: var(--white) !important;
    font-weight: 500;
}
.es-email{
    padding: 8px 12px 8px 12px;
}
.form-control::placeholder, textarea::placeholder{
    color: var(--white);
    text-transform: capitalize;
    font-size: 13px;
}
textarea {
    width: 100%;
    height: 80px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 8px 12px 8px 32px;
    color: var(--white);
}
.form-control:focus, textarea:focus{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    box-shadow: none;
    outline: none;
}
.form-group{
    position: relative;
    margin-bottom: 2rem;
}
.form-group .bi{
    color: var(--white);
    font-size: 20px;
    position: absolute;
    top: 8px;
    left: 0;
}
input:-internal-autofill-selected {
    background-color: transparent !important;
    color: var(--white);
}
.contact-form  label{
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
    margin: 0 0 4px 12px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: transparent;
    height: 40px;
    width: 40px;
    border: 1px solid var(--darkgrey);
    border-radius: 4px;
    color: var(--darkgrey);
    font-size: 20px;
    position: absolute;
    top: 240px;
    left: -60px;
    transition: 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -60px;
}
.owl-carousel .owl-nav button:hover, .owl-carousel .owl-nav button:focus, .owl-carousel .owl-nav button:active{
    color: var(--white);
    background: var(--red);
    border: none;
    outline: 0;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: 1px solid var(--red);
    padding: 0!important;
    font: inherit;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 8px;
    background: transparent;
    transition: 0.3s ease-in-out;
}
.owl-carousel button.owl-dot.active{
    background: var(--red);
    width: 24px;
}

.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
}
.loader-content{
    height: 100vh;
    width: 100%;
    /* background: #000000f2; */
    background: #fff7f7f2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-content img{
    height: 80px;
    width: 80px;
    object-fit: contain;
}
.loader.loader-off{
    opacity: 0;
    visibility: hidden;
}



/* Header  */
.myHeader{
    background: var(--white);
    padding: 6px 0;
    width: 100%;
}
.navbar-brand img {
    height: 75px;
    width: auto;
}
.navbar-toggler-icon{
    color: var(--red);
    font-size: 36px;
}
.myHeader.fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light-grey);
    z-index: 99;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.myHeader.fixed{
    background: var(--white);
}
.myHeader.fixed .navbar-brand img {
    height: 60px;
}
.myHeader.fixed .navbar-collapse, .myHeader.fixed .nav-text{
    margin-top: 0px;
}
.navbar-nav li a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--heading-font);
    color: var(--black);
    position: relative;
    transition: 0.4s ease-in-out;
}
/* .myHeader.fixed .navbar-nav li a{
    color: var(--black);
} */
.navbar-nav li{
    margin: 0 14px;
    transition: 0.3s ease-in-out;
    position: relative;
}
.navbar-nav li.active a, .navbar-nav li:hover a{
    color: var(--red);
}
.con-box{
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.con-box .call-icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.con-box h5{
    font-size: 12px;
    color: var(--black);
    margin-bottom: 0;
}
.con-box, .con-box a{
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--red);
    word-break: break-all;
}


/* Banner  */
.banner{
    z-index: 1;
}
.banner::before {
    content: "";
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--light-grey), #f1ebe9f0, #f1ebe900);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.banner-img {
    position: relative;
    padding-top: 54%;
    width: 90%;
    z-index: 1;
}
.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-wrapper{
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}
.banner-text-wrap, .contact .section-heading{
    border-left: 8px solid var(--red);
    padding-left: 40px;
}
.banner-text{
    max-width: 46%;
}
.banner-text h1 {
    font-size: 64px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: capitalize;
}
.banner-text p{
    font-size: 13px;
    color: var(--black);
    font-weight: 600;
}
.banner-slider .owl-dots {
    position: absolute;
    top: 50%;
    left: -67%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.banner-slider.owl-carousel button.owl-dot.active{
    width: 8px;
    height: 42px;
}


/* About start  */
.about-img{
    position:relative;
    padding-top: 60%;
    z-index: 1;
}
.ab-home .about-img{
    padding-top: 120%;
}
.about-img img{
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
}
.ab-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 16px;
}
.ab-grid .about-img:nth-child(1){
    grid-row: span 3;
}
.ab-grid .about-img:last-child{
    grid-row: span 2;
    margin-bottom: 20px;
}
.exp h3{
    font-size: 28px;
    color: var(--white);
    font-weight: 600;
}
.exp h6{
    color: var(--white);
}
.ab-grid .exp {
    padding: 28px;
    background: var(--red);
    border-radius: 4px;
    margin: 20px 60px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.exp::after {
    content: "";
    height: 20px;
    width: 16px;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
    background: var(--red);
    position: absolute;
    top: 32px;
    left: -15px;
    z-index: -1;
}
.about-text{
    padding: 0 0 0 40px;
}
.about-text h6, .section-heading h6{
    font-size: 14px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
}
.about-text h2, .section-heading h2{
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--black);
    font-family: var(--heading-font);
    position: relative;
}
.about-text ul, .about-text ol{
    list-style-type: none;
    color: var(--black);
    font-weight: 600;
}
.about-text ul li, .about-text ol li{

































































































































































    













    position: relative;
    padding-left: 20px;
}
.about-text ul li::before, .about-text ol li::before{
    content: "\F26A";
    font-family: 'Bootstrap-icons';
    color: var(--red);
    position: absolute;
    top: 0;
    left: 0;
}

/* Services  */
.services{
    background: var(--light-grey);
}
.service-slider{
    padding-bottom: 40px;
}
.service-img{
    padding-top: 110%;
    overflow: hidden;
    border: 1px solid transparent;
    z-index: 1;
}
.service-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.service-box:hover img{
    transform: scale(1.1);
}
.service-img::before, .service-img::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #1b1b1b1e;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.service-box:hover .service-img::before{
    background: linear-gradient(0deg, var(--red), #E7434262);
}
.service-box a.desc{
    font-size: 20px;
    line-height: 1.4;
    font-family: var(--heading-font);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}
.desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.service-box {
    position: relative;
}
.service-box h6 a{
    font-size: 12px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2px;
	position:relative;
}
.service-box .serv-con h6 a::before{
	content: ",";
	font-size: 12px;
	color: var(--red);
	position: absolute;
	bottom: 0;
	right:-6px;
}
.service-box .serv-con h6:last-child a::before{
	display: none;
}
.service-desc{
    background: var(--white);
    padding: 20px;
    width: 90%;
    /* margin: -165px 20px 90px; */
    border-radius: 4px;
    overflow: hidden;
    -webkit-transition: .2s cubic-bezier(.3, .58, .55, 1);
    transition: .2s cubic-bezier(.3, .58, .55, 1);
    /* bottom: -90px; */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    display: flex;
    row-gap: 20px;
    z-index: 2;
}
.service-box:hover .service-desc{
    /* bottom: 90px; */
    background: transparent;
    flex-direction: column;
    bottom: 0;
}
.service-box:hover .service-desc a, .service-box:hover .service-desc h6 a, .service-box:hover .service-desc p, .service-box:hover .service-desc{
    color: var(--white);
}
.service-box:hover .service-desc a{
    font-weight: 500;
}
.serv-icon {
    height: 64px;
    width: 64px;
    background: var(--light-grey);
    border-radius: 4px;
    padding:12px;
    flex-shrink: 0;
    margin-right: 12px;
}
.serv-icon img{
    filter: brightness(0) saturate(100%) invert(51%) sepia(55%) saturate(7030%) hue-rotate(338deg) brightness(93%) contrast(93%);
}
.service-box:hover .serv-icon{
    background: transparent;
}
.service-box:hover .serv-icon img{
    filter: brightness(0) invert(1);
    transform: scale(1.6);
}
.services .owl-item{
    padding-bottom: 20px;
}
.sameheight.owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
}
.sameheight .item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 1px;
}


/* Why Us  */
.whyus .about-text{
    padding: 0 40px 0 0;
}
.whyus::before{
    content: "";
    width: 40%;
    height: 100%;
    background: url(../images/whyus-bg.png) no-repeat center;
    background-size: cover !important;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.whyus-box{
    background: var(--white);
    padding: 24px 24px 24px 90px;
    border-radius: 4px;
    box-shadow: 0 4px 4px #00000025;
}
.why-icon{
    height:84px;
    width: 84px !important;
    background: var(--red);
    border-radius: 0;
    border: 1px solid #A31D1C;
    padding: 12px;
    position: absolute;
    top: -20px;
    left: -20px;
}
.why-icon img{
    filter: brightness(0) invert(1);
    object-fit: contain;
}
.why-icon::after{
    content: "";
    height: 20px;
    width: 20px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background: #A31D1C;
    position: absolute;
    top: 0;
    right: -21px;
    z-index: -1;
}
.whyus-box h3{
    font-size: 20px;
    font-family: var(--heading-font);
    color: var(--black);
}
.whyus-list .whyus-box:not(:last-child){
    margin-bottom: 40px;
}
.whyus-list .whyus-box:nth-child(odd){
    margin-left: 40px;
}


/* Middle Banner  */
.mid-banner{
    background-attachment: fixed !important;
    background-size: cover !important;
    z-index: 1;
}
.mid-banner::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #1b1b1bcc;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.mid-banner h2{
    color: var(--white);
    font-weight: 600;
}
.mid-banner p{
    font-size: 16px;
    color: #8b8b8b;
}

/* Testimonial  */
.test-box{
    background: #f5f5f5;
    padding: 24px;
    border-left: 4px solid var(--light-grey);
    transition: 0.3s ease-in-out;
}
.review{
    height: 220px;
    overflow-y: auto;
}
.client-info{
    margin-top: 20px;
}
.client-img{
    flex-shrink: 0;
    background: #c4c4c4;
    border-radius: 50%;
}
.client-img img{
    width: 64px !important;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #c4c4c4;
}
.test-box .bi{
    color: var(--yellow);
    margin-right: 1px;
}
.client-name{
    font-size: 18px;
    font-family: var(--heading-font);
    color: var(--black);
    text-transform: capitalize;
}
.client-data .desg{
    color: var(--darkgrey);
    font-size: 14px;
}
.testimonial-slider.owl-carousel .owl-dots {
    text-align: left;
}
.quote {
    height: 84px;
    width: 84px !important;
    object-fit: contain;
    position: absolute;
    bottom: -12px;
    right: -12px;
}
.testimonial-slider .owl-item.active.center .test-box{
    background: var(--red) !important;
    border-color: #A31D1C;
}
.testimonial-slider .owl-item.active.center .test-box img.quote{
    opacity: 0.1;
} 
.testimonial-slider .owl-item.active.center .review{
    color: var(--white);
}
.testimonial-slider .owl-item.active.center .test-box h4, .testimonial-slider .owl-item.active.center .test-box h5, .testimonial-slider .owl-item.active.center .test-box p{
    color: var(--white);
}


/* Contact  */
.contact{
    background: var(--light-grey);
}
.contact::before{
    content: "";
    width: 100%;
    height: 80px;
    background: var(--white);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.contact-img{
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
}
.contact-form{
    background: var(--red);
    padding: 40px;
    position: relative;
    z-index: 2;
}
.form-row{
    row-gap: 0 !important;
}

.whyus-box h5, .spec-text h5{
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    font-family: var(--heading-font);
}
.spec-row{
    margin: 0 -8px;
}
.spec-row [class*="col-"]{
    padding: 0 8px;
}
.spec-row .serv-icon{
    background: var(--red);
}
.spec-row .serv-icon img{
    filter: brightness(0) invert(1);
}

/* Footer  */
.es-form-field-container{
    display: flex;
    flex-direction: column;
}


/* Footer Main  */
.main-footer{
    background: var(--light-grey);
}
.footer-row{
    padding: 96px 0 40px;
}
.footer-logo.navbar-brand img {
    height: 160px;
}
.main-footer h3{
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 32px;
}
.main-footer h3::after{
    content: "";
    display: block;
    height: 4px;
    width: 60px;
    background: var(--red);
    margin-top: 8px;
}
.myFooter .navbar-nav li a{
    font-size: 13px !important;
    font-family: var(--body-font) !important;
    color: var(--darkgrey) !important;
    font-weight: 600 !important;
    padding: 4px 0 !important;
}
.myFooter .navbar-nav li a:hover, .myFooter .navbar-nav li.active a{
    color: var(--red) !important;
}
.myFooter .navbar-nav li{
    margin: 2px 0;
}
.myFooter .con-box{
    margin-bottom: 20px;
}
.social-list li .bi{
    display: block;
    height: 36px;
    width: 36px !important;
    line-height: 36px;
    text-align: center;
    border: 1px solid var(--red);
    color: var(--red); 
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s ease-in-out;
}
.social-list li:not(:last-child){
    margin-right: 4px;
}
.social-list li:hover .bi{
    color: var(--black);
    background: var(--red);
}
.myFooter hr{
    background: var(--red);
    margin-top: 0;
}
.copyright{
    padding: 0 0 20px 0;
}
.copyright p, .main-footer p{
    color: var(--darkgrey);
    margin-bottom: 0;
}
.copyright p a{
    color: var(--red);
}


/* Inner Pages  */
.inner-banner {
    padding: 120px 0;
}
.inner-banner{
    background-size: cover !important;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.inner-banner::before {
    content: "";
    background: linear-gradient(45deg, var(--red), #00000086);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner-text h2 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 600;
}
.inner-banner .breadcrumb{
    background: transparent;
    color: var(--white);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    content: " // ";
}
.inner-banner .breadcrumb-item a{
    color: var(--white);
    text-decoration: underline !important;
}
.inner-banner .breadcrumb-item{
    color: var(--white);
}

/* About Page  */
.mission-box {
    border: 1px dashed var(--red);
    border-radius: 4px;
    background: var(--white);
    padding: 40px;
}
.mission-box h4{
    color: var(--black);
    font-family: var(--heading-font);
    font-weight: 700;
    margin-top: 32px;
}
.mission-box .serv-icon {
    background: var(--red);
    position: absolute;
    top: -20px;
    transform: scale(1.2);
}
.mission-box .serv-icon img{
    filter: brightness(0) invert(1);
}
.about-cms{
    background-color: var(--light-grey);
}
.about-cms .about-img , .contact-details .about-img{
    padding-top: 64%;
    border-radius: 4px;
}
.about-cms .ab-wrap:nth-child(odd) .ab-row{
    flex-direction: row-reverse;
}
.about-cms .ab-wrap:not(:last-child){
    margin-bottom: 80px;
}
.about-cms .ab-wrap:nth-child(odd) .about-text{
    padding: 0 40px 0 0;
}


/* Conntact Page  */
.contact-info{
    background: var(--red);
    padding: 24px 24px 20px 100px;
    border-radius: 4px;
}
.contact-info h5{
    color: var(--white);
}
.contact-info .bi {
    padding: 12px 20px;
    font-size: 24px;
    background: #ffffff40;
    border-radius: 4px;
    display: inline-block;
    margin-right: 20px;
    position: absolute;
    top: 20px;
    left: 20px;
}
.wpcf7-not-valid-tip {
    color: #000;
    font-size: 1em;
    font-weight: 600;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: transparent;
    color: #ffb900;
    background: #000;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    background: #fff;
}


/* Service Page  */
.serv-row{
    row-gap: 40px !important;
}

/* Single Service Page   */
.single-service .about-img{
    padding-top: 86%;
}


/* CMS Template  */
.inner_con ul, .inner_con ol{
    padding-left: 20px;
}
.inner_con img{
    max-height: 400px;
    object-fit: contain;
    margin: 20px 0;
}
.inner_con h2{
    font-weight: 700;
    margin-top: 20px;
}

/* Modal Form  */
.custom-modal{
    background: #212121df;
}
.modal-header {
    background: var(--red);
}
.modal-open{
    padding-right: 0 !important;
}
.modal-header h5{
    color: var(--white);
}
.modal-form{
    background: var(--light-grey);
    padding: 40px;
}
.modal-form .form-group{
    margin-bottom: 1rem;
}
.modal-form .form-control, .modal-form textarea, .es-email{
    border: 1px solid #ad8c8240 !important;
    border-radius: 4px !important;
    color: var(--black) !important;
    background: #ffffffbd;
    font-size: 13px;
}
.modal-form label{
    color: var(--red);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 13px;
}
.modal-form .bi{
    color: var(--darkgrey);
    top: 28px !important;
    left: 12px;
}
.modal-form::placeholder{
    color: var(--black);
}

@media (min-width: 576px){
    .modal-dialog {
        max-width: 800px;
    }
}