@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%;
  }
}

.product-specs {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .product-specs {
    flex-direction: column-reverse;
  }
}
.product-specs .product-specs__banner {
  width: 70%;
}
@media (max-width: 1024px) {
  .product-specs .product-specs__banner {
    width: 100%;
  }
}
.product-specs .product-specs__content {
  display: flex;
  flex-direction: column;
  margin-inline: 60px;
  width: 50%;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .product-specs .product-specs__content {
    align-items: center;
    width: 100%;
    margin: 20px 0 20px;
    text-align: center;
  }
}
.product-specs .product-specs__content h6 {
  font-size: 56px;
  font-weight: 900;
  margin-block: 20px;
  color: #2F2F2F;
}
@media (max-width: 1024px) {
  .product-specs .product-specs__content h6 {
    font-size: 56px;
  }
}
@media (max-width: 650px) {
  .product-specs .product-specs__content h6 {
    font-size: 38px;
  }
}
.product-specs .product-specs__content p {
  width: 90%;
  font-size: 24px;
  margin: 20px 0 60px;
}
@media (max-width: 1024px) {
  .product-specs .product-specs__content p {
    font-size: 24px;
  }
}
@media (max-width: 650px) {
  .product-specs .product-specs__content p {
    font-size: 20px;
  }
}
.product-specs .product-specs__content span {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #0050DC;
}
@media (max-width: 650px) {
  .product-specs .product-specs__content span {
    font-size: 28px;
  }
}
.product-specs .product-specs__content #purple-txt {
  color: #643CB4;
}

.system {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  position: relative;
}
.system .system__content {
  position: absolute;
  padding: 40px 15px 0;
}
@media (max-width: 1024px) {
  .system .system__content {
    position: unset;
    padding: 20px 15px 20px;
  }
}
.system .system__content h6 {
  font-size: 56px;
  font-weight: 900;
  margin: 40px 0 20px;
  color: #2F2F2F;
}
@media (max-width: 650px) {
  .system .system__content h6 {
    font-size: 38px;
  }
}
.system .system__content p {
  width: 100%;
  font-size: 24px;
}
@media (max-width: 650px) {
  .system .system__content p {
    font-size: 20px;
  }
}

.product-performance {
  background-image: url("../img/blue-tag.png");
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .product-performance {
    flex-direction: column;
    background-image: none;
  }
}
.product-performance .product-performance__banner {
  width: 50%;
}
@media (max-width: 1024px) {
  .product-performance .product-performance__banner {
    width: 80%;
  }
}
.product-performance .product-performance__banner img {
  width: 95%;
}
.product-performance .product-performance__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 200px;
  width: 50%;
}
@media (max-width: 1024px) {
  .product-performance .product-performance__content {
    align-items: center;
    background-color: #0050DC;
    width: 100%;
    text-align: center;
    margin-top: unset;
    padding: 40px;
    border-radius: 0 140px 0 0;
  }
}
@media (max-width: 650px) {
  .product-performance .product-performance__content {
    border-radius: 0 70px 0 0;
    padding: 40px 30px;
  }
}
.product-performance .product-performance__content h6 {
  font-size: 56px;
  font-weight: 900;
  color: #fefefe;
  width: fit-content;
}
@media (max-width: 1024px) {
  .product-performance .product-performance__content h6 {
    width: 100%;
    padding-block: 20px;
  }
}
@media (max-width: 650px) {
  .product-performance .product-performance__content h6 {
    font-size: 28px;
  }
}
.product-performance .product-performance__content p {
  font-size: 24px;
  color: #fefefe;
  width: 68%;
}
@media (max-width: 1024px) {
  .product-performance .product-performance__content p {
    width: 80%;
  }
}
@media (max-width: 650px) {
  .product-performance .product-performance__content p {
    font-size: 20px;
    width: 100%;
  }
}

.microsoft {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
@media (max-width: 1024px) {
  .microsoft {
    text-align: center;
    align-items: center;
  }
}
.microsoft .microsoft__content {
  position: absolute;
  margin-right: 2%;
}
@media (max-width: 1024px) {
  .microsoft .microsoft__content {
    position: unset;
    padding: 20px 15px 20px;
  }
}
.microsoft .microsoft__content h6 {
  font-size: 56px;
  font-weight: 900;
  margin-block: 20px;
  color: #2F2F2F;
}
@media (max-width: 1440px) {
  .microsoft .microsoft__content h6 {
    font-size: 42px;
  }
}
@media (max-width: 650px) {
  .microsoft .microsoft__content h6 {
    font-size: 38px;
  }
}
.microsoft .microsoft__content p {
  width: fit-content;
  font-size: 24px;
  margin: 0;
}
@media (max-width: 1440px) {
  .microsoft .microsoft__content p {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .microsoft .microsoft__content p {
    font-size: 20px;
  }
}

.storage-and-ram {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .storage-and-ram {
    flex-direction: column-reverse;
  }
}
.storage-and-ram .storage-and-ram__banner {
  width: 100%;
  background-color: #3C1450;
}
.storage-and-ram .storage-and-ram__content {
  display: flex;
  flex-direction: column;
  margin-inline: 60px;
  width: 50%;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .storage-and-ram .storage-and-ram__content {
    align-items: center;
    width: 100%;
    margin: 20px 0 20px;
    text-align: center;
  }
}
.storage-and-ram .storage-and-ram__content h6 {
  font-size: 56px;
  font-weight: 900;
  margin-block: 20px;
  color: #2F2F2F;
}
@media (max-width: 650px) {
  .storage-and-ram .storage-and-ram__content h6 {
    font-size: 38px;
  }
}
.storage-and-ram .storage-and-ram__content p {
  width: 100%;
  font-size: 24px;
  margin: 20px 0 60px;
}
.storage-and-ram .storage-and-ram__content p strong {
  font-weight: 600;
}
@media (max-width: 650px) {
  .storage-and-ram .storage-and-ram__content p {
    font-size: 20px;
    width: 95%;
  }
}
.storage-and-ram .storage-and-ram__content span {
  font-size: 14px;
}
@media (max-width: 650px) {
  .storage-and-ram .storage-and-ram__content span {
    margin-inline: 15px;
  }
}

.sharp-image {
  background-image: url(../img/bg-2.png);
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: fit-content;
}
@media (max-width: 1024px) {
  .sharp-image {
    flex-direction: column;
    align-items: center;
  }
}
.sharp-image .sharp-image__content {
  padding: 240px 0 240px 55px;
}
@media (max-width: 1024px) {
  .sharp-image .sharp-image__content {
    margin: 0 auto;
    text-align: center;
    padding: 60px 0 0px;
  }
}
.sharp-image .sharp-image__content h6 {
  font-size: 56px;
  font-weight: 900;
  margin-block: 20px;
  color: #fefefe;
}
@media (max-width: 650px) {
  .sharp-image .sharp-image__content h6 {
    font-size: 38px;
  }
}
.sharp-image .sharp-image__content P {
  font-size: 24px;
  margin: 20px 0 60px;
  color: #fefefe;
}
@media (max-width: 650px) {
  .sharp-image .sharp-image__content P {
    font-size: 20px;
    padding-inline: 10px;
  }
}
.sharp-image .sharp-image__banner {
  margin-top: 130px;
}
@media (max-width: 1024px) {
  .sharp-image .sharp-image__banner {
    margin: unset;
  }
}

.accessories {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .accessories {
    flex-direction: column;
  }
}
.accessories .accessories__banner {
  width: 60%;
}
@media (max-width: 1024px) {
  .accessories .accessories__banner {
    width: 100%;
  }
}
.accessories .accessories__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 60px;
  width: 28%;
}
@media (max-width: 1024px) {
  .accessories .accessories__content {
    text-align: center;
    width: 100%;
    align-items: center;
    margin: 20px 0;
  }
}
.accessories .accessories__content h6 {
  font-size: 56px;
  font-weight: 900;
  margin-block: 20px;
  color: #2F2F2F;
}
@media (max-width: 650px) {
  .accessories .accessories__content h6 {
    font-size: 38px;
  }
}
.accessories .accessories__content p {
  width: 100%;
  font-size: 24px;
  margin: 20px 0 20px;
}
@media (max-width: 1024px) {
  .accessories .accessories__content p {
    padding-inline: 15px;
  }
}
@media (max-width: 650px) {
  .accessories .accessories__content p {
    font-size: 20px;
  }
}

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