* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
}

a {
  display: block;
  text-decoration: none;
}

.header {
  width: 100%;
  height: 35px;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgba(17, 17, 17, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.header-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 5px 0px;
}

.nav-list-desktop {
  list-style-type: none;
  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;
}

.nav-link {
  color: #d6d6d6;
  display: block;
  padding: 5px 10px;
  font-size: 12px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-mobile {
  display: none;
}

.nav-list-mobile {
  display: none;
}

@media (max-width: 600px) {
  .nav-list-desktop {
    display: none;
  }
  .nav-mobile {
    list-style: none;
    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;
  }
  .hamburguer {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 900;
  }
  .hamburguer:after {
    content: "";
    position: absolute;
    top: 38%;
    left: 23%;
    width: 55%;
    height: 4%;
    background-color: #d6d6d6;
    -webkit-transition: 1s ease;
    transition: 1s ease;
  }
  .hamburguer:before {
    content: "";
    position: absolute;
    top: 63%;
    left: 23%;
    width: 55%;
    height: 4%;
    background-color: #d6d6d6;
    -webkit-transition: 1s ease;
    transition: 1s ease;
  }
}

.hamburguer.hamburguer-active {
  width: 25px;
  height: 25px;
  position: relative;
}

.hamburguer.hamburguer-active:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 23%;
  width: 55%;
  height: 4%;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  background-color: #d6d6d6;
}

.hamburguer.hamburguer-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 23%;
  -webkit-transform: rotate(-405deg);
          transform: rotate(-405deg);
  width: 55%;
  height: 4%;
  background-color: #d6d6d6;
}

.nav-list-mobile {
  width: 100%;
  height: 0;
  position: fixed;
  top: -1100%;
  z-index: 0;
  opacity: 0.5;
  background-color: #030303;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 40px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.85s cubic-bezier(0.25, 0.7, 0.6, 1);
  transition: 0.85s cubic-bezier(0.25, 0.7, 0.6, 1);
}

.nav-list-mobile.active {
  top: 0;
  height: 100vh;
  opacity: 1;
}

.nav-item-mobile {
  width: 100%;
  margin: 5px 0px;
}

.nav-link-mobile {
  display: block;
  color: #d6d6d6;
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid #333;
  font-size: 11px;
  opacity: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.nav-link-mobile:hover {
  opacity: 0.7;
}

.search {
  width: 100%;
  height: 25px;
  border-radius: 5px;
  border: 0;
  padding: 0px 10px;
  background-color: #1f1f1f;
  outline: none;
  color: #888;
}

.iphonese {
  width: 100%;
  height: 70vh;
  padding-top: 50px;
  margin: 5px 0px;
  background-color: #131313;
}

@media screen and (max-width: 780px) {
  .iphonese {
    height: 55vh;
  }
}

.container-iphonese {
  max-width: 820px;
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-title-iphonese h1 {
  color: #fafafa;
  font-size: 48px;
  text-align: center;
  letter-spacing: -2px;
}

.container-title-iphonese h3 {
  color: #fafafa;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -1px;
}

.container-title-iphonese p {
  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;
  margin: 10px 0px;
}

.link {
  display: block;
  color: #1f97ff;
  position: relative;
  margin: 0px 10px;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.link::after {
  content: ">";
  position: absolute;
  top: 0;
  right: -15px;
}

.link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.container-img-iphonese img {
  width: 100%;
}

.iphone11 {
  width: 100%;
  height: 70vh;
  margin: 5px 0px;
  padding-top: 5vh;
  background-image: url("../img/iphone11.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center 100%;
}

.container-iphone11 {
  max-width: 820px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container-iphone11 h1 {
  color: #131313;
  font-size: 48px;
  text-align: center;
  letter-spacing: -2px;
}

.container-iphone11 h3 {
  color: #131313;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -1px;
}

.container-iphone11 p {
  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;
  margin: 10px 0px;
}

@media screen and (max-width: 1400px) {
  .iphone11 {
    height: 60vh;
    background-size: 120%;
  }
}

@media screen and (max-width: 780px) {
  .iphone11 {
    height: 50vh;
    background-size: 170%;
  }
  h1 {
    font-size: 36px !important;
  }
  h3 {
    font-size: 18px !important;
  }
}

.products {
  width: 100%;
  margin-top: 10px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.watch {
  height: 100%;
  margin: 0 5px;
  padding-top: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 380px;
          flex: 1 1 380px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.watch h1 {
  height: 100px;
  background-image: url("../img/fig_watch.png");
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center center;
  margin: 5px 0;
}

.watch h3 {
  color: #131313;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  letter-spacing: -1px;
}

.watch p {
  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;
  margin: 10px 0;
}

.watch img {
  width: 50%;
}

.airpods {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 380px;
          flex: 1 1 380px;
  height: 100%;
  margin: 0 5px;
  padding-top: 30px;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.airpods h1 {
  color: #fafafa;
  font-size: 36px;
  text-align: center;
  font-weight: 400;
  text-align: center;
  letter-spacing: -1px;
}

.airpods h3 {
  color: #fafafa;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  letter-spacing: -1px;
}

.airpods p {
  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;
  margin: 10px 0;
}

.airpods img {
  width: 50%;
}
/*# sourceMappingURL=style.css.map */