* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #CB4924;
  font-family: "Inter", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-between;
  min-height: 100vh;
}

section {
  margin-bottom: 40px;
}

.container {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.btn {
  font-family: "Bebas Neue", sans-serif;
  display: inline-flex;
  padding: 10px 40px;
  appearance: none;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 18px;
  position: relative;
  vertical-align: middle;
  outline-offset: 2px;
  line-height: 1.2;
  font-size: 16px;
  color: #fff;
  background-image: linear-gradient(108deg, rgb(24, 54, 255) 0%, rgb(71, 222, 188) 100%), linear-gradient(108deg, rgb(24, 54, 255) 0%, rgb(71, 222, 188) 100%);
  white-space: nowrap;
  outline: transparent solid 2px;
  border-radius: 16px;
  cursor: pointer;
  transition: .4s;
}

.btn--blue {
  background-color: rgb(51, 222, 208);
  color: #000;
  background-image: none;
}

.btn:hover {
  background-color: #fff;
  background-image: none;
  color: #000;
}

.title {
  font-size: 32px;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.text {
  font-size: 16px;
  margin-bottom: 20px;
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
}


/* header */
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__menu {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.header__menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* Promo */
.promo__wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.promo__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.promo__images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}



/* reviews */
.reviews__wrapper {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 0.5rem;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 15px 15px 1px;
  border-image-slice: 1;
  border-image-source: linear-gradient(100deg, rgba(255, 255, 255, 0) -11%, rgba(255, 255, 255, 0.3) 263%, rgba(255, 255, 255, 0.19) 263%);
}

.review {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review__symbols {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.review__symbols  img {
  max-width: 40px;
}


/* get */
.get ul {
  padding: 0;
  margin-left: 20px;
  list-style-type: numeric;
}


/* footer */
.footer {
  padding: 40px 0;
  background-color: #000;
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer__wrapper a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}



/* Regmodal */
.regmodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, .7);
  display: none;
  justify-content: center;
  align-items: center;
}

.regmodal--active {
  display: flex;
}

.regmodal__inner {
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
  max-width: 320px;
  width: 100%;
  color: #000;
}

.regmodal__inner h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.regmodal__inner p {
  text-align: center;
  margin-top: 20px;
  color: blue;
  cursor: pointer;
}

.regmodal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #000;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
}

.regmodal__inner form {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

.regmodal__inner form label {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.regmodal__inner form input {
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 8px;
  padding: 10px;
  margin-top: 5px;
  outline: none;
}

.regmodal__inner form button {
  max-width: 150px;
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
  background: inherit;
  border: 1px solid #1d1d1d;
  padding: 10px;
  border-radius: 8px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}


.promo--mobile {
  display: none;
}



.promo--mobile__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.promo--mobile__img {
  max-width: 150px;
}

.promo--mobile__img img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo--mobile__info h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.promo--mobile__info h3 img {
  max-width: 20px;
}

.promo--mobile__info h2 {
  margin-bottom: 10px;
}

.promo--mobile__systems {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.promo--mobile__systems img {
  max-width: 30px;
}

.promo--mobile__rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.promo--mobile__counter {
  color: lightgrey;
  font-style: italic;
}

.promo--mobile .btn {
  width: 100%;
  margin-bottom: 20px;
}


/* media */
@media (max-width: 992px) {
  #login {
    display: none;
  }
}

@media (max-width: 768px) {
  .main {
    padding-top: 40px;
  }

  .promo--mobile {
    display: block;
  }
  
  .logo {
    display: none;
  }

  .promo {
    display: none;
  }

  .title {
    font-size: 24px;
  }

  .text {
    font-size: 14px;
  }

  .header__menu a {
    font-size: 14px;
  }

  .header {
    position: fixed;
    width: 100%;
    bottom: 0;
    background-image: linear-gradient(108deg, rgb(24, 54, 255) 0%, rgb(71, 222, 188) 100%), linear-gradient(108deg, rgb(24, 54, 255) 0%, rgb(71, 222, 188) 100%);
  }

  .footer {
    padding-bottom: 100px;
  }

  .footer__wrapper a {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .btn {
    padding: 5px 20px;
  }
}

