@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');

:root{
    --primary-color: #E42C20;
    --secondary-color: #242424;
}

body{
    font-family: "Outfit", sans-serif;
    color: #111;
    font-weight: 400;
}

h1,h2,h3,h4,h5,h6{
    color: #111;
    font-family: "Archivo Black", sans-serif;
}

.heading-font{
    font-family: "Archivo Black", sans-serif;
}

ul, ol{
    list-style: none;
}

p:last-child{
    margin-bottom: 0;
}
a{
    color: inherit;
    text-decoration: none;
}

img{
    max-width: 100%;
}

ul,ol,figure{
    margin: 0;
}

.fw-medium{
    font-weight: 500;
}

.bg-primary{
    background-color: var(--primary-color)!important;
}
.bg-secondary{
    background-color: var(--secondary-color)!important;
}
.bg-light{
    background-color: #eee!important;
}
.text-primary{
    color: var(--primary-color)!important;
}

.btn{
    text-wrap: nowrap;
    display: inline-block;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 0;
}
.btn.btn-primary{
    background-color: var(--primary-color)!important;
}
.btn.btn-primary:hover{
    background-color: var(--secondary-color)!important;
}
.btn.btn-secondary{
    background-color: var(--secondary-color)!important;
}
.btn.btn-secondary:hover{
    background-color: var(--primary-color)!important;
}
.btn.rounded-btn{
    border-radius: 100px;
}

.section-block{
    padding-top: 80px;
    padding-bottom: 80px;
}

div[class*="swiper-button"]::after{
    display: none;
}

.heading-style{
    padding-top: 30px;
}
.heading-style .title{
    position: relative;
    font-family: "Outfit", sans-serif;
    font-size: 45px;
}
.heading-style .sub-title{
    font-size: 32px;
}
.heading-style .number{
    position: relative;
    display: inline-block;
    z-index: 1;
}
.heading-style .number::after{
    content: attr(data-number);
    color: #D0D0D0;
    font-family: "Aclonica", sans-serif;
    font-size: 8rem;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -48%);
    z-index: -1;
}
.heading-style .number.light::after{
    color: #FFE7E5;
}
.heading-style .number.dark::after{
    color: #323232;
}
.heading-style .highlight{
    background-color: #D9D9D9;
    padding: 2px 25px;
    border-radius: 100px;
}

.list-style-1 li{
    font-size: 16px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}
.list-style-1 li::before{
    content: "";
    width: 17px;
    height: 17px;
    background: url(../images/icons/checked-icon-color.svg) no-repeat center / contain;
    position: absolute;
    top: 5px;
    left: 0;
}
.list-style-1 li:last-child{
    margin-bottom: 0;
}

/* slider-navigation */
.slider-navigation{
    position: absolute;
    bottom: 0;
}
.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next{
    width: auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
}
.slider-navigation .swiper-pagination{
    position: relative;
    width: auto;
    bottom: 2px;
}




/* -- Header -- */
header{
    position: relative;
    background-color: #fff;
    overflow-x: clip;
    z-index: 100;
    box-shadow: 0 0 10px -4px rgba(0, 0, 0, 0);
    z-index: 10;
    transition: all 0.3s ease-in-out;
}
header .top-info-box{
    padding: 16px 0;
}
header .top-info-box ul{
    display: flex;
    justify-content: center;
}
header .top-info-box ul li{
    position: relative;
    font-size: 18px;
    padding: 0 10px;
}
header .top-info-box ul li a{
    display: block;
}
header .top-info-box ul li:not(:last-child)::after{
    content: "|";
    position: absolute;
    top: 0;
    right: -3px;
    color: #727272;
    font-weight: 300;
}
/* navbar */
header .navbar-brand{
    position: absolute;
    top: 0;
    background-color: #fff;
    width: 180px;
    padding: 15px 20px;
    border-radius: 0 0 28px 28px;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}
header .navbar .nav-item{
    margin: 2px 10px;
}
header .navbar .nav-link{
    color: #141414;
    font-size: 17px;
}
header .navbar .nav-link.active{
    font-weight: 700;
}
header .navbar-nav{
    justify-content: space-evenly;
    padding-left: 200px;
    padding-right: 100px;
}
header nav.navbar .rounded-btn{
    position: relative;
    z-index: 1;
}
header nav.navbar .rounded-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    right: 0;
    background-color: #fff;
    width: 900px;
    height: calc(100%);
    left: 0;
    border-radius: 100px 0 0 100px;
    z-index: -1;
}
/* button-group */
header .button-group{
    display: flex;
    justify-content: space-between;
    gap: 35px;
}
header .button-group .navbar-toggler{
    color: #fff;
    font-size: 1.5rem;
    line-height: normal;
    border: none;
}
.navbar-toggler:focus{
    box-shadow: none;
}

header.sticky{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    box-shadow: 0 0 15px -4px rgba(0, 0, 0, 0.5);
}
header.sticky .navbar-brand{
    width: 125px;
    padding: 10px 15px;
    border-radius: 0 0 20px 20px;
}


/* -- Banner -- */
.banner-section{
    overflow: hidden;
    border-radius: 0 0 200px 0;
}
/* slider */
.banner-section .swiper-wrapper .swiper-slide{
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 85vh;
    z-index: 1;
}
/* .banner-section .swiper-wrapper .swiper-slide.bg-overlay::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90.09deg, #000000 0%, rgba(255, 255, 255, 0) 99.92%);
    width: 100%;
    height: 100%;
    z-index: -1;
} */

.banner-section .caption{
    color: #fff;
}
.banner-section .caption .title{
    color: #fff;
    font-size: 42px;
    text-transform: uppercase;
}
.banner-section .slider-navigation{
    bottom: 10px;
}
.banner-section .slider-navigation .swiper-pagination-bullet{
    background-color: #fff;
}



/* -- services-section -- */
.services-section .service-column{
    position: relative;
    border: 1px solid var(--primary-color);
    height: calc(100% - 50px);
    padding: 70px 25px 20px;
    margin: 50px 10px 0;
    box-shadow: 0 0 10px -4px rgba(0, 0, 0, 0);
    transition: all 0.3s ease-in-out;
}
.services-section .service-column *{
    transition: all 0.3s ease-in-out;
}
.services-section .service-column figure{
    position: absolute;
    top: -50px;
    width: 110px;
    left: 50%;
    transform: translateX(-50%) scale(1);
}
.services-section .service-column .title{
    font-family: "Outfit", sans-serif;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
/* text-info */
.services-section .text-info{
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 50px);
    padding: 15px 80px;
    margin: 50px 0 0;
}
.services-section .text-info .title{
    color: #fff;
    font-size: 35px;
}
.services-section .service-column:hover{
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px -15px rgba(0, 0, 0, 0.8);
}
.services-section .service-column:hover figure{
    transform: translateX(-50%) scale(1.07);
}


/* -- why-choose-section -- */
.why-choose-section .column-wrapper{
    position: relative;
}
.why-choose-section .column-wrapper::before{
    content: "";
    position: absolute;
    top: 20px;
    right: 2%;
    width: 98%;
    height: calc(100% - 40px);
    border: 1px solid var(--primary-color);
    border-radius: 0 30px 30px 0;
}
.why-choose-section .column-wrapper .content .list-style-1 li:not(:last-child){
    margin-bottom: 20px;
}
.why-choose-section .column-wrapper figure{
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.why-choose-section .column-wrapper figure img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* -- cta-wrap -- */
.cta-wrap .title{
    font-size: 35px;
}
.cta-wrap .btn{
    font-size: 18px;
    padding: 0.5rem 1.1rem;
}


/* -- testimonial-section -- */
.testimonial-section{
    overflow: hidden;
}
.testimonial-section .testimonialSwiper{
    position: relative;
    padding: 100px 0 80px;
    margin: 0 -50px;
}
.testimonial-section .testimonialSwiper::before,
.testimonial-section .testimonialSwiper::after{
    content: "";
    display: inline-block;
    width: 150px;
    height: 130px;
    background: url(../images/ornament-1.svg) no-repeat center / cover;
    position: absolute;
    top: 15px;
    right: calc(31% - 20px);
    z-index: -1;
}
.testimonial-section .testimonialSwiper::after{
    background: url(../images/ornament-2.svg) no-repeat center / cover;
    position: absolute;
    top: auto;
    bottom: 0;
    left: calc(21% - 20px);
}
.testimonial-section .testimonialSwiper .swiper-wrapper{
    height: auto;
    align-items: center;
}
.testimonial-section .testimonialSwiper .swiper-wrapper .swiper-slide{
    height: auto!important;
}

.testimonial-section .tesmonial-block{
    background-color: #fff;
    color: #525252;
    height: 100%;
    display: flex;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 20px auto 30px;
    transition: all 0.3s ease-in-out;
}
.testimonial-section .tesmonial-block *{
    transition: all 0.3s ease-in-out;
}
.testimonial-section .tesmonial-block .date{
    font-size: 12px;
    margin-bottom: 15px;
}
.testimonial-section .tesmonial-block .username{
    color: #111;
    font-size: 12px;
    margin-bottom: 15px;
}
.testimonial-section .tesmonial-block figure{
    width: 35%;
    height: 240px;
    margin-right: 20px;
}
.testimonial-section .tesmonial-block figure img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testimonial-section .tesmonial-block .content{
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-section .tesmonial-block:hover{
    box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.5);
}

.testimonial-section .slider-navigation .swiper-button-prev,
.testimonial-section .slider-navigation .swiper-button-next{
    width: 30px;
    color: var(--primary-color);
}
.testimonial-section .slider-navigation .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background-color: #C7C7C7;
    opacity: 1;
    margin: 0 6px;
}
.testimonial-section .slider-navigation .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}


/* -- process-section -- */
.process-section .column-box{
    color: #fff;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease-in-out;
}
.process-section .column-box *{
    transition: all 0.3s ease-in-out;
}
.process-section .column-box .icon{
    flex: 0 0 auto;
    background-color: var(--primary-color);
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 55px;
    border-radius: 100%;
    transform: scale(1);
}
.process-section .column-box .content{
    font-weight: 15px;
    font-weight: 300;
}

.process-section .column-box .content .title{
    font-family: "Outfit", sans-serif;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
}
.process-section .column-box:hover .icon{
    background-color: #141414;
    transform: scale(1.1);
}

/* -- about-section -- */
.about-section .column-block{
    position: relative;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}
.about-section .column-block *{
    transition: all 0.3s ease-in-out;
}
.about-section .column-block .title{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}
.about-section .column-block .icon{
    margin: 0 auto 15px;
    background-color: #DA1D11;
    text-align: center;
    width: 80px;
    height: 80px;
    line-height: 76px;
    border-radius: 100%;
}
.about-section .column-block .icon img{
    max-width: 70%;
}
.about-section .column-block:hover{
    top: -10px;
    background-color: var(--secondary-color);
}
.about-section .column-block:hover .icon{
    background-color: #323232;
}


/* -- .cta-wrap.cta-design-1 -- */
.cta-wrap.cta-design-1 .wrapper{
    background-color: #EEE;
    border-radius: 30px 30px 0 0;
    padding: 40px 80px 50px;
}
.cta-wrap.cta-design-1 p:not(.title){
    font-size: 20px;
}


/* -- footer -- */
footer .links-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
footer .links-list li{
    margin: 0 6px;
}
footer .links-list li a{
    display: block;
    padding: 2px 4px;
    text-decoration: none;
    text-underline-offset: 2px;
    transition: all 0.3s ease-in-out;
}
footer .links-list li a:hover{
    text-decoration-color: #727272!important;
    text-decoration: underline;
    text-underline-offset: 4px;
}
/* icon-text */
footer .icon-text{
    font-size: 18px;
}
footer .icon-text .icon{
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background-color: #141414;
    border-radius: 100%;
}
/* branches */
footer .branches{
    font-size: 20px;
}
footer .branches .title{
    font-family: "Outfit", sans-serif;
    color: #fff;
    font-size: 20px;
}
footer .branches ul{
    display: flex;
    border: 1px solid #525252;
}
footer .branches ul li{
    flex: 0 0 calc(100% / 4);
    padding: 20px 20px;
    border-right: 1px solid #525252;
}
footer .branches ul li:last-child{
    border-right: 0;
}
footer .branches ul li .location{
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 3px;
}
footer .branches ul li .phone{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
footer .branches ul li a{
    color: #fff;
}
/* call-btn */
footer .icon-text.call-btn{
    display: inline-flex;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
}
footer .icon-text.call-btn .icon{
    font-size: 22px;
    width: 42px;
    height: 42px;
    line-height: 42px;
}

footer .copyright{
    background-color: #141414;
}


/* -- whatsapp-btn -- */
.whatsapp-btn{
    position: fixed;
    bottom: 80px;
    right: 40px;
    width: 55px;
    height: 55px;
    z-index: 50;
}


/* -- page-banner-section -- */
.page-banner-section{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0 0 200px 0;
}
.page-banner-section .title{
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 0;
}


/* -- contact us page -- */
.form-wrapper{
    background-color: #FAFAFA;
    padding: 35px 35px;
    border-radius: 50px 0 0 0;
}
.form-wrapper .form-group label{
    position: relative;
    font-size: 17px;
    margin-bottom: 5px;
}
.form-wrapper .form-group label::after{
    content: "*";
    color: var(--primary-color);
}
.form-wrapper .form-control{
    background-color: transparent;
    padding: 0.6rem 0.75rem;
    border-radius: 0;
    border-color: #bbb;
}
.form-wrapper .form-control:focus{
    border-color: var(--secondary-color);
    background-color: transparent;
    box-shadow: none;
}
.form-wrapper textarea.form-control{
    height: 140px;
}
/* contact-details */
.contact-details{
    color: #323232;
    background-color: #F5F5F5;
    padding: 35px 35px;
    border-radius: 0 50px 0 0;
}
.contact-details .title{
    font-family: "Outfit", sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    padding: 4px 15px 6px;
    background: linear-gradient(90.19deg, #E42C20 73.01%, rgba(255, 255, 255, 0) 99.85%);
}
.contact-details ul li{
    font-size: 18px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}
.contact-details ul li .fa{
    color: var(--primary-color);
    position: absolute;
    top: 4px;
    left: 0;
}
.contact-details ul li:last-child{
    margin-bottom: 0;
}
/* branches-section */
.branches-section .card-design{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #323232;
    font-size: 15px;
    height: 100%;
}
.branches-section .card-design .branch-name{
    font-family: "Outfit", sans-serif;
    font-size: 22px;
}
.branches-section .card-design .branch-name i{
    color: var(--primary-color);
    margin-right: 6px;
}
.branches-section .card-design .content{
    height: 100%;
    padding: 18px 20px;
    border: 1px solid var(--primary-color);
    border-bottom: 0;
}
.branches-section .card-design .contact-number a{
    display: block;
    font-size: 17px;
    font-weight: 600;
    background-color: #EEEEEE;
    padding: 10px 25px;
    transition: all 0.3s ease-in-out;
}
.branches-section .card-design .contact-number .icon{
    display: inline-block;
    font-size: 14px;
    text-align: center;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 100%;
    color: #fff;
    background-color: var(--primary-color);
    margin-right: 6px;
    transition: all 0.3s ease-in-out;
}
.branches-section .card-design:hover .contact-number a{
    color: #fff;
    background-color: var(--primary-color);
}
.branches-section .card-design:hover .contact-number a .icon{
    color: var(--primary-color);
    background-color: #fff;
}


/* -- Services page -- */
.service-block{
    height: 100%;
    background-color: #F5F5F5;
    border-radius: 0 0 21px 21px;
    box-shadow: 0 5px 10px -4px rgba(0, 0, 0, 0);
    transition: all 0.3s ease-in-out;
}
.service-block *{
    transition: all 0.3s ease-in-out;
}
.service-block figure{
    overflow: hidden;
}
.service-block figure img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1);
}
.service-block .content{
    padding: 22px 25px 30px;
}
.service-block .content .title{
    color: var(--primary-color);
    font-size: 22px;
}
.service-block .content .list-style-1 li::before{
    width: 21px;
    height: 21px;
    background: url(../images/icons/double-check-icon.svg) no-repeat center / contain;
    top: 3px;
}
.service-block:hover{
    background-color: #fff;
    box-shadow: 0 5px 20px -6px rgba(0, 0, 0, 0.3);
}
.service-block:hover figure img{
    transform: scale(1.05);
}
/* card-design-1 */
.offers-section .card-design-1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    text-align: center;
    font-weight: 500;
    background-color: var(--primary-color);
    padding: 20px 25px;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}
.offers-section .card-design-1 .title{
    font-family: "Outfit", sans-serif;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}
.offers-section .card-design-1:hover{
    background-color: var(--secondary-color);
    border-radius: 15px;
}


/* -- gallery-wrapper -- */
.gallery-wrapper{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    /* display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: 20px; */
	grid-auto-flow: dense;

    position: relative;
    width: 100%;
}
.gallery-wrapper figure{
    height: calc(250px - 10px);
}
.gallery-wrapper figure .img-block{
    display: block;
    position: relative;
    height: 100%;
}
.gallery-wrapper figure .img-block img{
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
}
.gallery-wrapper figure:first-child{
    grid-row: span 2;
    height: 500px;
}
.gallery-wrapper figure:nth-child(8){
    grid-row: span 2;
    height: 500px;
}
.gallery-wrapper figure:nth-child(11){
    grid-row: span 2;
    height: 500px;
}
.gallery-wrapper figure:nth-child(18){
    grid-row: span 2;
    height: 500px;
}
.gallery-wrapper figure:nth-child(21){
    grid-row: span 2;
    height: 500px;
}


/* -- about-wrapper -- */
.about-wrapper{
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
}
.about-wrapper .line{
    border-top-color: var(--primary-color);
    opacity: 1;
}
.side-img{
    border-radius: 0 0 0 100px;
    overflow: hidden;
}
.about-wrapper .why-choose-content .list-style-1{
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
}
.about-wrapper .why-choose-content .list-style-1 li{
    font-size: 20px;
    padding-left: 30px;
    margin-bottom: 14px;
}
.about-wrapper .why-choose-content .list-style-1 li::before{
    width: 23px;
    height: 23px;
    background: url(../images/icons/check-icon.svg) no-repeat center / contain;
    top: 2px;
}
.about-wrapper .why-choose-content .list-style-1 li:last-child{
    margin-bottom: 0;
}
/* mission-section */
.about-wrapper .mission-section .sub-title{
    position: relative;
}
.about-wrapper .mission-section .title{
    font-size: 33px;
}





/* -- Responsive -- */
@media only screen and (min-width: 992px){
    header .navbar .nav-link,
    header .navbar .nav-link.active{
        color: #fff;
    }
}

@media only screen and (max-width: 1199px){
    header .navbar-brand{
        width: 160px;
        box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.1);
    }
    header .navbar-nav {
        padding-left: 180px;
        padding-right: 0px;
    }
    header .navbar .nav-item {
        margin: 2px 0;
    }

    .services-section .service-column{
        margin: 50px 0px 0;
    }

    .testimonial-section .tesmonial-block{
        font-size: 15px;
    }

    .form-wrapper,
    .contact-details{
        padding: 25px 25px;
    }
}

@media only screen and (max-width: 991px){
    header .top-info-box ul{
        justify-content: end;
    }
    
    header .navbar-nav{
        padding: 55px 30px 0;
    }
    header .navbar .navbar-collapse{
        position: absolute;
        top: 54px;
        left: 5%;
        width: 90%;
        background-color: #fafafa;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 20px -6px rgba(0, 0, 0, 0.3);
    }

    .heading-style {
        padding-top: 20px;
    }
    .heading-style .title{
        font-size: 35px;
    }
    .heading-style .number::after{
        font-size: 7rem;
    }
    .heading-style .sub-title {
        font-size: 28px;
    }

    .banner-section .swiper-wrapper .swiper-slide{
        padding: 0 30px;
        height: 72vh;
    }
    .banner-section .caption .title{
        font-size: 30px;
    }
    .banner-section .slider-navigation{
        padding: 0 30px;
    }

    .services-section .service-column figure{
        width: 95px;
    }
    .services-section .service-column .title{
        font-size: 18px;
    }
    .services-section .service-column {
        font-size: 15px;
        padding: 55px 15px 15px;
        margin: 50px 0px 0;
    }
    
    .services-section .text-info .title{
        font-size: 28px;
    }

    .why-choose-section .column-wrapper::before{
        left: 2%;
        width: 96%;
        top: -20px;
        height: 100%;
        border-radius: 0 0 30px 30px;
    }

    .cta-wrap .title {
       font-size: 30px;
    }

    footer .branches {
        font-size: 18px;
    }
    footer .branches ul{
        flex-wrap: wrap;
        border-bottom: 0;
    }
    footer .branches ul li{
        flex: 0 0 calc(100% / 2);
        border-bottom: 1px solid #525252;
    }
    footer .branches ul li:nth-child(even){
        border-right: 0;
    }
    footer .branches ul li .location{
        font-size: 18px;
    }
    footer .icon-text.call-btn{
        font-size: 26px;
    }
    footer .icon-text.call-btn .icon {
        font-size: 19px;
        width: 38px;
        height: 38px;
        line-height: 38px;
    }

    .page-banner-section{
        height: 280px;
        border-radius: 0 0 160px 0;
    }
    .page-banner-section .title {
        font-size: 30px;
    }
    
    .about-wrapper{
        font-size: 18px;
    }
    .about-wrapper .why-choose-content .list-style-1 li{
        font-size: 18px;
    }
    
    .gallery-wrapper{
        grid-gap: 10px;
    }
    .gallery-wrapper figure:first-child,
    .gallery-wrapper figure:nth-child(8),
    .gallery-wrapper figure:nth-child(11),
    .gallery-wrapper figure:nth-child(18),
    .gallery-wrapper figure:nth-child(21){
        grid-row: span 2;
        height: 350px;
    }
    .gallery-wrapper figure{
        height: calc(175px - 5px);
    }
}

@media only screen and (max-width: 767px){
    .section-block {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .heading-style .title {
        font-size: 30px;
    }
    .heading-style .sub-title {
        font-size: 25px;
    }
    .heading-style .number::after {
        font-size: 5rem;
    }

    header .top-info-box {
        padding: 10px 0;
    }
    header .top-info-box ul li{
        font-size: 16px;
    }
    header .navbar-brand{
        width: 130px;
        padding: 11px 15px;
        border-radius: 0 0 22px 22px;
    }
    .list-style-1 li::before {
        top: 6px;
        left: 2px;
        width: 15px;
        height: 16px;
    }

    .banner-section{
        border-radius: 0 0 150px 0;
    }
    .banner-section .swiper-wrapper .swiper-slide{
        padding: 0 20px;
        height: 54vh;
    }
    .banner-section .caption{
        font-size: 14px;
    }
    .banner-section .caption .title{
        font-size: 20px;
    }
    .banner-section .caption .btn{
        font-size: 14px;
    }
    .banner-section .slider-navigation{
        padding: 0 20px;
    }

    .services-section .text-info{
        height: 100%;
        padding: 15px 30px;
        margin: 0 0;
    }
    .services-section .service-column .title {
        font-size: 17px;
    }
    
    .why-choose-section .column-wrapper::before{
        top: -10px;
    }

    .testimonial-section .testimonialSwiper{
        padding: 50px 0 50px;
        margin: 0 -20px;
    }
    .testimonial-section .testimonialSwiper::before,
    .testimonial-section .testimonialSwiper::after{
        display: inline-block;
        width: 100px;
        height: 90px;
        top: 8px;
        right: calc(31% - 20px);
    }
    .testimonial-section .testimonialSwiper::after{
        top: auto;
        bottom: 0;
        left: calc(21% - 20px);
    }
    .testimonial-section .tesmonial-block .date{
        margin-bottom: 8px;
    }
    .testimonial-section .tesmonial-block .username{
        margin-bottom: 6px;
    }

    .cta-wrap .title {
        font-size: 26px;
        line-height: normal;
    }

    .cta-wrap.cta-design-1 .wrapper{
        padding: 20px 40px 30px;
    }
    .cta-wrap.cta-design-1 p:not(.title){
        font-size: 17px;
    }

    footer .icon-text{
        font-size: 16px;
    }
    footer .icon-text .icon{
        width: 27px;
        height: 27px;
        line-height: 27px;
    }
    footer .branches .title{
        font-size: 18px;
    }
    footer .icon-text.call-btn{
        font-size: 26px;
    }

    .page-banner-section{
        height: 240px;
        border-radius: 0 0 130px 0;
    }
    .page-banner-section .title {
        font-size: 26px;
    }

    .about-wrapper .why-choose-content .list-style-1 li{
        padding-left: 27px;
    }
    .about-wrapper .why-choose-content .list-style-1 li::before {
        width: 19px;
        height: 19px;
        top: 4px;
    }
    .about-wrapper .mission-section .title {
        font-size: 28px;
    }
    
    .service-block .content .title{
        font-size: 19px;
    }
    .service-block .content {
        padding: 18px 20px 25px;
    }
    .offers-section .card-design-1{
        padding: 15px 20px;
    }
    .offers-section .card-design-1 .title{
        font-size: 25px;
    }

    .gallery-wrapper figure:first-child,
    .gallery-wrapper figure:nth-child(8),
    .gallery-wrapper figure:nth-child(11),
    .gallery-wrapper figure:nth-child(18),
    .gallery-wrapper figure:nth-child(21){
        grid-row: span 2;
        height: 270px;
    }
    .gallery-wrapper figure{
        height: calc(135px - 5px);
    }
}

@media only screen and (max-width: 575px){
    .section-block{
        padding: 60px 10px;
    }

    .heading-style .title {
        font-size: 26px;
    }
    .heading-style .sub-title {
        font-size: 22px;
    }
    .heading-style .number::after {
        font-size: 4rem;
    }
    .heading-style {
        padding-top: 10px;
    }
    .heading-style .highlight{
        font-size: 20px;
    }

    header .top-info-box ul li:not(.number){
        display: none;
    }
    header .top-info-box ul li::after{
        display: none;
    }
    header .navbar .navbar-collapse{
        left: 0;
        width: 100%;
    }
    header .button-group{
        gap: 20px;
    }
    header nav.navbar .rounded-btn{
        font-size: 0.9rem;
    }
    
    .banner-section{
        border-radius: 0 0 90px 0;
    }
    .banner-section .swiper-wrapper .swiper-slide {
        padding: 0 0;
        height: 35vh;
    }
    .banner-section .caption .title {
        font-size: 17px;
    }
    .banner-section .caption p{
        display: none;
    }
    .banner-section .caption .btn{
        padding: 0.2rem 0.7rem;
    }
    .banner-section .caption .btn img{
        display: none;
    }
    .banner-section .slider-navigation{
        padding: 0 0;
    }

    .services-section .text-info {
        font-size: 16px;
    }
    .services-section .text-info .title {
        font-size: 24px;
    }

    .testimonial-section .tesmonial-block{
        margin: 10px auto 20px;
    }
    .testimonial-section .tesmonial-block figure{
        display: none;
    }
    .testimonial-section .tesmonial-block .content{
        width: 100%;
        padding: 20px;
    }
    
    .process-section .column-box{
        gap: 13px;
    }
    .process-section .column-box .icon{
        width: 50px;
        height: 50px;
        line-height: 45px;
    }
    .process-section .column-box .icon img{
        width: 70%;
    }
    .process-section .column-box .content .title{
        font-size: 20px;
    }

    .about-section .fs-5 {
        font-size: 1.1rem !important;
    }
    .about-section .column-block .icon{
        width: 70px;
        height: 70px;
        line-height: 66px;
        margin: 0 auto 10px;
    }
    .about-section .column-block .title{
        font-size: 18px;   
    }

    .cta-wrap .btn{
        font-size: 16px;
    }
     .cta-wrap .title {
        font-size: 22px;
    }

    footer .branches {
        font-size: 16px;
    }
    footer .branches ul li{
        padding: 12px 12px;
    }
    footer .branches ul li .location{
        margin-bottom: 8px;
    }
    footer .branches ul li .phone{
        gap: 4px;
    }
    footer .icon-text.call-btn .icon {
        font-size: 16px;
        width: 34px;
        height: 34px;
        line-height: 34px;
    }
    footer .icon-text.call-btn {
        font-size: 24px;
    }

    .page-banner-section{
        height: 160px;
        border-radius: 0 0 60px 0;
    }
    .page-banner-section .title {
        font-size: 24px;
    }

    .about-wrapper {
        font-size: 17px;
        line-height: 28px;
    }
    
    .gallery-wrapper figure:first-child,
    .gallery-wrapper figure:nth-child(8),
    .gallery-wrapper figure:nth-child(11),
    .gallery-wrapper figure:nth-child(18),
    .gallery-wrapper figure:nth-child(21){
        grid-row: span 2;
        height: 250px;
    }
    .gallery-wrapper figure{
        height: calc(125px - 5px);
    }

    .branches-section .card-design .branch-name{
        font-size: 19px;
    }

    .whatsapp-btn{
        bottom: 90px;
    }
}