body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  padding-top: 200px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.wrapper-60 {
  width: 60%;
  margin-inline: auto;
}

.wrapper-70 {
  width: 70%;
  margin-inline: auto;
}

.wrapper-100 {
  width: 100%;
  margin-inline: auto;
}

hr {
  border: 1px solid #ffffff;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 section p,
footer p {
  margin: 0;
}

select {
  background: transparent;
  border: none;
  color: #ffffff;

  .option {
    color: #000000;
    border: none;
  }
}

/* Header */
/* Section Contact Info */

.contact-info {
  padding-block: 10px;
  background-color: #2f3133;
  color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
}

.contact-info ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}

.contact-info li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.contact-info li .icon {
  margin-right: 5px;
}

.main-nav {
  background-color: #f4f4f4;
  padding-block: 30px;
  position: fixed;
  top: 70px;
  width: 100%;

  .wrapper-70 {
    display: flex;
    justify-content: space-between;
    align-items: center;

    h3 {
      color: #87ceeb;
    }

    .main-list {
      display: flex;
      list-style-type: none;
      padding-left: 0;
      text-align: center;

      li {
        margin-right: 15px;
        font-weight: 700;
        display: flex;
        align-items: center;
        padding: 5px 10px;

        &:hover {
          color: #87ceeb;
        }

        &:last-child {
          background-color: #87ceeb;
          border-radius: 5px;
          color: #ffffff;

          &:hover {
            background-color: #f4f4f4;
            color: #87ceeb;
            outline: 1px solid #87ceeb;
          }
        }
        a {
          padding: 5px 10px;
        }
      }
    }
    .hamburger {
      display: none;
      cursor: pointer;

      .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        transition: all 0.3s ease;
        background-color: #2f3133;
      }
    }
  }
}

.image-wrapper {
  .wrapper-content {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
      url("./img/header-img.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: calc(100vh - 200px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;

    .wrapper-content-item {
      display: flex;
      flex-direction: column;
      text-align: center;
      width: 60%;
      margin-inline: auto;

      .section-item {
        h1 {
          font-size: 70px;
          text-transform: uppercase;
          line-height: 100px;
          color: #ffffff;
        }

        p {
          font-size: 60px;
          color: #ffc200;
          font-weight: 700;
        }

        &:not(:last-child) {
          margin-bottom: 50px;
        }
      }
    }
  }
}

/* About Us section */

.about-us {
  padding-block: 70px;
  background-color: #f4f4f4;
  h2 {
    font-size: 40px;
    text-align: center;
  }
  .about-us-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .about-us-items {
      display: flex;
      flex-wrap: wrap;
      margin-right: -50px;
      margin-bottom: -50px;
      padding-top: 80px;

      .item {
        flex-basis: calc(50% - 50px);
        margin-right: 50px;
        margin-bottom: 50px;
        display: flex;
        align-items: center;

        .icon {
          font-size: 40px;
          color: #87ceeb;
        }
      }

      .inner {
        margin-left: 20px;
        h4 {
          margin-top: 0;
          font-size: 22px;
        }

        p {
          font-size: 18px;
        }
      }
    }
  }
}

/* Services section */

.services-main-class {
  padding-block: 70px;
}
.services-container {
  h2 {
    text-align: center;
    font-size: 50px;
  }

  .services-items {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;

    img {
      width: 50%;
      margin-right: 30px;
    }

    .service-item-content {
      p {
        font-size: 20px;
        margin-bottom: 20px;
      }

      a {
        display: inline-block;
        background-color: #87ceeb;
        border-radius: 5px;
        color: #ffffff;
        padding: 10px 20px;

        &:hover {
          background-color: #f4f4f4;
          color: #87ceeb;
          outline: 1px solid #87ceeb;
        }
      }
    }
  }
}

/* Price List */

.price-list-section {
  padding-block: 50px;
  background-color: #f4f4f4;
  .wrapper-70 {
    h2 {
      text-align: center;
      font-size: 50px;
    }

    table {
      border-collapse: collapse;
      width: 100%;

      th {
        width: 33.333%;
        border-bottom: 1px solid #87ceeb;
        padding-block: 20px;
        text-align: center;
        color: #87ceeb;
        font-size: 20px;
      }
      td {
        width: 33.333%;
        font-size: 20px;
        padding: 10px;
        border-bottom: 1px solid #87ceeb;
        text-align: center;
      }
    }
  }
}

/* Contact Form */

.contact-form {
  padding-block: 50px;

  .wrapper-70 {
    h2 {
      text-align: center;
      font-size: 50px;
    }
    form {
      margin-top: 100px;
      display: flex;
      flex-direction: column;

      .form-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;

        input {
          margin-top: 10px;
          padding: 10px;
          border-radius: 5px;
          border: 1px solid #87ceeb;

          &:focus {
            outline: 1px solid #87ceeb;
          }
        }

        textarea {
          margin-top: 10px;
          border: 1px solid #87ceeb;
          border-radius: 5px;
          padding: 10px;

          &:focus {
            outline: 1px solid #87ceeb;
          }
        }
      }
      .btn {
        flex-basis: 20%;
        margin-inline: auto;
        background-color: #87ceeb;
        border-radius: 5px;
        color: #ffffff;
        padding: 15px 50px;
        border: 1px solid #f4f4f4;
        font-weight: 700;

        &:hover {
          background-color: #f4f4f4;
          color: #87ceeb;
          outline: 1px solid #87ceeb;
        }
      }
      #button_2 {
        cursor: pointer;
      }
    }
  }
}

/* Footer */

footer {
  background-color: #2f3133;
  padding-block: 50px;

  .wrapper-70 {
    display: flex;
    flex-direction: column;

    .footer-logo {
      display: flex;
      justify-content: center;
      padding-bottom: 50px;

      a {
        color: #ffffff;
      }
    }

    .footer-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #ffffff;
      border-block: 1px solid #ffffff;
      padding: 50px;

      .footer-head {
        display: flex;
        flex-direction: column;
        flex-basis: 33.333%;

        ul {
          padding-left: 0;

          li {
            display: flex;
          }

          & li :not(:last-child) {
            margin-right: 10px;
            margin-bottom: 20px;
          }
        }
      }

      .footer-social-network {
        flex-basis: 33.333%;
        nav {
          display: flex;
          justify-content: center;

          ul {
            display: flex;
            padding-left: 0;

            li {
              display: flex;
              font-size: 25px;
              a {
                color: #ffffff;
              }
            }

            & li:not(:last-child) {
              margin-right: 10px;
            }
          }
        }
      }

      .footer-body {
        flex-basis: 33.333%;
        display: flex;
        flex-direction: column;

        h3 {
          text-align: end;
        }

        nav {
          display: flex;
          justify-content: end;
          ul {
            display: flex;
            flex-direction: column;
            padding-left: 0;
            li {
              display: flex;
              flex-direction: column;

              &:hover {
                text-decoration: underline;
              }

              &:not(:last-child) {
                margin-bottom: 10px;
              }

              a {
                color: #ffffff;
              }
            }
          }
        }
      }
    }
    .footer-paragraph {
      padding: 20px;
      text-align: center;
      color: #ffffff;
    }
  }
}

@media screen and (max-width: 1280px) {
  .main-nav .wrapper-70 {
    width: 100%;
    justify-content: space-around;
  }

  .contact-info .wrapper-60 {
    width: 100%;
  }
  .about-us .about-us-wrapper .item {
    flex-direction: column;
    text-align: center;

    .icon {
      margin-bottom: 15px;
    }
  }
}

@media screen and (max-width: 1143px) {
  .contact-info .wrapper-60 {
    width: 100%;
  }
  .services-main-class .services-container .services-items {
    flex-direction: column;

    img {
      width: 100%;
      margin-right: 0;
      margin-bottom: 15px;
    }
  }

  main .image-wrapper .wrapper-content {
    align-items: flex-start;
  }
  main .image-wrapper .wrapper-content .wrapper-content-item {
    width: 90%;
    height: 100%;
    justify-content: center;
    align-items: center;
    /* margin-top: 200px; */
  }

  main .image-wrapper .wrapper-content .wrapper-content-item .section-item h1 {
    font-size: 7vw;
    line-height: 75px;
  }

  main .image-wrapper .wrapper-content .wrapper-content-item .section-item p {
    font-size: 8vw;
  }

  .image-wrapper {
    height: 50vh;
    top: 0;
  }

  .image-wrapper .wrapper-content {
    height: 100%;
  }
}

@media screen and (max-width: 900px) {
  .main-nav {
    height: 70px;
    display: flex;

    .wrapper-70 {
      .main-list {
        display: block;
      }

      .hamburger {
        display: block;
        background-color: transparent;
        border: none;
      }

      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .main-list {
        position: fixed;
        height: 100%;
        left: -100%;
        top: 180px;
        gap: 0;
        flex-direction: column;
        background-color: #f4f4f4;
        width: 100%;
        text-align: center;
        transition: 0.3s;
      }

      .main-list.active {
        left: 0;
      }

      .nav-items {
        margin: 16px 0;
      }
    }
  }
}

@media screen and (max-width: 805px) {
  .contact-info {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wrapper-60 {
    width: 100%;
  }

  .contact-info ul {
    font-size: 10px;
  }
  .contact-info li {
    margin-right: 5px;
  }
  .contact-info li .icon {
    margin-right: 2px;
  }
}

@media screen and (max-width: 768px) {
  main .image-wrapper .wrapper-content .wrapper-content-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 650px) {
  .about-class-main .wrapper-70 .about-class-wrapper {
    flex-direction: column;
  }

  main .image-wrapper .wrapper-content .wrapper-content-item .section-item h1 {
    font-size: 7vw;
    line-height: 60px;
  }

  .about-class-main
    .wrapper-70
    .about-class-wrapper
    .about-class-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .about-us .about-us-wrapper .about-us-items {
    width: 100%;
    flex-direction: column;
    margin-right: 0;

    .item {
      width: 100%;
      margin-right: 0;

      .inner {
        margin-left: 0;

        h4 {
          margin-bottom: 20px;
        }
      }
    }
  }

  .price-list-section {
    .wrapper-70 {
      width: 100%;
    }
  }

  footer {
    .wrapper-70 {
      .footer-info {
        flex-direction: column;

        .footer-head,
        .footer-social-network {
          margin-bottom: 20px;
        }

        .footer-body {
          width: 100%;

          h3 {
            text-align: left;
          }

          nav {
            ul {
              width: 100%;

              text-align: left;
            }
          }
        }
      }
    }
  }
}

@media screen and (max-width: 560px) {
  .contact-info {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wrapper-60 {
    width: 100%;
  }

  .contact-info ul {
    font-size: 8px;
  }
  .contact-info li {
    margin-right: 5px;
  }
  .contact-info li .icon {
    margin-right: 2px;
  }
}

@media screen and (max-width: 425px) {
  .contact-info {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wrapper-60 {
    width: 100%;
  }

  .contact-info ul {
    font-size: 2px;
  }
  .contact-info li {
    margin-right: 5px;
  }
  .contact-info li .icon {
    margin-right: 2px;
  }

  h1,
  h2,
  section p,
  footer p {
    margin: 0;
  }

  .contact-info ul {
    font-size: 8px;
  }
  .contact-info .wrapper-60 {
    width: 100%;
  }

  .about-class-main .wrapper-70 .about-class-container h2 {
    font-size: 40px;
  }

  main .image-wrapper .wrapper-content .wrapper-content-item .section-item h1 {
    font-size: 8vw;
    line-height: 50px;
  }
}

@media screen and (max-width: 375px) {
  .contact-info ul {
    font-size: 7px;
  }
  .contact-info .wrapper-60 {
    width: 100%;
  }
}

/* @media screen and (max-width: 768px) {
  header .contact-info .wrapper-70 {
    width: 100%;
    padding-inline: 10px;
  }
} */

/* @media screen and (max-width: 425px) {
  header {
    width: 100%;
  }
  header .contact-info .wrapper-70 {
    font-size: 2.3vw;
  } */
