/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --maroof-font: "Oswald", sans-serif;
  --maroof-gray: #52515e;
  --maroof-gray-rgb: 82, 81, 94;
  --maroof-white: #ffffff;
  --maroof-white-rgb: 255, 255, 255;
  --maroof-base: #fc6c0d;
  --maroof-base-rgb: 230, 58, 39;
  --maroof-black: #141422;
  --maroof-black-rgb: 20, 20, 34;
  --maroof-primary: #fff4f3;
  --maroof-primary-rgb: 255, 244, 243;
  --maroof-bdr-color: #cdcdcd;
  --maroof-bdr-color-rgb: 205, 205, 205;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--maroof-font);
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  color: var(--maroof-gray);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--maroof-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: "Jost", sans-serif;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--maroof-font);
  color: var(--maroof-black);
  margin: 0;
}

p {
  margin: 0;
  font-family: "Jost", sans-serif;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--maroof-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.section-title {
  position: relative;
  display: block;
  margin-bottom: 30px;
  margin-top: -3px;
}

.section-title__tagline-box {
  position: relative;
  display: inline-block;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  color: var(--maroof-base);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--maroof-bdr-color);
  padding: 10px 20px 10px;
  border-radius: 23px;
}

.section-title__title, .testimonial-one h2 {
  color: #04495c;
  font-size: 59px;
  line-height: 65px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 14px 0 0;
  letter-spacing: -1.2px;
}

.section-title__title span {
  color: var(--maroof-base);
}

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 16px;
  color: var(--maroof-black);
  letter-spacing: 0.32px;
  background-color: transparent;
  border: 1px solid var(--maroof-bdr-color);
  padding: 5px 5px 5px;
  padding-left: 20px;
  border-radius: 30px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  font-family: var(--maroof-font);
  text-transform: capitalize;
  gap: 10px;
  z-index: 1;
}

.thm-btn span {
  font-size: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--maroof-base);
  border-radius: 50%;
  color: var(--maroof-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-btn span:hover {
  background-color: var(--maroof-white);
  color: var(--maroof-base);
}

.thm-btn:hover {
  color: var(--maroof-white);
}

.thm-btn::after {
  background: #0386a8;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  height: 0%;
  z-index: -1;
  position: absolute;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.thm-btn:hover::after {
  height: 380%;
}

.thm-btn-two {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 16px;
  color: var(--maroof-black);
  letter-spacing: 0.32px;
  background-color: var(--maroof-base);
  padding: 15px 30px 15px;
  border-radius: 30px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  font-family: var(--maroof-font);
  text-transform: capitalize;
  gap: 10px;
  z-index: 1;
}

.thm-btn-two span {
  color: var(--maroof-base);
  font-size: 13px;
}

.thm-btn-two:hover {
  color: var(--maroof-white);
}

.thm-btn-two::after {
  background: var(--maroof-black);
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  height: 0%;
  z-index: -1;
  position: absolute;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
}

.thm-btn-two:hover::after {
  height: 380%;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(https://iprodesigns.com/HTML_sample14/Dev/wp-content/uploads/2026/04/loader1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
  color: #bb0000;
}

.scroll-to-top:hover {
  color: var(--maroof-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--maroof-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--maroof-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in 0.8s;
  -o-transition: all 0.4s ease-in 0.8s;
  transition: all 0.4s ease-in 0.8s;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--maroof-base);
  border-color: var(--maroof-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--maroof-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in 0.3s;
  -o-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"],
.xs-sidebar-group .content-inner .form-inner .form-group input[type="email"],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--maroof-white);
  color: var(--maroof-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:hover {
  color: var(--maroof-white);
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:after {
  background-color: var(--maroof-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 30px;
  right: 0px;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu__left {
  position: relative;
  display: block;
}

.main-menu__logo {
  position: relative;
  display: block;
  padding: 11px 0;
  width: 160px;
  transition:0.2s ease-in-out;
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
  border: 1px solid var(--maroof-white);
  padding: 0 8px 0;
  border-radius: 30px;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__search-and-nav-sidebar-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
  padding: 1px 0;
}
.main-menu__search-and-nav-sidebar-icon-box a i {
  font-size: 40px;
  color: #1c60f3;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--maroof-white);
  font-size: 20px;
}

.main-menu__search:hover {
  color: var(--maroof-base);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon a {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  height: 60px;
  width: 60px;
  background-color: var(--maroof-base);
  border-radius: 50%;
  padding-right: 17px;
}

.main-menu__nav-sidebar-icon a .nav-sidebar-menu-1 {
  position: relative;
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--maroof-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon a:hover .nav-sidebar-menu-1 {
  width: 30px;
}

.main-menu__nav-sidebar-icon a .nav-sidebar-menu-2 {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--maroof-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon a:hover .nav-sidebar-menu-2 {
  width: 20px;
}

.main-menu__nav-sidebar-icon a .nav-sidebar-menu-3 {
  position: relative;
  display: block;
  height: 2px;
  width: 25px;
  background-color: var(--maroof-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon a:hover .nav-sidebar-menu-3 {
  width: 30px;
}

.stricky-header.main-menu {
  background-color: #00212a;
}
.stricky-header .main-menu__logo img{ width:80%;}

.stricky-header .main-menu__wrapper-inner {
  padding: 5px 0;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}
.main-menu .main-menu__list > li .icon-angle-down{
fill: #fff;
width: 30px;
height: 30px;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 13px;
  padding-bottom: 13px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 5px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--maroof-white);
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  padding: 2px 20px;
  border-radius: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--maroof-white);
}

.main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
  content: "";
  border-radius: 17px;
  background-color: var(--maroof-base);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition:
    opacity 500ms ease,
    visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(var(--maroof-black-rgb), 0.1);
}

.main-menu .main-menu__list > li > ul > li:last-child,
.main-menu .main-menu__list > li > ul > li > ul > li:last-child,
.stricky-header .main-menu__list > li > ul > li:last-child,
.stricky-header .main-menu__list > li > ul > li > ul > li:last-child {
  border-bottom: 0;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: 0;
  margin-top: 0px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--maroof-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: var(--maroof-base);
  color: var(--maroof-white);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition:
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    transform 500ms ease,
    visibility 500ms ease;
  transition:
    transform 500ms ease,
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

/* @media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
} */

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--maroof-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--maroof-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--maroof-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--maroof-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition:
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    transform 500ms ease 500ms,
    visibility 500ms ease 500ms;
  transition:
    transform 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition:
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    transform 500ms ease 0ms,
    visibility 500ms ease 0ms;
  transition:
    transform 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: #014556;
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    transform 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    transform 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--maroof-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--maroof-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--maroof-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--maroof-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--maroof-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition:
    transform 500ms ease,
    -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list .dropdown.current button i{
    display: none;
}
.mobile-nav__content .main-menu__list .dropdown.current button{
    background: transparent;
}


.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--maroof-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--maroof-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--maroof-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--maroof-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--maroof-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--maroof-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--maroof-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition:
    opacity 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    opacity 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    transform 500ms ease,
    opacity 500ms ease;
  transition:
    transform 500ms ease,
    opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--maroof-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--maroof-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:after {
  background-color: var(--maroof-black);
  border-radius: 0;
  width: 210%;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--maroof-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--maroof-white);
}

/*--------------------------------------------------------------
# End Header Css
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.about-one__left {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
  width: 100%;
  height: 600px;
  border-radius: 20px;    
  z-index: 1;  
}

.about-one__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-one__shape-1 {
  position: absolute;
  top: 25px;
  left: -120px;
  z-index: -1;
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__shape-2 {
  position: absolute;
  bottom: 13px;
  left: -106px;
  z-index: -1;
}

.about-one__shape-2 img {
  width: auto;
}

.about-one__shape-3 {
  position: absolute;
  top: 129px;
  right: -140px;
  z-index: -1;
}

.about-one__shape-3 img {
  width: auto;
}

.about-one__shape-4 {
  position: absolute;
  top: -7px;
  left: -107px;
  z-index: -1;
}

.about-one__shape-4 img {
  width: auto;
}

.about-one__happy-client {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fc6c0d;
  border-radius: 8px;
  max-width: 200px;
  width: 100%;
  padding: 23px 26px 20px;
  bottom: -46px;
    left: 0;
  z-index: 2;
}

.about-one__client-img-box {
  position: relative;
  display: block;
}

.about-one__client-img-list {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__client-img-list li {
  position: relative;
  display: block;
}

.about-one__client-img-list li + li {
  margin-left: -16px;
}

.about-one__client-img {
  position: relative;
  display: block;
  max-width: 46px;
}

.about-one__client-img img {
  width: 100%;
  border-radius: 500%;
  border: 1px solid var(--maroof-base);
}

.about-one__happy-client-content {
  position: relative;
  display: block;
  text-align: center;
  margin: auto;
}

.about-one__count {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__count h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 38px;
}

.about-one__count-plus {
  font-size: 38px;
  font-weight: 700;
  line-height: 38px;
  color: var(--maroof-black);
}

.about-one__count-text {
  font-size: 21px;
  color: #20202d;
  margin-top: 9px;
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 30px;
}

.about-one__right .section-title {
  margin-bottom: 30px;
}

.about-one__main-tab-box {
  position: relative;
  display: block;
}

.about-one__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 5;
}

.about-one__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-left: 15px;
}

.about-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 13px 30px 13px;
  border: 1px solid var(--maroof-bdr-color);
  background-color: var(--maroof-white);
  transition: all 0.3s ease;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
}

.about-one__main-tab-box .tab-buttons .tab-btn.active-btn {
  border: 1px solid transparent;
}

.about-one__main-tab-box .tab-buttons .tab-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background: var(--maroof-base);
  border-radius: 32px;
  transition: all 0.3s ease;
  z-index: -1;
}

.about-one__main-tab-box .tab-buttons .tab-btn.active-btn:before {
  height: 100%;
}

.about-one__main-tab-box .tab-buttons .tab-btn p {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 16px;
  line-height: 16px;
  color: var(--maroof-black);
  font-weight: 700;
  transition: all 0.3s ease;
  z-index: 1;
}

.about-one__main-tab-box .tab-buttons .tab-btn.active-btn p {
  color: var(--maroof-white);
}

.about-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
  z-index: 1;
}

.about-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.about-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.about-one__tab-content-box {
  position: relative;
  display: block;
}

.about-one__text-1 {
  margin-top: 19px;
  margin-bottom: 30px;
}

.about-one__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-one__points {
  position: relative;
  display: block;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-one__points li + li {
  margin-top: 12px;
}

.about-one__points li .icon {
  position: relative;
  display: inline-block;
}
.about-one__points li .icon i{
color: #fc6c0d;
}

.about-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--maroof-base);
}

.about-one__btn-box {
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  z-index: 1;
}

.counter-one__wrap {
  position: relative;
  display: block;
  background-color:#014556;
  padding: 60px 0 150px;
  border-radius: 20px;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
}

.counter-one__left {
  position: relative;
  display: block;
}

.counter-one__left .section-title__title {
  color: var(--maroof-white);
}

.counter-one__left .section-title {
  margin-bottom: 20px;
}

.counter-one__text {
  color: var(--maroof-white);
}

.counter-one__need-help {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 37px;
}

.counter-one__need-help .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #fc6c0d;
  border-radius: 50%;
}

.counter-one__need-help .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--maroof-white);
}

.counter-one__need-help .content {
  position: relative;
  display: block;
}

.counter-one__need-help .content p {
  color: var(--maroof-white);
}

.counter-one__need-help .content h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  margin-top: 3px;
}

.counter-one__need-help .content h4 a {
  color: var(--maroof-white);
}

.counter-one__need-help .content h4 a:hover {
  color: var(--maroof-base);
}

.counter-one__right {
  position: relative;
  display: block;
  margin-left: 60px;
}

.counter-one__single {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid rgba(var(--maroof-white-rgb), 0.1);
  border-radius: 20px;
  padding: 19px 30px 19px;
  margin-bottom: 30px;
  background: #fc6c0d;
}

.counter-one__icon-and-count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.counter-one__icon {
  position: relative;
  display: inline-block;
}
.counter-one__icon img {
  width: 50px;
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--maroof-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
  transform: scale(0.9);
}

.counter-one__count {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__count h3 {
  font-size: 59px;
  font-weight: 700;
  line-height: 59px;
  letter-spacing: -1.2px;
  color: var(--maroof-white);
}

.counter-one__count span {
  font-size: 59px;
  font-weight: 700;
  line-height: 59px;
  letter-spacing: -1.2px;
  color: var(--maroof-white);
}

.counter-one__single p {
  color: var(--maroof-white);
  margin-top: 5px;
font-size: 15px;
}
/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  z-index: 2;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--maroof-base);
  border-radius: 20px;
  margin-top: -125px;
  padding: 80px 60px 76px;
  z-index: 1;
}

.cta-one__img-one {
  position: absolute;
  right: 356px;
  top: -35px;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.cta-one__img-one img {
  width: auto;
}

.cta-one__shape-1 {
  position: absolute;
  right: 313px;
  top: 0;
  opacity: 0.3;
  z-index: -1;
  height: 100%;
}

.cta-one__shape-1 img {
  width: auto;
  height: 100%;
}

.cta-one__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
}

.cta-one__icon {
  position: relative;
  display: inline-block;
}
.cta-one__icon img {
  width: 100px;
}

.cta-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 75px;
  color: var(--maroof-white);
}

.cta-one__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  color: var(--maroof-white);
}

.cta-one__btn-box {
  position: relative;
  display: block;
}

.cta-one__btn {
  color: var(--maroof-white) !important;
  border: 1px solid var(--maroof-white);
  padding: 14px 29px 14px !important;
}

.cta-one__btn span {
  color: var(--maroof-white) !important;
}

.cta-one__btn:hover {
  border: 1px solid transparent;
}
/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
}

.contact-one__wrap {
  position: relative;
  display: block;
  background: linear-gradient(
    144.24deg,
    #e63a27 -2.01%,
    rgba(0, 0, 0, 0.92) 63.45%
  );
  border-radius: 50px;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.contact-one__left {
  position: relative;
  display: block;
  margin-top: 110px;
  z-index: 1;
}

.contact-one__left .section-title__tagline {
  color: var(--maroof-white);
}

.contact-one__left .section-title {
  margin-bottom: 38px;
}

.contact-one__left .section-title__title {
  color: var(--maroof-white);
}

.contact-one__form {
  position: relative;
  display: block;
  background-color: rgba(var(--maroof-white-rgb), 0.1);
  border-radius: 20px;
  padding: 40px 40px 40px;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: rgba(var(--maroof-black-rgb), 0.33);
  border: 2px solid rgba(var(--maroof-white-rgb), 0.2);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  color: var(--maroof-white);
  display: block;
  border-radius: 30px;
}

.contact-one__input-box .select-box {
  width: 100%;
}

.contact-one__input-box .nice-select {
  height: 60px;
  width: 100%;
  background-color: rgba(var(--maroof-black-rgb), 0.33);
  border: 2px solid rgba(var(--maroof-white-rgb), 0.2);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--maroof-white);
  display: block;
  font-weight: 300;
  border-radius: 30px;
  line-height: 60px;
  float: none;
}

.contact-one__input-box .nice-select:after {
  position: absolute;
  top: 21px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--maroof-white);
  border-right: 2px solid var(--maroof-white);
  margin-top: 0px;
  z-index: 10;
}

.contact-one__input-box .nice-select .option {
  color: var(--maroof-black);
}

.contact-one__input-box textarea {
  position: relative;
  height: 130px;
  width: 100%;
  background-color: rgba(var(--maroof-black-rgb), 0.33);
  border: 2px solid rgba(var(--maroof-white-rgb), 0.2);
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--maroof-white);
  display: block;
  font-weight: 300;
  border-radius: 30px;
  margin-bottom: 0;
}

.contact-one__input-box.text-message-box {
  height: 130px;
  margin-bottom: 30px;
}

.contact-one__btn-box {
  position: relative;
  display: block;
}

.contact-one__btn {
  border: none !important;
  background-color: var(--maroof-white) !important;
}

.contact-one__right {
  position: relative;
  display: block;
  margin-left: 50px;
  margin-right: -47px;
}

.contact-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.contact-one__img img {
  width: 100%;
}

.contact-one__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;
  z-index: -1;
}

.contact-one__shape-1 img {
  width: auto;
}

.contact-one__shape-2 {
  position: absolute;
  bottom: 70px;
  left: 13px;
  z-index: -1;
}

.contact-one__shape-2 img {
  width: auto;
}

.contact-one__shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  z-index: -1;
}

.contact-one__shape-3 img {
  width: auto;
}

.contact-one__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.contact-one__shape-4 img {
  width: auto;
}
/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one-section {
  position: relative;
  display: block;
  padding: 80px 0;
}

.faq-one__left {
  position: relative;
  display: block;
}

.faq-one__left .section-title {
  margin-bottom: 40px;
}

.faq-one__left .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__left .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 19px 9px 19px;
  padding-left: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border: 1px solid var(--maroof-bdr-color);
  border-radius: 31px;
}

.faq-one__left .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--maroof-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__left .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--maroof-black);
}

.faq-one__left .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 20px;
}

.faq-one__left .faq-one-accrodion .accrodion-title h4::before {
  content:  "\f175";
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700;
  font-size: 16px;
  color: var(--maroof-black);
  position: absolute;
  top: 50%;
  right: 0px;
  line-height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 50px;
  height: 50px;
  background-color: var(--maroof-primary);
}

.faq-one__left
  .faq-one-accrodion
  .accrodion.active
  .accrodion-title
  h4::before {
  content: "\f175";
  font-family: "Font Awesome 6 Free" !important;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--maroof-base);
}
 .faq-one__left .faq-one-accrodion .accrodion-title h4::before {
    font-size: 13px;
    right: 2px;
    width: 40px;
    height: 40px;
    top: -9px;
    transform: rotate(270deg);
  }
  .faq-one__left
    .faq-one-accrodion
    .accrodion.active
    .accrodion-title
    h4::before {
    transform: rotate(360deg);
  }

.faq-one__left .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 20px;
}

.faq-one__left .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

.faq-one__right {
  position: relative;
  display: block;
  margin-top: 19px;
}

.faq-one__img-1 {
  position: relative;
  display: block;
  margin-right: 13px;
}

.faq-one__img-1 img {
  width: 100%;
  border-radius: 20px;
}

.faq-one__img-2 {
  position: relative;
  display: block;
  margin-left: -13px;
}

.faq-one__img-2 img {
  width: 100%;
  border-radius: 20px;
}

.faq-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--maroof-base);
  border-radius: 20px;
  padding: 38px 60px 38px;
  margin-left: 49px;
  margin-right: -91px;
  margin-top: 26px;
  z-index: 2;
}

.faq-one__icon {
  position: relative;
  display: inline-block;
}

.faq-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--maroof-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.faq-one__count-box:hover .faq-one__icon span {
  transform: scale(0.9);
}

.faq-one__count-inner {
  position: relative;
  display: block;
  margin-left: 40px;
}

.faq-one__count {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-one__count h3 {
  font-size: 59px;
  font-weight: 700;
  line-height: 59px;
  letter-spacing: -1.2px;
  color: var(--maroof-white);
}

.faq-one__count span {
  font-size: 59px;
  font-weight: 700;
  line-height: 59px;
  letter-spacing: -1.2px;
  color: var(--maroof-white);
}

.faq-one__count-box p {
  font-weight: 700;
  color: var(--maroof-white);
  margin-top: 2px;
  font-size: 16px;
}

.faq-one form {
  padding: 50px 30px 50px 30px;
  background: #fc6c0d;
  border-radius: 6px;
  position: relative;
}

.faq-one form input {
  background: #fff;
  border-radius: 6px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 30px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.faq-one form select {
  height: 60px;
  display: block !important;
  appearance: auto;
  border-radius: 30px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.faq-one form textarea {
  border-radius: 30px;
  padding-left: 20px;
  padding-top: 20px;
}
.faq-one form input[type="submit"] {
  display: flex;
  margin: auto;
  background: #0386a8;
  text-align: center;
  border: 3px solid #fff;
  padding: 12px 50px;
  color: #fff;
  font-weight: 600;
  height: unset;
  margin-top: 14px;
}
/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background: #f3f3f3;
  z-index: 1;
}

.services-one-carousel {
  position: relative;
  display: block;
}

.services-one__single {
  position: relative;
  display: block;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.services-one__img-box {
  position: relative;
  display: block;
}

.services-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height:300px;
}
.services-one__img img {height:100%; width:100%; object-fit:cover;}

.services-one__img::after {
  background: rgba(var(--maroof-black-rgb), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}

.services-one__single:hover .services-one__img::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.services-one__single:hover .services-one__icon img {
  transition: 0.5s;
}

.services-one__single:hover .services-one__icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%)
    hue-rotate(67deg) brightness(108%) contrast(101%);
}

.services-one__img img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-one__icon {
  position: absolute;
  bottom: -40px;
  right: 40px;
  width: 80px;
  height: 80px;
  background-color: var(--maroof-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2;
}
.services-one__icon img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(72%) saturate(3470%)
    hue-rotate(350deg) brightness(91%) contrast(105%);
}

.services-one__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--maroof-base);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.services-one__single:hover .services-one__icon:before {
  transform: scaleX(1);
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--maroof-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
  transform: scale(0.9);
  color: var(--maroof-white);
}

.services-one__content {
  position: relative;
  display: block;
  border: 1px solid var(--maroof-bdr-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 27px 40px 39px;
}

.services-one__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
}

.services-one__title a {
  color: var(--maroof-black);
}

.services-one__title a:hover {
  color: var(--maroof-base);
}

.services-one__text {
  margin-top: 16px;
  margin-bottom: 40px;
}

.services-one__btn-box {
  position: relative;
  display: block;
}

.services-one__btn span {
  background-color: var(--maroof-primary) !important;
  color: var(--maroof-black) !important;
}

.services-one__single:hover .services-one__btn span {
  background-color: var(--maroof-base) !important;
  color: var(--maroof-white) !important;
}

.services-one__carousel.owl-carousel .owl-dots {
  position: relative;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  border-radius: 5px;
  height: 10px;
  background-color: #fc6d0d41;
  margin: 20px auto 0 !important;
  z-index: 2;
}

.services-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 100px;
  border-radius: 5px;
  background-color: transparent;
  margin: 0;
  padding: 0 !important;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.services-one__carousel.owl-carousel .owl-dot.active {
  background-color: #0386a8;
  opacity: 1;
}

.services-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.services-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Service Two
--------------------------------------------------------------*/
.service-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.service-two__left {
  position: relative;
  display: block;
}

.service-two__left .section-title {
  margin-bottom: 15px;
}

.service-two__view-all {
  position: relative;
  display: inline-block;
  margin-top: 22px;
}

.service-two__view-all a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--maroof-black);
}

.service-two__view-all a:hover {
  color: var(--maroof-base);
}

.service-two__view-all a span {
  font-size: 12px;
  color: var(--maroof-base);
}

.service-two__single {
  position: relative;
  display: block;
  border: 1px solid var(--maroof-bdr-color);
  border-radius: 20px;
  padding: 39px 40px 41px;
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.service-two__single:hover {
  border: 1px solid transparent;
}

.service-two__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.service-two__single:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.service-two__icon-and-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
}

.service-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--maroof-primary);
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.service-two__icon::after {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: var(--maroof-base);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.service-two__single:hover .service-two__icon::after {
  top: -40%;
}

.service-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 46px;
  color: var(--maroof-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-two__single:hover .service-two__icon span {
  color: var(--maroof-white);
}

.service-two__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
}

.service-two__title a {
  color: var(--maroof-black);
}

.service-two__title a:hover {
  color: var(--maroof-base);
}

.service-two__single-text {
  margin-top: 21px;
  margin-bottom: 31px;
  font-size: 16px;
}

.service-two__read-more {
  position: relative;
  display: inline-block;
}

.service-two__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  color: var(--maroof-black);
}

.service-two__read-more a:hover {
  color: var(--maroof-base);
}

.service-two__read-more a span {
  font-size: 12px;
  color: var(--maroof-base);
}

/*--------------------------------------------------------------
# Service Three
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;
  padding: 0 0 114px;
  z-index: 1;
}

.services-three__inner {
  position: relative;
  display: block;
}

.services-three__service-list {
  position: relative;
  display: block;
}

.services-three__service-list li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--maroof-black-rgb), 0.3);
  padding: 36px 0 36px;
}

.services-three__service-list li:first-child {
  border-top: 1px solid rgba(var(--maroof-black-rgb), 0.3);
}

.services-three__service-list-single {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-three__sub-title {
  max-width: 245px;
  width: 100%;
}

.services-three__sub-title p {
  color: var(--maroof-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__service-list li:hover .services-three__sub-title p {
  margin-left: 110px;
}

.services-three__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

.services-three__title a {
  color: var(--maroof-black);
}

.services-three__long-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-82px);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__service-list li:hover .services-three__long-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.services-three__long-arrow img {
  width: auto;
}

.hover-item__box {
  position: absolute;
  width: 325px;
  height: 356px;
  top: 50%;
  right: 40px;
  pointer-events: none;
  transform: translate(-100%, -50%);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
  z-index: 10;
}

.hover-item__box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease-out;
}

/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
  position: relative;
  display: block;
}

.services-four__wrap {
  position: relative;
  display: block;
  background-color: var(--maroof-black);
  padding: 120px 0 260px;
  max-width: 1760px;
  border-radius: 40px;
  margin: 0 auto;
  z-index: 1;
}

.services-four__wrap .section-title__title {
  color: var(--maroof-white);
}

.services-four__carousel {
  position: relative;
  display: block;
}

.services-four__single {
  position: relative;
  display: block;
}

.services-four__img-box {
  position: relative;
  display: block;
}

.services-four__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.services-four__img::after {
  background: rgba(var(--maroof-black-rgb), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}

.services-four__single:hover .services-four__img::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}

.services-four__img img {
  width: 100%;
  border-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.services-four__single:hover .services-four__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-four__content {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-right: 30px;
  background-color: #20202d;
  margin-top: -27px;
  border-radius: 20px;
  padding: 58px 30px 20px;
}

.services-four__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

.services-four__title a {
  color: var(--maroof-white);
}

.services-four__title a:hover {
  color: var(--maroof-base);
}

.services-four__text {
  color: var(--maroof-white);
  margin-top: 16px;
  margin-bottom: 30px;
}

.services-four__btn-box {
  position: relative;
  display: block;
}

.services-four__btn {
  border: 1px solid rgba(var(--maroof-bdr-color-rgb), 0.2) !important;
  color: var(--maroof-white) !important;
}

.services-four__btn:hover {
  border: 1px solid var(--maroof-base) !important;
}

.services-four__btn span {
  background-color: rgba(var(--maroof-white-rgb), 0.2) !important;
}

.services-four__btn:hover span {
  background-color: var(--maroof-base) !important;
  color: var(--maroof-white) !important;
}

.services-four__btn::after {
  background: transparent !important;
}

.services-four__icon {
  position: absolute;
  top: -40px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--maroof-black);
  border-radius: 50%;
  z-index: 1;
}

.services-four__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--maroof-base);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.services-four__single:hover .services-four__icon:before {
  transform: scaleX(1);
}

.services-four__icon span {
  position: relative;
  display: inline-block;
  font-size: 38px;
  color: var(--maroof-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-four__single:hover .services-four__icon span {
  transform: scale(0.9);
}

.services-four__carousel.owl-carousel .owl-dots {
  position: relative;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  border-radius: 5px;
  height: 10px;
  background-color: #20202d;
  margin: 60px auto 0 !important;
  z-index: 2;
}

.services-four__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 100px;
  border-radius: 5px;
  background-color: transparent;
  margin: 0;
  padding: 0 !important;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.services-four__carousel.owl-carousel .owl-dot.active {
  background-color: var(--maroof-base);
  opacity: 1;
}

.services-four__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.services-four__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Services Five
--------------------------------------------------------------*/
.services-five {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.services-five__carousel {
  position: relative;
  display: block;
}

.services-five__single {
  position: relative;
  display: block;
  border: 1px solid var(--maroof-bdr-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 29px 29px 29px;
}

.services-five__img-box {
  position: relative;
  display: block;
}

.services-five__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.services-five__img::after {
  background: rgba(var(--maroof-black-rgb), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}

.services-five__single:hover .services-five__img::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}

.services-five__img img {
  width: 100%;
  border-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.services-five__single:hover .services-five__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-five__icon {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--maroof-primary);
  border-radius: 50%;
  z-index: 2;
}

.services-five__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--maroof-base);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.services-five__single:hover .services-five__icon:before {
  transform: scaleX(1);
}

.services-five__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--maroof-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-five__single:hover .services-five__icon span {
  transform: scale(0.9);
  color: var(--maroof-white);
}

.services-five__content {
  position: relative;
  display: block;
  padding-top: 21px;
}

.services-five__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}

.services-five__title a {
  color: var(--maroof-black);
}

.services-five__title a:hover {
  color: var(--maroof-base);
}

.services-five__btn-box {
  position: relative;
  display: block;
}

.services-five__btn::after {
  background: var(--maroof-base) !important;
}

.services-five__btn span {
  background-color: var(--maroof-primary) !important;
  color: var(--maroof-black) !important;
}

.services-five__btn:hover span {
  background-color: rgba(var(--maroof-white-rgb), 0.2) !important;
  color: var(--maroof-white) !important;
}

.services-five__carousel.owl-carousel .owl-dots {
  position: relative;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  border-radius: 5px;
  height: 10px;
  background-color: var(--maroof-primary);
  margin: 80px auto 0 !important;
  z-index: 2;
}

.services-five__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 100px;
  border-radius: 5px;
  background-color: transparent;
  margin: 0;
  padding: 0 !important;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.services-five__carousel.owl-carousel .owl-dot.active {
  background-color: var(--maroof-base);
  opacity: 1;
}

.services-five__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.services-five__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 110px 0 90px;
  z-index: 1;
}

.service-details__left {
  position: relative;
  display: block;
  margin-top: -11px;
}

.service-details__content-one {
  position: relative;
  display: block;
}

.service-details__title-one {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

.service-details__img-one {
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 37px;
}

.service-details__img-one img {
  width: 100%;
  border-radius: 20px;
}

.service-details__content-two {
  position: relative;
  display: block;
  margin-bottom: 58px;
}

.service-details__title-two {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 16px;
}

.service-details__points {
  position: relative;
  display: block;
  margin-top: 20px;
}

.service-details__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__points li + li {
  margin-top: 12px;
}

.service-details__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  max-width: 16px;
  width: 100%;
  background-color: var(--maroof-base);
  border-radius: 50%;
  font-size: 10px;
  color: var(--maroof-white);
}

.service-details__points li .text {
  margin-left: 15px;
}

.service-details__images-box {
  position: relative;
  display: block;
}

.service-details__images-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.service-details__images-single img {
  width: 100%;
  border-radius: 20px;
}

.service-details__content-three {
  position: relative;
  display: block;
  margin-bottom: 81px;
}

.service-details__title-four {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 26px;
}

.service-details__text-3 {
  margin-bottom: 20px;
}

.service-details__feature-box {
  position: relative;
  display: block;
}

.service-details__feature-single {
  position: relative;
  display: block;
  border: 1px solid var(--maroof-bdr-color);
  border-radius: 20px;
  padding: 40px 39px 39px;
  margin-bottom: 30px;
}

.service-details__feature-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.service-details__feature-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border: 1px solid var(--maroof-base);
  border-radius: 20px;
}

.service-details__feature-icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--maroof-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.service-details__feature-single:hover .service-details__feature-icon span {
  transform: scale(0.9);
}

.service-details__feature-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

.service-details__feature-title a {
  color: var(--maroof-black);
}

.service-details__feature-title a:hover {
  color: var(--maroof-base);
}

.service-details__feature-text {
  font-size: 16px;
  margin-bottom: 31px;
}

.service-details__read-more {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--maroof-black);
  letter-spacing: 0.32px;
  text-transform: capitalize;
}

.service-details__read-more:hover {
  color: var(--maroof-base);
}

.service-details__sidebar {
  position: relative;
  display: block;
}

.service-details__service-list-box {
  position: relative;
  display: block;
  border: 1px solid var(--maroof-bdr-color);
  border-radius: 20px;
  padding: 36px 40px 40px;
}

.service-details__sidebar-title {
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 22px;
}

.service-details__service-list {
  position: relative;
  display: block;
}

.service-details__service-list li {
  position: relative;
  display: block;
}

.service-details__service-list li + li {
  margin-top: 20px;
}

.service-details__service-list li a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 16px;
  color: var(--maroof-black);
  font-weight: 700;
  background-color: #fff4f3;
  padding: 17px 22px 17px;
  border-radius: 20px;
}

.service-details__service-list li:hover a,
.service-details__service-list li.active a {
  color: var(--maroof-white);
  background-color: var(--maroof-black);
}

.service-details__service-list li a span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--maroof-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__service-list li:hover a span,
.service-details__service-list li.active a span {
  color: var(--maroof-white);
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-page .services-one__single {
  margin-bottom: 30px;
}
/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  background-color: var(--maroof-black);
  z-index: 10;
}

.main-slider .item {
  position: relative;
  background-color: var(--maroof-black);
  padding-top: 259px;
  padding-bottom: 200px;
  overflow: hidden;
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  transition:
    opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  transition:
    transform 7000ms ease,
    opacity 1500ms ease-in;
  transition:
    transform 7000ms ease,
    opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider__bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--maroof-black-rgb), 0.3);
  z-index: -1;
}

.active .main-slider__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider__shape-1 {
  position: absolute;
  width: 1287px;
  height: 1287px;
  left: -255px;
  top: -823px;
/*   background: #a33c31; */
  filter: blur(444.506px);
  border-radius: 50%;
  z-index: 1;
}

.main-slider__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 611px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider__content-shape-1 {
  position: absolute;
  top: -25px;
  left: 335px;
  opacity: 0;
  transition:
    transform 1000ms ease,
    opacity 1000ms ease;
  transform: translateX(200px);
  z-index: -1;
}

.main-slider__content-shape-1 img {
  width: auto !important;
  filter: brightness(0) saturate(100%) invert(63%) sepia(67%) saturate(5682%) hue-rotate(356deg) brightness(103%) contrast(98%);
}

.active .main-slider__content-shape-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.main-slider__img {
  position: absolute;
  bottom: 0;
  right: 365px;
  opacity: 0;
  transform: translateX(300px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  z-index: 1;
}

.active .main-slider__img {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__img img {
  width: auto !important;
}

.main-slider__title {
  position: relative;
  font-size: 70px;
  color: var(--maroof-white);
  font-weight: 900;
  line-height: 80px;
  text-transform: capitalize;
  opacity: 0;
  transition:
    transform 1200ms ease,
    opacity 1200ms ease;
  transform: translateX(-200px);
}

.main-slider__title span {
  color: var(--maroof-base);
}

.active .main-slider__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.main-slider__counter {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 41px;
  margin-bottom: 39px;
  opacity: 0;
  transition:
    transform 1000ms ease,
    opacity 1000ms ease;
  transform: translateX(200px);
}

.active .main-slider__counter {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}

.main-slider__counter li {
  position: relative;
  display: block;
}

.main-slider__counter-single {
  position: relative;
  display: block;
}

.main-slider__count {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-slider__count h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  color: var(--maroof-white);
}

.main-slider__count span {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  color: var(--maroof-white);
}

.main-slider__count-text {
  font-size: 16px;
  color: var(--maroof-white);
}

.main-slider__btn-and-call-box {
  position: relative;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}

.active .main-slider__btn-and-call-box {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
}

.main-slider__btn {
  color: var(--maroof-white) !important;
}

.main-slider__btn:hover {
  color: var(--maroof-black) !important;
}

.main-slider__btn span {
  color: var(--maroof-white) !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider__btn:hover span {
  color: var(--maroof-black) !important;
}

.main-slider__btn::after {
  background-color: var(--maroof-white) !important;
}

.main-slider__call {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.main-slider__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background-color: rgba(var(--maroof-white-rgb), 0.1);
  z-index: 1;
}

.main-slider__call-icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--maroof-white);
}

.main-slider__call-number {
  margin-left: 20px;
}

.main-slider__call-number p {
  font-size: 20px;
  line-height: 20px;
  color: var(--maroof-white);
  margin-bottom: 15px;
}

.main-slider__call-number h5 {
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
}

.main-slider__call-number h5 a {
  color: var(--maroof-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider__call-number a:hover {
  color: var(--maroof-base);
}

.main-slider .owl-nav {
  position: absolute;
  top: 50%;
  right: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-50%);
  margin: 0 !important;
  z-index: 100;
}

.main-slider .owl-nav .owl-next,
.main-slider .owl-nav .owl-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  font-size: 20px !important;
  color: rgba(var(--maroof-white-rgb), 0.3) !important;
  opacity: 1;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  border-radius: 50%;
  background-color: transparent !important;
  border: 2px solid rgba(var(--maroof-white-rgb), 0.3) !important;
}

.main-slider .owl-nav .owl-prev {
  margin-bottom: 10px;
}

.main-slider .owl-nav .owl-next span,
.main-slider .owl-nav .owl-prev span {
  display: block;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-next span,
.main-slider .owl-nav .owl-prev span,
.main-slider .owl-nav .owl-prev span:before,
.main-slider .owl-nav .owl-next span:before {
  color: rgba(var(--maroof-white-rgb), 0.3) !important;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-next:hover span,
.main-slider .owl-nav .owl-prev:hover span,
.main-slider .owl-nav .owl-prev:hover span:before,
.main-slider .owl-nav .owl-next:hover span:before {
  color: rgba(var(--maroof-white-rgb), 1) !important;
}

.main-slider .owl-nav .owl-next:hover,
.main-slider .owl-nav .owl-prev:hover {
  border: 2px solid rgba(var(--maroof-white-rgb), 1) !important;
}

.main-slider .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  max-width: 100%;
  width: 100%;
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0 auto !important;
  height: 0;
  line-height: 0;
}

.main-slider .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 10px;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(var(--maroof-white-rgb), 1);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--maroof-white-rgb), 0);
  border: 2px solid var(--maroof-white);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/***
=============================================
Testimonial One
=============================================
***/
.testimonial-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonial-one__img {
  position: relative;
  display: block;
  margin-right: 70px;
}
.testimonial-one h2{
font-size: 59px;
}

.testimonial-one__img-box {
  position: relative;
  display: block;
}

.testimonial-one__img-box img {
  width: 100%;
}

.testimonial-one__content {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
}

.testimonial-one__single-icon {
  position: relative;
  display: flex;
  text-align: right;
  margin-bottom: 8px;
  margin-left: auto;
  justify-content: end;
}
.testimonial-one__single-icon.quote img {
  width: 40px;
  display: flex;
  filter: brightness(0) saturate(100%) invert(63%) sepia(67%) saturate(5682%) hue-rotate(356deg) brightness(103%) contrast(98%);
}

.testimonial-one__single-icon span::before {
  position: relative;
  display: inline-block;
  color: #bfbfbf;
  font-size: 60px;
  line-height: 60px;
}

.testimonial-one__single-text {
  position: relative;
  display: block;
}

.testimonial-one__single-text p {
  color: var(--suntop-black);
  font-size: 20px;
  line-height: 35px;
  font-weight: 400;
}

.testimonial-one__single-author-info {
  position: relative;
  display: block;
  margin-top: 32px;
  padding-bottom: 27px;
  border-bottom: 1px solid #bfbfbf;
}

.testimonial-one__single-author-info h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 4px;
}

.testimonial-one__single-author-info p {
  margin: 0;
}

.testimonial-one__carousel.owl-theme .owl-nav {
  margin-top: 0px;
  position: absolute;
  bottom: 0px;
  right: 0;
  margin-bottom: 26px;
}

.testimonial-one__carousel.owl-carousel .owl-nav button.owl-prev,
.testimonial-one__carousel.owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: transparent;
  color: #0386a8;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #0386a8;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-one__carousel.owl-carousel .owl-nav button.owl-prev::before,
.testimonial-one__carousel.owl-carousel .owl-nav button.owl-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--suntop-base);
  transform: scale(0.6);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
}

.testimonial-one__carousel.owl-carousel .owl-nav button.owl-prev:hover::before,
.testimonial-one__carousel.owl-carousel .owl-nav button.owl-next:hover::before {
  transform: scale(1);
  opacity: 1;
}

.testimonial-one__carousel.owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-one__carousel.owl-carousel .owl-nav button.owl-next:hover {
  border-color: var(--suntop-base);
  color: var(--suntop-white);
}

.testimonial-one__carousel.owl-carousel .owl-nav button.owl-prev span::before,
.testimonial-one__carousel.owl-carousel .owl-nav button.owl-next span::before {
  font-weight: 700;
  line-height: 53px;
}

/***
=============================================
End
=============================================
***/
/***
=============================================
Highlight One
=============================================
***/
.highlight-one {
  position: relative;
  display: block;
  background: #014556;
  padding: 120px 0px 120px;
  z-index: 1;
}

.highlight-one__single {
  position: relative;
  display: block;
  margin-bottom: 42px;
}

.highlight-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.highlight-one__single-img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--suntop-black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.highlight-one__single:hover .highlight-one__single-img:before {
  opacity: 0.5;
}

.highlight-one__single-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.highlight-one__single:hover .highlight-one__single-img img {
  transform: scale(1.05) rotate(0deg);
}

.highlight-one__single-content {
  position: relative;
  display: block;
  margin-top: 32px;
  padding-left: 23px;
}

.highlight-one__single-content::before {
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 8px;
  width: 3px;
  background: #fc6c0d;
  content: "";
}

.highlight-one__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.highlight-one__single-content h2 a {
  color: #fff;
}

.highlight-one__single-content h2 a:hover {
  color: var(--suntop-base);
}

.highlight-one__single-content p {
  color: var(--suntop-base);
  text-transform: capitalize;
}

.highlight-one__btn {
  position: relative;
  display: block;
  text-align: center;
  line-height: 0px;
}
.highlight-one__btn a {
  padding: 26px 30px;
  color: #fff;
  background: #fc6c0d;
  border: 2px solid #fff;
}
/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color: #014556;
    /* overflow: hidden; */
    z-index: 1;
}
.site-footer:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 238px;
  content: "";
  background: url(../images/shapes/ft-bg.png) no-repeat;
  background-size: contain;

}


.site-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

/* .site-footer__top {
    position: relative;
    display: block;
    border-bottom: 1px solid #20202D;
    padding: 63px 0 55px;
} */

.site-footer__top-inner {
    position: relative;
    display: block;
}

.site-footer__top-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--maroof-white);
    font-weight: 900;
    text-transform: capitalize;
    line-height: 80px;
}

.site-footer__top-content:hover {
    color: var(--maroof-white);
}

.site-footer__top-content span {
    font-weight: 200;
    margin-left: 20px;
}

.site-footer__top-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    background-color: #20202D;
    border-radius: 50%;
    margin-left: 65px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__top-arrow:hover {
    background-color: var(--maroof-base);
}

.site-footer__top-arrow img {
    width: auto;
}

.site-footer__middle {
    position: relative;
    display: block;
    padding: 30px 0 78px;
}

.site-footer__middle-inner {
    position: relative;
    display: block;
}

.footer-widget__about {
    position: relative;
    display: block;
}
.footer-widget__about p.abn-text strong{
	font-weight: bold;
	color:#edaf04;
	font-size: 21px;
}

.footer-widget__logo {
    position: relative;
    display: block;
}

.footer-widget__about-text {
    color: rgba(var(--maroof-white-rgb), .90);    
    margin-bottom: 15px;
}

.footer-widget__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-widget__social a {
    position: relative;
    font-size: 20px;
    color: var(--maroof-white);
}

.footer-widget__social a:hover {
    color: var(--maroof-base);
}

.footer-widget__title-box {
    position: relative;
    display: block;
    margin-bottom: 15px;
    margin-top: 8px;
}

.footer-widget__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    color: var(--maroof-white);
    display: inline-block;
    border-bottom: 3px solid #fc6c0d;
    padding-bottom: 10px;
}

.footer-widget__services {
    position: relative;
    display: block;
    margin-left: 35px;
    margin-right: -11px;
}

.footer-widget__services-list {
    position: relative;
    display: block;
}

.footer-widget__services-list li {
    position: relative;
    display: block;
}

.footer-widget__services-list li+li {
    margin-top: 12px;
}

.footer-widget__services-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(var(--maroof-white-rgb), .90);
    font-weight: 500;
}

.footer-widget__services-list li a>span {
    font-size: 16px;
    color: var(--maroof-base);
}

.footer-widget__services-list li a:hover {
    color: var(--maroof-base);
}

.footer-widget__contact {
    position: relative;
    display: block;
    margin-left: 69px;
}

.footer-widget__contact-inner {
    position: relative;
    display: block;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-widget__contact-list li+li {
    margin-top: 15px;
}

.footer-widget__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 40px;
    width: 40px;
    border: 2px solid rgba(var(--maroof-bdr-color-rgb), .10);
    border-radius: 50%;
}

.footer-widget__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: var(--maroof-white);
}

.footer-widget__contact-list li .text {
    position: relative;
    display: block;
}

.footer-widget__contact-list li .text p {
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget__contact-list li .text p a {
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget__contact-list li .text p a:hover {
    color: rgba(var(--maroof-base-rgb), 1);
}

.footer-widget__newsletter {
    position: relative;
    display: block;
}

.footer-widget__newsletter .footer-widget__title-box {
    margin-bottom: 41px;
}

.footer-widget__newsletter-text {
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget__newsletter-form {
    position: relative;
    display: block;
    margin-top: 30px;
}

.footer-widget__newsletter-form-input-box {
    position: relative;
    display: block;
}

.footer-widget__newsletter-form-input-box input[type="email"] {
    font-size: 16px;
    height: 60px;
    width: 100%;
    background-color: transparent;
    outline: none;
    color: var(--maroof-white);
    font-weight: 300;
    border: 2px solid rgba(var(--maroof-white-rgb), .10);
    border-radius: 30px;
    padding-right: 65px;
    padding-left: 20px;
}

.footer-widget__newsletter-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    border: none;
    width: 46px;
    height: 46px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--maroof-white);
    background-color: var(--maroof-base);
    border-radius: 50%;
    transform: translateY(-50%);
}

.footer-widget__newsletter-btn:hover {
    color: var(--maroof-base);
    background-color: var(--maroof-white);
}

.site-footer__bottom {
    position: relative;
    display: block;
}

.site-footer__bottom-inner {
    position: relative;
    text-align: center;
    padding: 10px 0 10px;        
    border-top: 2px solid #20202D;
}

.site-footer__bottom-text {
    color: rgba(var(--maroof-white-rgb), .90);
}

.site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer__bottom-menu li+li {
    margin-left: 30px;
}

.site-footer__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(var(--maroof-white-rgb), .90);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
    color: var(--maroof-base);
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
    position: relative;
    display: block;
    background-color: var(--maroof-black);
    margin-top: -164px;
    overflow: hidden;
    z-index: 1;
}

.site-footer-two__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.site-footer-two__top {
    position: relative;
    display: block;
    border-bottom: 1px solid #20202D;
    padding: 244px 0 78px;
}

.site-footer-two__top-inner {
    position: relative;
    display: block;
}

.footer-widget-two__about {
    position: relative;
    display: block;
}

.footer-widget-two__logo {
    position: relative;
    display: block;
}

.footer-widget-two__about-text {
    color: rgba(var(--maroof-white-rgb), .80);
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-widget-two__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget-two__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #20202D;
    border-radius: 50%;
    font-size: 14px;
    color: var(--maroof-white);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-widget-two__social a:hover {
    color: var(--maroof-white);
    background-color: var(--maroof-base);
}

.footer-widget-two__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--maroof-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.footer-widget-two__social a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.footer-widget-two__title-box {
    position: relative;
    display: block;
    margin-bottom: 36px;
    margin-top: 8px;
}

.footer-widget-two__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    color: var(--maroof-white);
}

.footer-widget-two__contact {
    position: relative;
    display: block;
}

.footer-widget-two__contact-inner {
    position: relative;
    display: block;
}

.footer-widget-two__contact-list {
    position: relative;
    display: block;
}

.footer-widget-two__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-widget-two__contact-list li+li {
    margin-top: 15px;
}

.footer-widget-two__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 40px;
    width: 40px;
    background-color: #20202D;
    border-radius: 50%;
}

.footer-widget-two__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: var(--maroof-base);
}

.footer-widget-two__contact-list li .text {
    position: relative;
    display: block;
}

.footer-widget-two__contact-list li .text p {
    color: rgba(var(--maroof-white-rgb), .80);
}

.footer-widget-two__contact-list li .text p a {
    color: rgba(var(--maroof-white-rgb), .80);
}

.footer-widget-two__contact-list li .text p a:hover {
    color: rgba(var(--maroof-base-rgb), 1);
}

.footer-widget-two__newsletter {
    position: relative;
    display: block;
    margin-top: 6px;
}

.footer-widget-two__newsletter-title {
    font-size: 59px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: -1.2px;
    color: var(--maroof-white);
}

.footer-widget-two__newsletter-title span {
    color: var(--maroof-base);
}

.footer-widget-two__newsletter-form {
    position: relative;
    display: block;
    margin-top: 30px;
}

.footer-widget-two__newsletter-form-input-box {
    position: relative;
    display: block;
}

.footer-widget-two__newsletter-form-input-box input[type="email"] {
    font-size: 16px;
    height: 60px;
    width: 100%;
    background-color: #20202D;
    outline: none;
    color: rgba(var(--maroof-white-rgb), .90);
    font-weight: 300;
    border: 1px solid rgba(var(--maroof-bdr-color-rgb), .20);
    border-radius: 30px;
    padding-right: 75px;
    padding-left: 30px;
}

.footer-widget-two__newsletter-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
    width: 60px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--maroof-white);
    background-color: var(--maroof-base);
    border-radius: 50%;
}

.footer-widget-two__newsletter-btn:hover {
    color: var(--maroof-base);
    background-color: var(--maroof-white);
}

.site-footer-two__bottom {
    position: relative;
    display: block;
}

.site-footer-two__bottom-inner {
    position: relative;
    display: flex;
    padding: 29px 0 29px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #20202D;
}

.site-footer-two__bottom-text {
    color: rgba(var(--maroof-white-rgb), .70);
}

.site-footer-two__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer-two__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer-two__bottom-menu li+li {
    margin-left: 30px;
}

.site-footer-two__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(var(--maroof-white-rgb), .70);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer-two__bottom-menu li a:hover {
    color: var(--maroof-base);
}

/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/
.site-footer-three {
    position: relative;
    display: block;
    background-color: var(--maroof-black);
    overflow: hidden;
    z-index: 1;
}

.site-footer-three__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.site-footer-three__top {
    position: relative;
    display: block;
}

.site-footer-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #20202D;
    padding: 80px 0 29px;
}

.site-footer-three__top-title {
    font-size: 80px;
    line-height: 80px;
    color: var(--maroof-white);
    font-weight: 900;
}

.site-footer-three__top-title span {
    color: transparent;
    -webkit-text-stroke: 1px var(--maroof-white);
}

.site-footer-three__from-box {
    position: relative;
    display: block;
    max-width: 515px;
    width: 100%;
}

.footer-widget-three__form {
    position: relative;
    display: block;
}

.footer-widget-three__form-input-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-widget-three__form-input-box input[type="email"] {
    font-size: 16px;
    height: 60px;
    width: 300px;
    background-color: transparent;
    outline: none;
    color: var(--maroof-white);
    font-weight: 300;
    border: 2px solid rgba(var(--maroof-white-rgb), .10);
    border-radius: 30px;
    padding-right: 30px;
    padding-left: 30px;
}

.footer-widget-three__newsletter-btn {
    border: none !important;
    padding: 15px 29px 15px !important;
    color: var(--maroof-white) !important;
}

.footer-widget-three__newsletter-btn:hover {
    color: var(--maroof-base) !important;
}

.footer-widget-three__newsletter-btn span {
    color: var(--maroof-white) !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget-three__newsletter-btn:hover span {
    color: var(--maroof-base) !important;
}

.footer-widget-three__newsletter-btn::after {
    background: var(--maroof-white) !important;
}

.site-footer-three__middle {
    position: relative;
    display: block;
    padding: 80px 0 78px;
}

.site-footer-three__middle-inner {
    position: relative;
    display: block;
}

.footer-widget-three__about {
    position: relative;
    display: block;
}

.footer-widget-three__logo {
    position: relative;
    display: block;
}

.footer-widget-three__about-text {
    color: rgba(var(--maroof-white-rgb), .90);
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-widget-three__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget-three__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #20202D;
    border-radius: 50%;
    font-size: 14px;
    color: var(--maroof-white);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-widget-three__social a:hover {
    color: var(--maroof-white);
    background-color: var(--maroof-base);
}

.footer-widget-three__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--maroof-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.footer-widget-three__social a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.footer-widget-three__title-box {
    position: relative;
    display: block;
    margin-bottom: 36px;
    margin-top: 8px;
}

.footer-widget-three__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    color: var(--maroof-white);
}

.footer-widget-three__services {
    position: relative;
    display: block;
    margin-left: 102px;
}

.footer-widget-three__services-list {
    position: relative;
    display: block;
}

.footer-widget-three__services-list li {
    position: relative;
    display: block;
}

.footer-widget-three__services-list li+li {
    margin-top: 12px;
}

.footer-widget-three__services-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget-three__services-list li a>span {
    font-size: 16px;
    color: var(--maroof-white);
}

.footer-widget-three__services-list li a:hover {
    color: var(--maroof-base);
}

.footer-widget-three__page {
    position: relative;
    display: block;
    margin-left: 90px;
}

.footer-widget-three__page-list {
    position: relative;
    display: block;
}

.footer-widget-three__page-list li {
    position: relative;
    display: block;
}

.footer-widget-three__page-list li+li {
    margin-top: 12px;
}

.footer-widget-three__page-list li a {
    position: relative;
    display: inline-block;
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget-three__page-list li a:hover {
    color: var(--maroof-base);
}

.footer-widget-three__contact {
    position: relative;
    display: block;
}

.footer-widget-three__contact-inner {
    position: relative;
    display: block;
}

.footer-widget-three__contact-list {
    position: relative;
    display: block;
}

.footer-widget-three__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-widget-three__contact-list li+li {
    margin-top: 15px;
}

.footer-widget-three__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 40px;
    width: 40px;
    border: 2px solid rgba(var(--maroof-bdr-color-rgb), .10);
    border-radius: 50%;
}

.footer-widget-three__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: var(--maroof-white);
}

.footer-widget-three__contact-list li .text {
    position: relative;
    display: block;
}

.footer-widget-three__contact-list li .text p {
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget-three__contact-list li .text p a {
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget-three__contact-list li .text p a:hover {
    color: rgba(var(--maroof-base-rgb), 1);
}

.site-footer-three__bottom {
    position: relative;
    display: block;
}

.site-footer-three__bottom-inner {
    position: relative;
    display: flex;
    padding: 29px 0 29px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 2px solid #20202D;
}

.site-footer-three__bottom-text {
    color: rgba(var(--maroof-white-rgb), .90);
}

.site-footer-three__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer-three__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer-three__bottom-menu li+li {
    margin-left: 30px;
}

.site-footer-three__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(var(--maroof-white-rgb), .90);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer-three__bottom-menu li a:hover {
    color: var(--maroof-base);
}

/*--------------------------------------------------------------
# Site Footer Four
--------------------------------------------------------------*/
.site-footer-four {
    position: relative;
    display: block;
    background-color: var(--maroof-black);
}

.site-footer-four__top {
    position: relative;
    display: block;
}

.site-footer-four__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 83px 0 30px;
}

.site-footer-four__logo {
    position: relative;
    display: block;
}

.site-footer-four__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer-four__social a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: var(--maroof-white);
}

.site-footer-four__social a:hover {
    color: var(--maroof-base);
}

.site-footer-four__social a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #20202D;
    border-radius: 50%;
    font-size: 15px;
    color: var(--maroof-white);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.site-footer-four__social a span:hover {
    color: var(--maroof-white);
    background-color: var(--maroof-base);
}

.site-footer-four__social a span:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--maroof-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.site-footer-four__social a span:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.site-footer-four__middle {
    position: relative;
    display: block;
    border-top: 2px solid #20202D;
    border-bottom: 2px solid #20202D;
    padding: 60px 0 78px;
}

.site-footer-four__middle-inner {
    position: relative;
    display: block;
}

.footer-widget-four__contact {
    position: relative;
    display: block;
}

.footer-widget-four__contact-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 80px;
    color: var(--maroof-white);
}

.footer-widget-four__contact-list {
    position: relative;
    display: block;
    margin-top: 30px;
}

.footer-widget-four__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-widget-four__contact-list li+li {
    margin-top: 20px;
}

.footer-widget-four__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 40px;
    width: 40px;
    border: 2px solid rgba(var(--maroof-bdr-color-rgb), .20);
    border-radius: 50%;
}

.footer-widget-four__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: var(--maroof-white);
}

.footer-widget-four__contact-list li .text {
    position: relative;
    display: block;
}

.footer-widget-four__contact-list li .text p {
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget-four__contact-list li .text p a {
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget-four__contact-list li .text p a:hover {
    color: rgba(var(--maroof-base-rgb), 1);
}

.footer-widget-four__title-box {
    position: relative;
    display: block;
    margin-bottom: 36px;
    margin-top: 8px;
}

.footer-widget-four__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
    color: var(--maroof-white);
}

.footer-widget-four__services {
    position: relative;
    display: block;
    margin-left: 32px;
}

.footer-widget-four__services-list {
    position: relative;
    display: block;
}

.footer-widget-four__services-list li {
    position: relative;
    display: block;
}

.footer-widget-four__services-list li+li {
    margin-top: 12px;
}

.footer-widget-four__services-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget-four__services-list li a>span {
    font-size: 16px;
    color: var(--maroof-white);
}

.footer-widget-four__services-list li a:hover {
    color: var(--maroof-base);
}

.footer-widget-four__page {
    position: relative;
    display: block;
    margin-left: 97px;
}

.footer-widget-four__page-list {
    position: relative;
    display: block;
}

.footer-widget-four__page-list li {
    position: relative;
    display: block;
}

.footer-widget-four__page-list li+li {
    margin-top: 12px;
}

.footer-widget-four__page-list li a {
    position: relative;
    display: inline-block;
    color: rgba(var(--maroof-white-rgb), .90);
}

.footer-widget-four__page-list li a:hover {
    color: var(--maroof-base);
}

.site-footer-four__bottom {
    position: relative;
    display: block;
}

.site-footer-four__bottom-inner {
    position: relative;
    display: flex;
    padding: 29px 0 29px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-footer-four__bottom-text {
    color: rgba(var(--maroof-white-rgb), .90);
}

.site-footer-four__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer-four__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer-four__bottom-menu li+li {
    margin-left: 30px;
}

.site-footer-four__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(var(--maroof-white-rgb), .90);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer-four__bottom-menu li a:hover {
    color: var(--maroof-base);
}



.footer-contact-sec {
  background: #fc6c0d;
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  margin-top: -54px;
}


.footer-contact-sec li {
  display: flex;
}
.footer-contact-sec li{
  padding-top: 20px;
  padding-bottom: 20px;
}
/* .footer-contact-sec li:last-child {
  display: block;
} */
.footer-contact-sec li .call-number,
.footer-contact-sec li .wp-number {
  padding-top: 20px;
}
.footer-contact-sec li i {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 33px;
  color: #141422;
  background: #fff;
  border-radius: 10px;
  margin-right: 10px;  
}

.footer-contact-sec li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding-top: 20px;
}
.footer-contact-sec li .call-number a {
padding-top: 20px;
}
.footer-contact-sec li p {
  color: #fff;
  font-weight: 700;
  padding-top: 20px;
}

/* For inner page style */

.inner_banner_caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 100%;
  padding: 0 10px;
}
 
.inner_banner {
  position: relative;
  z-index: 1;
  margin-top: 0px;
  /* background: url("https://safecareroofingandbuilding.com/wp-content/uploads/2025/08/ridge-tiles.jpg")
    no-repeat; */
  background-size: cover;
  background-position: 50% 30%;
}
 
.inner_banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
 
.inner_banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
 
.inner_banner h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #fff;
}
.servicessingelpage, .contact-page {
  padding: 70px 0 120px;
}
.servicessingelpage ul li {
  position: relative;
}
.servicessingelpage ul li:before {
  content: "\f00c";
  color: #ff7f00;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  position: absolute;
  left: -30px;
}
.servicessingelpage img { float: right; width: 40%;margin: 0 0 15px 20px;
}
.faq-one.contact-page .faq-one__left{
  padding: 30px 20px;
  background: #0386a8;
  border-radius: 10px;
}

.faq-one.contact-page .faq-one__left .page-contact-sec li{
  display: flex;
  margin-bottom: 20px;
}
.faq-one.contact-page .faq-one__left .page-contact-sec li p,
.faq-one.contact-page .faq-one__left .page-contact-sec li a{
  color: #fff;
}
.faq-one.contact-page .faq-one__left .page-contact-sec li p{
	line-height: 24px;
}

.faq-one.contact-page .faq-one__left .page-contact-sec li i{
color: #fc6c0d;
width: 50px;
height: 50px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
font-size: 25px;
border-radius: 7px;
margin-right: 15px;
}
.faq-one.contact-page .faq-one__left ul{
 list-style: none;
}
.highlight-one.gallery-page{
background: #fff;
}
ul{
  list-style: none;
}
.map-area{
border-radius:10px;
overflow:hidden;
height:300px;	
}






/*--------------------------------------------------------------
# End
--------------------------------------------------------------*