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

.btn-special-animation {
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: -1;
}
.btn-special-animation:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::after,
.burger-btn:hover .burger-btn__bars::before {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #8a8a8a;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.nav {
  position: fixed;
  top: 0;
  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;
  height: 100vh;
  width: 100%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  background-image: linear-gradient(45deg, rgb(0, 0, 0), rgb(0, 0, 0));
  z-index: 100;
}
.nav--active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 2em;
  font-size: 3.4rem;
  color: #fff;
  text-decoration: none;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  content: "";
}
.nav__item:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.nav__item:hover {
  color: rgb(245, 199, 48);
}

@-webkit-keyframes navItemsAnimation {
  from {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes navItemsAnimation {
  from {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.nav-items-animation {
  -webkit-animation: navItemsAnimation 1s both;
          animation: navItemsAnimation 1s both;
}

.header {
  position: relative;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em;
  height: 100vh;
  text-align: center;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/header-small.jpg);
  color: #ffffff;
  text-transform: uppercase;
  background-size: cover;
  background-position: center;
  font-size: 2rem;
}
.header__heading {
  letter-spacing: 1px;
}
.header__text {
  margin: 20px;
}

.about {
  text-align: center;
  margin: 2em;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #09090c;
}
.about__heading {
  text-transform: uppercase;
}
.about__text {
  margin-top: 1em;
  font-weight: bold;
}

.section-heading {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 1em;
}

.hero-img {
  position: relative;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em;
  height: 75vh;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/hero-small.jpg);
  font-weight: bold;
}
.hero-img__title {
  font-size: 2rem;
  letter-spacing: 1px;
}

.services {
  text-align: center;
  margin: 2em;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #09090c;
}
.services__text {
  letter-spacing: 1px;
  font-size: 2rem;
  margin-top: 1em;
  font-weight: bold;
}
.services__list {
  margin-top: 1em;
  margin-bottom: 2em;
  list-style-type: none;
}
.services hr {
  margin-top: 1em;
}

.heading {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2em;
  letter-spacing: 1px;
  margin-bottom: 1em;
}

.gallery {
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

a {
  display: block;
  text-decoration: none !important;
  padding: 10px;
}

img {
  display: block;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.energetic {
  text-align: center;
  font-size: 2rem;
  margin: 1em;
}
.energetic__heading {
  text-transform: uppercase;
  font-weight: bold;
}
.energetic__text {
  margin-top: 1em;
  margin-bottom: 1em;
  letter-spacing: 1px;
  font-weight: bold;
}
.energetic__img {
  margin-top: 1em;
  width: 100%;
  height: 100%;
}

.estimate {
  text-align: center;
  font-size: 1.9rem;
  margin: 1em;
}
.estimate__heading {
  text-transform: uppercase;
  font-weight: bold;
}
.estimate__text {
  margin-top: 1em;
  letter-spacing: 1px;
  font-weight: bold;
}
.estimate__img {
  margin-top: 1em;
  width: 100%;
  height: 100%;
}

.contact {
  position: relative;
  padding: 3em 2em;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/contact-small.jpg);
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.contact__title {
  color: #fff;
}
.contact__main {
  text-transform: uppercase;
  margin-top: 2.2rem;
}
.contact__link {
  text-decoration: none;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.contact__link:hover {
  color: rgb(245, 199, 48);
}

.footer {
  padding: 1em 2em;
  background-color: #ddd;
  text-align: center;
  font-size: 2rem;
}

@media (min-width: 414px) {
  .gallery {
    width: 400px;
    height: 400px;
  }
  img {
    width: 100%;
    height: 350px;
  }
}
@media (min-width: 768px) {
  .header {
    font-size: 3rem;
  }
  .about {
    font-size: 3rem;
  }
  .hero-img__title {
    font-size: 3em;
  }
  .services {
    font-size: 3rem;
  }
  .services__text {
    font-size: 3rem;
  }
  .heading {
    font-size: 3em;
    margin: 1em;
  }
  .estimate {
    font-size: 3rem;
  }
  .gallery {
    width: 600px;
    height: 600px;
    margin: 0 auto;
  }
  .energetic {
    font-size: 3rem;
  }
  img {
    height: 500px;
  }
  .contact {
    font-size: 3rem;
  }
  .footer {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .header {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/header-big.jpg);
  }
  .hero-img {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/hero-big.jpg);
    height: 1000px;
  }
  .gallery {
    width: 1000px;
    height: 600px;
    margin: 0 auto;
  }
  .gallery img {
    height: 500px;
  }
  .contact {
    font-size: 3rem;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(../img/contact-big.jpg);
  }
}
@media (min-width: 1200px) {
  .nav__item {
    font-size: 4.2rem;
  }
  .hero-img__title {
    font-size: 4.2rem;
  }
}
@media (min-width: 1400px) {
  .gallery {
    width: 1300px;
  }
}/*# sourceMappingURL=main.css.map */