.btn {
  padding: 0.5em 2em;
  background-color: white;
  color: rgb(80, 112, 108);
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}
.btn:hover {
  transform: scale(0.9);
}

a:focus {
  outline: none;
  border: none;
  color: rgb(244, 242, 242);
  border-radius: 8px;
}

.small-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.section-padding {
  padding: 2em 1em;
}

.section-heading {
  margin: 0 auto;
  padding: 0.2em 0.3em;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.lead {
  text-align: center;
  color: rgb(80, 112, 108);
  font-size: 1.2rem;
  margin: 1em 0;
  text-transform: uppercase;
}

.white-section {
  padding: 2em 1em;
  background-color: white;
}

.white-block {
  position: absolute;
  height: 35px;
  width: 60%;
  background-color: white;
}
.white-block-left {
  bottom: -2px;
  left: -50px;
  transform: skew(45deg);
}
.white-block-left--gray {
  background-color: #22a8a4;
}
.white-block-right {
  top: -2px;
  right: -50px;
  transform: skew(45deg);
}

.hidden {
  opacity: 0;
  transform: translateX(-101%);
  filter: blur(5px);
  transition: all 2s;
}

.show {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.active {
  opacity: 1;
  pointer-events: auto;
}

.dark-mode {
  background-color: #252525;
  color: white;
}

.dark-mode-gradient {
  background: linear-gradient(45deg, rgba(37, 37, 37, 0.85), rgba(37, 37, 37, 0.8));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Chillax", sans-serif;
  font-weight: 500;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: rgb(80, 112, 108);
}

body {
  height: 100vh;
  transition: all 0.7s;
  color: rgb(37, 37, 37);
}

.contact-bar {
  position: fixed;
  top: 0;
  background-color: rgb(80, 112, 108);
  display: none;
  height: 50px;
  width: 100%;
  padding: 1em;
  z-index: 100;
}
.contact-bar__boxes {
  display: flex;
  justify-content: space-between;
}
.contact-bar-info {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2em;
  color: white;
}
.contact-bar-info p {
  padding: 0 1em;
}
.contact-bar-info i {
  font-size: 1.2rem;
  padding: 0 0.3em;
  z-index: 1;
}
.contact-bar-socialmedia {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-right: 3em;
  cursor: pointer;
  color: white;
}
.contact-bar-socialmedia i {
  font-size: 1.2rem;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background-color: rgb(233, 233, 233);
  z-index: 10;
  transition: all 0.7s;
}

.navbar {
  position: relative;
  height: 100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar__social-icon__item {
  align-self: center;
  list-style: none;
}
.navbar__social-icon__link {
  font-size: 2rem;
  color: rgb(80, 112, 108);
  margin: 0 5px;
  display: inline-block;
  transition: 0.5s;
}
.navbar__social-icon__link:hover {
  scale: 1.1;
  opacity: 0.8;
}
.navbar__logo {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  z-index: 1000;
}
.navbar__menu {
  position: fixed;
  display: flex;
  transform: translateY(-200%);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #252525;
  transition: all 0.7s;
}
.navbar__menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.navbar__menu-links-item {
  list-style: none;
  margin: 0 0.5em;
}
.navbar__menu-links-item a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5em;
  color: white;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.navbar__menu-links-item a::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #fefefe;
  left: -10px;
  bottom: 50%;
  transform: translateY(50%);
  opacity: 0;
  transition: all 0.3s ease;
}
.navbar__menu-links-item a:hover::before {
  opacity: 1;
}
.navbar__optionsbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__optionsbox-lights {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0.3em;
}
.navbar__optionsbox-lights i {
  opacity: 0;
  position: absolute;
  color: rgb(80, 112, 108);
  cursor: pointer;
  font-size: 2rem;
  transition: opacity 0.3s ease;
}
.navbar__optionsbox-lights .sun {
  opacity: 0;
  pointer-events: none;
}
.navbar__optionsbox-lights.active .sun {
  opacity: 1;
  pointer-events: auto;
}
.navbar__optionsbox-lights.active .moon {
  opacity: 0;
  pointer-events: auto;
}
.navbar__optionsbox-menu {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0.3em;
}
.navbar__optionsbox-menu i {
  position: absolute;
  color: rgb(80, 112, 108);
  top: 20px;
  cursor: pointer;
  font-size: 3rem;
  transition: opacity 0.5s ease;
  transition-delay: 0.1s;
}
.navbar__optionsbox-menu .exit {
  opacity: 0;
  pointer-events: none;
}
.navbar__optionsbox-menu.active .exit {
  opacity: 1;
  pointer-events: auto;
}
.navbar__optionsbox-menu.active .burger {
  opacity: 0;
  pointer-events: auto;
}

.navbar__menu.active-menu {
  transform: translateY(0);
  filter: blur(0);
  transition: all 0.5s ease;
}

.header {
  background: linear-gradient(90deg, rgba(80, 112, 108, 0.95), rgba(80, 112, 108, 0.5)), url("../img/laying-floor-ceramic-tile-renovating-floor.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: all 0.7s;
}
.header__box {
  padding: 1em;
  height: 300px;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.header__box-logo {
  background-image: url("../img/logo.png");
  background-position: center;
  background-size: contain;
  height: 200px;
  background-repeat: no-repeat;
  width: 200px;
}
.header__box-heading {
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0.3em;
}
.header__box-lead {
  text-align: center;
  color: white;
  font-size: 1.2rem;
  margin: 1em 0;
  text-transform: uppercase;
}

.hero-text {
  color: white;
  height: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-img::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  height: 100%;
  width: 100%;
  background-size: cover;
  position: absolute;
}

.quote {
  background: rgb(80, 112, 108);
}
.quote__boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.quote-heading {
  color: white;
  margin: 0 1em;
  text-align: center;
  text-transform: uppercase;
}

.about {
  padding: 0;
}
.about__boxes {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
.about__box {
  display: flex;
  flex-direction: column;
}
.about__box-logo {
  margin-top: 2em;
  background-image: url("../img/logo.png");
  background-position: center;
  background-size: contain;
  height: 200px;
  background-repeat: no-repeat;
  width: 200px;
  align-self: center;
}
.about__box-info {
  padding: 1em 2em;
}
.about__box-title {
  position: relative;
  font-size: 1.4rem;
  margin: 1em 0;
}
.about__box-title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  border-bottom: 3px solid rgb(80, 112, 108);
  height: 5px;
  width: 20%;
}
.about__box-lead {
  text-align: left;
  color: rgb(80, 112, 108);
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0.3em 0;
  text-transform: uppercase;
}
.about__box-text {
  margin: 0.5em 0;
  text-align: left;
  font-size: 1.2rem;
}
.about__box-btn {
  background-color: rgb(80, 112, 108);
  color: white;
  padding: 0.5em 1em;
  width: 50%;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  margin: 0.5em 0;
}
.about__box-img {
  display: none;
  background-image: url("../img/GG9jHa8WUAAEOF2.jpg");
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.packages .section-heading {
  color: rgb(80, 112, 108);
  position: relative;
}
.packages .section-heading::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: translate(50%);
  border-bottom: 3px solid rgb(80, 112, 108);
  width: 50%;
}
.packages__boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.packages__box {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  background-color: rgb(80, 112, 108);
  width: 100%;
  padding: 1em;
  margin: 0.5em;
  border-radius: 5px;
}
.packages__box i {
  font-size: 1.4rem;
  color: white;
}
.packages__box-text {
  text-transform: uppercase;
  color: white;
}

.statistics {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(45deg, rgba(37, 37, 37, 0.85), rgba(37, 37, 37, 0.8)), url("../img/1586740_4391.jpg");
  background-size: cover;
  background-position: center;
}

.counter-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.counter-item {
  margin: 0.5em;
  font-size: 1.2rem;
  width: 200px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  color: white;
}
.counter-item i {
  font-size: 2.6rem;
}
.counter-item p {
  margin: 0.3em;
}

.counter-number {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us .section-heading {
  color: rgb(80, 112, 108);
  position: relative;
}
.why-us .section-heading::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: translate(50%);
  border-bottom: 3px solid rgb(80, 112, 108);
  width: 50%;
}
.why-us__cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.why-us__card-img {
  background-image: url("../img/210.jpg");
  background-size: cover;
  height: 300px;
  width: 300px;
  background-position: center;
}

.accordion {
  width: 100%;
  margin: 1em;
  border-radius: 15px;
  transition: all 0.4s;
}
.accordion-box {
  margin: 0.3em 0;
}
.accordion-btn {
  padding: 1em 1em;
  width: 100%;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: left;
  border: none;
  border-radius: 8px;
  border: 2px solid rgb(80, 112, 108);
  background-color: rgb(80, 112, 108);
  color: white;
  transition: background-color 0.3s;
  cursor: pointer;
}
.accordion-btn:hover {
  opacity: 0.8;
}
.accordion-btn i {
  margin-right: 0.3em;
}
.accordion-info {
  display: none;
  padding: 1em 0.8em;
  transition: all 0.8s ease;
}
.accordion-info-text {
  color: rgb(80, 112, 108);
  font-size: 1.2rem;
}

.accordion-info.active {
  display: block;
}

.adv {
  position: relative;
  height: 400px;
  background-image: url(../img/House-Painting.png);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  z-index: 1;
}
.adv::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(45deg, rgba(37, 37, 37, 0.85), rgba(37, 37, 37, 0.8));
}
.adv .adv__hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  z-index: 1;
  padding: 4em;
}
.adv .adv__hero-heading {
  color: white;
  z-index: 1;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1em;
  align-self: center;
}
.adv .adv__hero-btn {
  padding: 1em;
}

.reviews .section-heading {
  color: rgb(80, 112, 108);
  position: relative;
}
.reviews .section-heading::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: translate(50%);
  border-bottom: 3px solid rgb(80, 112, 108);
  width: 50%;
}
.reviews__cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
.reviews__card {
  position: relative;
  height: 100%;
  width: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: 8px 8px 10px rgb(80, 112, 108);
  transition: all 0.7s;
}
.reviews__card:hover {
  background-color: rgb(80, 112, 108);
  color: white;
}
.reviews__card:hover .reviews__card-quote, .reviews__card:hover .reviews__card-name {
  color: white;
}
.reviews__card-img {
  position: absolute;
  top: 10px;
  right: 10px;
}
.reviews__card-img img {
  height: 50px;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.reviews__card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
}
.reviews__card .rewiews__card-text {
  font-size: 1.2rem;
  padding: 1em 0.5em;
}
.reviews__card-quote {
  font-size: 2rem;
  color: rgb(80, 112, 108);
}
.reviews__card-name {
  margin-right: 1em;
  align-self: flex-end;
  font-size: 1.2rem;
  font-style: italic;
  color: rgb(80, 112, 108);
}

.contact {
  background: linear-gradient(45deg, rgba(37, 37, 37, 0.85), rgba(37, 37, 37, 0.8)), url("../img/1586740_4391.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact .section-heading {
  color: white;
  position: relative;
}
.contact .section-heading::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: translate(50%);
  border-bottom: 3px solid white;
  width: 50%;
}
.contact__boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
.contact__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.contact__box-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.contact__box-info-text {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: all 0.4s;
}
.contact__box-info-text i {
  margin-right: 0.3em;
  font-size: 1.4rem;
  color: white;
}
.contact__box-info-text p {
  margin: 0.5em;
}
.contact__box-info-text:hover {
  transform: scale(1.1);
  color: white;
}
.contact__box-text {
  text-align: center;
  font-size: 1.2rem;
  color: white;
}

.portfolio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .section-heading {
  color: rgb(80, 112, 108);
  position: relative;
  margin: 2em;
}
.portfolio .section-heading::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: translate(50%);
  border-bottom: 3px solid rgb(80, 112, 108);
  width: 50%;
}
.portfolio__boxes {
  background: linear-gradient(90deg, rgba(80, 112, 108, 0.95), rgba(80, 112, 108, 0.5));
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 2em;
}
.portfolio-heading {
  color: white;
  margin: top 2em;
  text-transform: uppercase;
}

.footer {
  padding: 2em;
  background-color: rgb(80, 112, 108);
  padding: 30px 0px;
  font-family: "Play", sans-serif;
  text-align: center;
}

.footer {
  position: relative;
  width: 100%;
  background: rgb(80, 112, 108);
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  text-transform: uppercase;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
  scale: 0.9;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}/*# sourceMappingURL=style.css.map */