
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

*{
    font-family: "DM Sans", sans-serif;
    margin: 0;padding: 0;
}
:root{
    --thm-font:  "Outfit", sans-serif;
    --thm-base: #db2531;
    --thm-base-light: #db253130;
    --thm-base2: #FFF41390;
    --thm-base2-light: #FFF41330;
    --thm-base3: #0098DB;
    --thm-base3-light: #0098DB30;
    --thm-black: #000000;
    --thm-black-ligth: #00000040;
    --thm-gray: #999999;
    --thm-line: #8b8b8b30;
    --thm-white: #ffffff;
    --thm-section-bg: #f7f7f7;
    --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: 500;} 
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: 18px;}
a{ color: var(--thm-black); text-decoration: none; font-weight: 500; transition: 0.5s;}
.text-align-justify{
    text-align: justify;
}
a:hover {color: var(--thm-base); }
.mb-80{ margin-bottom: 80px;}
.mt-80{ margin-top: 80px;}
.container{ max-width: 1440px;}
b{ color: var(--thm-base);}

.section-container{
    position: relative;
}
/* .tag-line:before {
    content: "";
    width: 12px;
    height: 4px;
    background: var(--thm-base);
    position: absolute;
    top: -20px;
    left: 0;
    margin-left: 0px;
    border-radius: 2px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 1;
}
.tag-line:after {
    content: "";
    width: 65px;
    height: 4px;
    background: var(--thm-base);
    position: absolute;
    top: -20px;
    left: 0;
    margin-left: 20px;
    border-radius: 2px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 0;
} */
/* .section-container:hover .tag-line:before{
    width: 65px;
    margin-left: 0px;
    background: var(--thm-base);
}
.section-container:hover .tag-line::after{
    width: 12px;
    margin-left: 75px;
    background: var(--thm-base);
} */
.heading-tag{
    display: inline-block;
    font-size: 16px;
    color: var(--thm-base);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    background-color: var(--thm-base2-light);
}
.heading{
    color: var(--thm-black);
    margin-bottom: 15px;
    /* border-left: 5px solid var(--thm-base); */
}
.description{
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--thm-primary);
}

.btn-box {
    background-color: #0c375f;
    color: #fff;
    padding: 9px 20px;
    transition: 0.5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: 0.5s;
    border-radius: 6px;
}
.btn-box:hover {
    color: #fff;
    background-color: #F22D32;
}
.btn-box:hover::before {
    background-color: #fa4d53;
    transform: rotate(31deg);
}
.btn-box::before {
    content: "";
    position: absolute;
    height: 50px;
    width: 250px;
    background-color: #ffffff20;
    z-index: -1;
    transform: rotate(45deg);
    transition: 0.5s;
    
}
.btn-box.style2{
    background-color: #ffffff;
    color: var(--thm-black);
}
.btn-box.style2::before{
    background-color: var(--thm-black-ligth);
}
.btn-box.style3{
    background-color: var(--thm-base);
}
.btn-box.style3:hover::before{
    background-color: #923f41;
}

.owl-dots {
    text-align: center;
}
.owl-dot {
    width: 35px;
    height: 4px;
    margin: auto;
    background-color: var(--thm-base) !important;
    margin: 0 5px;
    opacity: 1;
    margin-top: 40px !important;
    border-radius: 30px !important;
}
.owl-dots .active {
    background-color: var(--thm-base-light) !important;
}

header{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}
.top-header-bg{
    /* border-bottom: 1px solid var(--thm-line); */
    background-color: var(--thm-section-bg);
}
.top-header{
    display: flex;
    justify-content: space-between;
}
.top-header div{
    display: flex;
    align-items: center;
}
.top-header .header-contact-info div{
    display: flex;
    gap: 6px;
    border-right: 1px solid var(--thm-line);
    padding: 10px 20px;
}
.top-header a{
    font-size: 14px;
    font-weight: 600;
}
.top-header i{
    font-size: 22px;
}
.top-header a:hover{
    color: var(--thm-base);
}
.top-header .social-media-container div{
    display: flex;
    gap: 10px;
    border-right: 1px solid var(--thm-line);
    padding: 10px 20px;
}
.top-header div p{
    font-size: 14px;
    font-weight: 600;
}
.top-header .header-contact-info div:first-child{
    padding-left: 0px;
}
.top-header .header-contact-info div:last-child{
    border: none;
}
.top-header .social-media-container div:last-child{
    border: none;
    padding-right: 0px;
}
.top-header .social-media-container .social-media{
    display: flex;
    gap: 20px;
}
.top-header .social-media-container .social-media a{
    position: relative;
}
.top-header .social-media-container .social-media a i{
   font-size: 14px;
}
.top-header .social-media-container .social-media a::before{
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    background-color: var(--thm-base);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    transition: 0.3s;
}
.top-header .social-media-container .social-media a:hover{
    color: var(--thm-white);
}
.top-header .social-media-container .social-media a:hover::before{
    width: 30px;
    height: 30px;
}
.nav-bar .container{
    display: flex;
    padding: 4px 0px;
    justify-content: space-between;
    align-items: center;
}
.nav-bar .container .logo{
    width: 14%;
}
.nav-bar .menu-section{
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-bar .menu-section .menu{
    display: flex;
    gap: 25px;
}
.nav-bar .menu-section .menu li{
    position: relative;
}
.nav-bar .menu-section .menu li::before{
    position: absolute;
    content: "";
    width: 0%;
    height: 2px;
    bottom: -2px;
    background-color: var(--thm-base);
    transition: 0.5s;
}
.nav-bar .menu-section .menu li:hover::before{
    width: 100%;
}
.nav-bar .menu-section .menu li a{
    font-weight: 600;
}
.nav-bar .menu-section .menu li a:hover{
    color: var(--thm-base);
}
.nav-bar .menu-section .menu .active > a{
    color: var(--thm-base);
}
.nav-bar .menu-section .menu .active::before{
    width: 100%;
    transform: rotate(0deg);
    /* background-color: transparent; */
}
.nav-bar .menu-section .nav-connect{
    display: flex;
    gap: 15px;
    align-items: center;
}
.nav-bar .menu-section .nav-connect .call{
    display: flex;
    gap: 10px;
    align-items: center;
}
.nav-bar .menu-section .nav-connect .call a{
    display: block;
    line-height: 1.1;
}
.nav-bar .menu-section .nav-connect .call a img{
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    border-radius: 50%;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 5px #e9121230;
    }
    80% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}
.nav-bar .menu-section .nav-connect .call a:hover{
    color: var(--thm-base);
}
.nav-bar .menu-section .nav-connect .call a span{
    font-size: 13px;
    color: var(--thm-gray);
}
.tag-line-header{
    background-color: var(--thm-base2);
    /* background-color: #F8F7F6; */
    padding: 5px;
}
.tag-line-header .container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.tag-line-header p{
    color: var(--thm-black);
    font-weight: 500;
}

.banner-section{
    position: relative;
}
.banner-silder .banner-img{
    background-image: url(../images/2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 720px;
    display: flex;
    align-items: center;
}
.banner-silder .banner-img.banner-img2{
    background-image: url(../images/3.jpg);
}
.banner-silder .banner-content{
    /* width: 35%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%); */
    background-color: #ffffff20;
    padding: 20px;
    border-radius: 10px;
}
.banner-silder .banner-content h6{
    display: inline-block;
    color: var(--thm-white);
    margin-bottom: 5px;
    background-color: var(--thm-base3-light);
    padding: 7px 30px;
    font-weight: 700;
    border-radius: 6px;
}
.banner-silder .banner-content h1{
    font-size: 30px;
    color: var(--thm-white);
    font-weight: 700;
    margin-bottom: 15px;
}
.banner-silder .banner-content p{
    color: var(--thm-white);
}
.banner-silder .banner-content .banner-btn{
    display: flex;
    gap: 15px;
    align-items: center;
}
.banner-silder .owl-dots {
    text-align: right !important;
    margin-top: -80px;
    margin-right: 15%;
}
.banner-silder .owl-dot {
    width: 35px;
    height: 4px;
    margin: auto;
    background-color: var(--thm-base) !important;
    margin: 0 5px;
    opacity: 0.9;
    margin-top: 40px !important;
    border-radius: 30px !important;
}
.banner-silder .owl-dots .active {
    background-color: var(--thm-white) !important;
}
/* .banner-contact-form{
    width: 25%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 280px;
    z-index: 3;
} */
.btn-box.banner-contact-button{
    width: 100%;
    margin-top: 10px;
    display: block;
    border: none;
}

.about-section{
   padding-top: 40px;
}
.about-imgs img{
    margin-bottom: 15px;
    /* border: 6px solid var(--thm-base3-light); */
    border-radius: 10px;
}
.about-section .about-page-img{
    width: 100%;
    /* border: 12px solid var(--thm-base3-light); */
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
}

/* .our-products-section{
    background-color: var(--thm-section-bg);
    padding: 100px 0px;
} */
.our-products-section .products-items-container{
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(4,1fr);
}
.our-products-section .products-items-container .products-items .product-img{
    overflow: hidden;
}
.our-products-section .products-items-container .products-items .product-img img{
    width: 100%;
    transition: 0.5s;
    border-radius: 8px;
}
.our-products-section .products-items-container .products-items .product-name{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    transition: 0.5s;
    padding: 6px 0px;
    border-bottom: 1px solid var(--thm-gray);
    overflow: hidden;
}
.our-products-section .products-items-container .products-items .product-name h5 a{
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-left: -25px;
    transition: 0.5s;
}
.our-products-section .products-items-container .products-items .product-name .arrow-icon{
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s;
}
.our-products-section .products-items-container .products-items .product-name .arrow-icon:hover{
    border: 1px solid var(--thm-base);
    background-color: var(--thm-base);
    color: var(--thm-white);
}
.our-products-section .products-items-container .products-items:hover .product-name h5 a{
    margin-left: 0px;
}
.our-products-section .products-items-container .products-items:hover .arrow-icon{
    opacity: 1;
}
.our-products-section .products-items-container .products-items:hover .product-img img{
    transform: scale(1.15);
}

.our-products-section.our-products-section2{
    background-color: var(--thm-white);
    padding: 0px;
}
.our-products-section .products-items{
    background-color: #e2e2e280;
    padding: 10px 10px 5px 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 8px;
}
.our-products-section.our-products-section2 .products-items-container{
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3,1fr);
}


.wcu-section{
    background-color: var(--thm-section-bg);
    padding: 70px 0px;
}
.wcu-section .wcu-bold{
    font-weight: 600;
}
.wcu-section .wcu-points{
    display: grid;
    /* gap: 5px 15px;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px; */
    gap: 5px 0px;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 13px;
    background-color: var(--thm-base2-light);
    margin-top: 20px;
    border-left: 5px solid var(--thm-base3);
    border-radius: 10px;
}
.wcu-section .wcu-points p{
    font-weight: 600;
}
.wcu-section .wcu-points p i{
    color: var(--thm-base3);
}
.wcu-img IMG{
    border-radius: 10px;
}
.tagline-section{
    background-image: url(../images/01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--thm-base3-light);
    padding: 30px 0px;
}
.two-btn{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.points-section-container{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.points-section-items{
    text-align: center;
    border: 1px solid var(--thm-light);
    padding: 20px;
    border-radius: 8px;
}
.points-section .step img{
    margin-bottom: 15px;
}
.points-section .step h4{
    margin-bottom: 15px;
}
.points-section .step .description{
    margin-bottom: 0px;
}
.points-section .points-section-items:hover{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid var(--thm-white);
}

/* .access-adv-silder{
    border-top: 1px solid var(--thm-base3-light);
    padding-top: 60px;
} */
.access-img{
    position: relative;
}
.access-img img{
    border-radius: 10px;
}
.access-img-content{
    position: absolute;
    top: 30px;
    left: 30px;
}
.access-img-content h3{
    color: var(--thm-white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.access-img-content p{
    color: #818181;
}
.access-img-content.access-img-content2 h3{
    color: #000;
}
.access-img-content.access-img-content2 p{
    color: #000;
    font-weight: 700;
}
.access-img-content.access-img-content3 p{
    color: #fff;
    font-size: 17px;
}
.access-img-content.access-img-content3 i{
    font-size: 35px;
    color: #fff;
}
.access-btn{
    position: absolute;
    bottom: 30px;
    left: 30px;
}
/* .access-btn .btn-box{
    border-radius: 5px;
} */

.trending{
    display: inline-flex;
    gap: 3px;
    align-items: center;
    background-color: var(--thm-base);
    color: var(--thm-white);
    padding: 2px 8px;
    margin-bottom: 7px;
    font-size: 14px;
}
.trending i{
    font-size: 12px;
}

.adv-section .adv-section-container{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.adv-section .adv-section-container .adv-content{
    background-image: url(../images/onshop-bg.jpg);
    padding: 20px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    border-left: 8px solid var(--thm-base3-light);
}
.adv-section .adv-section-container .adv-content.adv-content2{
    background-image: none;
    /* background-color: #0098DB50; */
    background-color: var(--thm-base2-light);
    /* border-left: 8px solid var(--thm-base2-light); */
    padding: 0px;
}

.adv-section .adv-section-container .adv-content.adv-content2 .adv-container{
    padding: 20px 30px;
}
.adv-section .adv-section-container .adv-content .heading{
    /* text-transform: uppercase; */
    font-size: 40px;
    font-weight: 800;
    background-color: transparent;
    -webkit-text-fill-color: var(--thm-white);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: transparent;
    /* line-height: .8; */
    opacity: 0.3;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--thm-light);
}
.adv-section .adv-section-container .adv-content.adv-content2 .adv-container .heading{
    -webkit-text-fill-color: var(--thm-base3-light);
    font-size: 40px;
    font-weight: 900;
    opacity: 1;
    border-bottom: 1px solid var(--thm-light);
}

.brands-section{
    background-color: var(--thm-section-bg);
    padding: 80px 0px;
}
.brands-section .brands-silder img{
    margin: 10px 0px;
    padding: 20px 50px;
    background-color: var(--thm-white);

}

.testimonial-section {
    background-color: var(--thm-section-bg);
    padding: 60px 0px; 
}
.testimonial-section .testimonial-silder .testimonial-silde-items {
    box-shadow: rgba(0, 0, 0, 0.03) 0px 3px 8px;
    margin: 10px;
    padding: 30px;
    background-color: var(--thm-white);
    position: relative;
    z-index: 2;
    border-radius: 10px;
}
.testimonial-section .testimonial-silder .testimonial-silde-items .comma-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 13% !important;
    z-index: -1;
    opacity: 0.7;
}
.testimonial-section .testimonial-silder .testimonial-silde-items .name-section {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}
.testimonial-section .testimonial-silder .testimonial-silde-items .name-section div img{
    width: 85%;
    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;
}

.callToAction-section{
    padding: 40px 0px;
    background-size: cover;
    background-position: center top;
    /* background-color: var(--thm-base3-light); */
    background-image: url(../images/callToAction-02.jpg);
}
.callToAction-section .calltoaction-content{
    text-align: center;
}
.callToAction-section .calltoaction-content h2{
    font-size: 35px;
    margin-bottom: 15px;
    color: #ffff;
}
.callToAction-btn{
    border: none;
}

.footer-section{
    background-color: var(--thm-black);
}
.footer-bg-img{
    background-image: url(../images/area_bg03.19bdc6f0ce089414d73e.jpg);
    background-size: cover;
}
.footer-container{
    padding: 50px 10px 30px 10px;
}
.footer-logo a img{
    /* background-color: var(--thm-white);
    padding: 5px 20px; */
    margin-bottom: 25px;
    max-width: 120px;
}
.footer-container .description{
    color:var(--thm-footer);
}
.footer-container .sub-heading{
    font-size: 20px;
    display: inline-block;
    color: var(--thm-footer);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--thm-footer);
    margin-bottom: 25px;
}
.footer-services li{
    margin-bottom: 10px;
    overflow: hidden;
}
.footer-services li a{
    display: inline-flex;
    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;
    z-index: 2;
}
/* .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);
}
.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-line);
}
.footer-contact p:last-child{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    color: var(--thm-footer);
    padding-bottom: 0px;
    border-bottom: none;
}
.footer-contact p a{
    color: var(--thm-footer);
}
.footer-contact a:hover{
    color: var(--thm-base);
}
.footer-bottom-section{
    padding: 30px 0px;
    border-top: 1px solid  var(--thm-line);
}
.footer-bottom-section .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-section p a{
    color: var(--thm-color);
    transition: 0.5s;
}
.footer-bottom-section p a:hover{
    color: var(--thm-base);
}
.footer-bottom-section .social-media{
    display: flex;
    gap: 22px;
    align-items: center;
}
.footer-bottom-section .social-media a{
    position: relative;
    color: var(--thm-white);
    z-index: 2;
}
.footer-bottom-section .social-media i{
    font-size: 18px;
    color: var(--thm-footer);
    background-color: transparent;
    transition: 0.5s;
}
.footer-bottom-section .social-media a::before{
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    background-color: var(--thm-base);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    transition: 0.3s;
}
.footer-bottom-section .social-media a:hover{
    color: var(--thm-white);
}
.footer-bottom-section .social-media a:hover::before{
    width: 35px;
    height: 35px;
}

.breadcrumb-section .breadcrumb-bg {
    /* background-color: var(--thm-base); */
    background-image: url(../images/breadcrumb-bg.jpg);
    padding: 60px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-attachment: fixed; */
    text-align: center;
    display: flex;
}
.breadcrumb-section .breadcrumb-bg nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.breadcrumb-section .breadcrumb-heading {
    /* text-transform: uppercase; */
    font-size: 45px;
    font-weight: 700;
    color: var(--thm-section-bg);
  
}
.breadcrumb-section .breadcrumb {
    display: inline-flex;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
    margin-top: 7px;
    padding: 8px 20px;
    border-radius: 2px;
    background-color: #00000050;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    /* border-bottom: 3px solid var(--thm-base); */
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
    font-weight: 600;
    color: var(--thm-white);
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
    font-size: 15px;
}
.breadcrumb-section .breadcrumb .symbol-breadcrumb {
    font-weight: 600;
    font-size: 12px;
    color: var(--thm-white);
    padding: 0px 8px;
    margin-top: 2px;
} 
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
    color: var(--thm-white);
    font-weight: 600;
}



.form-section {
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fff;
    border-radius: 10px;
}
.form-heading {
    font-size: 25px;
    margin-bottom: 6px;
    color: var(--thm-base);
    text-align: center;
}
.form-control {
    display: block;
    margin-top: 3px;
    padding: 10px 15px;
    font-size: 16px;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e0e0e0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-select {
    border-radius: 10px;
    margin-top: 3px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
}
.form-select:focus {
    border: 1px solid var(--thm-base-light);
    box-shadow: rgba(250, 91, 91, 0.25) 0px 0px 0px 0.25rem;
}
.form-control:focus {
    color: rgb(33, 37, 41);
    background-color: rgb(255, 255, 255);
    border-color: var(--thm-base-light) !important;
    outline: 0px;
    box-shadow: rgba(250, 91, 91, 0.25) 0px 0px 0px 0.25rem;
}
.form-section .btn-box{
    border: none;
}

/* .contact-info-page{
    background-color: var(--thm-section-bg);
    padding: 80px 0px;
} */
.contact-info-page .form-section{
    padding: 0px;
}
.contact-info-page .form-section .row{
    padding: 30px;
}
.contact-info-page .form-head-box{
    background-color: var(--thm-base3-light);
    padding: 20px 20px 5px 20px;
    border-radius: 10px 10px 0px 0px;
}
.contact-info-page .form-section .form-head-box .form-heading{
    text-align: start;
}

.contact-info-page .contact-info{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    margin: 20px 0px;
}
.contact-info-page .contact-info .contact-info-items{
    text-align: center;
    border: 2px solid var(--thm-section-bg);
    padding: 15px;
    /* box-shadow: rgba(0, 0, 0, 0.03) 0px 3px 8px; */
    border-radius: 10px;
}
.contact-info-page .contact-info .contact-info-items i{
    font-size: 35px;
    color: var(--thm-base);
    margin-bottom: 10px;
}
.contact-info-page .contact-info .contact-info-items p{
    font-size: 20px;
    font-weight: 600;
}
.contact-info-page .contact-info .contact-info-items a{
    display: block;
    color: var(--thm-gray);
}
.contact-info-page .contact-info .contact-info-items span{
    color: var(--thm-gray);
}
.contact-info-page .contact-info .contact-info-items a:hover{
    color: var(--thm-base);
}
.contact-info-page .contact-info .contact-info-items:hover{
    border: 2px solid var(--thm-base3-light);
}
.contact-info-page .contact-info-social h4{
    font-size: 24px;
    margin-top: 30px;
}
.contact-info-page .contact-info-social .social-media{
    display: inline-flex;
    gap: 22px;
    align-items: center;
    margin: 10px 0px;
    padding: 10px 20px;
    border: 1px solid var(--thm-footer);
    border-radius: 5px;
}
.contact-info-page .contact-info-social .social-media a{
    position: relative;
    color: var(--thm-white);
    z-index: 2;
}
.contact-info-page .contact-info-social .social-media i{
    font-size: 18px;
    color: var(--thm-black);
    background-color: transparent;
    transition: 0.5s;
}
.contact-info-page .contact-info-social .social-media a::before{
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    background-color: var(--thm-base);
    top: 48%;
    left: 50%;
    transform: translate(-48%, -50%);
    z-index: -1;
    border-radius: 50%;
    transition: 0.3s;
}
.contact-info-page  .contact-info-social .social-media a:hover i{
    color: var(--thm-white);
}
.contact-info-page  .contact-info-social .social-media a:hover::before{
    width: 35px;
    height: 35px;
}
.iframe-container iframe{
    margin-bottom: -7px;
    border-radius: 12px;
}


.service-detail-page .service-detail-content h3{
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--thm-base);
}
/* .service-detail-page .service-detail-content .description{
    font-size: 14px;
} */
.service-detail-page .service-detail-content h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-detail-page .service-detail-content img{
   width: 100%;
   margin-bottom: 20px;
   border-radius: 10px;
}
.service-detail-page .side-bar{
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    border-top: 3px solid var(--thm-base);
}
.access-img-container{
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}


.side-bar-heading{
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--thm-base-light);
}

.service-detail-page .side-bar li a {
    display: block;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    color: var(--thm-black);
    text-transform: uppercase;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
    background-color: var(--thm-white);
    border-bottom: 1px solid var(--thm-footer);
}
  
.service-detail-page .side-bar li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--thm-base);
    transition: 0.5s ease;
}
  
.service-detail-page .side-bar li a:hover {
    color: var(--thm-white);
    transition-delay: 0.5s;
    background-color: transparent;
}
  
.service-detail-page .side-bar li a:hover::before {
    width: 100%;
}
  
.service-detail-page .side-bar li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: var(--thm-base);
    transition: 0.4s ease;
    z-index: -1;
}
  
.service-detail-page .side-bar li a:hover::after {
    height: 100%;
    transition-delay: 0.4s;
    color: aliceblue;
}



/* .service-detail-page .side-bar li a{
    display: block;
    background-color: var(--thm-white);
    padding: 12px 30px;
    font-weight: 700;
    position: relative;
    border: unset;
    z-index: 1;
    transition: 0.5s;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}
.service-detail-page .side-bar li a::before{
    font-family: "Font Awesome 5 Free";
    content:  "\f054";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}
.service-detail-page .side-bar li a::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--thm-base);
    z-index: -1;
    transition: 0.5s;
}
.service-detail-page .side-bar li a:hover::after{
    width: 100%;
} 
.service-detail-page .side-bar li a:hover{
    color: var(--thm-white);
} */


.service-detail-page .side-bar li .active-service{
    background-color: var(--thm-base);
    color: var(--thm-white);
}
.service-detail-page .side-bar-form .form-section{
    border: 1px solid var(--thm-footer);
    box-shadow: none;
}
.service-detail-page .side-bar-form{
    margin-top: 30px;
}
.service-detail-page .side-bar-form .form-section .btn-box{
   width: 100%;
}
.service-detail-page .side-bar-form .form-section .form-heading{
    font-size: 19px;
}
.door-kits-container{
    border-bottom: 1px solid var(--thm-line);
    padding: 20px 0px;
}
.door-kits-container .btn-box{
    border: none;
}
.scroll-page{
    position: sticky;
    top: 120px;
}

/* ==================== drop-down ===================================== */

.nav-bar .menu .drop-down{
    position: relative;
    transition: 0.5s;
}
.drop-down-menu{
    position: absolute;
    width: 220px;
    top: 35px;
    background-color: var(--thm-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: 0.5s;
    border-radius: 10px;
    border-top: 3px solid var(--thm-base);
    padding: 14px;
}
.nav-bar .menu .drop-down-menu li a{
    font-size: 15px;
    padding: 8px 10px;
    color: var(--thm-black);
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--thm-footer);
}
.nav-bar .menu .drop-down-menu li a:hover{
    color: var(--thm-base);
    border-bottom: 1px solid transparent;
}
.nav-bar .menu .drop-down-menu .active-service-page a{
    color: var(--thm-white);
    background-color: var(--thm-base);
    border-bottom: 1px solid var(--thm-base);
}
.nav-bar .menu .drop-down-menu .active-service-page a:hover{
    color: var(--thm-white);
}
.nav-bar .menu .drop-down-menu .active-service-page::before{
    width: 100%;
    transform: rotate(0deg);
}
.nav-bar .menu .drop-down:hover .drop-down-menu{
    opacity: 1;
    z-index: 8;
    top: 45px;
    visibility: visible;
}
.arrow-dropdown{
    display: none;
}

/* ==================== sticky nav-bar ===================================== */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
    z-index: 9;
    background-color: var(--thm-white);
}


/* ==================== back-to-top-button ===================================== */
#back-to-top-button {
    display: inline-block;
    background-color: var(--thm-base);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 2px;
    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: 22px;
    line-height: 50px;
    color: var(--thm-white);
}
#back-to-top-button:hover {
    cursor: pointer;
    background-color: var(--thm-gray);
}
#back-to-top-button:active {
    background-color: var(--thm-light);
}
#back-to-top-button.show {
    opacity: 1;
    visibility: visible;
}


/* ==================== Whatsapp & pdf ===================================== */
.social-btn {
    width: 60px;
    padding: 10px;
    margin-bottom: 5px;
    position: relative;
    right:0px;
    transition: right 1s;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
}
.social-btn:hover {
    right: -10px;
    transition: right 1s;
}
.social {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    z-index: 100;
}
.social a {
    text-decoration: none;
}
.color-brochure {
    background-color: #ffffff;
}
.color-whatsapp {
    background-color: #ffffff ;
}
.social-btn img {
    width: 40px;
}

/* ==================== pop-up ===================================== */
.modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
}
.modal-dialog .form-heading {
    font-size: 20px;
    margin-bottom: 0px;
    color: var(--thm-base);
    text-align: center;
}
.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(253, 13, 13, 0.25);
    opacity: 1;
}

/* ==================== 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: -10px;  
}
.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; 
}
.ham6 .top {
    stroke-dasharray: 40 172;
}

.ham6 .middle {
    stroke-dasharray: 40 111;
}

.ham6 .bottom {
    stroke-dasharray: 40 172;
}

.ham6.active .top {
    stroke-dashoffset: -132px;
}

.ham6.active .middle {
    stroke-dashoffset: -71px;
}

.ham6.active .bottom {
    stroke-dashoffset: -132px;
}


body{
    color: #000;
    min-height: 100vh;
    overflow-x: hidden;
  }
  .cursor {
      display: block;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%);
      border-radius: 50%;
      background: transparent;
      pointer-events: none;
      z-index: 111;
      border: 1px solid #000;
      transition: all 0.2s ease-out;
      animation: moveCursor1 .5s infinite alternate;
  }
  
  .expand {
      background: transparent;
      animation: moveCursor2 .5s forwards;
      border: 1px solid #000;
  }
  
  @keyframes moveCursor1 {
      from {
          transform: scale(1);
      }
  
      to {
          transform: scale(.8);
      }
  }
  
  @keyframes moveCursor2 {
      0% {
          transform: scale(1);
      }
  
      50% {
          transform: scale(2);
      }
  
      100% {
          transform: scale(1);
          opacity: 0;
      }
  }

