
@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*{
    font-family: "Wix Madefor Display", sans-serif;
    margin: 0;padding: 0;
}
:root{
    --thm-font: "Wix Madefor Display", sans-serif;
    --thm-base: #f48834;
    --thm-base-light: #f4883450;
    --thm-base2: #051B32;
    --thm-base2-light: #051B3250;
    --thm-black: #000000;
    --thm-black-ligth: #00000040;
    --thm-gray: #999999;
    --thm-white: #ffffff;
    --thm-section-bg2: #F9F9F9;
    --thm-section-bg: #E1DFDB;
    --thm-light: #c7c7c7;
    --thm-footer: #e2e2e2;
    --thm-primary: #666666;
}
h1,
h2,
h3,
h4,
h5,
h6,
p{ margin: 0; }
ul{ margin: 0; padding: 0; }
li{ list-style: none; }
h1{ font-size: 50px; font-weight: 600;} 
h2{ font-size: 35px; font-weight: 600;} 
h3{ font-size: 24px;} 
h4{ font-size: 22px; font-weight: 600;} 
h5{ font-size: 20px; font-weight: 500;} 
h6{ font-size: 16px;}
a{ color: var(--thm-black); text-decoration: none; font-weight: 500; transition: 0.5s;}
a:hover {color: var(--thm-base); }
.mb-80{ margin-bottom: 80px;}
.mt-80{ margin-top: 80px;}
.container{ max-width: 1250px;}


.heading-tag {
    font-size: 15px;
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--thm-base2);
}
.heading-tag::before {
    content: "";
    height: 7px;
    width: 28px;
    background-color: var(--thm-base);
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translatey(-50%);
    border-radius: 20px;
}
.heading-tag::after {
    content: "";
    height: 15px;
    width: 38px;
    position: absolute;
    border: 1px solid var(--thm-base);
    left: 0px;
    top: 50%;
    transform: translatey(-50%);
    border-radius: 20px;
}
.heading {
    /* font-family: "Playfair Display", serif; */
    font-size: 35px;
    color: var(--thm-base2);
    font-weight: 500;
    margin-bottom: 20px;
}

.description {
    font-size: 17px;
    color: var(--thm-primary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.button {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-base);
    border: 1px solid var(--thm-base);
    padding: 12px 20px;
    transition: 0.5s;
}
.button i{
    font-size: 16px;
    transform: rotate(-35deg);
    transition: 0.4s;
}
.button:hover {
    color: var(--thm-base2);
    background-color: var(--thm-base);
}
.button:hover i{
    transform: rotate(0deg);
}
.button.style1{
    color: var(--thm-white);
    background-color: var(--thm-base);
}
.button.style1:hover{
    color: var(--thm-white);
    background-color: var(--thm-base2);
    border: 1px solid var(--thm-base2);
}
.button.style2{
    color: var(--thm-base2);
    border: 1px solid var(--thm-base2);
    background-color: transparent;
}
.button.style2:hover{
    color: var(--thm-base2);
    background-color: var(--thm-base);
    border: 1px solid var(--thm-base);
}
.button.style3{
    background-color: transparent;
    color: var(--thm-base2);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    border: 1px solid var(--thm-base2);
}
.button.style3 i{
    transform: none;
}
.button.style3:hover{
    background-color: var(--thm-base2);
    color: var(--thm-white);
}

.owl-dots {
    text-align: center !important;
}
.owl-dot {
    width: 12px;
    height: 12px;
    margin: auto;
    background-color: var(--thm-base2) !important;
    margin: 0 5px;
    opacity: 0.4;
    margin-top: 20px !important;
    /* border-radius: 10px; */
}
.owl-dots .active {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: var(--thm-base) !important;
}


.top-header-bg {
    background-color: var(--thm-base2);
}
.top-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}
.top-header .location{
    display: flex;
    gap: 15px;
}
.top-header .location a {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--thm-white);
}
.top-header .location a i{
    font-size: 20px;
    color: var(--thm-base);
}
.top-header div a:hover {
    color: var(--thm-base);
}
.top-header .location a:first-child {
    padding-right: 15px;
    border-right: 1px solid var(--thm-gray);
}
.top-header .social-media{
    display: flex;
    gap: 10px;
}
.top-header .social-media i{
    font-size: 18px;
    border: 1px solid var(--thm-footer);
    padding: 6px 7px;
    color: var(--thm-footer);
    background-color: var(--thm-base2-light);
    transition: 0.5s;
}
.top-header .social-media .fb{
    padding: 6px 9px;
}
.top-header .social-media a i:hover{
    border: 1px solid var(--thm-base);
    color: var(--thm-base2);
    transform: rotate(360deg);
    background-color: var(--thm-base);
}
.navbar-bg{
    background-color: var(--thm-white);
}
.nav-bar {
    display: flex;
    padding: 14px 0px;
    justify-content: space-between;
    align-items: center;
}
.nav-bar .menu {
    display: flex;
    gap: 25px;
}
.nav-bar .menu > li{
    overflow: hidden;
    padding-bottom: 5px;
   
}
.nav-bar .menu > li > a{
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}
.drop-down-arrow{
    display: none;
}
.nav-bar .menu > li > a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--thm-base);
    bottom: 0px;
    left: -100%;
    transition: 0.5s;
    z-index: -1;
}
.nav-bar .menu > .drop-down a::before{
    display: none;
}
.nav-bar .menu > li > a:hover::before{
    left: 0;
    z-index: 2;
}
.nav-bar .menu > li > .active{
    color: var(--thm-base);
    border-bottom: 2px solid var(--thm-base);
}
.nav-bar .menu > li .active::before{
   background-color: transparent;
}
.nav-bar .call-section{
    display: flex;
    gap: 10px;
    align-items: center;
}
.nav-bar .call-section a{
    font-weight: 600;
}
.nav-bar .call-section a img{
    border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--thm-base);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}
.nav-bar .call-section .call-text {
    color: var(--thm-gray);
    font-weight: 500;
    opacity: 0.7;
}

 

.banner .banner-silder-section{
    position: relative;
}
.banner .banner-silder-section .banner-silder img{
    max-height: 85vh;
}
.banner .banner-silder-section .banner-content {
    width: 35%;
    position: absolute;
    top: 40%;
    transform: translateY(-40%) !important;
    z-index: 3;
}
.banner .banner-silder-section .banner-content h1 {
    font-size: 55px;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 15px;
}
.banner .banner-silder-section .banner-content h1 .thm-color{
    color: var(--thm-base);
}
.banner .banner-silder-section .banner-content .description {
    font-size: 18px;
    color: var(--thm-white);
    margin-bottom: 20px;
    border-left: 2px solid var(--thm-base);
    padding-left: 20px;
}
.banner .banner-silder-section .banner-content .button{
   margin-left: 20px;
}
.banner .banner-silder .owl-dots {
    display: none;
}
.banner .banner-silder .owl-nav .owl-prev{
    position: absolute;
    font-size: 45px !important;
    color: var(--thm-gray) !important;
    background-color: var(--thm-black-ligth) !important;
    padding: 0px 18px 10px 18px !important;
    border-radius: 0px 8px 8px 0px;
    top: 45%;
    transform: translateY(-45%);
    left: 0;
    transition: 0.5s;
}
.banner .banner-silder .owl-nav .owl-next{
    position: absolute;
    font-size: 45px !important;
    color: var(--thm-gray) !important;
    background-color: var(--thm-black-ligth) !important;
    padding: 0px 18px 10px 18px !important;
    border-radius: 8px 0px 0px 8px;
    top: 45%;
    transform: translateY(-45%);
    right: 0;
}
.banner .banner-silder .owl-nav .owl-prev:hover,
.banner .banner-silder .owl-nav .owl-next:hover{
    color: var(--thm-black) !important;
    background-color: var(--thm-base) !important;
}

.about-us .about-btn{
    display: flex;
    gap: 15px;
    align-items: center;
}
.about-us .row div {
    margin-bottom: 20px;
}
.about-us h4{
    display: inline-block;
    font-weight: 600;
    color: var(--thm-base2);
    margin-bottom: 10px ;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--thm-base);
}


.why-choose-us{
    padding: 80px 0px;
    background-image: url(../images/bg12.png);
    /* background-repeat: no-repeat;
    background-position: left bottom; */
    /* background-color: var(--thm-section-bg); */
}
.why-choose-us .wcu-btn{
    text-align: center;
    /* background-color: var(--thm-section-bg); */
}
.why-choose-us .wcu-btn a{
   margin: 25px 0px 0px 0px;
   text-align: center;
   padding: 12px 130px;
}
.why-choose-us-items{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.why-choose-us-items .why-choose-us-inner{
    position: relative;
    padding: 25px;
    border: 1px solid var(--thm-gray);
    background-color: #ffffff80;
}
.why-choose-us-items .why-choose-us-inner .description{
    margin-bottom: 0px;
}
.why-choose-us-items .why-choose-us-inner:first-child
/* ,.why-choose-us-items .why-choose-us-inner:last-child */
{
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}
.why-choose-us-items .why-choose-us-inner h4{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--thm-base2);
}
.why-choose-us-items .why-choose-us-inner > h4 > img{
    width: 12%;
    transition: 0.5s;
}
.why-choose-us-items .why-choose-us-inner .num-count{
    position: absolute;
    top: 0;
    right: 0;
    padding:  10px;
    font-size: 25px;
    font-weight: 600;
    opacity: 0.5;
    color: var(--thm-base);
    transition: 0.5s;
    -webkit-text-fill-color: var(--thm-white);
    -webkit-text-stroke-width: 1.3px;
    -webkit-text-stroke-color: var(--thm-base3);
    line-height: 0.8;
    text-transform: uppercase; 
}
.why-choose-us-items .why-choose-us-inner .happy-customer-section {
    text-align: center;
    padding-top: 35px;
}
.why-choose-us-items .why-choose-us-inner .happy-customer-section .home-icon {
    width: 14%;
    margin-bottom: 5px;
}
.why-choose-us-items .why-choose-us-inner .happy-customer-section .text-15k {
    display: flex;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    color: var(--thm-base2);
    margin-bottom: 0px;
}
.why-choose-us-items .why-choose-us-inner .happy-customer-section .happy-cusomer-line {
    color: var(--thm-base2);
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
}
.why-choose-us-items .why-choose-us-inner:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}
/* .why-choose-us-items .why-choose-us-inner:hover .num-count{
    top: 10px;
    right: 10px;
    opacity: 1;
    background-color: var(--thm-base);
} */
.why-choose-us-items .why-choose-us-inner:hover > h4 > img {
    transform: scale(1.2);
}
/* .why-choose-us .div-wcu {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 30px 50px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.why-choose-us .div-wcu .why-choose-us-inner {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.why-choose-us .div-wcu .why-choose-us-inner img {
    width: 20%;
}
.why-choose-us .div-wcu .why-choose-us-inner .wcu-heading {
    font-size: 30px;
    color: var(--thm-base2);
} */

.why-choose-us.why-choose-us-about-page{
    background-image: none;
}
.why-choose-us.why-choose-us-page{
    background-color: var(--thm-white);
    padding: 0px;
    background-image: none;
}
.why-choose-us.why-choose-us-page .why-choose-us-items{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.why-choose-us.why-choose-us-page .why-choose-us-items .why-choose-us-inner:first-child,
.why-choose-us.why-choose-us-page .why-choose-us-items .why-choose-us-inner:last-child{
    border: 1px solid var(--thm-gray);
    box-shadow: none;
}
.why-choose-us.why-choose-us-page .why-choose-us-items .why-choose-us-inner > h4 > img{
    width: 8%;
    transition: 0.5s;
}
.why-choose-us.why-choose-us-page .why-choose-us-items .why-choose-us-inner:hover .num-count{
    top: 8px;
    right: 8px;
    opacity: 1;
    padding: 8px;
    background-color: var(--thm-base-light);
}





/* gallery */
.horizontal:after {content: "";display: flex;clear: both;}
.vertical {float: left;width: 25%;padding: 5px;}
.vertical img {margin-top: 12px;width: 100%;cursor: pointer;}


.custom-container .tabs__buttons--container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    justify-content: center;
    padding: 10px;
    background-color: var(--thm-section-bg) !important;
}
.tabs__tab-btn {
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    background-color: var(--thm-base2);
    color: var(--thm-base);
    margin: 5px 0px;
    border-right: 1px solid var(--thm-light);
}
.tabs__tab-btn:last-child{
    border: none;
}
.tabs__tab-btn--not-selected {
    background-color: var(--thm-white);
    color: var(--thm-base2);
}
.tabs__tab-btn:hover {
    transition: 0.3s;
}
.tabs__tab--hide {
    display: none;
}
.tabs__tab--show {
    display: block;
}
.tabs__tab {
    animation: tabApear 0.6s;
}
@keyframes tabApear {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media(max-width: 720px) {
    .vertical {width: 50%;}
}
/* @media only screen and (max-width: 1450px){
    .tabs__tab-btn {
        padding: 10px;
        font-size: 17px;
    }
}
@media only screen and (max-width: 1024px){
    .tabs__tab-btn {
        padding: 8px;
        font-size: 16px;
    }
}
@media only screen and (max-width: 550px){
    .tabs__buttons--container {
        gap: 8px;
        margin-bottom: 0px;
    }
    .tabs__tab-btn {
        padding: 6px 8px;
        font-size: 12px;
    }
} */

.custom-container .tabs__tab .vision-count{
    padding-left: 10px;
    font-size: 80px;
    font-weight: 700;
    color: var(--thm-base2);
    transition: 0.5s;
    -webkit-text-fill-color: var(--thm-white);
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: var(--thm-base3);
    line-height: 1;
    text-transform: uppercase;
}
.custom-container .tabs__tab .points {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 17px;
    color: var(--thm-primary);
    margin-bottom: 2px;
}
.custom-container .tabs__tab .points i{
    font-size: 18px;
    color: var(--thm-base2);
}

.counter-section{
    padding: 60px 0px 80px 0px;
}
.counter-section .counter-items{
   text-align: center;
   border-right: 1px solid var(--thm-light);
}
.counter-section .counter-items h4{
    display: flex;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    color: var(--thm-base2);
    margin-bottom: 0px;
}
.counter-section .counter-items .counter-title{
    color: var(--thm-base2);
    font-size: 20px;
    font-weight: 600;
    margin-left: 0px;
}
.fun-fact{
    background-image: url(../images/counter-bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */
}
.fun-fact .counter-section .counter-items h4{
    color: var(--thm-white);
}
.fun-fact .counter-section .counter-items .counter-title{
    color: var(--thm-white);
}




/* .our-service-section {
    background-color: var(--thm-section-bg);
    padding: 80px 0px;
    background-image: url(../images/bg-11.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
} */
.our-service-section.our-service-inner{
    background-image: none;
    padding: 0px;
    background-color: var(--thm-white);
}
.our-service-section .service-slide-items {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    margin: 2px;
    background-color: var(--thm-white);
    position: relative;
}
.our-service-section.our-service-inner .service-slide-items{
    margin: 0px;
    margin-bottom: 25px;
}
.our-service-section .service-slide-items .num-count{
    position: absolute;
    top: 0;
    right: 0;
    padding:  10px;
    font-size: 26px;
    font-weight: 800;
    /* opacity: 0.7; */
    color: var(--thm-base2);
    transition: 0.5s;
    background-color: var(--thm-base-light);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.3px;
    -webkit-text-stroke-color: var(--thm-base3);
    line-height: 0.8;
    text-transform: uppercase; 
}
.our-service-section .service-slide-items .service-content {
    position: relative;
    padding: 20px;
}
/* .our-service-section .service-slide-items .service-content > img {
    width: 15% !important;
    position: absolute;
    z-index: 3;
    top: -25px;
    right: 25px;
} */
.our-service-section .service-slide-items .service-content .service-heading {
    display: inline-flex;
    position: relative;
    font-size: 23px;
    font-weight: 600;
    color: var(--thm-base2);
    /* margin: 12px 0px; */
    margin-bottom: 10px;
    padding-bottom: 2px;
    overflow: hidden;
}
.our-service-section .service-slide-items .service-content .service-title{
    margin-bottom: 10px;
    color: var(--thm-base);
    font-weight: 500;
}
.our-service-section .service-slide-items .service-content .service-heading::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--thm-base);
    bottom: 0;
    left: -100%;
    transition: 0.5s;
}

.our-service-section .service-slide-items .service-content .service-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    gap: 5px;
   font-weight: 600;
    border-radius: 20px;
    padding-right: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 2;
}

.our-service-section .service-slide-items .service-content .service-btn img {
    width: 20% !important;
}
.our-service-section .service-slide-items .service-content .service-btn::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    background-color: var(--thm-base);
    top: 0px;
    left: -100%;
    transition: 0.5s;
    z-index: -1;
}
.our-service-section .service-slide-items:hover .service-content .service-btn{
    color: var(--thm-base2);
}
.our-service-section .service-slide-items:hover .service-content .service-btn::before{
    left: 0px;
}
.our-service-section .service-slide-items:hover .service-content .service-heading::before{
    left: 0px;
}
.our-service-section .service-slide-items:hover .num-count{
    top: 10px;
    right: 10px;
    opacity: 1;
    background-color: var(--thm-white);
}

.project-section{
    background-color: var(--thm-section-bg);
    padding: 80px 0px;
}
.project-section.project-section2{
    background-color: var(--thm-white);
    padding: 0px;
}
.project-items{
    overflow: hidden;
    position: relative;
    border-right: 2px solid var(--thm-base);
}
.project-item-content{
    position: absolute;
    background-color: var(--thm-white);
    border-right: 4px solid var(--thm-base);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 8px;
    padding: 15px;
    width: 90%;
    bottom: 30px;
    left: -100%;
    transition: 0.5s;
    
}
.project-item-content p{
    font-weight: 600;
    font-size: 13px;
    margin-top: 5px;
}
.project-item-content a{
    font-size: 22px;
    font-weight: 600;
    color: var(--thm-base2);
    position: relative;
    padding-bottom: 3px;
}
.project-item-content a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--thm-base);
    bottom: 0px;
    left: -120%;
    transition: 0.5s;
}
/* .project-item-content a:hover{
    color: var(--thm-base2); 
} */
.project-item-content a:hover::before{
    color: var(--thm-base); 
    left: 0px;
}
.project-items img{
    transition: 0.5s;
}
.project-items:hover img{
    transform: scale(1.05);
}
.project-items:hover .project-item-content{
    left: 0;
}



.testimonial-section {
    background-color: var(--thm-section-bg);
    padding: 40px 0px; 
}
.testimonial-section .testimonial-silder .testimonial-silde-items {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    margin: 10px;
    padding: 25px;
    background-color: var(--thm-white);
}
.testimonial-section .testimonial-silder .testimonial-silde-items .comma-icon {
    width: 7% !important;
    margin-bottom: 10px !important;
}
.testimonial-section .testimonial-silder .testimonial-silde-items .name-section {
    display: flex;
    gap: 0px;
    align-items: center;
}
.testimonial-section .testimonial-silder .testimonial-silde-items .name-section div img{
    width: 70%;
    margin: auto;
}
.testimonial-section .testimonial-silder .testimonial-silde-items .name-section div h4{
    font-size: 18px;
}
.testimonial-section .testimonial-silder .testimonial-silde-items .name-section div h6{
    font-size: 14px;
    color: var(--thm-gray);
}
.reating{
    font-size: 12px;
    color: var(--thm-base);
    transition: 0.5s;
    margin-top: 2px;
}

/* .brands-section .brands-silder img{
    margin: 10px 0px;
    padding: 10px 50px;
    background-color: var(--thm-white);
} */

.get-quote .yvideo{
    padding: 8px;
    border: 5px solid var(--thm-base);
    margin: 10px 0px;
}

.form-section {
    background-color: var(--thm-section-bg2);
    padding: 55px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}
.form-section  .form-heading{
    font-weight: 600;
    color: var(--thm-base2);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--thm-base);
}
.form-section  .form-control {
    display: block;
    width: 100%;
    margin-top: 3px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--thm-black);
    background-color: var(--thm-white);
    background-clip: padding-box;
    border: 1px solid var(--thm-light);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-section label {
    font-size: 15px !important;
    font-weight: 500 !important;
}
.form-select {
    border-radius: 0;
    margin-top: 3px;
    padding: 10px 15px;
    font-size: 15px;
}
.form-select:focus {
    border: 1px solid var(--thm-base);
    box-shadow: rgba(253, 200, 139, 0.25) 0px 0px 0px 0.25rem;
    font-weight: 500;
}
.form-control:focus {
    color: var(--thm-black);
    background-color: var(--thm-white);
    border: 1px solid var(--thm-base);
    outline: 0px;
    font-weight: 500;
    box-shadow: rgba(253, 200, 139, 0.25) 0px 0px 0px 0.25rem;
}
.catalog-download{
    background-color: var(--thm-base);
}
.catalog-download .container > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px;
}
.catalog-download .container div p{
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
}
.catalog-download .container div p i{
    font-size: 32px;
}

.footer-section{
    background-color: var(--thm-base2);
}
.footer-bg-img{
    /* background-image: url(../images/footer-bg.png); */
    background-image: url(../images/footer-bg.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-container{
    padding: 80px 10px 40px 10px;
}
.footer-logo a img{
    background-color: var(--thm-white);
    margin-bottom: 10px;
    padding: 5px;
}
.footer-container .description{
    color:var(--thm-footer);
}
.footer-container .logo-title{
    font-size: 20px;
    color: var(--thm-white);
    margin-bottom: 20px;
}
.footer-section .social-media{
    display: flex;
    gap: 10px;
}
.footer-section .social-media i{
    font-size: 22px;
    border: 1px solid var(--thm-footer);
    padding: 6px 7px;
    color: var(--thm-footer);
    /* background-color: var(--thm-base2-light); */
    transition: 0.5s;
}
.footer-section .social-media .fb{
    padding: 6px 9px;
}
.footer-section .social-media a i:hover{
    border: 1px solid var(--thm-base);
    color: var(--thm-base2);
    transform: rotate(360deg);
    background-color: var(--thm-base);
}
.footer-container .sub-heading{
    font-size: 21px;
    display: inline-block;
    color: var(--thm-footer);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--thm-footer);
}
.footer-services li{
    margin-bottom: 5px;
    overflow: hidden;
    padding-bottom: 5px;
}
.footer-services li a{
    font-size: 17px;
    color: var(--thm-footer);
    transition: 0.5s;
    position: relative; 
    padding-bottom: 4px;
}
.footer-services li a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--thm-base);
    bottom: 0px;
    left: -100%;
    transition: 0.5s;
}
.footer-services li a:hover{
    color: var(--thm-base); 
}
.footer-services li a:hover::before{
    color: var(--thm-base); 
    left: 0px;
}
.footer-contact > a{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    color: var(--thm-footer);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--thm-primary);
}
.footer-contact p{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    color: var(--thm-footer);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--thm-primary);
}
.footer-contact p a{
    color: var(--thm-footer);
}
.footer-contact > p:last-child{
    padding-bottom: 0px;
    border: none;
}
.footer-contact a:hover{
    color: var(--thm-base);
}
.footer-bottom-section .container{
	padding: 30px 0px;
    border-top: 1px solid var(--thm-primary);
}
.footer-bottom-section p a{
    color: var(--thm-white);
    transition: 0.5s;
}
.footer-bottom-section p a:hover{
    color: var(--thm-base);
}




.breadcrumb-section{
    border-bottom: 1px solid var(--thm-footer);
    /* border-radius: 0px 0px 30px 30px; */
    text-align: center;
}
.breadcrumb-bg {
    background-image: url(../images/page-header-bg.png);
    padding: 130px 0px;
    background-size: cover;
    background-position: right;
}
.breadcrumb-section .breadcrumb-heading {
    color: var(--thm-white);
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.breadcrumb-section h4{
    display: inline-block;
    text-align: center;
    color: var(--thm-white);
    border-top: 2px solid var(--thm-base-light);
    padding-top: 5px;
    margin-top: 5px;
}
.breadcrumb-section .breadcrumb {
    display: flex;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
    margin-top: 2px;
    padding: 10px 0px;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
    font-weight: 600;
    color: var(--thm-base3);
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
    font-size: 15px;
}
.breadcrumb-section .breadcrumb .symbol-breadcrumb {
    font-weight: 500;
    font-size: 12px;
    color: var(--thm-base3);
    padding: 0px 8px;
    margin-top: 2px;
} 
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
    color: var(--thm-gray);
}

.about-img{
    margin-bottom: 20px;
}

.contact-info-container{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}
.contact-info-items{
    padding: 25px;
    border: 1px solid var(--thm-light);
}
.contact-info-items img{
    padding: 10px;
    background-color: var(--thm-base);
    margin-bottom: 15px;
}
.contact-info-items h5{
    margin-bottom: 6px;
    font-weight: 600;
}
.contact-info-items a{
    display: block;
    margin-bottom: 3px;
}

.get-quote-page{
    background-color: var(--thm-section-bg);
    padding: 80px 0px;
}
.contact-info-social h4{
    margin-bottom: 15px;
}
.contact-info-social .social-media{
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.contact-info-social .social-media i{
    font-size: 22px;
    border: 1px solid var(--thm-black);
    padding: 6px 7px;
    color: var(--thm-black);
    /* background-color: var(--thm-base2-light); */
    transition: 0.5s;
}
.contact-info-social .social-media .fb{
    padding: 6px 9px;
}
.contact-info-social .social-media a i:hover{
    border: 1px solid var(--thm-base);
    color: var(--thm-base2);
    transform: rotate(360deg);
    background-color: var(--thm-base);
}

.service-detail-page .side-bar{
    padding: 40px 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    margin-bottom: 30px;
}
.service-detail-page .side-bar ul li{
    border: 1px solid var(--thm-footer);
}
.service-detail-page .side-bar ul li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    /* border-bottom: 1px solid var(--thm-footer); */
    transition: 0.5s;
}
.service-detail-page .side-bar ul li a i{
    font-size: 10px;
}
.service-detail-page .side-bar ul li .active-page{
    background-color: var(--thm-base2);
    color: var(--thm-base);
}
.service-detail-page .side-bar ul li a:hover{
    background-color: var(--thm-base2);
    color: var(--thm-base);
}

.service-contact-section{
    background-image: url(../images/service-detail-page-bg.jpg);
    background-position: center;
    padding: 50px 35px;
}
.service-contact-section h4{
    color: var(--thm-white);
    margin-bottom: 12px;
}
.service-contact-section p{
    color: var(--thm-white);
    margin-bottom: 25px;
}

.service-detail-content div{
    border-bottom: 1px solid var(--thm-footer);
    padding: 10px 0px;
}
.service-detail-content .last-div{
    border: none;
    padding: 0px;
    padding-top: 10px;
}
.service-detail-content .service-title-inner{
    display: inline-block;
    color: var(--thm-base);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--thm-base-light);
    margin-bottom: 10px;
}
.service-detail-content h3{
    font-size: 30px;
    font-weight: 600;
    margin: 15px 0px;
    color: var(--thm-base2);
}
.service-detail-content img{
    margin-bottom: 20px;
}
.service-detail-content h5{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}
.service-detail-content .service-points{
    border: 1px solid var(--thm-gray);
    padding: 20px;
    transition: 0.5s;
    margin: 15px 0px 25px 0px;
}
.service-detail-content .service-points .description{
    margin-bottom: 0px;
}
.service-detail-content .service-points:hover{
    border: 1px solid var(--thm-base2);
}
.service-detail-content .service-points img{
    transition: 0.5s;
}
.service-detail-content .service-points:hover img{
    transform: rotate(360deg);
}
.service-detail-content .service-points img{
    margin-bottom: 0px;
}
.action-to-next-page{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--thm-gray);
    padding-top: 15px;
}
.action-to-next-page .pervious a{
    display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 600;
}
.action-to-next-page .next a{
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: end;
    font-weight: 600;
}
.action-to-next-page p{
    font-weight: 600;
}


.nav-bar .menu .drop-down{
    position: relative;
    overflow: visible;
}

.nav-bar .menu .drop-down .drop-down-menu{
    width: 290px;
    position: absolute;
    top: 35px;
    background-color: var(--thm-white);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 8px;
    opacity: 0;
    z-index: -1;
    transition: 0.5s;
    visibility: hidden;
}
.nav-bar .menu .drop-down .drop-down-menu li{
    border-bottom: 1px solid var(--thm-base);

}
.nav-bar .menu .drop-down .drop-down-menu li a{
    width: 100%;
    display: block;
    padding: 8px 15px;
}
.nav-bar .menu .drop-down .drop-down-menu li:last-child{
    border: none;
}
.nav-bar .menu .drop-down .drop-down-menu li a:hover{
    background-color: var(--thm-base2);
    color: var(--thm-white);
}
.nav-bar .menu .drop-down .drop-down-menu li .active{
    width: 100%;
    background-color: var(--thm-base2);
    color: var(--thm-white);
}
.nav-bar .menu .drop-down:hover .drop-down-menu{
    opacity: 1;
    visibility: visible;
    z-index: 9;
    top: 65px;

}



/* ==================== toogle bar ===================================== */

.ham {
    width: 60px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
    /* margin: -15px;   */
}
.hamRotate.active {
    transform: rotate(45deg);
}
.hamRotate180.active {
    transform: rotate(180deg);
}
.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--thm-base);
    stroke-width: 5.0;
    stroke-linecap: round; 
}
.ham1 .top {
    stroke-dasharray: 40 139;
}
.ham1 .bottom {
    stroke-dasharray: 40 180;
}
.ham1.active .top {
    stroke-dashoffset: -98px;
}
.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 9;
}


#back-to-top-button {
    display: inline-block;
    background-color: var(--thm-base);
    width: 50px;
    height: 50px;
    text-align: center;
    /* border-radius: 6px; */
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#back-to-top-button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: var(--thm-white);
}
#back-to-top-button:hover {
    cursor: pointer;
    background-color: var(--thm-primary);
}
#back-to-top-button:active {
    background-color: var(--thm-primary-light);
}
#back-to-top-button.show {
    opacity: 1;
    visibility: visible;
}


.thank-you-section {
    padding: 70px 0px 70px 0px;
    box-sizing: border-box;
    background-color: var(--thm-section-bg);
}
.thank-you-page{
    text-align: center;
    background-color: var(--thm-white);
    padding: 50px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
}
  
.thank-you-page h6{
    font-weight: 600;
    color: var(--thm-base);
	margin-bottom: 15px;
}



/* @media only screen and (min-width: 250px) {
    .container {
        width: 95%;
    }
} */

/* -----------------------  mobile-menu-section ---------------- */

  /* our work page gallery css */
  .main .container {display: grid;grid-template-columns: repeat(4, 1fr);grid-gap: 1rem;justify-content: center;align-items: center;}
  .main .card {color: #252a32;border-radius: 2px;background: #ffffff;box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);}
  .main .card-image {position: relative;display: block;width: 100%;padding-top: 70%;background: #ffffff;}
  .main .card-image img,
  .main .card-image video {display: block;position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;}
  