<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --roofsie-font: 'Manrope', sans-serif;
  --roofsie-reey-font: "reeyregular";
  --roofsie-gray: #474648;
  --roofsie-gray-rgb: 108, 107, 111;
  --roofsie-white: #ffffff;
  --roofsie-white-rgb: 255, 255, 255;
  --roofsie-base: #02506a;
  --roofsie-base-rgb: 2, 80, 106;
  --roofsie-black: #1c1b1f;
  --roofsie-black-rgb: 28, 27, 31;
  --roofsie-primary: #f4f1ee;
  --roofsie-primary-rgb: 244, 241, 238;
  --roofsie-bdr-radius: 5px;

}

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

body.locked {
  overflow: hidden;
}

.grecaptcha-badge { opacity: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;
}

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;
}

::-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(--roofsie-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

.xyz {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.swiper-single:not(.swiper-container-initialized) .swiper-slide:nth-child(n+2) {
  display: none;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 2rem;
}

.section-sub-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title__title {
  margin: 0;
  color: var(--roofsie-black);
}

/* Swiper */

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border: 2px solid transparent;
  border-radius: 50rem;
  background-color: #02506a;
  color: #fff;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  z-index: 99;
}

.main-header__top-menu li {
  position: relative;
}

.main-header__top-menu li + li {
  margin-left: 30px;
}

.main-header__top-menu li:before {
  position: absolute;
  top: 10px;
  bottom: 8px;
  right: -14px;
  content: "";
  width: 1px;
  background-color: #ccc;
  transform: rotate(15deg);
}

.main-header__top-menu li:last-child:before {
  display: none;
}

.main-header__top-menu li a {
  color: #ccc;
  padding: 0;
}

.main-menu__call-icon {
  font-size: 20px;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list &gt; li &gt; ul,
.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (max-width: 767.98px){
  .section-sub-title {
    font-size: 0.825rem;
  }
  .main-header-logo {
    width: 80px;
  }
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list &gt; li &gt; ul,
  .main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list &gt; li + li {
  margin-left: 16px;
}

.main-menu .main-menu__list &gt; li &gt; a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--roofsie-black);
  position: relative;
  transition: all 500ms ease;
  font-weight: 700;
}

.main-menu .main-menu__list &gt; li.current &gt; a,
.main-menu .main-menu__list &gt; li:hover &gt; a {
  color: var(--roofsie-base);
}

.main-menu .main-menu__list &gt; li &gt; ul,
.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -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);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
  padding: 24px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.border-top-2px {
  border-top: 2px solid var(--roofsie-base);
}

.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; ul {
  display: none;
}

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

.main-menu .main-menu__list &gt; li &gt; ul &gt; li,
.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list &gt; li &gt; ul &gt; li + li,
.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li + li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; a,
.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--roofsie-gray);
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 20px 3px;
  transition: 500ms;
  background-color: var(--roofsie-white);
  border-radius: var(--roofsie-bdr-radius);
}

.main-menu .main-menu__list &gt; li &gt; ul &gt; li:hover &gt; a,
.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li:hover &gt; a {
  background-color: var(--roofsie-primary);
  color: var(--roofsie-black);
}

.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; a::before,
.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f101";
  font-size: 14px;
  color: var(--roofsie-base);
  transform: translateY(-50%) scale(0);
  transition: 500ms;
}

.main-menu .main-menu__list &gt; li &gt; ul &gt; li:hover &gt; a::before,
.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li:hover &gt; a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list &gt; li &gt; ul &gt; li &gt; ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li &gt; ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.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(--roofsie-base);
  cursor: pointer;
}

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

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

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--roofsie-base);
  cursor: pointer;
}

/*--------------------------------------------------------------
# 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;
  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;
  transition: transform 500ms ease 0ms, visibility 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: var(--roofsie-black);
  z-index: 10;
  position: relative;
  height: 100%;
  float: right;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

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

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

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

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

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

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

.mobile-nav__content .main-menu__list &gt; li &gt; a,
.mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; a,
.mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  height: 46px;
  padding: 0;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; a {
  color: #999;
  font-weight: 500;
}

.mobile-nav__content .main-menu__list &gt; li &gt; a.expanded .mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; a.expanded .mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a.expanded {
  color: var(--roofsie-base);
}

.mobile-nav__content .main-menu__list &gt; li &gt; a &gt; button,
.mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; a &gt; button,
.mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a &gt; button {
  width: 30px;
  height: 30px;
  background-color: var(--roofsie-base);
  border: none;
  outline: none;
  color: #fff;
  text-align: center;
  padding: 1px;
}

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

.mobile-nav__content .main-menu__list &gt; li &gt; a::after {
  display: none;
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a &gt; button,
.mobile-nav__content .main-menu__list &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; 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__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/*--------------------------------------------------------------
# Panel Hero Slider
--------------------------------------------------------------*/

.panel-hero-slider {
  position: relative;
  background-color: var(--roofsie-black);
}

.panel-hero-slider .container {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 3rem;
  z-index: 30;
}

.panel-hero-slider .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  z-index: 1;
}

.panel-hero-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

#fix-hero-image-animation {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.panel-hero-slider .image-layer:before {
  position: absolute;
  left: -1px;
  top: 0px;
  bottom: 0;
  right: 0;
  content: "";
  background-image: -moz-linear-gradient(-1deg, rgb(28, 27, 31) 0%, rgba(28, 27, 31, 0) 100%);
  background-image: -webkit-linear-gradient(-1deg, rgb(28, 27, 31) 0%, rgba(28, 27, 31, 0) 100%);
  background-image: -ms-linear-gradient(-1deg, rgb(28, 27, 31) 0%, rgba(28, 27, 31, 0) 100%);
  z-index: -1;
}

.panel-hero-slider .image-layer:after {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--roofsie-black-rgb), .30);
  z-index: -1;
}

.panel-hero-slider__content {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-80px);
  transform: translateY(-80px);
  transition-delay: 1000ms;
  transition: transform 1400ms ease, opacity 1400ms ease;
}

.panel-hero-slider__sub-title {
  font-size: 24px;
}

.panel-hero-slider__title {
  margin-bottom: 28px;
}

.panel-hero-slider .swiper-slide-active .panel-hero-slider__content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.panel-hero-slider__nav {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0;
  height: 0;
  line-height: 0;
}

.panel-hero-slider__nav .swiper-button-next,
.panel-hero-slider__nav .swiper-button-prev {
  position: relative;
  right: 0;
  left: auto;
  z-index: 100;
  width: 50px;
  min-height: 50px;
  color: rgba(var(--roofsie-white-rgb), .20);
  border-color: rgba(var(--roofsie-white-rgb), .20);
  margin: 0 0 1rem 0;
  background-color: transparent;
  transition: all 500ms ease;
  padding: 23px 0;
}

.panel-hero-slider__nav .swiper-button-next:hover,
.panel-hero-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--roofsie-white-rgb), 1);
  border-color: rgba(var(--roofsie-white-rgb), 1);
}

@media(max-width:575.98px){
  .prosuperior-hero-badges img {
    width: auto !important;
    height: 50px;
  }
}


/*--------------------------------------------------------------
# Panel Columns
--------------------------------------------------------------*/
.panel-columns {
  position: relative;
  z-index: 92;
}

.panel-columns__single {
  border-top: 3px solid var(--roofsie-base);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

.panel-columns__icon {
  position: relative;
  display: flex;
  background-color: var(--roofsie-base);
  height: 82px;
  min-width: 96px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.panel-columns__icon span {
  position: relative;
  display: inline-block;
  font-size: 58px;
  color: var(--roofsie-white);
}

.item-read-more a {
  font-size: 12px;
  font-weight: 700;
  color: var(--roofsie-black);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.item-read-more a i {
  display: inline-block;
  height: 13px;
  width: 13px;
  background-color: var(--roofsie-base);
  color: var(--roofsie-white);
  border-radius: 5rem;
  font-size: 7px;
  line-height: 13px;
  text-align: center;
  margin-left: 5px;
}

/*--------------------------------------------------------------
# Panel Image+Text
--------------------------------------------------------------*/

.panel-image-text__shape {
  position: absolute;
  bottom: 0;
  right: -40px;
  opacity: .30;
}

.panel-image-text__shape img {
  width: auto;
}

.panel-image-text__img-box {
  position: relative;
  display: block;
}

.panel-image-text__img {
  position: relative;
  display: block;
  z-index: 2;
}

.panel-image-text__img &gt; img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.panel-image-text__line {
  position: absolute;
  top: 30px;
  right: -30px;
  opacity: 0.20;
  z-index: 1;
}

.panel-image-text__line &gt; img {
  width: auto;
}

.panel-image-text__satisfied {
  position: absolute;
  bottom: 100px;
  left: -60px;
  z-index: 3;
}

.panel-image-text__satisfied-inner {
  position: relative;
  display: block;
  z-index: 1;
}

.panel-image-text__satisfied-shape {
  position: absolute;
  top: -59px;
  left: -69px;
}

.panel-image-text__satisfied-shape img {
  width: auto;
}

.panel-image-text__satisfied-content {
  position: relative;
  display: block;
  background-color: var(--roofsie-base);
  padding: 21px 40px 28px;
  z-index: 1;
}

.panel-image-text__satisfied-count-box {
  position: relative;
  display: flex;
  align-items: center;
}

.panel-image-text__satisfied-count-box h3 {
  font-size: 55px;
  color: var(--roofsie-white);
  font-weight: 800;
  line-height: 55px !important;
}

.panel-image-text__satisfied-percent {
  font-size: 35px;
  color: var(--roofsie-white);
  font-weight: 800;
  line-height: 55px;
  position: relative;
  top: -9px;
}

.panel-image-text__satisfied-text {
  font-size: 20px;
  color: var(--roofsie-white);
  font-weight: 400;
  line-height: 20px;
}

.panel-image-text__big-text {
  font-size: 100px;
  color: #f4f1ee;
  text-transform: uppercase;
  line-height: 100px;
  letter-spacing: 0.18em;
  position: absolute;
  top: 231px;
  left: -366px;
  transform: rotate(-90deg);
  font-weight: 800;
  user-select: none;
}

.prosuperior-check-list li {
  display: flex;
  align-items: center;
  position: relative;
}

.prosuperior-check-list li:before {
  content: '\f00c';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
  font-style: normal;
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.125rem;
  width: 1.125rem;
  background-color: var(--roofsie-base);
  font-size: 0.575rem;
  color: var(--roofsie-white);
  border-radius: 50%;
}

.panel-image-text__points .column .box-icon {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}

.panel-image-text__points .column .box-icon .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 26px;
  color: var(--roofsie-base);
}

.panel-image-text__points .column .box-icon .text-box {
  margin-left: 10px;
}

.panel-image-text__points .column .box-icon .text-box p {
  font-size: 18px;
  font-weight: 700;
  color: var(--roofsie-black);
}

@media(min-width:992px){
  .font-18 .prosuperior-check-list li:before,
  .font-20 .prosuperior-check-list li:before {
    height: 1.625rem;
    width: 1.625rem;
    font-size: 0.725rem;
  }
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.panel-services {
  position: relative;
}

.panel-services:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--roofsie-black);
  height: 505px;
  z-index: -1;
}

.panel-services__top {
  position: relative;
  display: block;
  margin-bottom: 49px;
}

.panel-services__top-left {
  position: relative;
  display: block;
}

.panel-services__top-left .section-title__title {
  color: var(--roofsie-white);
}

.panel-services__top-right {
  position: relative;
  display: block;
  margin-top: 26px;
}

.panel-services__top-right-text {
  color: #817e87;
}

.panel-services__bottom {
  position: relative;
  display: block;
}

.panel-services__single {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}

.panel-services__content {
  position: relative;
  display: block;
  padding: 22px 30px 19px;
  z-index: 1;
}

.panel-services__icon {
  position: absolute;
  top: -60px;
  right: 20px;
  background-color: var(--roofsie-base);
  height: 80px;
  width: 80px;
  border-radius: var(--roofsie-bdr-radius);
  padding-top: 16px;
  text-align: center;
}

.panel-services__icon span {
  font-size: 45px;
  color: var(--roofsie-white);
}

.panel-services__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 34px;
  margin-bottom: 14px;
}

.panel-services__title a {
  color: var(--roofsie-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/*--------------------------------------------------------------
# Panel Image+Text
--------------------------------------------------------------*/

.panel-image-text .column-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0.175px 9.998px 37.24px 0.76px rgba(0, 0, 0, 0.1);
  border-radius: var(--roofsie-bdr-radius);
  padding: 33px 35px 29px;
  border-bottom: 4px solid #ede8e4;
  transition: border-color 500ms ease;
}

.panel-image-text .column-box:hover {
  border-bottom: 4px solid var(--roofsie-base);
}

.panel-image-text .column-box .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.panel-image-text .column-box .icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--roofsie-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.panel-image-text .column-box:hover .icon span {
  transform: scale(.9);
}

.panel-image-text .column-box .text-box {
  margin-left: 20px;
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Panel Logo
--------------------------------------------------------------*/

.panel-logo__img a {
  transition: 0.5s;
  opacity: 1;
}

.panel-logo__single:hover a {
  opacity: 0.6;
}


/*--------------------------------------------------------------
# Panel Projects
--------------------------------------------------------------*/
.panel-projects {
  position: relative;
  display: block;
}

.panel-projects__carousel-wrapper {
  position: relative;
  display: block;
  max-width: 1600px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.panel-projects__img-box {
  position: relative;
  display: block;
}

.panel-projects__img img {
  width: 100%;
  transition: all 500ms ease;
}

.panel-projects__single:hover .panel-projects__img img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/

.panel-blog__single {
  position: relative;
  height: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: var(--roofsie-bdr-radius);
  border-bottom-right-radius: var(--roofsie-bdr-radius);
  border-bottom: 5px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.panel-blog__single:hover {
  border-bottom: 5px solid var(--roofsie-base);
}

.panel-blog__img {
  display: block;
  border-top-left-radius: var(--roofsie-bdr-radius);
  border-top-right-radius: var(--roofsie-bdr-radius);
  overflow: hidden;
}

.panel-blog__img img {
  width: 100%;
  transition: all 500ms ease;
}

.panel-blog__single:hover .panel-blog__img img {
  transform: scale(1.05);
}

.panel-blog__user {
  position: relative;
  display: flex;
  align-items: center;
}

.panel-blog__user-img {
  position: relative;
  display: block;
  width: 50px;
}

.panel-blog__user-img img {
  width: 100%;
  border-radius: 50%;
}

.panel-blog__user-content {
  margin-left: 15px;
  font-size: 15px;
  color: var(--roofsie-gray);
  line-height: 22px;
}

.panel-blog__user-content a {
  text-decoration: none;
}

.panel-blog__title a {
  color: var(--roofsie-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Panel CTA
--------------------------------------------------------------*/

.panel-cta__sub-title {
  color: var(--roofsie-white);
  opacity: .70;
}

.panel-cta__title {
  font-size: 40px;
  color: var(--roofsie-white);
}

.panel-cta__image {
  opacity: 0.5;
  background-position: center center;
  background-repeat: no-repeat;
}


/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 45px;
  margin-top: -5px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
}

.footer-widget__about-heading {
  color: var(--roofsie-white);
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  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;
  color: var(--roofsie-white);
  background-color: #151518;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--roofsie-base);
  background-color: var(--roofsie-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--roofsie-white);
  -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__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a + a {
  margin-left: 10px;
}

.footer-widget__title {
  font-size: 20px;
  color: var(--roofsie-white);
  font-weight: 800;
  line-height: 20px;
  margin-bottom: 30px;
}

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

.footer-widget__explore-list {
  position: relative;
  display: block;
  margin-top: -3px;
}

.footer-widget__explore-list li {
  margin-bottom: 3px;
}

.footer-widget__explore-list li a {
  padding: 0;
}

.site-footer .nav-link {
  font-size: 15px;
  color: #ccc;
  transition: all 500ms ease;
}

.site-footer .nav-link:hover {
  color: var(--roofsie-white);
}

.footer-widget__newsletter-text {
  font-size: 15px;
  color: #ccc;
  font-weight: 400;
  line-height: 26px;
}

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

.footer-widget__newsletter-input-box input {
  background-color: transparent;
  border-color: #333236;
  color: #ccc;
}

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

.footer-widget__contact-text {
  font-size: 15px;
  color: #ccc;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 33px;
}

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

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

.footer-widget__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__contact-list li .icon i {
  font-size: 13px;
  color: var(--roofsie-base);
}

.footer-widget__contact-list li .text {
  margin-left: 10px;
}

.footer-widget__contact-list li .text p {
  font-size: 15px;
  font-weight: 700;
}

.footer-widget__contact-list li .text p a {
  color: var(--roofsie-white);
  text-decoration: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
  color: var(--roofsie-base);
}

.site-footer__legal {
  border-top: 2px solid rgba(var(--roofsie-white-rgb), .10);
  border-bottom: 2px solid rgba(var(--roofsie-white-rgb), .10);
}

.site-footer__bottom-text {
  font-size: 15px;
  color: #ccc;
  font-weight: 400;
}

.site-footer__bottom-text a {
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--roofsie-white);
}

/*--------------------------------------------------------------
# Panel Testimonials
--------------------------------------------------------------*/

.panel-testimonials__left {
  position: relative;
  display: block;
  z-index: 5;
}

.panel-testimonials__right {
  position: relative;
  display: block;
}

.panel-testimonials__carousel {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Panel Form
--------------------------------------------------------------*/

.panel-form__left {
  margin-right: 60px;
}

.panel-form__left:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10000000px;
  right: -91px;
  background-color: #26252a;
  z-index: -1;
}

.panel-form__left-content {
  position: relative;
  display: block;
  z-index: 2;
}

.panel-form__text {
  color: #ccc;
}

.panel-form__right {
  position: relative;
  display: block;
  padding-top: 100px;
  padding-left: 100px;
  padding-bottom: 70px;
}

.panel-form__right:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -100000000px;
  background-color: var(--roofsie-black);
}

.panel-form__right .form-group {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.panel-form__right label {
  color: var(--roofsie-white);
}

.panel-form__input-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  transform: translateY(-50%);
}

.panel-form__input-icon i {
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #ccc;
}

.panel-form__btn {
  border: none;
  width: 100%;
}

.panel-form__btn:hover {
  color: var(--roofsie-base);
}

.panel-form__btn:before {
  background-color: var(--roofsie-white);
}

.panel-form__btn:hover i {
  background-color: var(--roofsie-base);
  color: var(--roofsie-white);
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  background-color: var(--roofsie-primary);
  overflow: hidden;
  z-index: 1;
}

.about-three-img-3 {
  position: absolute;
  top: 0;
  right: -30px;
  mix-blend-mode: luminosity;
  opacity: 0.05;
  z-index: -1;
}

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

.about-three__left {
  position: relative;
  display: block;
  margin-left: -52px;
}

.about-three__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-three__img {
  position: relative;
  display: block;
  width: 75%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  z-index: 2;
}

.about-three__img &gt; img {
  width: 100%;
  border-radius: 10px;
}

.about-three__img-two {
  position: relative;
  float: right;
  width: 80%;
  margin-top: -20%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  z-index: 1;
}

.about-three__img-two &gt; img {
  width: auto;
  border-radius: 10px;
}

.about-three__border {
  position: absolute;
  left: 42px;
  top: 0;
  border-width: 100px;
  border-color: rgb(2, 80, 106);
  border-style: solid;
  border-radius: 50%;
  width: 494px;
  height: 494px;
}

.panel-cities__point li + li {
  margin-top: 6px;
}

.panel-cities__point .city-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--roofsie-black);
  font-weight: 600;
}

.panel-cities__point i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  margin-right: 12px;
  background-color: var(--roofsie-base);
  font-size: 9px;
  color: var(--roofsie-white);
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/

.panel-team__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--roofsie-bdr-radius);
  border-top-right-radius: var(--roofsie-bdr-radius);
  overflow: hidden;
}

.panel-team__img img {
  width: 100%;
  border-top-left-radius: var(--roofsie-bdr-radius);
  border-top-right-radius: var(--roofsie-bdr-radius);
  transition: all 500ms ease;
}

.panel-team__single:hover .panel-team__img img {
  transform: scale(1.05);
}

.panel-team__social {
  bottom: 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px 12.5px;
  border-radius: var(--roofsie-bdr-radius);
  transform: scaleY(0.0);
  transform-style: preserve-3d;
  transition: all 0.4s linear;
  transform-origin: bottom center;
  z-index: 2;
}

.panel-team__single:hover .panel-team__social {
  transform: scaleY(1.0);
  transition-delay: 500ms;
}

.panel-team__social li + li {
  margin-top: 20px;
}

.panel-team__social li a {
  font-size: 15px;
  color: var(--roofsie-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}

.panel-team__social li a:hover {
  color: var(--roofsie-base);
}

.panel-team__content-box {
  position: relative;
  display: block;
  border-bottom-left-radius: var(--roofsie-bdr-radius);
  border-bottom-right-radius: var(--roofsie-bdr-radius);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}

.panel-team__name a {
  color: var(--roofsie-black);
  text-decoration: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.panel-team__name a:hover {
  color: var(--roofsie-base);
}

.panel-team__social-two {
  position: absolute;
  transition: all 500ms ease;
  z-index: 2;
}

.panel-team__social-two li span {
  font-size: 15px;
  color: var(--roofsie-white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--roofsie-base);
  border-radius: var(--roofsie-bdr-radius);
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/

.panel-accordion__left {
  position: relative;
  display: block;
}

.panel-accordion__img {
  position: relative;
  display: block;
}

.panel-accordion__img img {
  width: 100%;
  border-radius: var(--roofsie-bdr-radius);
}

.panel-accordion__point {
  position: relative;
  display: block;
  margin-right: 70px;
  margin-top: 33px;
}

.panel-accordion__point li {
  position: relative;
  display: block;
  padding-left: 90px;
}

.panel-accordion__point li + li {
  margin-top: 24px;
}

.panel-accordion__point li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 58px;
  background-color: var(--roofsie-base);
  border-radius: 50%;
  font-size: 20px;
  color: var(--roofsie-white);
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.accordion-item {
  position: relative;
  border: 2px solid var(--roofsie-primary);
  border-radius: 5px;
  background-color: var(--roofsie-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.accordion-item:before {
  position: absolute;
  top: 0px;
  left: -2px;
  bottom: 0px;
  width: 6px;
  content: "";
  background-color: var(--roofsie-base);
  transform: scaleY(0);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-item.active:before {
  transform: scaleY(1);
}

.accordion-title {
  position: relative;
  cursor: pointer;
  padding: 23px 40px 23px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-radius: 5px;
}

.accordion-title h4 {
  padding-right: 2rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--roofsie-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.accordion-item + .accordion-item {
  margin-top: 20px;
}

.accordion-item.active .accordion-title {
  color: var(--roofsie-base);
}

.accordion-item.active .accordion-title h4 {
  color: var(--roofsie-base);
}

.accordion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  color: var(--roofsie-white);
  background-color: var(--roofsie-base);
  position: absolute;
  top: 50%;
  right: 0;
  height: 15px;
  width: 15px;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.accordion-item.active .accordion-title h4::before {
  content: "\f068";
  color: var(--roofsie-white);
  background-color: var(--roofsie-black);
  height: 15px;
  width: 15px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-item .accordion-content {
  position: relative;
  padding: 0px 40px 31px;
  margin-top: -9px;
}

.accordion-item .accordion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  padding: 120px 0;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
}

.page-header-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1200px;
  content: "";
  background-image: -moz-linear-gradient(-1deg, rgb(28, 27, 31) 0%, rgba(28, 27, 31, 0) 100%);
  background-image: -webkit-linear-gradient(-1deg, rgb(28, 27, 31) 0%, rgba(28, 27, 31, 0) 100%);
  background-image: -ms-linear-gradient(-1deg, rgb(28, 27, 31) 0%, rgba(28, 27, 31, 0) 100%);
}

.page-header__inner {
  z-index: 15;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/

.blog-details__bottom {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  border-top: 1px solid var(--roofsie-primary);
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags span {
  color: var(--roofsie-black);
  font-size: 20px;
  margin-right: 15px;
  font-weight: 800;
}

.blog-details__tags a {
  position: relative;
  color: var(--roofsie-white);
  font-size: 12px;
  background-color: var(--roofsie-base);
  display: inline-block;
  padding: 6px 20px 6px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: var(--roofsie-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__tags a:hover {
  background-color: var(--roofsie-black);
  color: var(--roofsie-white);
}

.blog-details__tags a + a {
  margin-left: 6px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.work-details {
  padding: 120px 0 120px;
}

.work-details__img {
  border-radius: 20px;
}

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

.work-details__content {
  padding-top: 45px;
}

.work-details__content-left {
  margin-top: -4px;
}

.work-details__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 34px;
  margin-bottom: 27px;
}

.work-details__text-1 {
  padding-bottom: 32px;
}

.work-details__details-list li + li {
  margin-top: 32px;
}

.work-details__client {
  font-size: 16px;
  color: var(--roofsie-gray);
  font-weight: 600;
  line-height: 30px;
}

.work-details__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}

.pagination-box {
  text-align: center;
  border-top: 1px solid #ede8e4;
  border-bottom: 1px solid #ede8e4;
  padding: 30px 0;
}

.pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination li.next {
  float: left;
  position: relative;
}

.pagination li a {
  font-size: 14px;
  color: var(--roofsie-gray);
  font-weight: 400;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pagination li a:hover {
  color: var(--roofsie-base);
}

.pagination li p {
  color: var(--roofsie-black);
  font-weight: 800;
  line-height: 18px;
  margin-top: 3px;
}

.pagination li span {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
}

.pagination li.next i {
  position: relative;
  height: 50px;
  width: 50px;
  border: 2px solid rgba(var(--roofsie-black-rgb), .20);
  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;
  border-radius: 50%;
  color: rgba(var(--roofsie-black-rgb), .20);
  font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-right: 20px;
  z-index: 1;
}

.pagination li.previous {
  position: relative;
  float: right;
}

.pagination li.previous i {
  position: relative;
  height: 50px;
  width: 50px;
  border: 2px solid rgba(var(--roofsie-black-rgb), .20);
  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;
  border-radius: 50%;
  color: rgba(var(--roofsie-black-rgb), .20);
  font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-left: 20px;
  z-index: 1;
}

.pagination li a:hover i {
  color: rgba(var(--roofsie-base-rgb), 1);
  border: 2px solid rgba(var(--roofsie-base-rgb), 1);
}

.pagination li .content {
  top: -3px;
}

.pagination li.next .content {
  text-align: left;
}

.pagination li.previous .content {
  text-align: right;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/

.service-details__category-title {
  font-size: 20px;
  color: var(--roofsie-base);
  line-height: 20px;
  display: block;
  background-color: #e4e5ea;
  padding: 20px 50px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-details__category-list li + li {
  margin-top: 10px;
}

.service-details__category-list li a {
  color: var(--roofsie-black);
  font-size: 16px;
  font-weight: 800;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  text-decoration: none;
  padding: 15px 40px 15px;
  border-radius: var(--roofsie-bdr-radius);
  background-color: var(--roofsie-primary);
  z-index: 1;
}

.service-details__category-list li:hover a {
  color: var(--roofsie-white);
}

.service-details__category-list li.active a {
  color: var(--roofsie-white);
}

.service-details__category-list li a:after {
  position: absolute;
  bottom: 0px;
  top: 0px;
  left: 0;
  right: 0px;
  content: "";
  background-color: var(--roofsie-base);
  border-radius: var(--roofsie-bdr-radius);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.service-details__category-list li:hover a:after {
  transform: scaleX(1);
}

.service-details__category-list li.active a:after {
  transform: scaleX(1);
}

.service-details__category-list li a span {
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--roofsie-black);
  text-align: center;
  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;
  font-size: 15px;
}

.service-details__category-list li a:hover span {
  color: var(--roofsie-white);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.service-details__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--roofsie-white);
}


.service-details__need-help {
  padding: 50px 50px 45px;
  text-align: center;
  z-index: 1;
  background-color: var(--roofsie-base);
  border-radius: var(--roofsie-bdr-radius);
}

.service-details__need-help-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--roofsie-base);
  opacity: 0.10;
  border-radius: 30px;
  z-index: -1;
}

.service-details__need-help-icon span {
  font-size: 30px;
}

.service-details__need-help-title {
  font-size: 26px;
  color: var(--roofsie-white);
  line-height: 32px;
  font-weight: 600;
}

.service-details__need-help-contact {
  color: #ffc5c2;
}

.service-details__need-help-contact a {
  font-size: 18px;
  color: var(--roofsie-white);
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-contact a:hover {
  color: var(--roofsie-white);
}

.service-details__btn {
  background-color: var(--roofsie-black);
  width: 100%;
  text-align: center;
}

.service-details__btn i {
  color: var(--roofsie-black);
}

.service-details__btn:before {
  background-color: var(--roofsie-base);
}

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

.service-details__img img {
  width: 100%;
  border-radius: var(--roofsie-bdr-radius);
}

.service-details__icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  height: 80px;
  width: 80px;
  background-color: var(--roofsie-base);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--roofsie-bdr-radius);
}

.service-details__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--roofsie-white);
}

.service-details__content {
  margin-top: 20px;
}

.service-details__content-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  margin-bottom: 21px;
}

.service-details__text-2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  padding-top: 31px;
  padding-bottom: 32px;
  color: var(--roofsie-base);
}


/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

.team-details__left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.team-details__img {
  position: relative;
  display: block;
  border-radius: var(--roofsie-bdr-radius);
}

.team-details__img img {
  width: 100%;
  border-radius: var(--roofsie-bdr-radius);
}

.team-details__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.team-details__content {
  position: relative;
  display: block;
}

.team-details__name {
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  margin-bottom: 3px;
}

.team-details__title {
  font-size: 16px;
  color: var(--roofsie-gray);
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 21px;
  margin-bottom: 18px;
}

.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  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;
  text-decoration: none;
  background-color: var(--roofsie-primary);
  color: var(--roofsie-black);
  font-size: 15px;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__social a:hover {
  background-color: var(--roofsie-base);
  color: var(--roofsie-white);
}

.team-details__social a + a {
  margin-left: 10px;
}

.team-details__text {
  font-size: 18px;
  line-height: 34px;
  padding-top: 33px;
  padding-bottom: 28px;
  font-weight: 400;
}

.team-details__text p {
  margin-bottom: 28px;
}

.team-details__btn-box {
  position: relative;
  display: block;
  margin-top: 35px;
}

/*--------------------------------------------------------------
# WYSIWYG
--------------------------------------------------------------*/

.wysiwyg {
  line-height: 2;
}

.wysiwyg p:not(:last-child) {
  margin-bottom: 1rem;
}

.wysiwyg p:first-child {
  margin-top: 0;
}

.wysiwyg h1:not(:first-child),
.wysiwyg h2:not(:first-child),
.wysiwyg h3:not(:first-child),
.wysiwyg h4:not(:first-child),
.wysiwyg h5:not(:first-child),
.wysiwyg h6:not(:first-child) {
  margin-top: 1.25em;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  margin-bottom: 0.5em;
}

.wysiwyg a {
  text-decoration: none;
  border-bottom: 1px solid var(--roofsie-base);
}

.wysiwyg a:hover {
  border-color: transparent;
}

.wysiwyg ul {
  margin-top: 1em;
  margin-bottom: 1.5em;
}

.wysiwyg p {
  margin: 15px auto;
}

.wysiwyg img {
  margin: 10px 0 15px 0;
}

.blog-details__tags a {
  margin-top: 10px;
}

/* Medium screen  */
@media only screen and (min-width: 992px) {
  .check-list__point li + li {
    margin-top: 6px;
  }
  .panel-columns__icon {
    align-items: start;
  }
  .panel-columns__icon:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 50px solid var(--roofsie-base);
    border-left: 69px solid transparent;
    border-right: 69px solid transparent;
  }
  .panel-hero-slider + .panel-columns {
    margin-top: -3px;
  }
  .panel-hero-slider + .panel-columns .container.py-lg-4 {
    padding-top: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .panel-image-text__left {
    max-width: 600px;
    margin: 0 auto;
  }

  .panel-image-text__right {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .panel-services__content {
    padding: 22px 25px 19px;
  }

  .panel-form__left {
    margin-left: 0;
    margin-right: 0;
  }

  .panel-form__right {
    padding-left: 30px;
  }

  .about-three__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .team-details__right {
    margin-left: 0;
  }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {

  .panel-image-text__left {
    max-width: 600px;
    margin: 0 auto;
  }

  .panel-image-text__right {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .panel-services__top-right {
    margin-top: 30px;
  }

  .panel-form__left {
    margin-left: 0;
    margin-right: 0;
  }

  .panel-form__left:before {
    right: -1000000px;
  }

  .panel-form__right:before {
    left: -10000000px;
  }

  .panel-form__right {
    padding-left: 0;
  }

  .about-three__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .panel-accordion__left {
    margin-bottom: 41px;
  }

  .service-details__left {
    margin-bottom: 50px;
  }

  .team-details__left {
    margin-right: 0;
  }

  .team-details__right {
    margin-left: 0;
    margin-top: 50px;
  }

  .work-details__content-right {
    margin-top: 41px;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .section-title__title br {
    display: none;
  }

  .panel-form__right {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .blog-details {
    padding-top: 0;
  }

  .service-details {
    padding-top: 40px;
  }

  .service-details h1 {
    font-size: 30px;
  }

  .page-header {
    padding: 40px 0 40px;
  }

  .page-header h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .panel-image-text__satisfied {
    display: none;
  }

  .panel-image-text__line {
    display: none;
  }

  .panel-services__top-right {
    margin-top: 30px;
  }

  .footer-widget__about {
    margin-right: 0;
  }

  .footer-widget__explore {
    margin-top: 38px;
    margin-bottom: 28px;
  }

  .footer-widget__contact {
    margin-top: 38px;
  }

  .newsletter-img {
    display: none;
  }

  .panel-form__left {
    margin-left: 0;
    margin-right: 0;
  }

  .panel-form__left:before {
    right: -1000000px;
  }

  .panel-form__right:before {
    left: -10000000px;
  }

  .panel-form__right {
    padding-left: 0;
  }

  .about-three__left {
    margin-left: 0;
    margin-right: 0;
  }

  .about-three__img {
    width: 100%;
  }

  .about-three__img-two {
    display: none;
  }

  .about-three__border {
    display: none;
  }

  .panel-accordion__left {
    margin-bottom: 41px;
  }

  .panel-accordion__point {
    margin-right: 0;
  }

  .panel-accordion-accordion .accordion-title h4::before {
    right: -15px;
  }

  .blog-details__meta li + li {
    margin-left: 20px;
  }

  .service-details__need-help {
    padding: 50px 45px 45px;
  }

  .team-details__left {
    margin-right: 0;
  }

  .team-details__right {
    margin-left: 0;
    margin-top: 50px;
  }

  .work-details__content-right {
    margin-top: 41px;
  }

  .pagination li {
    justify-content: center;
  }

  .pagination li.next {
    float: none;
    margin-bottom: 20px;
  }

  .pagination li.previous {
    float: none;
  }
}


@media only screen and (min-width: 1200px) and (max-width: 1410px) {
  .panel-form__left {
    margin-left: -15px;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Slider All Responsice Css
--------------------------------------------------------------*/

@media only screen and (max-width: 767px) {
  .panel-hero-slider__nav {
    display: none;
  }

  .panel-hero-slider__sub-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .panel-hero-slider__title {
    font-size: 34px;
    line-height: 50px;
  }

  .panel-hero-slider__text br {
    display: none;
  }
}</pre></body></html>