﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --theme-color: #15191b;
  --theme-color-second: #2a2424;
  --theme-color-third: #f7efe7;
  --theme-accent: #d8bbb8;
  --theme-accent-strong: #9a6f6b;

  --heading-font: "Montserrat", serif;
  --paragraph-font:  "Poppins", serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font)
  /* color: var(--theme-color) !important; */
}

::-moz-selection { /* Code for Firefox */
  color:var(--theme-color-second);
  background: rgba(216, 187, 184, 0.45);
}

::selection {
  color:var(--theme-color-second);
  background: rgba(216, 187, 184, 0.45);
}
::-webkit-scrollbar {
  width: 18px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  border-radius: 10px;
  border: 3px solid #f1f1f1;
  transition: background-color 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color:var(--theme-color-second);
}
a {
  color: var(--theme-accent-strong);
  text-decoration: none;
  transition: all 0.5s;
  display: inline-block;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
  
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: inherit;
}


p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 17px;
}
ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 70px;
  line-height: 1;
}

h2 {
  font-size: 45px;
  line-height: 1;
  font-weight: 600;
}

h3 {
  font-size: 42px;
}

h4 {
  font-size: 31px;
}

h5{
  font-size: 25px;
}

h6{}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 60px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 210px;
}
.header_menu li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 26px;
  border-radius: 50px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-accent);
  color: var(--theme-color);
  border-color: var(--theme-accent);
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color:#fff;
  font-size: 16px;
  text-transform: capitalize;
  padding: 29px 15px;
  display: inline-block;
  font-weight: 500;
}
.navbar-nav li {
  margin-left: 32px;
}
.navbar li:hover a {
  color: var(--theme-accent);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-accent);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

.fixed_btn {
  position: fixed;
  bottom: 0;
  display: flex;
  gap: 0;
  display: none;
  width: 100%;
}

.fixed_btn a.comon-btn{
  border-radius: 0;
  width: 100%;
  font-size: 14px;
  border: 2px solid #000;
}

a.btn-black{
  background-color: var(--theme-color-third);
}


/* banner */
.banner {
  background: linear-gradient(rgba(18, 18, 18, 0.55), rgba(18, 18, 18, 0.35)), url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80') no-repeat center;
  background-size: cover;
  padding: 170px 0 100px;
  color: #fff;
}

.banner h4 {
  font-family: var(--paragraph-font);
  letter-spacing: 4px;
  /* margin: 0; */
}
.banner h2 {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 33px;
}


/* logo-privew */

.logo-privew {
  padding: 50px 0 80px;
}


/* service */
.service .service-box{
 transition: all 0.6s;
 width: 100%;
 height: 100%;
 box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.service .service-box:last-child{
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.service .service-box:last-child h5 a{
  color: #1c1c1c;
  transition: all 0.6s;
  margin-bottom: 20px;
}
.service .service-box:hover:last-child h5 a{
  color: #fff;
} 
.service .service-box .img-box{
 overflow: hidden;
 border-radius: 10px;
 transition: 0.6s;
}

.service .service-box .img-box img{
  transform: scale(1);
  transition: 0.6s;
 }

 .service .service-box:hover .img-box img{
  transform: scale(1.03);
  transition: 0.6s;
 }
 .read-btn {
  border: none;
  outline: none;
  display: inline-block;

}
.read-btn img {
  width: 47px;
}
.service .service-box .img-box {
  overflow: hidden;
  border-radius: 10px;
  transition: 0.6s;
  background: #f6e5d3;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service .service-box h5 {
  font-family: var(--paragraph-font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
 
 .service .service-box  p{
  font-size: 15px;
 }
 .service .service-box {
  transition: all 0.6s;
  background-color: var(--theme-color-third);
  padding: 35px;
}
.service .service-box:hover{
  background: var(--theme-color);
}
.service .service-box:hover h5{
  color: #fff;
}
.service .service-box:hover p{
  color: #fff;
}
 a.border-btn{
  background-color: #fff;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
 }


 /*  background-sec1 */
 

 /* home-call-to-action */

 .home-call-to-action{
  background-color: var(--theme-color);
  color: #fff;
  text-transform: uppercase;
 }

 .home-call-to-action h3{
  font-weight: 500;
  font-family: var(--paragraph-font);
  letter-spacing: 3px;
 }

 .home-call-to-action h3 a{
  color: #fff;
 }


 

/* faq sec */


.faq-contact .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: var(--theme-color);
  box-shadow: none;
  border: none !important;
}

.faq-contact .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: none;
}

.faq-contact .accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  border: none !important;
}

.faq-contact .accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: none !important;
}

.faq-contact .accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  text-align: start;
  background:  var(--theme-color);
  color: #ffffff;
  border: none;
}

.faq-contact .get-intouch button:hover {
  background-color: #000;
  color: #fff;
}

.faq-contact .accordion-item h2 {
  line-height: 22px;
  font-size: 18px;
}

.faq-contact .accordion-item p {
  color: #ffffff;
  font-weight: 500;
  padding-left: 24px;
  border-left: 2px solid #ffffff;
}

.faq-contact .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  padding-top: 0;
}

.faq-contact .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 19px 20px;
  font-size: 17px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: #e7e7e7;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}

/* gallery */

.gallery {
  background-color: var(--theme-color);
  color: #fff;
}

.gallery .img-box{
 border-radius: 5px;
 overflow: hidden;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999999!important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}


/* testimonial */

.testimonial .review-box {
  border: 1px solid var(--theme-accent);
  border-radius: 15px;
  padding: 35px 18px;
}

.testimonial .review-box .img-box{
  width: 50px;
  margin-bottom: 20px;
}

.testimonial .review-box h5{
  font-family: var(--paragraph-font);
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 8px;
}

.testimonial .review-box .star {
  display: flex;
  gap: 3px;
  color: #ecc307;
  font-size: 18px;
  padding: 0;
  margin: 0;
}

.testimonial .review-box  p{
  font-size: 15px;
  line-height: normal;
}

.testimonial .owl-nav img{
  width: 25px;
}

.testimonial button.owl-prev {
  position: absolute;
  top: 35%;
  left: -70px;
}

.testimonial button.owl-next {
  position: absolute;
  top: 35%;
  right: -70px;
}

/* contact  */

.text-blue {
  color: var(--theme-color);
  font-size: 19px;
}



.get-in-touch input[type="text"] {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #666;
}

.get-in-touch input[type="email"] {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #666;
}

.get-in-touch select {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #666;
}

.get-in-touch textarea {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  height: 120px;
  outline: none;
  border: 1px solid #666;
}

.get-in-touch button {
  background-color: var(--theme-color);
  padding: 14px;
  border-radius: 5px;
  width: 250px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  outline: none;
  font-weight: 600;
  transition: 0.6s;
}
.get-in-touch button:hover{
  background-color: #1e1e1e;
  transition: 0.6s;
}
.get-in-touch ul li {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  font-size: 20px;
  align-items: baseline;
}

.get-in-touch ul li a {
  color: #505050;
}
.tex-rl{
  text-align: right;
}


/* footer */

.footer {
  background-color: var(--theme-color);
  color: #e6e6e6;
  padding: 80px 0;
}

.footer .top-ft h5 {
  font-weight: 400;
  font-family: var(--paragraph-font);
  text-transform: uppercase;
  font-size: 34px;
  margin-bottom: 8px;
}

.footer .top-ft  form {
  background-color: #fff;
  border-radius: 5px;
  color: var(--theme-color);
  padding: 10px;
}

.footer .top-ft  form i{
  text-align: center;
  display: block;
  line-height: 0;
  font-size: 22px;
}

.footer .top-ft  form  input{
  padding: 10px 0px;
  border: none;
}

.footer .top-ft  form  button{
  padding: 10px 0px;
  border: none;
  background-color: var(--theme-color);
  width: 100%;
  font-weight: 600;
  color: #fff;
  border-radius: 3px;
}

.footer .social {
  display: flex;
  gap: 13px;
  margin-top: 15px;
}

.footer .social li a{
  color: #fff;
  font-size: 20px;
}

.footer  .bootom-ft .content p{
  font-size: 13px;
  line-height: normal;
}

.footer .bootom-ft .ft-link li{
  margin-bottom: 10px;
}


.footer .bootom-ft .ft-link li a{
  color: #fff;
  font-size: 13px;
  line-height: normal;
}

.footer .bootom-ft  h6{
  font-size: 19px;
}

.footer .ft-contact li a{
 display: flex;
 font-size: 18px;
 color: #fff;
 align-items: center;
 gap: 5px;
}
.footer .ft-contact li a span{
  font-size: 13px;
  line-height: normal;
}
.footer .ft-contact li {
  margin-bottom: 10px;
}

.footer .ft-contact li a  i{
  color: var(--theme-color);
}

.footer  .heading p{
  font-size: 15px;
}



/* inner-service */

.inner-service .img-box{
  position: relative;
}

.inner-service .img-box .over-lay-1{
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
  background-color: var(--theme-color);
}

.inner-service p span{
  color: var(--theme-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.inner-service h2{
  color: #1e1e1e;
}

.inner-service h2 span{
  color: var(--theme-color);
}

.inner-service ul li{
  display: flex;
  align-items: start;
  font-size: 20px;
  color: #505050;
  margin-bottom: 15px;
  gap: 10px;
}


.inner-service ul li i {
  color: var(--theme-color);
  font-size: 24px;
  line-height: 1;
  position: relative;
  top: 3px;
}

.insulation li{
 font-weight: 600;
 margin-bottom: 10px;
 font-style: italic;
}

.text-justify{
  text-align: justify;
}

.get-in-touch h6{
  margin-bottom: 5px;
}
.about-bg{
  background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.5)), url('../image/about-bg.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
  background-attachment: fixed;
}

#why-us .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

#why-us  .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

#why-us  .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

#why-us  .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

#why-us  .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

#why-us  .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
#why-us .service-item .icon {
	background: var(--theme-color);
	color: #fff;
	margin: 0 auto;
	width: 64px;
	height: 64px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: 0.3s;
	/* border: 1px solid var(--theme-color); */
}
#why-us .service-item {
	background-color: var(--theme-color-third);
	text-align: center;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	padding: 40px 20px;
	height: 100%;
	transition: all ease-in-out 0.3s;
	border-radius: 10px;
}
.banner h2 {
	margin-bottom: 0px;
	font-weight: 400;
	font-size: 38px;
}
#why-us .stretched-link {
	color: var(--theme-accent-strong);
}
.about-bg .comon-btn {
  width: inherit;
  padding: 12px 40px;
}
.bran-img img {
  width: 117px !important;
}

.heading  h2 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 42px;
}
.heading  h2 span{
  color: var(--theme-accent-strong);
}
h2.span-font {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.footer .social {
  display: flex;
  gap: 13px;
  margin-top: 15px;
  justify-content: center;
}
.faq-contact .accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  text-align: start;
  background: var(--theme-color);
  color: #fff;
  border: none;
}
#home-sec4{
  background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../image/bg-2.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
  background-attachment: fixed;
}
#faq-bg{
  background: url('../image/bg1.jpg') no-repeat center;
  background-size: cover;
}
.faq-contact .accordion-item p {
  color: #ffffff;
  font-weight: 300;
  padding-left: 24px;
  border-left: 2px solid #ffffff;
  font-size: 16px;
}
.ft-logo img {
  width: 180px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.banner-heading h1 {
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 3px rgb(0 0 0 / 37%);
}
.banner-heading p {
  margin-bottom: 20px;
  max-width: 488px;
}
.providers-sec .heading h2{
margin-bottom: 0;
}
section.providers-sec {
  padding: 30px 0;
  background-color: var(--theme-color-third);
}
.service-box:hover .read-btn img{
  filter: brightness(0) invert(1);
}
.service-deltis .btn-sec{
  margin-top: 25px;
}
.service-det-img{
  border-radius: 15px;
  overflow: hidden;
}
.row-below{
  margin-top: 35px;
}
h5.sub-heading {
  font-size: 17px;
  color: #1c1c1c;
  margin-bottom: 10px;
}
.stats-section {
  padding: 40px 0;
  background: #fff;
}

.stats-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px;
}

.stats-section p {
  font-size: 1rem;
  color: #555;
}
.heading h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.get-in-touch .contact-box {
  background:var(--theme-color-second);
  color: #fff;
  text-align: center;
  padding: 40px;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.get-in-touch .phone-icon {
  width: 50px;
  opacity: 0.6;
  margin-bottom: 15px;
}

.get-in-touch .phone-number {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.get-in-touch .availability {
  font-size: 1rem;
  color: #ccc;
  margin: 5px 0;
}

.get-in-touch .locations {
  font-size: 1.1rem;
  margin: 10px 0;
}

.get-in-touch .email {
  font-size: 1.1rem;
  margin-top: 10px;
}

.get-in-touch .email a {
  color: var(--theme-accent);
  text-decoration: none;
  font-weight: bold;
}

.get-in-touch .email a:hover {
  text-decoration: underline;
}

.get-in-touch .contact-phone {
  font-size: 1.1rem;
  margin-top: 10px;
}

.get-in-touch .contact-phone a {
  color: var(--theme-accent);
  text-decoration: none;
  font-weight: bold;
}

.get-in-touch .contact-phone a:hover {
  text-decoration: underline;
}
.get-in-touch input[type="text"] {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 0px;
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #666;
}
.get-in-touch textarea {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 0;
  width: 100%;
  border: none;
  height: 120px;
  outline: none;
  border-bottom: 1px solid #666;
}
.brand-text { color: #fff; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; font-size: 22px; line-height: 1.2; display: inline-block; }
#main_header .brand-text { color: #fff; }
.footer .brand-text { color: #fff; font-size: 24px; text-decoration: none; }
.providers-con { min-height: 86px; display: flex; align-items: center; justify-content: center; background: #fff; color: var(--theme-color-second); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.service-det-img img, .bran-img img { width: 100%; height: 100%; object-fit: cover; }
.bran-img { height: 180px; overflow: hidden; }


.bran-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 82px;
  line-height: 1;
}

.site-logo img,
a.navbar-brand.site-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.footer .site-logo {
  width: 220px;
  height: auto;
  margin-bottom: 20px;
}

.footer .site-logo img {
  width: 100%;
  height: auto;
  filter: none;
  margin-bottom: 0;
  transform: none;
}

.footer .footer-contact-detail {
  margin-bottom: 6px;
}

.footer .footer-contact-detail strong {
  color: #fff;
}

header#main_header {
    background-color: #fff !important;
    border-bottom: 3px solid #e5cbc7;
}
.header_menu li a {
    color: #4b4a49 !important;
    font-size: 16px;
    text-transform: capitalize;
    padding: 29px 15px;
    display: inline-block;
    font-weight: 500;
}
.footer {
    background-color: #f4ecdf;
    color: rgb(35 35 35);
    padding: 80px 0px;
    border-top: 3px solid #e5cbc7;
}
.footer .footer-contact-detail strong {
    color: rgb(0 0 0);
}
.footer .social li a {
    color: rgb(0 0 0) !important;
    font-size: 20px;
}