/*------------------------------------------------------------------
Project: Roofing
Author: The_Krishna
Last change: 25/06/2025
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Whole Site Image Animtion CSS
5.Whole Page scroll Aniamtion CSS
6.Small Header CSS
7.Main Header CSS
8.Main Slider Section CSS
9.Section Two CSS
10.Section Three CSS
11.Section Four CSS
12.Section Five CSS
13.Section Ads
14.Section Six CSS
15.Section Seven CSS
16.Marquee Section CSS
17.Section Eight CSS
18.Section Blog CSS
19.Footer CSS
20.Bottom To Top Button CSS
21.About Page CSS
22.Team Page CSS
23.Team Details Page CSS
24.Pricing Plan Page CSS
25.Our Client Page CSS
26.Testimonial Page CSS
27.FAQ Page CSS
28.404 Page CSS
29.Services Deatils Page CSS
30.Project Page CSS
31.Blog Page CSS
32.Blog details Page CSS 
33.Contact Page CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
  scroll-behavior: smooth;
  font-family: "Outfit", sans-serif;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  text-decoration: none;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0rem;
}
ul {
  padding-left: 0;
}
ul li {
  list-style: none;
}
button {
  border: none;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-corner {
  display: none;
}
::-webkit-scrollbar-thumb {
  background: #fe8500;
  background-clip: content-box;
}
::-webkit-scrollbar-track {
  background-color: #171819;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}
.page-loader p {
  font-size: 40px;
  font-weight: 700;
  color: #fe8500;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding-top: 20px;
}
.blob {
  width: 100px;
  display: grid;
  background: #fff;
}
.blob:before,
.blob:after {
  content: "";
  grid-area: 1/1;
  width: 45px;
  height: 45px;
  background: #fe8500;
  animation: blob-rhf26m 2s infinite;
}
.blob:after {
  animation-delay: -1s;
}
@keyframes blob-rhf26m {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100%, 0);
  }
  50% {
    transform: translate(100%, 100%);
  }
  75% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*-----------------------[ 3.Whole Site Image Animtion CSS ]------------------------*/
.img-animation-style1,
.img-animation-style2,
.img-animation-style3,
.img-animation-style4,
.img-animation-style5,
.img-animation-style6 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img,
.img-animation-style4 img,
.img-animation-style5 img,
.img-animation-style6 img {
  transform-origin: 50% 50%;
  transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active,
.img-animation-style4.active,
.img-animation-style5.active,
.img-animation-style6.active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img,
.img-animation-style4.active img,
.img-animation-style5.active img,
.img-animation-style6.active img {
  transform: scale(1) translate(0px, 0px);
}
.img-animation-style1 {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.img-animation-style1 img {
  transform: scale(1.5) translate(-100px, 0px);
}
.img-animation-style2 {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.img-animation-style2 img {
  transform: scale(1.5) translate(100px, 0px);
}
.img-animation-style3 {
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
}
.img-animation-style3 img {
  transform: scale(1.5) translate(0, 100px);
}
.img-animation-style4 {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.img-animation-style4 img {
  transform: scale(1.5) translate(0, -100px);
}
.img-animation-style5 {
  clip-path: inset(0 15%);
  transform: translate3d(0, 150px, 0);
}
.img-animation-style5.active {
  clip-path: inset(0 0);
  transform: translate3d(0, 0, 0);
}
.img-animation-style5 img {
  transform: scale(1.5) translate(0, -10%);
}
.img-animation-style6 {
  clip-path: circle(15% at 50% 50%);
}
.img-animation-style6.active {
  clip-path: circle(100% at 50% 50%);
}
.img-animation-style6 img {
  transform: scale(1.5) translate(0, 0);
}
/*-----------------------[ 4.Whole Page scroll Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}
.fade_up {
  transform: translateY(-100%);
}
.fade_down {
  transform: translateY(100%);
}
.zoom_in {
  transform: scale(0.5);
}
.zoom_out {
  transform: scale(1.5);
}
.fade_right {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 2s;
}
.fade_left {
  opacity: 0;
  transform: translateX(100%);
  transition: all 2s;
}
.flip_left {
  opacity: 0;
  transform: perspective(400px) rotateY(-90deg);
  transition: all 2s;
}
.flip_right {
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  transition: all 2s;
}
.flip_up {
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transition: all 2s;
}
.flip_down {
  opacity: 0;
  transform: perspective(400px) rotateX(90deg);
  transition: all 2s;
}
.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* ----------------- Button CSS -------------- */
.quote-btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  font-style: normal;
  padding: 16px 24px;
  text-transform: uppercase;
  display: inline-block;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  position: relative;
  color: #fff;
  background: #fe8500;
  transition: 0.3s ease all;
  z-index: 1;
  border-radius: 40px;
}
.quote-btn:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #fff;
  z-index: -1;
  border-radius: 40px;
}
.quote-btn:hover,
.quote-btn:focus {
  color: #fe8500;
}
.quote-btn:hover:before,
.quote-btn:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}
.quote-btn .arrow {
  position: relative;
  margin-left: 10px;
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.4s ease;
  z-index: 1;
}
.quote-btn:hover .arrow,
.quote-btn:focus .arrow {
  transform: rotate(45deg);
  filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%)
    hue-rotate(0deg) brightness(101%) contrast(100%);
}
/*-----------------------[ 6.Small Header CSS ]------------------------*/
.small-header {
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 20;
  width: 100%;
  border-bottom: 2px solid #ffffff0f;
  backdrop-filter: blur(4px) saturate(176%);
  -webkit-backdrop-filter: blur(4px) saturate(176%);
  background-color: rgb(9 18 23 / 55%);
}
.small-header-fixed {
  display: none;
}
.small-header-sub-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.small-header-sub p {
  color: var(--5, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.small-header-sub p img {
  padding-right: 5px;
}
.small-header-sub {
  display: flex;
  align-items: center;
  gap: 40px;
}
.small-header-sub a p:hover {
  color: #fe8500;
}
.small-header-media-main {
  display: flex;
  align-items: center;
}
.small-header-media-main a {
  padding: 12px;
}
.small-header-media-main a img:hover {
  filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%)
    hue-rotate(0deg) brightness(101%) contrast(100%);
}
/*-----------------------[ 7.Main Header CSS ]------------------------*/
header.main-header {
  position: fixed;
  top: 50px;
  z-index: 500;
  width: 100%;
  border-bottom: 2px solid #ffffff0f;
  backdrop-filter: blur(4px) saturate(176%);
  -webkit-backdrop-filter: blur(4px) saturate(176%);
  background-color: rgb(9 18 23 / 55%);
}
.fixed {
  top: 0 !important;
  -webkit-animation: fixedheader 600ms ease 0ms 1 forwards;
  animation: fixedheader 600ms ease 0ms 1 forwards;
}
@keyframes fixedheader {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-container {
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo {
  width: 150px;
  transition: all 0.3s ease;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}
.nav-links li a:hover {
  color: #fe8500;
}
.nav-links li a:hover img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%)
    hue-rotate(0deg) brightness(101%) contrast(100%);
}
.dropdown-menu li a {
  color: var(--4, #222);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bs-dropdown-border-radius: 0;
}
.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown-menu li {
  margin: 0;
  padding: 0 15px;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.nav-links li:hover .dropdown-menu li {
  transform: translateX(0);
  opacity: 1;
}
.nav-links li:hover .dropdown-menu li:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-links li:hover .dropdown-menu li:nth-child(2) {
  transition-delay: 0.15s;
}
.nav-links li:hover .dropdown-menu li:nth-child(3) {
  transition-delay: 0.2s;
}
.nav-links li:hover .dropdown-menu li:nth-child(4) {
  transition-delay: 0.25s;
}
.dropdown-menu li a {
  padding: 8px 0;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-size: 17px;
}
.dropdown-menu li a:hover {
  color: #fe8500;
  padding-left: 5px;
}
.menu-toggle {
  display: none;
  z-index: 1002;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  background: #fe8500;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.menu-toggle img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-toggle:hover {
  color: #007bff;
}
.overlay,
.mobile-quote-btn,
.menu-logo {
  display: none;
}
.contact-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-hear-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fe8500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-info p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.call-info a {
  color: #fe8500;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.mobile-contact-header {
  display: none;
}
/*-----------------------[ 8.Main Slider Section CSS ]------------------------*/
.hero-slider-section {
  position: relative;
}
.hero-slider-section {
  position: relative;
  height: 935px;
  overflow: hidden;
  z-index: 1;
}
.hero-slider-container {
  height: 100%;
}
.hero-slide {
  position: relative;
  height: 100%;
}
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  max-width: 850px;
  margin: 0 auto;
}
.slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(9, 18, 23, 0.8),
    rgba(9, 18, 23, 0.8)
  );
}
.slider-main,
.slick-list,
.slick-track {
  height: 100%;
}
.slide-content {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.slide-content .provide {
  transition-delay: 0.2s;
}
.slide-content .quality {
  transition-delay: 0.3s;
}
.slide-content .residents {
  transition-delay: 0.5s;
}
.slide-content .btn-cutomer-main {
  transition-delay: 0.7s;
}
.slick-active .slide-content,
.slick-active .slide-content .provide,
.slick-active .slide-content .quality,
.slick-active .slide-content .residents,
.slick-active .slide-content .btn-cutomer-main {
  opacity: 1;
  transform: translateY(0);
}
.sec-one-slider-btn {
  width: 80px;
  height: 80px;
  background: #ffff;
  border: 0 none;
  text-align: center;
  color: #fff;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.NextArrow {
  position: absolute;
  bottom: 0;
  right: 325px;
}
.NextArrow:before {
  content: url("../images/svg/right-arrow.svg");
  width: 36px;
  height: 36px;
}
.PrevArrow {
  position: absolute;
  bottom: 0;
  right: 415px;
}
.PrevArrow:before {
  content: url("../images/svg/left-arrow.svg");
  width: 36px;
  height: 36px;
}
.provide {
  color: var(--5, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.quality {
  color: var(--5, #fff);
  font-size: 80px;
  font-weight: 700;
  line-height: 100px;
  text-transform: uppercase;
  text-align: center;
}
.residents {
  color: var(--5, #fff);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  margin-top: 20px;
  text-align: center;
  max-width: 820px;
}
.btn-cutomer-main {
  display: flex;
  align-items: center;
  margin-top: 65px;
  gap: 80px;
}
.cutomer-img-main {
  position: relative;
}
.cutome2 {
  position: absolute;
  left: 50px;
  top: 0;
}
.cutome3 {
  position: absolute;
  left: 100px;
  top: 0;
}
.cutomer-img-main-text {
  display: flex;
  align-items: center;
  gap: 120px;
  justify-content: center;
  margin-top: 60px;
}
.cutomer-img-main img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.cutomers-text-main h2 {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.cutomers-text-main p {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cutomers-text-main p::before {
  content: url(../images/svg/star.svg);
}
/*-----------------------[ 9.Section Two CSS ]------------------------*/
.image-Photo {
  max-width: 100%;
}
.timate-box-main-head {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 975px;
  background: #f5f6f7;
  margin-top: -110px;
  z-index: 10;
  position: absolute;
  left: 0;
}
.timate-box-main {
  text-align: center;
}
.timate-box-main p {
  color: #091217;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding-top: 10px;
}
.timate-box-main h2 {
  color: var(--13, #091217);
  text-align: center;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
  text-transform: uppercase;
}
.timate-box-main h2 sup {
  color: var(--14, #fe8500);
  font-weight: 400;
}
.aboutText {
  color: var(--14, #fe8500);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.about-row {
  padding-top: 200px;
  padding-bottom: 100px;
}
.business {
  color: #091217;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  padding-top: 10px;
}
.hardest {
  color: #091217;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.hardest-space {
  padding-top: 30px;
}
.multi-qustions-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  margin-bottom: 60px;
}
.qution-text {
  color: #091217;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: inline-flex;
  align-items: center;
  padding-bottom: 20px;
}
.qution-text::before {
  content: url("../images/svg/check-mark.svg");
  width: 36px;
  height: 36px;
  background-color: #fe8500;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 8px 15px rgba(254, 133, 0, 0.8);
}
.secTwo-img-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.secTwo-img-main img {
  max-width: 100%;
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
}
.bluer-roofing {
  color: #f5f6f7;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 3.2px;
  transform: rotate(90deg);
  position: absolute;
  left: -105px;
  top: 230px;
  z-index: 1;
}
.card-call-now-main {
  background: #091217;
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 40px;
  animation: 5s ease 0s normal none infinite running moveLeftRight;
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
    -moz-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
.card-call-now-main div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--5, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.card-call-now-main a {
  color: var(--14, #fe8500);
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 10px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.card-call-now-main a:hover {
  color: #fff;
}
/*-----------------------[ 10.Section Three CSS ]------------------------*/
.section-three {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/home/roofer-man.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  height: 600px;
  position: relative;
  padding: 100px 0;
}
.latest-code {
  color: #fff;
}
.latest-hardest {
  padding-top: 20px;
  color: var(--8, #a8a9ad);
  max-width: 630px;
}
.benefits-slider .slick-arrow {
  width: 48px;
  height: 48px;
  font-size: 0;
  background: #fe8500;
  border-radius: 50%;
  box-shadow: 0px 8px 15px rgba(254, 133, 0, 0.8);
}
.benefits-slider .slick-prev {
  position: absolute;
  top: 40px;
  right: 60px;
  z-index: 5;
}
.benefits-slider .slick-next {
  position: absolute;
  right: 0;
  top: 40px;
}
.benefits-slider .slick-prev::before {
  content: url("../images/svg/left-white-arrow.svg");
}
.benefits-slider .slick-next::before {
  content: url("../images/svg/right-white-arrow.svg");
}
.fade-down {
  animation: fadeDown 0.8s ease forwards;
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-----------------------[ 11.Section Four CSS ]------------------------*/
.services-slider-img {
  width: 100%;
}
.services-slider-box:hover .circle-svg {
  background: #fe8500;
}
.services-slider.slick-initialized.slick-slider {
  margin-top: -250px;
}
.services-slider-box.slick-slide {
  margin: 0 15px;
}
.circle-svg {
  width: 100px;
  height: 100px;
  background: #091217;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -55px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.circle-svg img {
  width: 100%;
  max-width: 64px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.services-slider-box:hover .circle-svg img {
  transform: rotateY(180deg);
}
.circle-box-main {
  border-right: 2px solid var(--12, #f5f6f7);
  border-bottom: 2px solid var(--12, #f5f6f7);
  border-left: 2px solid var(--12, #f5f6f7);
  background: var(--5, #fff);
  padding: 0 30px 30px 30px;
}
.circle-box-main h2 {
  color: var(--13, #091217);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-top: 30px;
}
.circle-box-main p {
  color: var(--4, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-top: 10px;
}
.read-more-btn {
  margin-top: 30px;
}
/*-----------------------[ 12.Section Five CSS ]------------------------*/
.section-five {
  padding: 100px 0;
  overflow: hidden;
}
.haassle-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
  border-bottom: 2px solid #f5f6f7;
}
.haassle-box-sub h2 {
  color: var(--13, #091217);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.haassle-box-sub p {
  color: var(--4, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.why-choose-img1-main {
  display: flex;
  align-items: center;
  justify-content: end;
}
.why-choose-img1 {
  max-width: 100%;
}
.why-choose-img2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
/*-----------------------[ 13.Section Ads ]------------------------*/
.ads-section {
  padding: 100px 0;
  background: var(--13, #091217);
}
.satistication-container {
  display: flex;
  align-items: center;
  gap: 110px;
}
.satistication {
  color: #fff;
  font-weight: 500;
  max-width: 770px;
}
.satistication span {
  font-weight: 700;
  color: #fe8500;
}
.arrrowVector {
  position: absolute;
  right: -130px;
  bottom: -50px;
  animation: 3s ease 0s normal none infinite running moveLeftRight;
}
.call-detl {
  display: flex;
  align-items: center;
  gap: 20px;
}
.call-detl .img-main-call {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fe8500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-detl .img-main-call img {
  width: 48px;
}
.call-detl p {
  color: var(--5, #fff);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  padding-bottom: 10px;
}
.call-detl a {
  color: var(--14, #fe8500);
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}
.call-detl a:hover {
  color: #fff;
}
/*-----------------------[ 14.Section Six CSS ]------------------------*/
.section-six {
  padding: 100px 0;
}
.tbas-btn-heading-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
.tbas-btn-heading-main div {
  max-width: 630px;
}
.total-count {
  background: #fe8500;
  width: 18px;
  height: 18px;
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: -18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.total-count.tab-active {
  background: var(--13, #091217);
  color: #fff;
}
.tab-btn-main {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tab-btn {
  padding: 10px 20px;
  background: var(--12, #f5f6f7);
  color: var(--13, #091217);
  transition: all 0.3s ease-in-out;
  display: block;
}
.tabContainer {
  overflow: hidden;
  position: relative;
}
.Tabcondent {
  position: absolute;
  width: 50%;
  height: 50%;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
.tab-btn.tab-active {
  background: var(--14, #fe8500);
  color: #ffff;
}
.tab-btn:hover {
  color: #fff;
  background: #fe8500;
}
.Tabcondent.tab-active {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.6s;
  position: relative;
}
.img-group-project {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.img-group-project2 {
  margin-top: 0;
  margin-bottom: 30px;
}
.project-card {
  position: relative;
  overflow: hidden;
  display: block;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-horizontal-img {
  min-height: 300px;
}
.project-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(9, 18, 23, 0.8);
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.project-card:hover .project-overlay {
  opacity: 1;
  transform: scale(1);
}
.icon-box {
  align-self: flex-end;
  background: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-content::before {
  content: "";
  height: calc(100% - 40px);
  border-left: 2px solid #fe8500;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.text-content::after {
  content: "";
  width: calc(100% - 30px);
  border-bottom: 2px solid #fe8500;
  position: absolute;
  left: 10px;
  bottom: 30px;
}
.text-content {
  color: #fff;
  padding: 0 15px 25px;
}
.text-content h3 {
  color: var(--5, #fff);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.text-content p {
  color: var(--5, #fff);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-top: 8px;
}
/*-----------------------[ 15.Section Seven CSS ]------------------------*/
.section-seven {
  padding: 100px 0;
}
.alking {
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}
.contact-us-future-btn {
  margin-top: 40px;
}
.slider-qut-per-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #fff;
  padding: 30px 30px 20px 30px;
}
.slider-qut-per-main .slider-person img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.slider-person {
  display: flex;
  align-items: center;
  gap: 15px;
}
.emper-main {
  padding: 30px;
}
.emper {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.jack-detail-main h3 {
  color: var(--14, #fe8500);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.jack-detail-main p {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.future-slider {
  margin-top: 60px;
}
.fuures-slider-box {
  margin: 0 12px 0 0;
  background: #f5f6f7;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.house {
  width: 140px;
  position: absolute;
  bottom: -3px;
  right: 0;
  z-index: -1;
  filter: brightness(0) saturate(100%) invert(66%) sepia(80%) saturate(4138%)
    hue-rotate(1deg) brightness(103%) contrast(102%);
  opacity: 0.1;
}
/*-----------------------[ 16.Marquee Section CSS ]------------------------*/
.logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  margin-top: 60px;
}
.logos-slide {
  animation: slide-ltr 50s linear infinite;
}
@keyframes slide-ltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.marquee-content {
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  align-items: center;
}
.marquee-img-main {
  margin: 0 17px;
}
/*-----------------------[ 17.Section Eight CSS ]------------------------*/
.section-eight {
  background-image: linear-gradient(
      to bottom,
      rgba(9, 18, 23, 0.7),
      rgba(9, 18, 23, 0.7)
    ),
    url("../images/home/sec-form-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
}
.trust-conter-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 60px;
}
.trust-conter-main h2 {
  color: #fff;
}
.trust-conter-main p {
  color: var(--8, #a8a9ad);
}
.form-box {
  padding: 30px;
  background: #fff;
}
.nedd-help-form {
  margin-top: 30px;
}
.nedd-help-form input {
  width: 100%;
  padding: 10px 15px;
  background: var(--12, #f5f6f7);
  border: none;
  outline: none;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.nedd-help-form input::placeholder {
  color: #a8a9ad;
}
.couter-form-row {
  justify-content: space-between;
}
/*-----------------------[ 18.Section Blog CSS ]------------------------*/
.blog-section {
  padding: 100px 0;
}
.recent-artical {
  text-align: center;
}
.blog-home-row {
  padding-top: 60px;
}
.blog-box-home-main {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.blog-box-home-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.blog-box-home-main:hover::before {
  opacity: 1;
}
.blog-img {
  width: 100%;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.blog-box-home-main:hover .blog-img {
  transform: scale(1.03);
  filter: brightness(0.95);
}
.date-blog-main {
  position: relative;
}
.date-blog {
  color: var(--8, #a8a9ad);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  padding: 8px 12px;
  background: var(--12, #f5f6f7);
  transform: rotate(-90deg);
  width: fit-content;
  position: absolute;
  left: -45px;
  top: 65px;
  transition: all 0.4s ease;
}
.blog-box-home-main:hover .date-blog {
  background: #fe8500;
  color: #fff;
  left: -40px;
}
.blog-content-hed {
  margin: 20px 0 20px 20px;
  transition: transform 0.3s ease;
}
.blog-box-home-main:hover .blog-content-hed {
  transform: translateX(8px);
}
.blog-roofing-text {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-box-home-main:hover .blog-roofing-text {
  color: #fe8500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.blog-roofing-text::before {
  content: url("../images/svg/home.svg");
  transition: transform 0.3s ease;
}
.blog-box-home-main:hover .blog-roofing-text::before {
  transform: translateX(-3px);
  filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%)
    hue-rotate(0deg) brightness(101%) contrast(100%);
}
.haiRated {
  color: var(--13, #091217);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  transition: all 0.3s ease;
}
.arrow-red-blog {
  padding-top: 20px;
  transition: transform 0.4s ease;
}
.blog-box-home-main:hover .arrow-red-blog {
  transform: translateX(10px);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  animation: arrowPulse 1.2s infinite alternate;
}
@keyframes arrowPulse {
  0% {
    transform: translateX(12px) scaleX(1.2);
  }
  100% {
    transform: translateX(16px) scaleX(1.3);
  }
}
/*-----------------------[ 19.Footer CSS ]------------------------*/
footer {
  background: var(--13, #091217);
  padding-top: 100px;
}
.working-hours {
  color: var(--5, #fff);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 20px;
}
.timing-hrw {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 2px solid #ffffff0f;
}
.timing-hrw p {
  color: var(--8, #a8a9ad);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.footer-row-quick {
  justify-content: space-between;
}
.quicklinks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.quicklinks-main ul li a {
  color: var(--8, #a8a9ad);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  transition: all 0.4s ease-in-out;
}
.quicklinks-main ul li a:hover {
  color: #fe8500;
}
.footer-img-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.footer-img-group .footer-imgs {
  width: 100%;
}
.img-container {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: block;
}
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.57);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-instagram {
  width: 40px;
  opacity: 0;
  transform: scale(0.5) rotate(0deg);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.img-container:hover .img-overlay {
  opacity: 1;
}
.img-container:hover .brand-instagram {
  opacity: 1;
  transform: scale(1) rotate(360deg);
}
.media-logo-call-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: 30px;
  background: var(--4, #222);
  margin-top: 60px;
  margin-bottom: 40px;
}
.media-logo-call-footer .call-detl {
  border-radius: 50px;
  background: var(--14, #fe8500);
  padding: 10px 50px 10px 10px;
}
.media-logo-call-footer .call-detl .img-main-call {
  background: var(--13, #091217);
}
.media-logo-call-footer .call-detl a {
  color: #ffffff;
}
.footer-med-icons-main {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-med-icons {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.footer-med-icons:hover {
  background: #fe8500;
}
.footer-med-icons img {
  width: 32px;
}
.copyrights-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 40px;
}
.copyrights-main p,
.copyrights-main a {
  color: var(--8, #a8a9ad);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.copyrights-main a:hover {
  color: #fe8500;
}
/*-----------------------[ 20.Bottom To Top Button CSS ]------------------------*/
button.bottom-top-button {
  position: fixed;
  right: 30px;
  bottom: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 30px;
  background: #fe8500;
}
.nav-links > li > a.active {
  filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%)
    hue-rotate(0deg) brightness(101%) contrast(100%);
}
.dropdown-menu li a.active {
  color: #fe8500 !important;
}
/*-----------------------[ 21.About Page CSS ]------------------------*/
.heroSection {
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 27.86%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/about/header-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 220px 0 100px;
}
.section-about-two {
  padding-top: 100px;
}
.img-header-text {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}
.breadcrumb-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}
.breadcrumb-group a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
}
/*-----------------------[ 22.Team Page CSS ]------------------------*/
.section-team-two {
  padding: 100px 0;
}
.team-cards {
  position: relative;
  z-index: 1;
  background-color: #f5f6f7;
  overflow: hidden;
  transition: all 500ms ease;
  border-radius: 20px 20px 0 0;
}
.team-row {
  gap: 40px 0;
}
.team-images-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("../images/team/roofing-img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 150px 0;
  border-bottom: 7px solid #fe8500;
}
.team-images-main img {
  transition: all 0.4s ease-in-out;
}
.team-cards:hover .team-images-main img {
  transform: scale(1.05);
}
.team-contact {
  position: relative;
  padding: 30px;
}
.team-card-title a {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  display: block;
  color: #091217;
  transition: all 0.4s ease-in-out;
}
.team-cards:hover .team-card-title a {
  color: #fe8500;
}
.team-card-designation {
  font-size: 16px;
  font-weight: 400;
  color: #606060;
  transition: all 0.4s ease-in-out;
}
.team-cards:hover .team-card-designation {
  color: #091217;
}
.team-card-hover {
  position: absolute;
  bottom: 37px;
  right: 30px;
}
.team-card-hover-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fe8500;
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.team-cards:hover .team-card-hover-btn {
  transform: rotate(90deg);
}
.team-card-hover-social {
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 3;
  margin: 0;
  opacity: 0;
  padding-bottom: 10px;
  transform: scaleY(0);
  transition: all 0.3s linear;
  transform-origin: bottom center;
}
.team-card-hover-social a {
  width: 40px;
  height: 40px;
  background-color: #fe8500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 500ms ease;
}
.team-card-hover-social a:hover {
  background-color: #091217;
}
.team-card-hover-social a + a {
  margin-top: 10px;
}
.team-cards:hover .team-card-hover-social {
  opacity: 1;
  transform: scaleY(1);
}
/*-----------------------[ 23.Team Details Page CSS ]------------------------*/
.team-details-section {
  padding: 100px 0;
}
.team-details-col1 {
  padding-right: 0;
  display: flex;
  flex-direction: column;
}
.team-details-col1 .team-details-img {
  flex-grow: 1;
}
.team-details-main-col2 {
  padding-left: 0;
}
.team-details-col2 {
  background: #091217;
  padding: 50px;
  height: 100%;
}
.contact-team-main {
  padding: 30px 0;
  border-top: 1px solid #ffffff47;
  border-bottom: 1px solid #ffffff47;
  margin-top: 30px;
}
.feugiat {
  color: #a8a9ad;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 10px;
}
.contact-team-person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-team-person h2 {
  max-width: 110px;
  width: 100%;
}
.contact-team-person h2,
.contact-team-person p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
.contact-team-person a {
  max-width: 300px;
  width: 100%;
}
.contact-team-person p {
  color: var(--4, #a8a9ad);
  font-weight: 400;
}
.team-person-media-main {
  position: absolute;
  bottom: 20px;
  left: 30px;
}
.team-person-media-main a {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.team-person-media-main a:hover {
  background: #fe8500;
}
.team-person-media-main a:hover img {
  filter: none;
}
.team-person-media-main a img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%)
    hue-rotate(0deg) brightness(101%) contrast(100%);
}
.quam {
  color: #091217;
}
/* ------------- Progress Bar ----------- */
.single-team-page-row2 {
  padding-top: 60px;
}
.home-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-img-col img {
  width: 100%;
}
.progress-bar {
  margin: 20px 0 10px;
  overflow: hidden;
  text-align: start;
}
.progress-title-holder {
  padding-bottom: 7px;
  position: relative;
}
.progress-title {
  color: var(--3, #091217);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
.progress-number-wrapper,
.progress-number-mark {
  color: #fe8500;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.progress-number-mark {
  margin-bottom: 4px;
  position: absolute;
  bottom: 0;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.progress-content-outter {
  height: 4px;
  border-radius: 2px;
  background-color: rgba(168, 169, 173, 0.2);
}
.progress-content {
  height: 4px;
  border-radius: 2px;
  background-color: #fe8500;
  width: 0%;
}
/*-----------------------[ 24.Pricing Plan Page CSS ]------------------------*/
.pricing-plans-row {
  margin-top: 60px;
}
.asd {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.pricing-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  transition: transform 0.3s;
  border: 2px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-10px);
  border: 2px solid #fe8500;
}
.featured {
  border: 2px solid #fe8500;
  transform: scale(1.05);
}
.popular-tag {
  background: #fe8500;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 12px;
}
.price {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
  color: #091217;
}
.price span {
  font-size: 18px;
  color: #fe8500;
  font-weight: 500;
}
.pricing-btn {
  width: 100%;
  margin-top: 30px;
}
.features li {
  padding-bottom: 10px;
  display: flex;
  gap: 10px;
  font-size: 18px;
  line-height: 28px;
}
.features li::before {
  content: url(../images/svg/rosette-check-white.svg);
}
/*-----------------------[ 25.Our Client Page CSS ]------------------------*/
.clients-main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 54px;
  margin-top: 60px;
}
.clients-main img {
  max-width: 100%;
}
/*-----------------------[ 26.Testimonial Page CSS ]------------------------*/
.testimonial-col .slider-person img {
  width: 70px;
}
.testimonial-row {
  gap: 30px 0;
}
.qotestion {
  width: 60px;
}
.testimonial-col .fuures-slider-box {
  margin: 0;
}
/*-----------------------[ 27.FAQ Page CSS ]------------------------*/
.testimonial-page-row {
  gap: 24px 0;
}
.pulm-multi-main {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulm-multi {
  max-width: 100%;
}
#accordionExample {
  margin-top: 40px;
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.accordion-button:focus {
  box-shadow: none;
}
#accordionExample .accordion-button {
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  background: rgba(168, 169, 173, 0.1);
  margin-bottom: 15px;
}
.accordion-button:not(.collapsed) {
  color: #fe8500;
  background-color: rgba(254, 133, 0, 0.1) !important;
}
#accordionExample.accordion {
  --bs-accordion-border-color: none;
}
#accordionExample .accordion-body {
  padding: 0 0 30px 0;
  color: var(--4, #091217);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.accordion-button::after {
  background-image: url("../images/svg/drop-down-arrow.svg");
  --bs-accordion-btn-icon-width: 2rem;
  filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%)
    hue-rotate(0deg) brightness(101%) contrast(100%);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../images/svg/drop-down-arrow.svg");
  filter: brightness(0) saturate(100%) invert(73%) sepia(52%) saturate(6410%)
    hue-rotate(0deg) brightness(101%) contrast(100%);
}
/*-----------------------[ 28.404 Page CSS ]------------------------*/
.furthe {
  max-width: 700px;
  margin: 20px auto;
}
.error-container {
  text-align: center;
}
.error-img {
  max-width: 100%;
}
.error-img-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
}
/*-----------------------[ 29.Services Deatils Page CSS ]------------------------*/
.services-page-row {
  gap: 30px 0;
}
.layers-img1 {
  width: 100%;
  margin: 30px 0;
}
.fusce {
  color: #091217;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.serice-process-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}
.adds-img-home {
  width: 100%;
}
.card-adds-main {
  margin-top: 40px;
}
.adds-details-main {
  background: #091217;
  padding: 30px;
  border-top: 5px solid #fe8500;
  text-align: center;
}
.adds-details-main h3 {
  font-size: 35px;
  line-height: 45px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.layers-img2 {
  max-width: 100%;
  border-radius: 10px;
}
.process-box {
  padding: 20px;
  background: var(--12, #f5f6f7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ldwagv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.process-box img {
  max-width: 64px;
  width: 100%;
  filter: brightness(0) saturate(100%) invert(52%) sepia(99%) saturate(1881%)
    hue-rotate(360deg) brightness(102%) contrast(101%);
}
.process-box h3 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 500;
  color: #091217;
}
.process-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #091217;
  padding-top: 5px;
}
.ourServicesPrcoes {
  color: var(--13, #091217);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin: 30px 0;
}
.service-video {
  width: 100%;
  height: 100%;
  margin: 40px 0;
}
.roofing-services-list-main {
  padding: 30px;
  border: 2px solid #f5f6f7;
}
.all-service-text {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  color: #fff;
  text-align: center;
  padding: 30px;
  background: #091217;
}
.service-list-arow-main {
  padding: 15px 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 2px solid #fe8500;
  transition: all 0.3s ease-in-out;
}
.service-list-arow-main:hover {
  background: #fe8500;
  padding: 15px 20px;
}
.service-list-arow-main.active {
  background: #fe8500;
  padding: 15px 20px;
}
.service-list-arow-main.active p {
  color: #fff;
}
.service-list-arow-main:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%)
    hue-rotate(211deg) brightness(102%) contrast(101%);
}
.service-list-arow-main p {
  color: #091217;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-list-arow-main:hover p {
  color: #fff;
}
.roofing-person {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
}
#service-page-form {
  padding: 20px;
  position: relative;
  margin-top: 40px;
}
#service-page-form input {
  margin-bottom: 13px;
}
#service-page-form .send-message-text {
  font-size: 36px;
  text-align: center;
}
.contasgh {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 20px;
}
.sevem {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.serv-map-consad {
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
.serphone {
  filter: brightness(0) saturate(100%) invert(52%) sepia(99%) saturate(1881%)
    hue-rotate(360deg) brightness(102%) contrast(101%);
}
.sevem a:hover {
  color: #fe8500;
}
.imgs-group-services-main img {
  width: 100%;
}
.imgs-group-services-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.single-services-list-fetur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 30px;
  background: #f5f6f7;
}
.single-services-list-fetur ul li {
  color: #222222;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
  display: flex;
  gap: 10px;
}
.single-services-list-fetur ul li:before {
  content: url(../images/svg/rosette-check-white.svg);
  position: relative;
  top: 7px;
}
/*-----------------------[ 30.Project Page CSS ]------------------------*/
.project2-pRow {
  gap: 30px 0;
}
.project-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: block;
}
.hover-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
  color: #fe8500;
  padding: 20px;
  transition: bottom 0.5s ease-in-out;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.project-img-wrapper:hover .hover-overlay {
  bottom: 0;
}
.project-img {
  width: 100%;
}
.overlay-content p {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.overlay-content h3 {
  color: #fe8500;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}
.overlay-content .arrow-box {
  width: 50px;
  height: 50px;
  background: #fe8500;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-content .arrow-box img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%)
    hue-rotate(58deg) brightness(105%) contrast(95%);
}
.diamond-nextbtn-head {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid rgba(168, 169, 173, 0.2);
  border-bottom: 2px solid rgba(168, 169, 173, 0.2);
  margin-top: 50px;
}
.diamond-btn {
  background: #fe8500;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diamond-btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%)
    hue-rotate(58deg) brightness(105%) contrast(95%);
  width: 35px;
}
.diamond-next-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  cursor: pointer;
}
.diamond-next-btn h3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.send-inquiry-form {
  padding: 30px;
  background: #fff;
  box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}
.project-info-text {
  color: #000000;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 30px;
  text-align: center;
}
.project-info-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #9090903b;
  padding: 20px 0;
}
.project-info-main p:nth-child(1) {
  color: #222222;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.project-info-main p:nth-child(2) {
  color: #fe8500;
  font-size: 20px;
}
.project-details-icon {
  margin-top: 30px;
  justify-content: center;
}
.project-details-icon .footer-med-icons {
  background: #fe8500;
  width: 50px;
  height: 50px;
}
.project-details-icon .footer-med-icons img {
  width: 30px;
}
.no-side-bar-row-project {
  justify-content: center;
}
/*-----------------------[ 31.Blog Page CSS ]------------------------*/
.blog-page1-row {
  gap: 30px 0;
}
.blog-standard-main {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f6f7;
}
.blog-standard-main .blog-content-hed {
  margin: 20px 20px 20px 20px;
  width: 100%;
}
.blog-standard-main .date-blog {
  transform: rotate(0);
  position: absolute;
  left: 15px;
  top: 15px;
  background: #fe8500;
  color: #fff;
}
.blog-standard-main .date-blog-main {
  position: unset;
}
.blog-standard-main.blog-box-home-main:hover .date-blog {
  background: #fe8500;
  color: #fff;
  left: 15px;
}
.search-box-main {
  padding: 20px;
  background: #f5f6f7;
}
.search-input input {
  width: 100%;
  height: 60px;
  outline: none;
  border: none;
  padding: 18px 15px;
  color: var(--4, #222);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.search-input {
  position: relative;
}
.search-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
#recent-post-box {
  margin-bottom: 20px;
  margin-top: 40px;
}
.recent-post-main {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.recent-post-text-main p {
  color: var(--4, #222);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.recent-post-text-main h2 {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}
.recent-post-main .recent-post-text-main h2:hover {
  color: #fe8500;
}
/*-----------------------[ 32.Blog details Page CSS ]------------------------*/
.single-blog-img1 {
  width: 100%;
}
.tag-date {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0 20px;
}
.tag-date-sub {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tag-date-sub p {
  color: #091217;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.psum {
  margin-top: 20px;
}
.qoute-box {
  padding: 40px;
  background: rgba(168, 169, 173, 0.15);
  margin: 35px 0;
  position: relative;
}
.qoute-box h2 {
  color: var(--3, #000);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  font-style: italic;
}
.line_client {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.line {
  border-top: 2px solid #fe8500;
  width: 60px;
}
.jordon {
  color: #091217;
  font-size: 16px;
  line-height: 20px;
  padding-left: 10px;
}
.interdum {
  color: #091217;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.blog-slider-grid {
  margin-top: 30px;
}
.blog-slider-grid img {
  max-width: 100%;
  padding: 0 12px;
}
.req-form-main {
  margin-top: 30px;
}
.input-main {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.input-main input {
  background: rgba(168, 169, 173, 0.1);
  border: none;
  height: 60px;
  outline: none;
  padding: 12px;
  color: #091217;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
}
.singl-blog3-col {
  justify-content: center;
}
/*-----------------------[ 33.Contact Page CSS ]------------------------*/
.contact-box-main {
  border: 2px solid #f5f6f7;
  padding: 30px;
  text-align: center;
  overflow: hidden;
}
.contact-email-text {
  color: #091217;
  margin-top: 15px;
  margin-bottom: 10px;
  padding-bottom: 0;
}
.contact-email-text-email,
.contact-email-text-email p {
  color: #fe8500;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.contact-email-text-email p:hover {
  color: #091217;
}
.dots-asd {
  z-index: -1;
}
.contact-box-page {
  width: 60px;
  height: 60px;
  background: #fe8500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.contact-box-page img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(72deg) brightness(97%) contrast(112%);
  width: 30px;
}
.contact-box-row {
  margin-bottom: 100px;
}
#contact-page-form input {
  margin-bottom: 20px;
}
#contact-page-form {
  padding: 50px;
  position: relative;
}
textarea {
  width: 100%;
  height: 120px;
  padding: 15px 20px;
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  border: none;
  outline: none;
  margin-bottom: 30px;
  resize: none;
}
.send-message-text {
  padding-bottom: 20px;
  font-size: 40px;
  padding-top: 0;
}
.map-iframe {
  width: 100%;
  height: 100%;
}
/*-----------------------[ 31.Setting Panel CSS ]------------------------*/
.setting-main {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 100;
}
.box-fix-setting {
  width: 50px;
  height: 50px;
  background-color: #8ade47;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.setting {
  animation: rotation 3s infinite linear;
  width: 28px;
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.demo-box {
  display: block;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 15px;
}
.demo-box img {
  border-radius: 15px;
}
.demo-box p {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  padding-top: 15px;
  text-align: center;
}
.offcanvas {
  background: #f5f6f7;
}
.offcanvas-title img {
  max-width: 80%;
}
.btn-close {
  --bs-btn-close-focus-shadow: none;
}
