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

@media (min-width: 768px) {
  .quote__boxes {
    flex-direction: row;
    justify-content: space-between;
  }
  .portfolio {
    padding: 0;
  }
  .portfolio .slider {
    width: 100%;
    height: 100%;
  }
  .portfolio .slider-box {
    flex-direction: row;
  }
  .portfolio__boxes {
    padding: 2em;
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .contact-bar {
    display: block;
  }
  .nav {
    top: 50px;
  }
  .navbar__social-icon {
    display: flex;
  }
  .header {
    align-items: center;
    justify-content: center;
  }
  .header__box {
    width: 40%;
  }
  .header__box-heading {
    font-size: 3rem;
  }
  .header__box-logo {
    height: 200px;
    width: 200px;
  }
  .about__boxes {
    flex-direction: row;
    justify-content: center;
  }
  .about__box {
    width: 100%;
  }
  .about__box-info {
    width: 60%;
  }
  .about__box-title {
    font-size: 2rem;
  }
  .about__box-lead {
    font-size: 1.4rem;
  }
  .about__box-btn {
    width: 40%;
    margin: 1em 0;
  }
  .about__box-img {
    background-position: center;
    background-size: cover;
    transition: all 1s;
    display: block;
  }
  .about__box-img:hover {
    transform: scale(0.9);
    border-radius: 8px;
  }
  .packages__boxes {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .packages__box {
    width: 30%;
    transition: all 0.7s;
  }
  .packages__box:hover {
    scale: 0.9;
  }
  .reviews__cards {
    display: flex;
    flex-direction: row;
    gap: 2em;
  }
  .adv .adv__hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    z-index: 1;
  }
  .adv .adv__hero-heading {
    color: white;
    z-index: 1;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1em;
    align-self: center;
  }
  .why-us__cards {
    flex-direction: row;
    gap: 4em;
  }
  .why-us__card-img {
    height: 400px;
  }
  .why-us__card-accordion {
    width: 60%;
  }
  .accordion {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .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__boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact__box {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 70%;
  }
}/*# sourceMappingURL=media.css.map */