@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  margin: 0;
  padding: 0;
  background-color: #171717;
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section#header {
  position: fixed;
  width: 100%;
  z-index: 100;
  padding: 2.3rem 0;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  section#header {
    padding: 1.5rem 0;
  }
}
section#header .content {
  max-width: 87vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section#header .content .logo {
  z-index: 102;
  height: -moz-fit-content;
  height: fit-content;
}
section#header .content .logo img {
  height: 30px;
}
section#header .content .burger-menu {
  display: none;
  height: -moz-fit-content;
  height: fit-content;
}
section#header .content .links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
section#header .content .links li {
  list-style: none;
}
section#header .content .links a {
  color: #FFF;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
section#header .content .links a:hover {
  opacity: 0.8;
}
section#header .content .cart {
  z-index: 102;
}
section#header .content .cart img {
  height: 24px;
}
@media (max-width: 768px) {
  section#header .content {
    position: relative;
  }
  section#header .content .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 102;
    order: 3;
  }
  section#header .content .burger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background: #FFF;
    transition: 0.3s ease;
  }
  section#header .content .cart {
    order: 2;
  }
  section#header .content .links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #171717;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 101;
  }
  section#header .content .links a {
    font-size: 1.5rem;
    font-weight: 600;
  }
  section#header .content.menu-open .burger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  section#header .content.menu-open .burger-menu span:nth-child(2) {
    opacity: 0;
  }
  section#header .content.menu-open .burger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  section#header .content.menu-open .links {
    opacity: 1;
    visibility: visible;
  }
}
section#header.scrolled {
  background-color: #171717;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
section#hero {
  width: 100vw;
  height: 800px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}
section#hero.over-layer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(23, 23, 23, 0.85) 0%, rgb(23, 23, 23) 115%);
}
section#hero .title {
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  section#hero .title {
    text-align: center;
    width: 100%;
    font-size: 20px;
    top: 25%;
  }
}
section#services {
  max-width: 90vw;
  margin: -250px auto 9rem auto;
  position: relative;
  z-index: 99;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
@media (max-width: 768px) {
  section#services {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}
section#services .service .image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section#services .service .content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #000;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  section#services .service .content {
    padding: 2.25rem 1.5rem 2.25rem 1.5rem;
  }
}
section#services .service .content .title {
  font-size: 26px;
  font-weight: 800;
}
section#services .service .content .description {
  font-size: 12px;
  font-weight: 400;
  max-width: 90%;
}
@media (max-width: 768px) {
  section#services .service .content .description {
    max-width: 100%;
  }
}
section#services .service .content .description .bold {
  font-weight: 600;
}
section#services .service .content button.knowMore {
  margin-top: 1rem;
  border-radius: 50px;
  border: 2px solid #FFF;
  background-color: #000;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
}
section#services .service .content button.knowMore:hover {
  background-color: #FFF;
  color: #000;
  cursor: pointer;
}
section#kit {
  display: flex;
  width: 900px !important;
  background-color: #FFF;
  border-radius: 25px;
  margin: -450px auto 0 auto;
  position: relative;
  z-index: 99;
  justify-content: flex-end;
  gap: 120px;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  section#kit {
    flex-direction: column;
    width: 74vw !important;
    margin: -600px auto 0 auto;
    gap: 3rem;
    padding: 2rem;
  }
}
section#kit .image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 6rem;
}
@media (max-width: 768px) {
  section#kit .image {
    margin-left: 0;
  }
}
section#kit .image img {
  width: 282px;
}
section#kit .image .colors {
  display: flex;
  gap: 20px;
  margin-top: 1rem;
}
section#kit .image .colors .color {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
section#kit .desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  width: 50%;
  color: #000;
  margin-right: 5rem;
}
@media (max-width: 768px) {
  section#kit .desc {
    width: 100%;
    margin-right: 0;
    align-items: center;
  }
}
section#kit .desc .title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 768px) {
  section#kit .desc .title {
    font-size: 17px;
  }
}
section#kit .desc .title span.small {
  font-size: 16px;
}
@media (max-width: 768px) {
  section#kit .desc .title span.small {
    font-size: 12px;
  }
}
section#kit .desc .description {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
section#kit .desc .description span.bold {
  font-weight: 700;
}
section#kit .desc .config {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #000;
  border-radius: 30px;
  color: #FFF;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
section#advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  max-width: 900px;
  gap: 30px;
  margin: 2rem auto 5rem auto;
}
@media (max-width: 768px) {
  section#advantages {
    grid-template-columns: 1fr;
    max-width: 80vw;
  }
}
section#advantages .advantage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
section#advantages .advantage img {
  height: 43px;
}
section#advantages .advantage .title {
  color: #a2a2a2;
  margin-top: 1rem;
  font-size: 16px;
}
section#advantages .advantage .content {
  font-size: 14px;
}
section#products {
  position: absolute;
  top: 75%;
  left: 75%;
  transform: translate(-50%, -50%);
}
section#footer {
  max-width: 87vw;
  margin: 9rem auto 4rem auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media (max-width: 768px) {
  section#footer {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}
section#footer .one {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
@media (max-width: 768px) {
  section#footer .one {
    gap: 1.75rem;
  }
}
section#footer .one .logo {
  height: -moz-fit-content;
  height: fit-content;
}
section#footer .one .logo img {
  width: 150px;
}
section#footer .one .socials {
  display: flex;
  gap: 2.15rem;
}
section#footer .one .socials .menu-item {
  list-style: none;
}
section#footer .one .socials a {
  display: block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
section#footer .one .socials a[href*="linkedin.com"] {
  background-image: url("../assets/socials/in.svg");
}
section#footer .one .socials a[href*="facebook.com"] {
  background-image: url("../assets/socials/f.svg");
}
section#footer .one .socials a[href*="instagram.com"] {
  background-image: url("../assets/socials/ig.svg");
}
@media (max-width: 768px) {
  section#footer .one .socials a {
    width: 3rem;
    height: 3rem;
  }
}
section#footer .one .socials .screen-reader-text {
  display: none;
}
section#footer .links .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  section#footer .links .title {
    margin-bottom: 1rem;
  }
}
section#footer .links li {
  list-style: none;
}
section#footer .links li a {
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 1rem;
}
section#copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
section#copyright .content {
  margin: 1rem auto 1rem auto;
  max-width: 87vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  section#copyright .content {
    flex-direction: column;
    gap: 1rem;
  }
}
section#copyright .content .copyright {
  font-size: 12px;
  font-weight: 400;
}
section#copyright .content .payments {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 12px;
}
section#copyright .content .payments img {
  width: 200px;
}
@media (max-width: 768px) {
  section#copyright .content .payments {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.navigation {
  margin: 2rem 0;
}
.navigation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.navigation .nav-links .nav-previous a,
.navigation .nav-links .nav-next a {
  display: inline-flex;
  gap: 0.2rem;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #f8f8f8;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  border: #FFF 2px solid;
}
.navigation .nav-links .nav-previous a:hover,
.navigation .nav-links .nav-next a:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-2px);
}
.navigation .nav-links .nav-previous a:before {
  content: "←";
  margin-right: 0.5rem;
}
.navigation .nav-links .nav-next a:after {
  content: "→";
  margin-left: 0.5rem;
}
.navigation .screen-reader-text {
  display: none;
}

@media (max-width: 768px) {
  .navigation .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  .navigation .nav-links .nav-previous,
  .navigation .nav-links .nav-next {
    width: 100%;
  }
  .navigation .nav-links .nav-previous a,
  .navigation .nav-links .nav-next a {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */