/* SLOTS */

.slot-2__title {
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 990px) {
  .slot-2__title {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
  }
}
.slot-2__wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 25px;
}
@media (max-width: 1200px) {
  .slot-2__wrap {
    grid-gap: 20px;
  }
}
@media (max-width: 768px) {
  .slot-2__wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}
.slot-2__box-xl {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 768px) {
  .slot-2__box-xl {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: auto;
    grid-row-end: auto;
    max-height: 300px;
  }
}
.slot-2__box {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(25, 30, 39, 0.6) 0%,
    rgba(33, 38, 49, 0.6) 100%
  );
  box-shadow:
    8px 0 14px rgba(0, 0, 0, 0.19),
    inset 0 1px 4px #fff;
  position: relative;
  border-radius: 28px;
}
.slot-2__box:hover .slot-2__hide {
  opacity: 1;
}
.slot-2__img {
  max-width: 100%;
  height: auto;
  width: 100%;
  box-sizing: border-box;
  object-fit: cover;
}
.slot-2__hide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(27, 28, 34, 0.84);
  backdrop-filter: blur(2px);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: 0.3s;
}
.slot-2__btn {
  padding: 10px 20px;
  box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.29);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .slot-2__btn {
    padding: 6px 15px;
  }
}
.slot-2__link {
  padding: 10px 20px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .slot-2__link {
    padding: 6px 15px;
  }
}
.slot-2__star {
  padding: 6px 10px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 11px;
  line-height: 14px;
  color: #000;
}
.slot-2__star svg {
  margin-right: 4px;
  position: relative;
  top: -1px;
}

/* PLAYERS */
.players-3__title {
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 990px) {
  .players-3__title {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
  }
}
.players-3__wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 25px;
  align-items: start;
}
@media (max-width: 1400px) {
  .players-3__wrap {
    grid-template-columns: 380px 1fr;
  }
}
@media (max-width: 1260px) {
  .players-3__wrap {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
@media (max-width: 768px) {
  .players-3__wrap {
    grid-template-rows: auto;
  }
}
.players-3__table {
  box-shadow:
    8px 0 14px rgba(0, 0, 0, 0.19),
    inset 0 1px 4px #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 1px;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 1260px) {
  .players-3__table {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 990px) {
  .players-3__table {
    border-radius: 8px;
  }
}
.players-3__item {
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 20px 40px 1fr 1fr 1fr;
  grid-gap: 12px;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(25, 30, 39, 0.6) 0%,
    rgba(33, 38, 49, 0.6) 100%
  );
}
@media (max-width: 768px) {
  .players-3__item {
    padding: 10px;
    grid-gap: 10px;
    grid-template-columns: 10px 30px 1fr 1fr 65px;
  }
}
.players-3__item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.players-3__num {
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  color: #fff;
}
@media (max-width: 990px) {
  .players-3__num {
    font-size: 14px;
    line-height: 17px;
  }
}
.players-3__item:nth-child(1) {
  border-radius: 16px 16px 0 0;
}
.players-3__item:nth-child(1) .players-3__num {
  color: #f09938;
}
.players-3__item:last-child {
  border-radius: 0 0 16px 16px;
}
.players-3__item:nth-child(2) .players-3__num {
  color: #f09938;
}
.players-3__item:nth-child(3) .players-3__num {
  color: #f09938;
}
.players-3__name {
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}
@media (max-width: 990px) {
  .players-3__name {
    font-size: 11px;
    line-height: 14px;
  }
}
.players-3__col {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}
@media (max-width: 990px) {
  .players-3__col {
    font-size: 12px;
    line-height: 15px;
  }
}
.players-3__col img {
  margin-right: 10px;
}
@media (max-width: 990px) {
  .players-3__col img {
    margin-right: 5px;
  }
}
.players-3__min {
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: #dedede;
}
.players-3__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 300px;
  grid-gap: 25px;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 1260px) {
  .players-3__right {
    grid-row-start: 1;
    grid-row-end: auto;
    grid-template-rows: 1fr;
    grid-gap: 15px;
  }
}
.players-3__box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(25, 30, 39, 0.6) 0%,
    rgba(33, 38, 49, 0.6) 100%
  );
  box-shadow: inset 0 1px 4px #fff;
  filter: drop-shadow(8px 0px 14px rgba(0, 0, 0, 0.19));
  backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
@media (max-width: 990px) {
  .players-3__box {
    border-radius: 8px;
  }
}
.players-3__box img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.players-3__jackpot {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: linear-gradient(
    180deg,
    rgba(25, 30, 39, 0.6) 0%,
    rgba(33, 38, 49, 0.6) 100%
  );
  box-shadow: inset 0 1px 4px #fff;
  filter: drop-shadow(8px 0px 14px rgba(0, 0, 0, 0.19));
  backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  grid-column-start: 1;
  grid-column-end: 3;
  padding: 30px;
  flex-direction: column;
}
@media (max-width: 990px) {
  .players-3__jackpot {
    border-radius: 8px;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .players-3__jackpot {
    max-height: 200px;
  }
}
.players-3__jackpot img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.players-3__jackpot p,
.players-3__jackpot a {
  position: relative;
  z-index: 2;
}
.players-3__prize {
  font-size: 80px;
  line-height: 89px;
  background: linear-gradient(180deg, #f5c344 0%, #f09938 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .players-3__prize {
    font-size: 34px;
    line-height: 41px;
  }
}
@media (max-width: 576px) {
  .players-3__prize {
    margin-bottom: 0;
  }
}
.players-3__money {
  background: linear-gradient(180deg, #f5c344 0%, #f09938 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  line-height: 59px;
  color: #f5c344;
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  .players-3__money {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
  }
}
.players-3__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 25px 10px;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  min-height: 250px;
}
@media (max-width: 768px) {
  .players-3__bottom {
    flex-direction: column;
    justify-content: center;
    padding: 25px 15px;
    height: 100%;
    align-items: center;
    min-height: auto;
    box-sizing: border-box;
  }
}
.players-3__bottom button {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  min-width: 80px;
}
@media (max-width: 768px) {
  .players-3__bottom button {
    padding: 6.5px 15px;
  }
}
.players-3__bottom a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  min-width: 80px;
}
@media (max-width: 768px) {
  .players-3__bottom a {
    padding: 6.5px 15px;
  }
}
.players-3__bottom a:first-child {
  border: 1px solid #dedede;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  border-radius: 30px;
}
@media (max-width: 768px) {
  .players-3__bottom a:first-child {
    margin-bottom: 10px;
  }
}
.players-3__bottom a:last-child {
  background: #3f07f5;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  border-radius: 30px;
}
.players-3__bottom button:first-child {
  border: 1px solid #dedede;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  border-radius: 30px;
}
@media (max-width: 768px) {
  .players-3__bottom button:first-child {
    margin-bottom: 10px;
  }
}
.players-3__bottom button:last-child {
  background: #3f07f5;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  border-radius: 30px;
}
.players-3__bottom-2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .players-3__bottom-2 {
    justify-content: flex-start;
  }
}
.players-3__bottom-2 button {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  min-width: 80px;
  background: #3f07f5;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  border-radius: 30px;
}
@media (max-width: 768px) {
  .players-3__bottom-2 button {
    padding: 6.5px 15px;
  }
}
.players-3__bottom-2 a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  min-width: 80px;
  background: #3f07f5;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  border-radius: 30px;
}
@media (max-width: 768px) {
  .players-3__bottom-2 a {
    padding: 6.5px 15px;
  }
}
/* modal */
.modal-type-1 {
  position: fixed;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 65px 30px 30px 30px;
  background: #000;
  box-shadow:
    8px 0 14px rgba(0, 0, 0, 0.19),
    inset 0 1px 4px #fff;
  backdrop-filter: blur(8px);
  border-radius: 28px;
  margin: 5px 15px;
  max-width: 860px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 500px;
  height: 100%;
}
@media (max-width: 990px) {
  .modal-type-1 {
    margin: 0;
    height: auto;
    padding: 50px 15px 20px 15px;
    max-height: 615px;
    overflow-y: scroll;
    max-width: 100%;
    border-radius: 8px;
    width: 90%;
  }
}
.modal-type-1__close {
  position: absolute;
  cursor: pointer;
  top: 30px;
  right: 30px;
}
@media (max-width: 990px) {
  .modal-type-1__close {
    right: 18px;
    top: 20px;
  }
}
.modal-type-1__wrap {
  display: grid;
  grid-template-columns: 1fr 310px;
  grid-gap: 25px;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .modal-type-1__wrap {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.modal-type-1__img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.modal-type-1__right {
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .modal-type-1__right {
    grid-row-start: 1;
  }
}
.modal-type-1__left {
  position: relative;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  padding: 30px;
}
@media (max-width: 990px) {
  .modal-type-1__left {
    padding: 15px;
    min-height: 250px;
  }
}
.modal-type-1__left p {
  position: relative;
  z-index: 9;
}
.modal-type-1__bonus-title {
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  text-align: center;
}
.modal-type-1__bonus-pretitle {
  text-align: center;
  background: linear-gradient(180deg, #f5c344 0%, #f09938 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 30px;
  line-height: 37px;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .modal-type-1__bonus-pretitle {
    font-size: 24px;
    line-height: 29px;
  }
}
.modal-type-1__bonus {
  text-align: center;
  background: linear-gradient(180deg, #f5c344 0%, #f09938 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 42px;
  line-height: 50px;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .modal-type-1__bonus {
    font-size: 32px;
    line-height: 39px;
  }
}
.modal-type-1__title {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #fff;
  max-width: 175px;
}
@media (max-width: 990px) {
  .modal-type-1__title {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
  }
}
.modal-type-1__title-3 {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 990px) {
  .modal-type-1__title-3 {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
  }
}
.modal-type-1__text {
  font-size: 14px;
  line-height: 140%;
  color: #dedede;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .modal-type-1__text {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 140%;
  }
}
.modal-type-1__form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .modal-type-1__form {
    grid-gap: 10px;
    margin-bottom: 0;
  }
}
.modal-type-1__label {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #fff;
}
@media (max-width: 990px) {
  .modal-type-1__label {
    font-size: 12px;
    line-height: 20px;
  }
}
.modal-type-1__input {
  outline: none;
  cursor: pointer;
  padding: 14px 12px;
  background: #000;
  border: 1px solid #dedede;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .modal-type-1__input {
    padding: 10px;
    font-size: 14px;
  }
}
.modal-type-1__input::placeholder {
  color: #dedede;
}
.modal-type-1__box {
  position: relative;
}
.modal-type-1 .eye-pass {
  position: absolute;
  right: 15px;
  top: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .modal-type-1 .eye-pass {
    top: 36px;
  }
}
.modal-type-1__forgot {
  text-align: right;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}
@media (max-width: 990px) {
  .modal-type-1__forgot {
    font-size: 12px;
    line-height: 20px;
  }
}
.modal-type-1__btn {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 100px;
  background: linear-gradient(180deg, #4ec7f5 0%, #5b7af4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
@media (max-width: 990px) {
  .modal-type-1__btn {
    padding: 6px 15px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
.modal-type-1__btn-2 {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #5b7af4 0%, #693ff5 100%);
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
@media (max-width: 990px) {
  .modal-type-1__btn-2 {
    padding: 6px 15px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.modal-type-1__btn-3 {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #5b7af4 0%, #693ff5 100%);
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
@media (max-width: 990px) {
  .modal-type-1__btn-3 {
    padding: 6px 15px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.modal-type-1__link {
  font-size: 14px;
  line-height: 140%;
  color: #fff;
  margin-top: auto;
}
@media (max-width: 990px) {
  .modal-type-1__link {
    margin-top: 15px;
  }
}

.modal-sub-1 {
  max-height: 650px;
  max-width: 950px;
}
@media (max-width: 990px) {
  .modal-sub-1 {
    max-height: 650px;
    max-width: 100%;
  }
}
.modal-sub-1__wrap {
  background: radial-gradient(
    107.16% 250.78% at 75.07% -67.79%,
    #50005c 0%,
    #2d0248 29%,
    #14043a 56%,
    #050531 80%,
    #00052e 100%
  );
  padding: 30px;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .modal-sub-1__wrap {
    padding: 10px;
  }
}
.modal-sub-1__bg {
  position: absolute;
  max-width: 100%;
  height: auto;
  right: 10px;
  bottom: -50px;
  pointer-events: none;
}
@media (max-width: 990px) {
  .modal-sub-1__bg {
    width: 233px;
    height: 198px;
    right: -30px;
    bottom: 30px;
  }
}
.modal-sub-1__logo {
  margin: 70px 0 20px 0;
  position: relative;
  z-index: 9;
  max-width: 100%;
  height: auto;
}
@media (max-width: 990px) {
  .modal-sub-1__logo {
    margin: 0 auto 55px auto;
    width: 100px;
    height: 50px;
    object-fit: contain;
  }
}
.modal-sub-1__title {
  position: relative;
  z-index: 9;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  max-width: 290px;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .modal-sub-1__title {
    font-size: 14px;
    line-height: 17px;
    max-width: 140px;
    margin-bottom: 60px;
  }
}
.modal-sub-1__box {
  width: 100%;
  box-sizing: border-box;
}
.modal-sub-1__box input {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: none;
  appearance: none;
  background: #fff;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #000;
  font-size: 12px;
  line-height: 15px;
}
.modal-sub-1__box button {
  appearance: none;
  outline: none;
  border: none;
  position: absolute;
  right: 0;
  background: linear-gradient(180deg, #4ec7f5 0%, #5b7af4 100%);
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  cursor: pointer;
  padding: 10px 20px;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
}
.modal-sub-1__form {
  position: relative;
  z-index: 9;
  max-width: 260px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .modal-sub-1__form {
    max-width: 100%;
  }
}
.modal-sub-1__checkbox {
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}
@media (max-width: 990px) {
  .modal-sub-1__checkbox {
    margin-bottom: 15px;
  }
}
.modal-sub-1__checkbox input {
  position: absolute;
  opacity: 0;
}
.modal-sub-1__checkbox label {
  cursor: pointer;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  padding-left: 28px;
}
@media (max-width: 990px) {
  .modal-sub-1__checkbox label {
    padding-left: 25px;
  }
}
.modal-sub-1__checkbox label::after {
  content: "";
  height: 15px;
  width: 15px;
  border: 3px solid #fff;
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 1px;
}
@media (max-width: 990px) {
  .modal-sub-1__checkbox label::after {
    height: 13px;
    width: 13px;
    top: 3px;
    border: 2px solid #fff;
  }
}
.modal-sub-1__checkbox svg {
  display: none;
  height: 17px;
  width: 17px;
  position: absolute;
  z-index: 9;
  left: 1px;
  top: 2px;
}
@media (max-width: 990px) {
  .modal-sub-1__checkbox svg {
    left: 0;
  }
}
.modal-sub-1__checkbox input:checked ~ svg {
  display: block;
}
.modal-sub-1__checkbox input:checked ~ label::before {
  content: "";
}
/* HEADER */
.header-first {
  margin-bottom: 30px;
  padding: 35px 20px;
  background: #161a21;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.23);
}
@media (max-width: 990px) {
  .header-first {
    padding: 15px 20px;
    z-index: 99;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    transition: 0.3s;
  }
}
.header-first__hide {
  display: none;
}
@media (max-width: 990px) {
  .header-first__hide {
    display: block;
  }
}
.header-first__call {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-first__call svg:first-child {
  display: block;
}
.header-first__call svg:last-child {
  display: none;
}
.header-first .active svg:first-child {
  display: none;
}
.header-first .active svg:last-child {
  display: block;
}
.header-first__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-first__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.header-first__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #dedede;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}
.header-first__link svg {
  margin-bottom: 10px;
}
.header-first__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 70px;
}
@media (max-width: 1280px) {
  .header-first__logo {
    padding-left: 0;
  }
}
.header-first__logo img {
  max-width: 120px;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  object-fit: contain;
}
@media (max-width: 990px) {
  .header-first__nav {
    position: fixed;
    left: 0;
    top: 61.2px;
    opacity: 1;
    width: 100vw;
    height: calc(100vh - 61.2px);
    box-sizing: border-box;
    background: linear-gradient(
      180deg,
      rgb(25, 30, 39) 0%,
      rgb(33, 38, 49) 100%
    );
    box-shadow:
      8px 0 14px rgba(0, 0, 0, 0.19),
      inset 0 1px 4px #fff;
    backdrop-filter: blur(8px);
    padding: 15px;
    display: none;
  }
}
@media (max-width: 990px) {
  .header-first__nav .header-first__sign {
    margin: 0 auto;
    max-width: 90px;
  }
}
.header-first__nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header-first__nav ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 25px;
    margin-bottom: 25px;
  }
}
.header-first__nav ul li {
  margin: 0 15px;
}
@media (max-width: 990px) {
  .header-first__nav ul li {
    margin: 0;
  }
}
.header-first__nav ul img {
  margin-right: 5px;
}
.header-first__nav ul a {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  line-height: 20px;
}
@media (max-width: 990px) {
  .header-first__nav ul a {
    text-align: left;
    font-size: 12px;
    line-height: 15px;
  }
}
.header-first__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 990px) {
  .header-first__btn {
    grid-gap: 10px !important;
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }
}
.header-first__sign {
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header-first__sign {
    padding: 8px 15px;
  }
}
.header-first__sign:hover {
  color: #fff;
}
.header-first__login {
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header-first__login {
    padding: 8px 15px;
  }
}
.header-first__login:hover {
  color: #fff;
}

@media (max-width: 990px) {
  main {
    margin-top: 75px;
  }
}

/* FOOTER */
.footer-first__contain {
  padding: 25px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 60px;
  align-items: center;
}
@media (max-width: 1200px) {
  .footer-first__contain {
    grid-gap: 25px;
  }
}
@media (max-width: 990px) {
  .footer-first__contain {
    grid-template-columns: 1fr;
  }
}
.footer-first__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 990px) {
  .footer-first__left {
    flex-direction: column;
    align-items: center;
  }
}
.footer-first__right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
  max-width: 850px;
}
@media (max-width: 1200px) {
  .footer-first__right {
    max-width: 100%;
    box-sizing: border-box;
    grid-template-columns: 1fr 1fr 250px;
  }
}
@media (max-width: 990px) {
  .footer-first__right {
    max-width: 310px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
}
.footer-first__img {
  max-width: 100%;
  height: 50px;
  margin-bottom: 20px;
  width: auto;
}
@media (max-width: 990px) {
  .footer-first__img {
    margin: 0 auto 15px auto;
  }
}
@media (max-width: 990px) {
  .footer-first__nav .footer-first__text {
    display: none;
  }
}
.footer-first__nav p {
  color: #fff;
}
.footer-first__nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
@media (max-width: 990px) {
  .footer-first__nav ul {
    display: none;
    margin-top: 15px;
  }
}
@media (max-width: 990px) {
  .footer-first__nav li {
    margin-bottom: 15px;
  }
}
@media (max-width: 990px) {
  .footer-first__nav li:last-child {
    margin-bottom: 0;
  }
}
.footer-first__nav a {
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  display: block;
}
@media (max-width: 990px) {
  .footer-first__nav a {
    text-align: center;
  }
}
@media (max-width: 990px) {
  .footer-first__nav:last-child {
    grid-row-start: 1;
  }
}
.footer-first__title {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 23px;
  color: #fff;
}
@media (max-width: 990px) {
  .footer-first__title {
    text-align: center;
    margin-bottom: 0;
  }
}
.footer-first__text {
  font-size: 14px;
  line-height: 24px;
  color: #dddddd;
  text-align: left;
}
@media (max-width: 990px) {
  .footer-first__text {
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 15px;
  }
}
.footer-first__copy {
  text-align: left;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  width: 100%;
  padding: 25px 0;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .footer-first__copy {
    text-align: center;
    padding: 20px 0;
    margin-top: 10px;
  }
}
.footer-first__form {
  position: relative;
  margin-top: 15px;
  max-width: 220px;
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .footer-first__form {
    max-width: 100%;
  }
}
.footer-first__form input {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: none;
  appearance: none;
  background: #fff;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #000;
}
.footer-first__form button {
  position: absolute;
  box-shadow:
    4px 8px 10px rgba(0, 0, 0, 0.29),
    inset 0 2px 4px rgba(255, 255, 255, 0.34);
  outline: none;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  color: #fff;
  font-size: 12px;
  right: -1px;
  line-height: 15px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .footer-first__form button {
    right: -2px;
  }
}
