@font-face {
  font-family: "Elza";
  font-weight: bold;
  src: url("../fonts/Elza-Black.otf") format("opentype");
}
@font-face {
  font-family: "Elza";
  font-weight: normal;
  src: url("../fonts/Elza-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Elza";
  font-weight: 600;
  src: url("../fonts/Elza-Semibold.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fefefe;
  font-family: "Elza";
}

img {
  width: 100%;
}

.reverse {
  flex-direction: row-reverse;
}

.c-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0050DC;
  padding: 4vw 8vw;
}
@media (max-width: 1024px) {
  .c-main {
    flex-direction: column;
    padding-block: 20px;
  }
}
.c-main .c-main__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 44vw;
}
@media (max-width: 1024px) {
  .c-main .c-main__content {
    height: 375px;
  }
}
.c-main .c-main__content img {
  width: 65%;
}
@media (max-width: 650px) {
  .c-main .c-main__content img {
    width: 80%;
  }
}
.c-main .c-main__content h1 {
  font-size: 72px;
  font-weight: 300;
  color: #fefefe;
}
@media (max-width: 650px) {
  .c-main .c-main__content h1 {
    font-size: 28px;
  }
}
.c-main .c-main__content h1 strong {
  font-weight: 600;
  color: #fefefe;
}
.c-main .c-main__content p {
  font-size: 32px;
  font-weight: 100;
  color: #fefefe;
}
@media (max-width: 650px) {
  .c-main .c-main__content p {
    font-size: 18px;
  }
}
.c-main .c-main__content p strong {
  font-weight: 600;
  color: #fefefe;
}
.c-main .c-main__banner {
  width: 50%;
}
@media (max-width: 1024px) {
  .c-main .c-main__banner {
    width: 70%;
    margin-top: 40px;
  }
}
@media (max-width: 650px) {
  .c-main .c-main__banner {
    width: 100%;
  }
}

.twoInOne {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .twoInOne {
    flex-direction: column;
    margin-block: 40px;
  }
}
.twoInOne .twoInOne__title {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.twoInOne .twoInOne__title h6 {
  font-size: 56px;
  color: #3C1450;
}
@media (max-width: 650px) {
  .twoInOne .twoInOne__title h6 {
    font-size: 38px;
  }
}
.twoInOne .twoInOne__title h6 strong {
  font-weight: 900;
}
.twoInOne .twoInOne__banner {
  width: 50%;
}
@media (max-width: 1024px) {
  .twoInOne .twoInOne__banner {
    width: 100%;
  }
}
.twoInOne .twoInOne__content {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .twoInOne .twoInOne__content {
    width: 100%;
  }
}
.twoInOne .twoInOne__content img {
  width: 25%;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .twoInOne .twoInOne__content img {
    width: 15%;
  }
}
.twoInOne .twoInOne__content p {
  width: 55%;
  font-size: 24px;
  color: #3C1450;
}
@media (max-width: 1024px) {
  .twoInOne .twoInOne__content p {
    width: 90%;
    text-align: center;
  }
}
@media (max-width: 650px) {
  .twoInOne .twoInOne__content p {
    font-size: 20px;
  }
}
.twoInOne .twoInOne__content p strong {
  font-weight: 600;
}

.system {
  margin-inline: 4vw;
}
@media (max-width: 650px) {
  .system {
    margin: 0vw;
  }
}

.ram-and-storage {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ram-and-storage .ram-and-storage__content {
  margin-top: -5vw;
  width: 60%;
}
@media (max-width: 650px) {
  .ram-and-storage .ram-and-storage__content {
    margin: unset;
    width: 100%;
  }
}

.microsoft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("../img/bg-1.png");
  background-size: cover;
  background-position: center;
  padding-block: 80px;
}
@media (max-width: 1024px) {
  .microsoft {
    flex-direction: column;
  }
}
.microsoft .microsoft__content {
  margin-inline: 12vw;
  width: 26.7%;
}
@media (max-width: 1024px) {
  .microsoft .microsoft__content {
    width: 90%;
    text-align: center;
  }
}
.microsoft .microsoft__content img {
  width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .microsoft .microsoft__content img {
    width: 50%;
  }
}
.microsoft .microsoft__content p {
  font-size: 24px;
}
@media (max-width: 650px) {
  .microsoft .microsoft__content p {
    font-size: 20px;
  }
}
.microsoft .microsoft__content p strong {
  font-weight: 600;
}
.microsoft .microsoft__banner {
  margin-inline: 12vw;
}

.specs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .specs {
    flex-direction: column;
  }
}
.specs .specs__content {
  margin: 4vw;
}
@media (max-width: 1024px) {
  .specs .specs__content {
    text-align: center;
  }
}
.specs .specs__content img {
  width: 60%;
  margin-block: 2vw;
}
@media (max-width: 1024px) {
  .specs .specs__content img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .specs .specs__content img {
    width: 70%;
  }
}

/*# sourceMappingURL=main.min.css.map */
