@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

h1,
.logo {
  color: #00001a;
  font-weight: 800;
}

p {
  font-size: 15px;
  line-height: 1.5;
}

.logo {
  font-family: serif;
  font-size: 40px;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  font-weight: 700;
}

#main {
  width: 93%;
  margin: auto;
}

header {
  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;
  margin: 15px auto;
}

header a {
  color: #5d5f79;
}

header a:hover {
  color: #f15e50;
}

header #mobile-nav.active {
  right: 0;
}

header #mobile-nav {
  position: fixed;
  background-color: #fffdfa;
  right: -100%;
  top: 0px;
  width: 70%;
  padding: 140px 20px 0;
  height: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 20px;
}

header #desktop-nav {
  display: none;
}

header #hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  z-index: 11;
}

header #hamburger .bar {
  height: 3px;
  background-color: #00001a;
  width: 30px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

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

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

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

header #overlay.active {
  opacity: 9;
  mix-blend-mode: darken;
  z-index: 9;
}

header #overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -9;
  background-color: #a2a3a9;
  opacity: -9;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#top-section h1 {
  margin: 20px 0;
  font-size: 30px;
  width: 250px;
  line-height: 30px;
}

#top-section p {
  color: #5d5f79;
}

#top-section .image {
  height: 300px;
}

#top-section .image .img-desktop {
  display: none;
}

#top-section .image img {
  height: 100%;
  width: 100%;
}

#top-section .btn {
  margin: 25px auto 55px;
}

#top-section .btn a {
  color: #fffdfa;
  background-color: #f15e50;
  padding: 13px 23px;
  font-size: 12px;
  letter-spacing: 5px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#top-section .btn a:hover {
  background-color: #00001a;
}

#top-section .new-content {
  background-color: #00001a;
  padding: 20px;
  margin-bottom: 55px;
}

#top-section .new-content h2 {
  color: #e9ab53;
  margin-bottom: 20px;
}

#top-section .new-content li {
  border-bottom: 1px solid #5d5f79;
  margin-bottom: 15px;
}

#top-section .new-content p {
  color: #c5c6ce;
  margin-bottom: 25px;
}

#top-section .new-content li:nth-child(3) {
  border-bottom: none;
  margin-bottom: 0;
}

#top-section .new-content li:nth-child(3) p {
  margin-bottom: 0;
}

#top-section .new-content a {
  color: #fffdfa;
  line-height: 50px;
  font-size: 18px;
}

#top-section .new-content a:hover {
  color: #e9ab53;
}

#bottom-section {
  margin-bottom: 55px;
}

#bottom-section li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  gap: 15px;
}

#bottom-section h2 {
  color: #c5c6ce;
  font-size: 29px;
}

#bottom-section h3 a {
  display: block;
  margin: 10px auto;
  color: #00001a;
  font-weight: 700;
}

#bottom-section h3 a:hover {
  color: #f15e50;
}

#bottom-section .image {
  width: 200px;
  height: 140px;
}

#bottom-section .image img {
  width: 100%;
  height: 100%;
}

#bottom-section .image-pcs {
  width: 225px;
}

#bottom-section .image-laptop {
  width: 180px;
}

@media (min-width: 765px) {
  body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 100vh;
    overflow: hidden;
  }
  #main {
    width: 80%;
    margin: auto;
  }
  header {
    margin: 20px auto;
  }
  header a {
    color: #00001a;
    font-weight: 500;
    font-size: 15px;
  }
  header #desktop-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  header #hamburger {
    display: none;
  }
  #top-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  #top-section h1 {
    margin: 20px 0 0;
    font-size: 40px;
    width: 270px;
    line-height: 40px;
  }
  #top-section .main {
    width: 70%;
    margin-bottom: 0;
  }
  #top-section .main .body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #top-section .main .body .body-description {
    width: 50%;
    margin-top: 20px;
  }
  #top-section .image {
    height: 270px;
  }
  #top-section .image .img-desktop {
    display: block;
  }
  #top-section .image .img-mobile {
    display: none;
  }
  #top-section .btn {
    margin-bottom: 0;
  }
  #top-section .new-content {
    margin-bottom: 0;
    width: 30%;
  }
  #bottom-section {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
  }
  #bottom-section li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
  }
  #bottom-section .image {
    width: 130px;
    height: 125px;
  }
}
/*# sourceMappingURL=style.css.map */