* {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

body {
  font-family: HKGrotesk, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.wrapper {
  position: relative;
  background-color: #010317;
  overflow-x: hidden;
}

.container {
  position: relative;
  max-width: 1110px;
  width: 100%;
  padding: 0 15px;
  margin: auto;
  z-index: 1;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 33px;
  z-index: 100;
}

.header.is-open {
  height: 100vh;
  background-color: #010217;
}

.header.is-open .btn-menu .line {
  opacity: 0;
}

.header.is-open .btn-menu .line:first-child {
  opacity: 1;
  transform: translateY(0) rotate(45deg);
}

.header.is-open .btn-menu .line:last-child {
  opacity: 1;
  transform: translateY(0) rotate(-45deg);
}

.header.is-open .header__inner {
  display: -webkit-flex;
  display: flex;
}

.header__content {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.header__inner {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.btn-menu {
  position: relative;
  display: none;
  width: 18px;
  height: 18px;
}

.btn-menu .line {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform .3s ease-in-out;
}

.btn-menu .line:first-child {
  transform: translateY(-6px);
  transform-origin: center;
}

.btn-menu .line:last-child {
  transform: translateY(6px);
}

.header__top img {
  display: block;
  width: 165px;
  height: 25px;
}

.header__menu {
  margin-right: 30px;
}

.menu {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  list-style: none;
}

.menu__item {
  margin-right: 40px;
}

.menu__item:last-child {
  margin-right: 0;
}

.header__socials a {
  display: block;
  width: 40px;
  height: 40px;
  background: #4430b2 url('../i/icon/telegram.svg') no-repeat center;
  border-radius: 50%;
}

.hover {
  transition: opacity .3s ease-in-out;
}

.hover:hover {
  opacity: .8;
}

.header__auth {
  margin-left: auto;
  margin-right: 20px;
  font-weight: bold;
}

.link-signup {
  display: none;
}

.link-login {
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 40px;
  color: #bfce25;
  border: 1px solid #bfce25;
  border-radius: 20px;
}

.header__logo {
  display: none;
}

.header__logo img {
  width: 175px;
  height: 44px;
}

.lang {
  font-weight: bold;
  text-transform: uppercase;
}

.lang:hover .dropdown {
  display: block;
}

.lang li,
.lang .current {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 50%;
  color: #fff;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.lang .current {
  background-color: #bfce25;
  border-color: #bfce25;
}

.lang li {
  margin-bottom: 10px;
}

.lang li:hover,
.lang li:active {
  background-color: #bfce25;
  border-color: #bfce25;
}

.lang li:last-child {
  margin-bottom: 0;
}

.lang li.selected {
  display: none;
}

.lang .dropdown {
  display: none;
  position: absolute;
  padding-top: 10px;
}

section {
  width: 100vw;
  padding-top: 54px;
  color: #ffffff;
}

.index {
  /* height: 100vh; */
  padding-bottom: 110px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.index__button {
  padding-top: 80px;
}

.btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 36px;
  background-color: #4430b2;
  border-radius: 32px;
  font-family: 'Geometria', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .3s ease-in-out;
}

.btn:hover {
  opacity: .8;
}

.btn-advertiser,
.btn-partner {
  height: 88px;
  border-radius: 44px;
  box-shadow: 0 0 70px 0 #4430b2;
}

.btn-advertiser {
  margin-right: 16px;
  background-color: #fff;
  color: #4430b2;
}

h1,
h2 {
  text-transform: uppercase;
  font-family: 'Druk', sans-serif;
  font-size: 64px;
  font-weight: bold;
  line-height: 1.06;
  letter-spacing: normal;
}

h2 {
  margin-bottom: 50px;
}

.index h1 span {
  display: block;
}

.index__logo {
  max-width: 491px;
  margin-top: -100px;
  transform: translate(-98px, 33%);
}

.index__text {
  max-width: 490px;
  padding-top: 25px;
  font-weight: 500;
  line-height: 1.5;
}

.index__content {
  z-index: 1;
}

.index__img {
  position: absolute;
  right: 0;
  top: 50%;
  width: 80%;
  transform: translate(25%, -50%);
}

.index__img img {
  max-width: 100%;
}

.about {
  padding-bottom: 98px;
  z-index: 10;
}

.about__image {
  position: absolute;
  left: 0;
  padding-right: 25%;
  transform: translateX(-25%);
}

.about__inner {
  padding-left: 44%;
}

.about-txt--bold {
  margin-bottom: 20px;
  font-weight: bold;
}

.about__content {
  margin-bottom: 90px;
}

.about__text {
  font-family: 'Geometria';
  font-size: 26px;
  line-height: 1.65;
}

.about__text p {
  margin-bottom: 40px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__text b {
  color: #bfce25;
}

.about__category {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 750px;
  margin: auto;
  margin: -12px -10px;
}

.category {
  padding-left: 30px;
  padding-right: 30px;
  margin: 12px 10px;
  font-weight: 300;
  text-transform: none;
}

.category img {
  margin-right: 15px;
}

.mail {
  text-align: center;
  z-index: 100;
}

.mail a {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-family: 'Druk';
  font-weight: bold;
  font-size: 34px;
}

.mail a:after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  background: url('../i/underline.svg') no-repeat center;
  -webkit-background-size: contain;
  background-size: contain;
  content: '';
}

.footer {
  padding-top: 80px;
  padding-bottom: 70px;
  color: #fff;
}

.footer__top {
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
  margin-top: -180px;
}

.footer__logo {
  max-width: 491px;
  transform: translate(-98px, 33%);
}

.footer__menu {
  flex-grow: 1;
  padding-bottom: 20px;
  /*margin-left: -145px;*/
}

.footer__menu .menu {
  width: 100%;
  justify-content: space-between;
}

.footer__menu .menu__item {
  margin-right: 10px;
  font-family: 'Helvetica';
}

.footer__menu .menu__item:last-child {
  margin-right: 0;
}

.partners {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}

.copyright {
  color: rgba(255, 255, 255, .43);
  font-family: 'Helvetica';
  text-align: center;
}

.sources {
  margin-bottom: 35px;
  text-align: center;
}

.sources__list {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: -10px 0;
}

.slick-list {
  padding: 10px;
}

.sources__list:after {
  position: absolute;
  right: -20px;
  bottom: -100px;
  top: -100px;
  width: 200px;
  background: url('../i/blur.png') no-repeat center;
  -webkit-background-size: contain;
  background-size: contain;
  content: '';
}

.sources__carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.sources__carousel-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.sources__carousel-nav__next {
  right: 0;
  display: block;
  width: 60px;
  height: 16px;
  background: url('../i/arrow.svg') no-repeat center;
}

.sources__item {
  display: -webkit-flex !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 78px;
  padding: 0 35px;
  margin: 10px 20px;
  background-color: #fff;
  border-radius: 39px;
}

.sources__item:after {
  position: absolute;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
  background: url('../i/button-hover.svg') no-repeat center;
  -webkit-background-size: contain;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
  content: '';
}

.sources__item:hover:after {
  opacity: 1;
  visibility: visible;
}

.marquee {
  margin-bottom: 40px;
  padding-top: 0;
  font-family: 'Geometria';
  font-weight: bold;
  font-size: 29px;
  text-transform: uppercase;
}

.marquee:after {
  display: block;
  content: '';
  clear: both;
}

.marquee span:nth-child(2n) {
  color: #bfce25;
}

@media (max-width: 1165px) {
  .header__inner {
    padding-left: 24px;
  }

  .menu__item {
    margin-right: 20px;
  }
}

@media (max-width: 1023px) {
  .container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .btn-menu {
    display: block;
    padding-bottom: 30px;
  }

  .header {
    padding-top: 0;
    z-index: 10;
  }

  .header.is-open {
    position: fixed;
  }

  .header .container {
    height: 100%;
  }

  .header__top {
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
  }

  .header__content {
    flex-direction: column;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 35px;
  }

  .header__inner {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }

  .header__lang {
    margin-top: auto;
  }

  .lang {
    display: -webkit-flex;
    display: flex;
    font-weight: 300;
  }

  .lang li {
    margin-bottom: 0;
    margin-left: 10px;
  }

  .lang .dropdown {
    position: relative;
    display: block;
    padding-top: 0;
  }

  .header__logo {
    display: block;
  }

  .header__menu {
    margin-right: 0;
    padding-top: 65px;
  }

  .header__menu .menu {
    flex-direction: column;
  }

  .header__menu .menu__item {
    margin-right: 0;
    margin-bottom: 20px;
    padding: 0 30px;
    text-align: center;
  }

  .header__menu .menu__item:last-child {
    display: none;
  }

  .header__menu .menu__link {
    font-size: 21px;
    text-transform: uppercase;
  }

  .header__socials {
    margin-bottom: 25px;
  }

  .header__auth {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .header__auth a {
    font-size: 21px;
    text-transform: uppercase;
  }

  .link-login {
    width: auto;
    height: auto;
    margin-left: 0;
    border: none;
    margin-bottom: 10px;
  }

  .link-signup {
    display: block;
  }

  .index__button {
    padding-top: 50px;
  }

  .footer__menu .menu__item {
    text-align: center;
  }

  .partners {
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner {
    padding: 10px;
  }

  .about__image {
    padding-right: 0;
    transform: none;
  }

  .about__inner {
    padding-left: 0;
  }
}

@media (max-width: 979px) {
  .footer__logo {
    max-width: 400px;
  }

  .footer__menu {
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  section {
    padding-top: 35px;
  }

  .container {
    padding-left: 27px;
    padding-right: 27px;
  }

  .index {
    height: auto;
    padding-bottom: 30px;
  }

  h1, h2 {
    font-size: 41px;
  }

  h2 {
    margin-bottom: 30px;
  }

  .index h1 img {
    display: none;
  }

  .index h1 span {
    display: block;
  }

  .index__img {
    position: relative;
    right: auto;
    left: 50%;
    top: auto;
    width: 400px;
    transform: translateX(-50%);
  }

  .index__text {
    padding-top: 15px;
  }

  .index__button {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
  }

  .btn-advertiser,
  .btn-partner {
    max-width: 400px;
    width: 100%;
    height: 65px;
    border-radius: 33px;
  }

  .btn-advertiser {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .about {
    padding-bottom: 40px;
  }

  .about__content {
    margin-bottom: 40px;
  }

  .about__category {
    justify-content: center;
  }

  .category:last-child {
    margin-bottom: 0;
  }

  .marquee {
    margin-bottom: 0;
    padding: 20px 0;
  }

  .mail {
    margin-left: -10px;
    margin-right: -10px;
  }

  .mail a {
    font-size: 16px;
  }

  .footer {
    padding: 60px 0;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    margin-top: -100px;
  }

  .footer__logo {
    max-width: 490px;
    transform: none
  }

  .footer__menu {
    padding-bottom: 0;
    margin-left: 0;
    margin-top: -60px;
  }

  .footer__menu .menu {
    flex-direction: column;
  }

  .footer__menu .menu__item {
    margin-bottom: 5px;
    margin-right: 0;
  }

  .partners {
    flex-direction: column;
  }

  .partner {
    margin-bottom: 25px;
    padding: 0;
  }

  .partner:last-child {
    margin-bottom: 0;
  }

  .copyright span {
    display: block;
  }
}

@media (max-width: 459px) {
  .footer__top {
    margin-top: -80px;
  }
  .footer__menu {
    margin-top: -20px;
  }
}
