* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  color: #fff;
}
body.overflow {
  overflow: hidden;
}
a,
button,
input,
li,
ol,
textarea,
ul {
  border: none;
  color: inherit;
  background-color: transparent;
  list-style-type: none;
  text-decoration: none;
  outline: none;
  font-family: inherit;
}
button {
  display: inline-block;
  cursor: pointer;
}
img {
  display: inline-block;
  width: 100%;
  height: auto;
}
.container {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 10px;
}
body {
  background: #111420;
}
.menu-list {
  display: flex;
  align-items: center;
}
.menu-list__item {
  margin-right: 40px;
}
.menu-list__item:last-child {
  margin-right: 0;
}
.menu-list__link {
  font-family: "Inter";
  font-weight: 700;
  font-size: 15px;
  line-height: 2;
  color: #000;
  transition: color 250ms ease-in-out;
  cursor: pointer;
}
.menu-list__link:hover {
  color: #942539;
  /* text-shadow: 0 0 1px red; */
}
.menu-list__btn {
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  transition: background 250ms ease-in-out;
}
.menu-list__btn:hover {
  color: inherit;
  background: #942539;
}
.logo {
  max-width: 120px;
}
.logo__link {
  width: 100%;
  color: #000;
  font-size: 24px;
  font-weight: bold;
}
.dropdown-menu {
  position: relative;
  display: inline-block;
}
.dropdown-menu--active .dropdown-menu__body {
  pointer-events: all;
  opacity: 1;
}
.dropdown-menu__head {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 24px;
  cursor: pointer;
  transition: color 250ms ease-in-out;
}
.dropdown-menu__head:hover {
  color: #b6b5b5;
}
.dropdown-menu__head:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/icons/arrow-down--gray.svg") no-repeat;
  background-size: contain;
  background-position: center center;
}
.dropdown-menu__head-text {
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.dropdown-menu__body {
  display: block;
  width: 100%;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease-in-out;
}
.dropdown-menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.dropdown-menu__list-item {
  width: 100%;
}
.dropdown-menu__list-button {
  display: inline-block;
  width: 100%;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-align: left;
  transition: color 250ms ease-in-out;
}
.dropdown-menu__list-button:hover {
  color: #b6b5b5;
}
.burger-btn {
  cursor: pointer;
  display: block;
}
.burger-btn--active .burger-btn__stick {
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger-btn--active .burger-btn__stick:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.burger-btn--active .burger-btn__stick:before {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.burger-btn__inner {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
}
.burger-btn__stick {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 250ms ease-in-out;
}
.burger-btn__stick:after {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 12px));
  transition: transform 250ms ease-in-out;
}
.burger-btn__stick:before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 12px));
  transition: transform 250ms ease-in-out;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 250ms ease-in-out;
  background: linear-gradient(to right, #a8a8a8, #fdfdfd);
}
.header--sticky {
  background: rgba(20, 24, 37, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.header__logo {
  margin-right: 40px;
}
.header__nav {
  width: auto;
}
.header__nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__dropdown-menu {
  margin-right: 16px;
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 8.5px;
  background: #2c35ff;
  box-shadow: 0px 4px 16px rgba(44, 53, 255, 0.44);
  border-radius: 12px;
  transition: box-shadow 250ms ease-in-out, background 250ms ease-in-out;
}
.header__btn:hover {
  box-shadow: 0px 4px 16px rgba(44, 53, 255, 0);
  background: #1d26d8;
}
.header__btn:active {
  transition: box-shadow 70ms ease-in-out, background 70ms ease-in-out;
  background: #161d97;
}
.header__burger-btn {
  display: none;
}
.header__btn-icon {
  max-width: 26px;
  margin-right: 10px;
}
.header__btn-text {
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.main-screen {
  background: url("../images/joker.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
}
.main-screen__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 123px 0 50px 0;
  height: 100vh;
}
.main-screen__title-img {
  max-width: 1023px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.main-screen__main-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 513px;
  z-index: 1;
}

@media (max-width: 1199px) {
  
}
@media (max-width: 1023px) {
  .menu-list {
      flex-direction: column;
  }
  .menu-list__item {
      margin-right: 0;
      margin-bottom: 20px;
  }
  .menu-list__item:last-child {
      margin-bottom: 0;
  }
  .header__inner {
      padding: 10px 0;
  }
  .header__logo {
      position: relative;
      z-index: 101;
      max-width: 36px;
  }
  .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      transition: opacity 250ms ease-in-out;
  }
  .header__nav--active {
      opacity: 1;
      pointer-events: all;
  }
  .header__nav-inner {
      flex-direction: column;
      height: 100%;
      justify-content: flex-start;
      padding: 80px 20px;
      background: #f2f2f2;
  }
  .header__burger-btn {
      display: block;
      position: relative;
      z-index: 101;
  }
  .header__menu-list {
      margin-bottom: 40px;
  }
  .header__btns {
      flex-direction: column;
  }
  .header__dropdown-menu {
      margin-right: 0;
      order: 3;
  }
  .header__sm-info {
      margin-right: 0;
      order: 1;
      margin-bottom: 10px;
  }
  .header__btn {
      order: 2;
      margin-bottom: 40px;
  }
  .main-screen__main-img {
      max-width: 300px;
  }
}
@media (max-width: 767px) {
  .container {
      padding: 0 15px;
  }
  .main-screen__main-img {
      max-width: 100%;
  }
}
@media (max-width: 600px) {

}
@media (max-width: 525px) {

}
@media (max-width: 425px) {

}
