@import url("https://fonts.googleapis.com/css2?family=Play&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}
@media only screen and (max-width: 1100px) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 550px) {
  html {
    font-size: 39%;
    overflow-x: hidden;
  }
}

.body {
  position: relative;
  overflow-x: hidden;
  font-family: "Play", sans-serif;
  color: #fff;
  background: url(../img/background.png);
  background-size: 250px;
  background-repeat: repeat;
  line-height: 1.6;
  display: grid;
  -webkit-tap-highlight-color: transparent;
  grid-template-columns: [left-start] 7vw [left-end content-start] repeat(7, [col-start] 1fr [col-end]) [content-end sidebar-start] 7vw [sidebar-end];
  grid-template-rows: [header-start] 100vh [header-end] auto;
}
@media only screen and (max-width: 1100px) {
  .body {
    grid-template-columns: [left-start] 10vw [left-end content-start] repeat(7, [col-start] 1fr [col-end]) [content-end sidebar-start] 10vw [sidebar-end];
  }
}
@media only screen and (max-width: 550px) {
  .body {
    background-size: 500px;
  }
}

.section {
  transition: transform 1s;
}

.section--hidden {
  opacity: 0;
  transform: translateY(200px);
}

.hidden {
  display: none;
}

.header {
  grid-column: content-start/content-end;
  grid-row: header-start/header-end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  min-height: 100vh;
}
.header__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem;
}
@media only screen and (max-width: 550px) {
  .header__text {
    padding: 0;
    justify-content: flex-start;
  }
}
.header__text-logo {
  display: flex;
  letter-spacing: 1.2rem;
}
@media only screen and (max-width: 550px) {
  .header__text-logo {
    margin-bottom: 10vh;
  }
}
.header__text-logo-1 {
  color: #970303;
  font-size: 8rem;
  font-weight: 200;
}
.header__text-logo-2 {
  font-size: 4rem;
  align-self: flex-end;
  margin-bottom: 1.9rem;
  font-weight: 200;
}
.header__text-logo-svg {
  height: 7rem;
  width: 7rem;
  align-self: center;
  margin-top: 3rem;
}
@media only screen and (max-width: 1100px) {
  .header__text-logo-svg {
    height: 9rem;
    width: 10rem;
  }
}
@media only screen and (max-width: 550px) {
  .header__text-logo-svg {
    display: none;
  }
}
.header__text-title {
  padding-bottom: 50vh;
  padding-top: 10vh;
  margin: 0 1.5rem;
}
@media only screen and (max-width: 550px) {
  .header__text-title {
    padding-top: 0;
    display: grid;
    justify-items: center;
    text-align: center;
  }
}
.header__text-title-up {
  font-size: 2.6rem;
  font-weight: 200;
  letter-spacing: 0.5rem;
}
.header__text-title-down {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 1.2rem;
}
@media only screen and (max-width: 1100px) {
  .header__text-title-down {
    font-size: 4rem;
    font-weight: lighter;
    margin: 3rem 0;
    letter-spacing: 0.8rem;
  }
}
.header__text-title-line {
  width: 90%;
  height: 0.3rem;
  background: #970303;
  margin-top: 1rem;
  box-shadow: 0 0 0.8rem #970303;
}
.header__text-title-button {
  cursor: pointer;
  padding: 1.3rem 3rem;
  font-size: 2rem;
  letter-spacing: 0.3rem;
  border-radius: 0.5rem;
  border: 2px solid black;
  background: #970303;
  transition: 0.2s;
  outline: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 7rem;
  display: none;
}
.header__text-title-button:active {
  padding: 1.6rem 3.5rem;
  border: 2px solid white;
}
.header__text-title-button:hover {
  color: white;
}
@media only screen and (max-width: 550px) {
  .header__text-title-button {
    display: block;
    font-size: 3rem;
  }
}
.header__text-title-arrow {
  display: none;
  height: 400px;
  width: 20px;
}
@media only screen and (max-width: 550px) {
  .header__text-title-arrow {
    display: inline-block;
    font-size: 3rem;
  }
}
.header__text-title-direction {
  font-size: 4rem;
  letter-spacing: 0.3rem;
  font-weight: lighter;
  margin: 5rem 0;
  display: none;
}
@media only screen and (max-width: 550px) {
  .header__text-title-direction {
    display: inline-block;
  }
}
@media only screen and (max-width: 1100px) {
  .header__image {
    display: none;
  }
}
.header__image-img {
  width: 100%;
  height: 100vh;
}

.sidebar {
  grid-column: sidebar-start/sidebar-end;
  grid-row: header-start/header-end;
}
.sidebar .sidebar__burger {
  position: fixed;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.sidebar .sidebar__burger-svg {
  margin: 2.5px 0;
  width: 60px;
  height: 10px;
  transition: all 0.2s;
  margin-left: 20px;
}
.sidebar .sidebar__burger-svg:first-child {
  margin-top: 85px;
}
@media only screen and (max-width: 1100px) {
  .sidebar .sidebar__burger-svg {
    margin-left: 0;
    width: 40px;
  }
  .sidebar .sidebar__burger-svg:first-child {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 550px) {
  .sidebar .sidebar__burger-svg {
    width: 30px;
    margin: 1px 0;
  }
  .sidebar .sidebar__burger-svg:first-child {
    margin-top: 20px;
  }
}
.sidebar__open {
  position: fixed;
  top: 0;
  right: -1920px;
  height: 100vh;
  width: 50vw;
  background-image: url(../img/background.png);
  background-size: 250px;
  transition: 1s cubic-bezier(0.51, 0.26, 0.33, 1.25);
  border-radius: 5% 0 0 5%;
  border-left: 2px solid #970303;
  opacity: 0;
  z-index: 500;
}
@media only screen and (max-width: 800px) {
  .sidebar__open {
    width: 100vw;
  }
}
.sidebar__open-close-btn {
  position: relative;
  float: right;
  width: 7rem;
  height: 7rem;
  cursor: pointer;
  margin-top: 90px;
  margin-right: 30px;
}
@media only screen and (max-width: 550px) {
  .sidebar__open-close-btn {
    margin-top: 30px;
  }
}
.sidebar__open-close-btn img {
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 800px) {
  .sidebar__open-close-btn img {
    width: 40px;
    height: 40px;
  }
}
.sidebar__open-close-btn img:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.sidebar__open .sidebar__items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar__open .sidebar__items .sidebar__item {
  list-style: none;
  font-size: 3rem;
  letter-spacing: 0.5rem;
  text-align: center;
}
.sidebar__open .sidebar__items .sidebar__item a {
  text-decoration: none;
  color: white;
  line-height: 20rem;
  cursor: pointer;
  transition: all 0.4s;
}
@media only screen and (min-width: 1100px) {
  .sidebar__open .sidebar__items .sidebar__item a {
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
    background-size: 220%;
    border-radius: 5px;
    color: #970303;
    padding: 10px;
    font-weight: 600;
    transition: all 0.4s;
  }
  .sidebar__open .sidebar__items .sidebar__item a:hover, .sidebar__open .sidebar__items .sidebar__item a:active {
    background-position: 100%;
    color: #000;
  }
}
.sidebar__open .sidebar__items .sidebar__item-arrow {
  width: 15px;
  height: 70px;
  margin: auto;
}

.visible {
  right: 0;
  opacity: 1;
}

.intro {
  grid-column: content-start/content-end;
  display: flex;
  margin: 15rem 0;
  text-align: center;
  flex-direction: column;
}
@media only screen and (max-width: 550px) {
  .intro {
    margin: 0;
  }
}
.intro__text {
  letter-spacing: 0.4rem;
}
.intro__text-main {
  font-size: 2.8rem;
  font-weight: lighter;
}
@media only screen and (max-height: 600px) {
  .intro__text-main {
    padding-top: 100px;
  }
}
.intro__text-sub {
  margin-top: 5rem;
  font-size: 2.2rem;
  font-weight: lighter;
}
@media only screen and (max-width: 450px) {
  .intro__text-sub {
    font-size: 2.4rem;
  }
}
.intro__line {
  align-self: center;
  width: 50%;
  height: 0.3rem;
  background: #970303;
  margin-top: 5rem;
  box-shadow: 0 0 0.8rem #970303;
}

.parts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 20rem 0;
}

.part {
  margin: 4rem 6rem;
  width: 25%;
}
@media only screen and (max-width: 930px) {
  .part {
    width: 40%;
  }
}
@media only screen and (max-width: 450px) {
  .part {
    width: 80vw;
  }
}
.part__svg {
  height: 7rem;
  width: 7rem;
}
@media only screen and (max-width: 1100px) {
  .part__svg {
    height: 9rem;
    width: 10rem;
  }
}
@media only screen and (max-width: 550px) {
  .part__svg {
    height: 12rem;
    width: 12rem;
  }
}
.part__name {
  font-size: 2.8rem;
  margin: 1.5rem 0;
}
.part__description {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 450px) {
  .part__description {
    font-size: 2.4rem;
  }
}

.outro__line {
  align-self: center;
  width: 50%;
  height: 0.3rem;
  background: #970303;
  margin-top: 5rem;
  box-shadow: 0 0 0.8rem #970303;
}

.additional-title {
  font-size: 3.5rem;
  letter-spacing: 0.3rem;
  margin-top: 5rem;
}

.additional-parts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 13rem 0;
}

.add {
  width: 40%;
  padding: 3rem;
}
@media only screen and (max-width: 450px) {
  .add {
    width: 80%;
  }
}
.add__svg {
  height: 7rem;
  width: 7rem;
  margin-left: 2rem;
}
@media only screen and (max-width: 1100px) {
  .add__svg {
    height: 9rem;
    width: 10rem;
  }
}
@media only screen and (max-width: 1100px) {
  .add__svg {
    margin-left: 3.5rem;
  }
}
.add__name {
  font-size: 2rem;
  margin: 1.5rem 0;
}
.add__description {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 450px) {
  .add__description {
    font-size: 2.4rem;
  }
}

.advantages--title {
  font-size: 3.5rem;
  letter-spacing: 0.3rem;
  margin-top: 5rem;
  margin-bottom: 10rem;
}

.advantages {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: left;
}
.advantages--description {
  font-size: 2.6rem;
  display: none;
  margin: 5rem 0;
  width: 65%;
}
@media only screen and (max-width: 450px) {
  .advantages--description {
    font-size: 2.5rem;
    width: 90%;
  }
}
.advantages--description-active {
  display: block;
}
.advantages--description-line {
  margin-top: 3rem;
  height: 2.5px;
  width: 90%;
  display: none;
}
.advantages--description-line-1 {
  background: linear-gradient(to left bottom, #370505, #610512, #8e0317, #bc0518, #eb1212);
}
.advantages--description-line-2 {
  background: linear-gradient(to left bottom, #07143b, #152867, #263e95, #3954c7, #4e6cfb);
}
.advantages--description-line-3 {
  background: linear-gradient(to left bottom, #620c66, #852e8a, #a94daf, #cf6cd6, #f58cff);
}
.advantages--description-line--active {
  display: block;
}

.adv-buttons--btn {
  cursor: pointer;
  padding: 1.3rem 3rem;
  font-size: 2rem;
  letter-spacing: 0.3rem;
  border-radius: 0.5rem;
  border: 2px solid black;
  background: #970303;
  transition: 0.2s;
  outline: none;
  margin: 1rem 1rem;
  border-radius: 2rem;
  transition: 0.5s;
  opacity: 0.7;
}
.adv-buttons--btn:active {
  padding: 1.6rem 3.5rem;
  border: 2px solid white;
}
.adv-buttons--btn:hover {
  color: white;
}
@media only screen and (max-width: 950px) {
  .adv-buttons--btn {
    display: flex;
    flex-direction: column;
    margin: 2rem;
  }
}
@media only screen and (max-width: 450px) {
  .adv-buttons--btn {
    font-size: 2.2rem;
  }
}
.adv-buttons--btn--active {
  padding: 1.3rem 2rem;
}
.adv-buttons--1 {
  background: linear-gradient(to left bottom, #370505, #610512, #8e0317, #bc0518, #eb1212);
}
.adv-buttons--2 {
  background: linear-gradient(to left bottom, #07143b, #152867, #263e95, #3954c7, #4e6cfb);
}
.adv-buttons--3 {
  background: linear-gradient(to left bottom, #620c66, #852e8a, #a94daf, #cf6cd6, #f58cff);
}
.adv-buttons--active:active, .adv-buttons--active:focus {
  border: 1px solid #fff;
  opacity: 1;
}
@media only screen and (min-width: 940px) {
  .adv-buttons--active {
    transform: translateY(-10px);
    opacity: 1;
    border: 1px solid #fff;
  }
}

.examples {
  grid-column: content-start/content-end;
}
.examples__title {
  margin: 8rem 0;
  letter-spacing: 0.3rem;
  font-size: 2.4rem;
  font-weight: lighter;
  text-align: center;
  line-height: 2;
}

.configs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media only screen and (max-width: 1000px) {
  .configs {
    justify-content: center;
    flex-direction: column;
  }
}

.build {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 5rem;
}
.build__img {
  background-size: cover;
  width: 25vw;
  height: 25vh;
}
@media only screen and (max-width: 900px) {
  .build__img {
    width: 40vw;
  }
}
@media only screen and (max-width: 550px) {
  .build__img {
    width: 40vw;
    height: 15vh;
  }
}
.build__img-1 {
  width: 16vw;
}
@media only screen and (max-width: 900px) {
  .build__img-1 {
    width: 30vw;
  }
}
.build__line {
  width: 10rem;
  height: 0.3rem;
  margin: 10rem 0;
}
.build__line:hover {
  height: 10rem;
  box-shadow: 0 1px 30px inherit;
}
.build__line-1 {
  background: red;
  box-shadow: 0 0 0.8rem red;
}
.build__line-2 {
  background: green;
  box-shadow: 0 0 0.8rem green;
  transition: 0.2s;
}
.build__line-3 {
  background: pink;
  box-shadow: 0 0 0.8rem pink;
}
.build__title {
  font-size: 2.7rem;
  letter-spacing: 0.8rem;
  margin-bottom: 6rem;
  font-weight: lighter;
}
@media only screen and (max-width: 900px) {
  .build__title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 550px) {
  .build__title {
    font-size: 3rem;
  }
}
.build p {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 6rem;
  line-height: 2.5;
}
@media only screen and (max-width: 1100px) {
  .build p {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 550px) {
  .build p {
    font-size: 2.5rem;
  }
}
.build .nvidia {
  color: green;
}
.build .intel {
  color: #449ed0;
}
.build .alternate {
  color: pink;
}
.build .amd {
  color: red;
}

.ending {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 25rem;
}
.ending__text {
  margin-top: 10rem;
  margin-bottom: 5rem;
  letter-spacing: 0.3rem;
  font-size: 2.4rem;
  letter-spacing: 2;
  text-align: center;
}
.ending__button {
  cursor: pointer;
  padding: 1.3rem 3rem;
  font-size: 2rem;
  letter-spacing: 0.3rem;
  border-radius: 0.5rem;
  border: 2px solid black;
  background: #970303;
  transition: 0.2s;
  outline: none;
}
.ending__button:active {
  padding: 1.6rem 3.5rem;
  border: 2px solid white;
}
.ending__button:hover {
  color: white;
}

.footer {
  grid-column: content-start/content-end;
  display: flex;
  justify-content: center;
  align-items: center;
}

.options {
  display: grid;
  grid-template-columns: repeat(3, minmax(10rem, 20rem));
  justify-items: center;
  grid-column-gap: 3rem;
  margin-top: 10rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 550px) {
  .options {
    grid-template-columns: 1fr;
    grid-row-gap: 6rem;
  }
}
.options__item, .options__item:link, .options__item:visited {
  list-style: none;
  font-size: 2.6rem;
  letter-spacing: 0.3rem;
}
@media only screen and (max-width: 550px) {
  .options__item, .options__item:link, .options__item:visited {
    font-size: 3.4rem;
  }
}
.options__item a, .options__item:link a, .options__item:visited a {
  text-decoration: none;
  color: white;
  transition: 0.2s;
}
.options__item a:hover, .options__item:link a:hover, .options__item:visited a:hover {
  text-shadow: 2px 2px 10px white;
}/*# sourceMappingURL=main.css.map */