@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Montserrat", sans-serif;
    margin: 0;padding: 0;
}
:root{
    --thm-font: 'Montserrat', sans-serif;
    --thm-gray: #808080;
    --thm-black: #252628;
    --thm-color: #fff;
    --thm-base: #F04F25;
    --thm-base-light: #F04F2530; 
    --thm-base2: #20295B;
    --thm-base2-light: #20295B20;
    --thm-light: #F8F5EE;
    --thm-footer: #e2e2e2;
    --thm-base-rgb: 237, 32, 43;
    --thm-primary: #20295B;
    --thm-primary-light: #20295B30;
    --thm-primary-rgb: 231, 189, 26; 
}
h1,
h2,
h3,
h4,
h5,
h6,
p{ margin: 0; }
ul{ margin: 0; padding: 0; }
li{ list-style: none; }
a{ color: var(--thm-black); text-decoration: none; font-weight: 500; transition: 0.5s;}
.mb-80{
    margin-bottom: 80px;  
}
.mt-80{
    margin-top: 80px;
}
a:hover {
    color: var(--thm-base);
}
.theme-color-black{
    background-color: #1F2021;
}
.container{
    max-width: 1230px;
}
.description{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}
.description2{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--thm-gray);
}
.content-box h6{
    display: inline-block;
    color: var(--thm-base2);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    background-color: var(--thm-base2-light);
    padding: 4px 15px;
    border-radius: 4px;
}
.content-box h3{
    width: 100%;
    color: var(--thm-black);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}
.content-box.content-box2{
    width: 80%;
    margin: auto;
    margin-bottom: 40px;
}
.btn-one{
    display: inline-block;
    padding: 10px 30px 10px 20px;
    background-color: var(--thm-base);
    color: var(--thm-color);
    font-weight: 600;
    border-radius: 2px;
    transition: 0.5s;
    position: relative;
}
.btn-one i{
    font-size: 13px;
    opacity: 0;
    transition: 0.5s;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translatey(-50%);
    margin-top: 1px;
}
.btn-one:hover i{
    opacity: 1;
    right: 12px;
}
.btn-one:hover{
    background-color: var(--thm-base2);
    color: var(--thm-color);
}
.btn-one.style2{
    background-color: var(--thm-color);
    color: var(--thm-black);
}
.btn-one.style2:hover{
    background-color: var(--thm-base);
    color: var(--thm-color);
}
.btn-one.style3:hover{
    background-color: transparent;
    border: 2px solid var(--thm-color);
    color: var(--thm-color);
}

.top-header{
    background-color: var(--thm-base2);
}
.top-header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--thm-gray);
    padding: 12px 0px;
}
.top-header .container div{
    display: flex;
    gap: 20px;
}
.top-header .container a{
    display: flex;
    gap: 5px;
    align-items: center;
    color: var( --thm-color);
    font-size: 14px;
}
.top-header .container a i{
    font-size: 18px;
}
.top-header a:hover{
    color: var(--thm-base);
}
.top-header .container .social-media{
    display: flex;
    gap: 10px;
    align-items: center;
}
.top-header .container .social-media a i{
   display: flex;
   align-items: center;
   transition: 0.5s;
}
.top-header .container .social-media a:hover i{
    color: var(--thm-base);
}
.nav-bar{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.nav-bar .container{
    display: flex;
    justify-content: space-between;
    padding: 8px 0px;
    align-items: center;
}

/* .nav-bar .logo-img{
    width: 20%;
} */
.nav-bar .menu{
    display: flex;
    gap: 10px;
}
.nav-bar .menu > li{
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-bar .menu > li > a{
    display: flex;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    align-items: center ;
    padding: 3px 8px;
    border-radius: 2px;
    border: 1px solid var(--thm-base2-light);

}
.nav-bar .menu > li > a:hover{
    color: var(--thm-color);
    background-color: var(--thm-base);
    border: 1px solid var(--thm-base);
}

.nav-bar .menu > li > .active{
    color: var(--thm-color);
    background-color: var(--thm-base);
    border: 1px solid var(--thm-base);
}
.nav-bar .menu .drop-down-icon{
    display: none;
}
.nav-call{
    display: flex;
    gap: 10px;
    align-items: center;
}
.nav-call a i{
    font-size: 20px;
    color: var(--thm-base);
    background-color: var(--thm-color);
    padding: 16px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}
.nav-call:hover a i{
    background-color: var(--thm-base-light);
}
.nav-call a{
    font-weight: 700;
    line-height: 1.3;
}
.nav-call a span{
    font-size: 13px;
    font-weight: 500;
    color: var(--thm-gray);
}

/* .banner-section{
} */
/* .banner-content{
    padding: 150px 0px;
} */
.banner-section{
    position: relative;
}
.banner-content{
    position: absolute;
    width: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    z-index: 4;
    text-align: center;
    padding: 20px;
    border-radius: 4px;
    background-color: var(--thm-base2-light);
}
.banner-content .content h5{
    color: var(--thm-base);
    font-weight: 600;
    margin-bottom: 6px;
}
.banner-content .content h1{
    font-size: 45px;
    font-weight: 600;
    color: var(--thm-color);
    margin-bottom: 15px;
}
.banner-content .content .description{
    color: var(--thm-color);
}
.btns-box{
    display: flex;
    gap: 10px;
    justify-content: center;
}


.about-section .img-box{
    text-align: center;
}
.about-section img{
    border-radius: 6px;
}
.about-section .about-points{
    display: flex;
    gap: 5px;
}
.about-section .bold-text{
    color: var(--thm-base2);
    font-size: 16px;
    font-weight: 600;
}
.about-section .about-points .about-points-icon i{
    font-size: 16px;
    padding: 6px 8px;
    background-color: var(--thm-base-light);
    border-radius: 50%;
    color: var(--thm-base);
    margin-top: -2px;

}
.about-section .about-points div h5{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 6px;
}
.about-section .about-points-icon.about-points-icon2 i{
    background-color: var(--thm-primary-light);
    color: var(--thm-primary);
}
.about-section .content-box .funfact-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.about-section .content-box .funfact-section div {
    display: flex;
    gap: 15px;
    border: 2px solid var(--thm-base);
    padding: 10px;
    border-radius: 10px;
    align-items: center;
}
.about-section .content-box .funfact-section div p{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}
.about-section .content-box .funfact-section div p:first-child{
    font-size: 40px;
    font-weight: 700;
    color: var(--thm-primary);
}
.funfact{
    background-color: var(--thm-base2-light);
    padding: 60px 20px;
    border-radius: 6px;
    margin: 0px 20px 80px 20px;
}
.funfact .funfact-section {
   display: grid;
   gap: 30px;
   grid-template-columns: repeat(4, 1fr);
}
.funfact .funfact-section div {
    display: flex;
    gap: 15px;
    border: 2px solid var(--thm-base);
    padding: 20px 10px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
}
.funfact .funfact-section div p{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    border-left: 3px solid var(--thm-base-light);
    padding-left: 15px;
}
.funfact .funfact-section div p:first-child{
    font-size: 40px;
    font-weight: 700;
    color: var(--thm-primary);
    border: none;
    padding-left: 0px;
}



.roof-type .find-solution{
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.roof-type .find-solution a img{
    transition: 0.5s;
}
.roof-type .down-flow{
    position: absolute;
    bottom: -45px;
    left: 20px;
    transition: 0.5s;
    z-index: 2;
}
.roof-type .find-solution .down-flow a h4{
    display: block;
    font-size: 22px;
    color: var(--thm-color);
    font-weight: 600;
    margin-bottom: 15px;
    margin-left: 0px;
}
.roof-type .find-solution:hover a img{
    transform: scale(1.1);
}
.roof-type .find-solution:hover .down-flow{
    bottom: 20px;
}

.roof-type .find-solution::before{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient( rgba(0, 0, 0, 0) 0%, black 100%);
    opacity: 0.6;
    z-index: 1;
}
.roof-type .find-solution:hover::before a img{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient( rgba(0, 0, 0, 0) 0%, black 100%);
    opacity: 0.6;
}




.why-choose-us-section{
   background-color: var(--thm-base2-light);
   padding: 80px 0px;
}
.why-choose-us-section2.why-choose-us-section{
    background-color: var(--thm-color);
    padding: 0px 0px;
 }
.why-choose-us-section .wcu-items{
    padding: 10px;
    border: 1px solid var(--thm-base2-light);
    margin-bottom: 15px;
    border-radius: 4px;
}
.why-choose-us-section .wcu-items .description2{
    margin-bottom: 0px;
}
.why-choose-us-section .description2{
    color: var(--thm-black);
}
.why-choose-us-section .wcu-items h5{
    display: inline-flex;
    gap: 3px;
    align-items: center;
    font-size: 18px;
   font-weight: 600;
    margin-bottom: 3px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--thm-base-light);
}
.why-choose-us-section .wcu-items h5 i{
    font-size: 15px;
    color: var(--thm-base);
}

.wcu-img-item img{
    border-radius: 6px;
}



.testimonial-section{
    /* background-image: url(../imgs/tbg21.png); */
    padding: 80px 0px;
    background-color: var(--thm-base2-light);
}
.testimonials-silder-div{
    padding: 25px;
    background-color: var(--thm-color);
    border-radius: 4px;
    position: relative;
    border-radius: 4px 4px 80px 4px;
    border: 2px solid var(--thm-base-light);
}
.testimonials-silder-div .person-info{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0px;
    
}
.testimonials-silder-div .person-info div i{
    font-size: 45px;
    color: var(--thm-base);
}
.testimonials-silder-div .person-info div h6{
    font-weight: 600;
}
.testimonials-silder-div .person-info div p{
    font-size: 12px;
}

.testimonials-silder-div:hover::before{
    transform: scaleY(1);
}
.contact-info-items{
    display: flex;
    gap: 10px;
    /* align-items: center; */
    margin-bottom: 20px;
}
.contact-info-items div i{
    color: var(--thm-base2);
    background-color: var(--thm-base2-light);
    padding: 15px;
    font-size: 20px;
    border-radius: 8px;
}
.contact-info-items .contact-info-content p{
    color: var(--thm-base2);
    font-weight: 600;
    margin-bottom: 0px;
}
.contact-info-items .contact-info-content .opening-time{
    color: var(--thm-gray);
    font-weight: 500;
    font-size: 15px;
}
.contact-info-items div a{
    color: var(--thm-gray);
    transition: 0.5s;
    font-size: 15px;
}
.contact-info-items:hover div a{
    color: var(--thm-base);
}
.contact-form-section .social-section h5{
    margin-top: 25px;
    color: var(--thm-base2);
    font-weight: 600;
}
.contact-form-section .social-media{
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.contact-form-section .social-media i{
    font-size: 22px;
    border: 1px solid var(--thm-base2);
    border-radius: 3px;
    padding: 6px 7px;
    color: var(--thm-base2);
    background-color: transparent;
    transition: 0.5s;
}
.contact-form-section .social-media a i:hover{
    border: 1px solid var(--thm-base);
    color: var(--thm-base);
}

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




.footer-section{
    /* background-color: var(--thm-black); */
    background-color: var(--thm-base2);
}
.footer-bg-img{
    background-image: none;
}
.footer-container{
    padding: 60px 10px 40px 10px;
}
.footer-logo a img{
    /* background-color: var(--thm-color);
    padding: 15px;
    border-radius: 4px; */
    margin-bottom: 25px;
}
.footer-container .description{
    color:var(--thm-footer);
}
.footer-section .social-media{
    display: flex;
    gap: 10px;
}
.footer-section .social-media i{
    font-size: 22px;
    border: 1px solid var(--thm-footer);
    border-radius: 3px;
    padding: 6px 7px;
    color: var(--thm-footer);
    background-color: transparent;
    transition: 0.5s;
}
.footer-section .social-media a i:hover{
    border: 1px solid var(--thm-base);
    color: var(--thm-base);
}
.footer-container .sub-heading{
    font-size: 20px;
    display: inline-block;
    color: var(--thm-footer);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--thm-footer);
}
.footer-services li{
    margin-bottom: 10px;
    overflow: hidden;
}
.footer-services li a{
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--thm-footer);
    transition: 0.5s;
}
.footer-services li a i{
    font-size: 12px;
    margin-left: -15px;
    visibility: hidden;
    transition: 0.4s;
}
.footer-services li a:hover i{
    margin-left: 0px;
    visibility: visible;
    transition: 0.4s;
    color: var(--thm-base);
}
.footer-services li a:hover{
    color: var(--thm-base); 
}
.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-gray);
}
.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-gray);
}
.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 #8f8f8f;
}
.footer-bottom-section p a{
    color: var(--thm-color);
    transition: 0.5s;
}
.footer-bottom-section p a:hover{
    color: var(--thm-base);
}

.breadcrumb-section {
    background-image: url(../imgs/inner-page-banner.jpg);
    background-size: cover;
    background-position: center, bottom;
    padding: 80px 0px;
    box-sizing: border-box;
}
.breadcrumb-section .breadcrumb-heading {
    color: var(--thm-color);
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.breadcrumb-section .breadcrumb {
    display: flex;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
    font-weight: 500;
    color: var(--thm-color);
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
}
.breadcrumb-section .breadcrumb .symbol-breadcrumb {
    font-weight: 500;
    font-size: 12px;
    color: var(--thm-color);
    padding: 0px 12px;
    margin-top: 2px;
} 
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
    color: var(--thm-base);
    font-weight: 600;
}


.form-section {
    width: 100%;
    margin: auto;
    padding: 40px;
    /* background-color: var(--thm-color); */
    background-image: url(../imgs/home-6-banner.jpg);
    border-radius: 4px;
}
.form-heading {
    font-size: 25px;
    margin-bottom: 6px;
    color: var(--thm-black);
    font-weight: 600;
    display: inline-block;
    border-bottom: 1px solid var(--thm-base);
}
.form-control {
    display: block;
    margin-top: 3px;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--thm-black);
    background-color: var(--thm-color);
    background-clip: padding-box;
    border: 2px solid var(--thm-footer);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-select {
    border-radius: 0px;
    margin-top: 3px;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 4px;
    border: 2px solid var(--thm-footer);
    color: var(--thm-black);
}
.form-select:focus {
    border: 2px solid var(--thm-color);
    box-shadow: rgba(252, 148, 148, 0.25) 0px 0px 0px 0.25rem;
}
.form-control:focus {
    color: var(--thm-black);
    background-color: var(--thm-color);
    border: 2px solid var(--thm-color);
    outline: 0px;
    box-shadow: rgba(253, 143, 143, 0.25) 0px 0px 0px 0.25rem;
}
.form-section button{
    border: none;
}

.why-choose-us-page{
    background-image: url(../imgs/shape-11.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    padding: 0px 0px 120px 0px;
}

.why-choose-us-page .wcu-points{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
.why-choose-us-page .wcu-points .wcu-items{
    background-color: var(--thm-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.why-choose-us-page .wcu-points .wcu-items i{
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--thm-base);
}
.why-choose-us-page .wcu-points .wcu-items h5{
    font-weight: 700;
    margin-bottom: 10px;
}
.why-choose-us-page .wcu-points .wcu-items p{
    font-size: 16px;
    font-weight: 500;
    color: var(--thm-gray);
}
.why-choose-us-page .wcu-points .wcu-items .wcu-item-desc{
    position: absolute;
    background-color: var(--thm-base);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    left: 0;
    top: 80px;
    transition: 0.5s;
    opacity: 0;
    height: 100%;
    width: 100%;
}
.why-choose-us-page .wcu-points .wcu-items .wcu-item-desc > h5{
    color: var(--thm-color);
    margin-bottom: 10px;
}
.why-choose-us-page .wcu-points .wcu-items .wcu-item-desc > p{
    color: var(--thm-color);
    margin-bottom: 10px;
}
.why-choose-us-page .wcu-points .wcu-items:hover .wcu-item-desc{
    top: 0;
    opacity: 1;
}

.service-page{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.service-detail-page .side-bar{
    margin-bottom: 30px;
    border: 1px solid var(--thm-base2-light);
    padding: 20px;
    border-radius: 4px;
}
.service-detail-page .side-bar li a{
    display: block;
    background-color: var(--thm-base2-light);
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    border: unset;
    z-index: 1;
    transition: 0.5s;
    overflow: hidden;
}
.service-detail-page .side-bar li a::before{
    font-family: "Font Awesome 5 Free";
    content:  "\f08e";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}
.service-detail-page .side-bar img{
    border-radius: 4px 4px 0px 0px;
}
.service-detail-page .side-bar li a:hover{
    color: var(--thm-color);
    background-color: var(--thm-base2);
}
.service-detail-page .side-bar li .active-service{
    background-color: var(--thm-base2);
    color: var(--thm-color);
}
.service-detail-page .side-bar  .call-container{
    display: block;
    text-align: center;
    padding: 40px;
    background-color: var(--thm-base2-light);
    border-radius: 0px 0px 4px 4px;
}
.service-detail-page .side-bar  .call-container h4{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--thm-base-light);
}
.service-detail-page .side-bar .call-container .service-call{
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-detail-page .service-detail-content h3{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--thm-base);
}
.service-detail-page .service-detail-content strong{
    color: var(--thm-base2);
    font-size: 16px;
}
.service-detail-page .service-detail-content h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--thm-base);
}
.service-detail-page .service-detail-content h5{
    display: inline-flex;
    gap: 3px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--thm-base-light);
    color: var(--thm-base2);
}
.service-detail-page .service-detail-content h5 i{
    font-size: 15px;
    color: var(--thm-base);
}
.service-detail-page .service-detail-content .services-items{
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    border: 3px solid var(--thm-base-light);
}
.service-detail-page .service-detail-content .services-items div i{
    font-size: 35px;
    padding: 15px 20px;
    border-radius: 50%;
    color: var(--thm-base);
    border: 3px solid var(--thm-base);
}
.service-detail-page .service-detail-content .services-items p{
    font-weight: 600;
}
.service-detail-page .service-detail-content img{
    border-radius: 8px;
}

/* ==================== 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; 
}
.ham1 .top {
    stroke-dasharray: 40 139;
}
.ham1 .bottom {
    stroke-dasharray: 40 180;
}
.ham1.active .top {
    stroke-dashoffset: -98px;
}
.ham1.active .bottom {
    stroke-dashoffset: -138px;
}


.nav-bar .menu .drop-down{
    position: relative;
    transition: 0.5s;
}
.drop-down-menu{
    position: absolute;
    width: 250px;
    top: 45px;
    background-color: var(--thm-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: 0.5s;
    border-radius: 2px;
}

.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-primary-light);
}
.nav-bar .menu .drop-down-menu li a:hover{
    color: var(--thm-color);
    background-color: var(--thm-base);
}
.nav-bar .menu .drop-down-menu li .active-service-page{
    color: var(--thm-color);
    background-color: var(--thm-base);
}
.nav-bar .menu .drop-down:hover .drop-down-menu{
    opacity: 1;
    z-index: 8;
    top: 65px;
    visibility: visible;
}

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

#back-to-top-button {
    display: inline-block;
    background-color: var(--thm-base);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 3px;
    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-color);
  }
  #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;
  }
.thank-you-section {    background-image: url(../imgs/inner-page-banner.jpg);    background-size: cover;    background-position: center, bottom;    padding: 150px 0px 120px 0px;    box-sizing: border-box;}.thank-you-page{    text-align: center;    background-color: var(--thm-color);    padding: 30px;    border-radius: 5px;}