* {
  padding: 0;
  margin: 0;
  border: 0
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

:active,
:focus {
  outline: 0
}

a:active,
a:focus {
  outline: 0
}

aside,
footer,
header,
nav {
  display: block
}

body,
html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
textarea {
  font-family: inherit
}

input::-ms-clear {
  display: none
}

button {
  cursor: pointer
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

a,
a:visited {
  text-decoration: none
}

a:hover {
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit
}

picture {
  display: block;
  width: 100%;
  height: 100%
}

.container {
  max-width: 1210px;
  padding: 0 20px;
  margin: 0 auto
}

@media (max-width:991px) {
  .container {
    padding: 0 15px
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 10px
  }
}

body {
  background-color: #9FDEFF
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100%;
  overflow: hidden
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.header {
  padding: 15px 0;
  background: #9FDEFF;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media (max-width:991px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #9FDEFF;
    z-index: 100;
    padding: calc(15px + 15 * ((100vw - 320px)/ 1600));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out
  }
}

.header__exit-menu {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent
}

@media (max-width:991px) {
  .header__exit-menu {
    display: block;
    top: 25px;
  }
}

.header__exit-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.header__exit-menu::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.header__logo {
  display: block;
  color: #82B22F;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 51px; 
}

@media (max-width:600px) {
  .header__logo {
    font-size: 24px;
    height: 52px
  }
}

.header__logo_menu {
  display: none;
  margin-left: auto;
  margin-bottom: 120px
}

@media (max-width:991px) {
  .header__logo_menu {
    display: block
  }
}

.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 54px
}

@media (max-width:991px) {
  .nav__list {
    row-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.nav__link {
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  color: #222;
  -webkit-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out
}

@media (max-width:991px) {
  .nav__link {
    font-size: 24px
  }
}

@media (any-hover:hover) {
  .nav__link:hover {
    color: #82B22F
  }
}

.nav__link:active {
  color: #82B22F;
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 52px;
  height: 25px;
  background-color: transparent
}

@media (max-width:991px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

@media (max-width:600px) {
  .burger {
    width: 42px
  }
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin-bottom: 5px;
  border-radius: 10px
}

.burger span:first-child {
  margin-bottom: 5px
}

.burger span:last-child {
  margin-bottom: 0
}

.menu-active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible
}

.play {
  background-image: url(../images/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .play {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover
} */


.play__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0 150px 0;
  min-height: 994px
}

@media (max-width:1400px) {
  .play__content {
    min-height: 794px
  }
}

@media (max-width:991px) {
  .play__content {
    min-height: 647px
  }
}

@media (max-width:600px) {
  .play__content {
    min-height: 608px;
    padding: 15px 0 150px 0
  }
}

.play__content h1 {
  text-align: center;
  -webkit-text-stroke-width: 3;
  -webkit-text-stroke-color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 51px;
  background: linear-gradient(90deg, #FF730E 0%, #FFC700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  max-width: 578px;
  width: 100%;
  margin: 0 auto;
  -webkit-text-stroke: 2px #FFC700;
	text-stroke: 2px #FFC700;
}

@media (max-width:600px) {
  .play__content h1  {
    font-size: 34px;
    line-height: 1;
  }
}

.play__body {
  text-align: center;
  max-width: 476px
}

@media (max-width:991px) {
  .play__body {
    max-width: 342px
  }
}

.play__span {
  display: block;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.35;
  color: #fff
}

@media (max-width:991px) {
  .play__span {
    font-size: 16px
  }
}

@media (max-width:991px) {
  .play__span:not(:last-child) {
    margin-bottom: 5px
  }
}

@media (max-width:600px) {
  .play__span:not(:last-child) {
    margin-bottom: 20px
  }
}

.play__title {
  font-weight: 700;
  font-size: 68px;
  line-height: 1.14;
  color: #fff
}

@media (max-width:991px) {
  .play__title {
    font-size: 54px
  }
}

@media (max-width:600px) {
  .play__title {
    font-size: 48px
  }
}

.play__title:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:991px) {
  .play__title:not(:last-child) {
    margin-bottom: 34px
  }
}

@media (max-width:600px) {
  .play__title:not(:last-child) {
    margin-bottom: 70px
  }
}

.play__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  margin: 0 auto;
  width: 277px;
  min-height: 59px;
  background: -o-radial-gradient(50% 50%, 50% 1102.11%, #ffb053 0, #be4d06 100%);
  background: radial-gradient(50% 1102.11% at 50% 50%, #ffb053 0, #be4d06 100%);
  border-radius: 54px;
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  text-align: center;
  color: #fff;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out
}

@media (max-width:991px) {
  .play__link {
    width: 159px;
    min-height: 38px;
    font-size: 14px
  }
}

@media (any-hover:hover) {
  .play__link:hover {
    opacity: .6
  }
}

.play__link:active {
  opacity: .2;
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s
}

.content {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: -110px
}

@media (max-width:991px) {
  .content {
    padding: 0 15px
  }
}

@media (max-width:600px) {
  .content {
    padding: 0 10px
  }
}

.content_2 {
  margin-top: 90px
}

@media (max-width:991px) {
  .content_2 {
    margin-top: 60px
  }
}

@media (max-width:600px) {
  .content_2 {
    margin-top: 40px
  }
}

.content__body {
  background-color: #122030;
  border-radius: 34px 34px 0 0;
  padding: 90px 0
}

@media (max-width:991px) {
  .content__body {
    padding: 73px 0
  }
}

@media (max-width:600px) {
  .content__body {
    padding: 31px 0
  }
}

.egy:not(:last-child) {
  margin-bottom: 100px
}

.egy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px
}

.egy__descr {
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; 
}


.egy__title {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}

@media (max-width:991px) {
  .egy__title {
    font-size: 30px
  }
}

.egy__title:not(:last-child) {
  margin-bottom: 15px
}

.egy__text {
  font-weight: 400;
  font-family: Arial;
  font-size: 20px;
  line-height: 1.38;
  color: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}


@media (max-width:991px) {
  .egy__text {
    font-size: 19px;
    line-height: 1.5;
  }
}

@media (max-width:600px) {
  .egy__text {
    font-size: 16px;
  }
}

.egy__text:not(:last-child) {
  margin-bottom: 43px

}

@media (max-width:991px) {
  /* .egy__text:not(:last-child) {
    margin-bottom: 0
  } */
}

@media (max-width:991px) {
  .egy__item {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
  }
}

@media (max-width:700px) {
  .egy__item {
    margin-top: 10px;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

.egy__image {
  border-radius: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 562px;
  flex: 0 0 562px;
  height: 437px;
  -ms-flex-item-align: end;
  align-self: flex-end
}

@media (max-width:1220px) {
  .egy__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 462px;
    flex: 0 0 462px;
    height: 360px
  }
}

@media (max-width:991px) {
  .egy__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 335px;
    flex: 0 0 335px;
    height: 274px
  }
}

@media (max-width:700px) {
  .egy__image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 315px;
    height: 258px;
    margin: 0 auto
  }
}

.egy__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center
}

.vilag:not(:last-child) {
  margin-bottom: 100px
}

.vilag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.vilag__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 355px;
  flex: 0 0 355px
}

@media (max-width:991px) {
  .vilag__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 342px;
    flex: 0 0 342px
  }
}

@media (max-width:600px) {
  .vilag__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%
  }
}

.vilag__wrapper-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 123px;
  height: 123px;
  background-color: #ca5f14;
  margin: 0 auto;
  border-radius: 50%
}

.vilag__wrapper-icon:not(:last-child) {
  margin-bottom: 15px
}

.vilag__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 77px;
  height: 77px
}

@media (max-width:991px) {
  .vilag__icon {
    width: 73px;
    height: 73px
  }
}

.vilag__icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center
}

.vilag__strong {
  display: block;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.13;
  text-align: center;
  color: #fff
}

.az:not(:last-child) {
  margin-bottom: 100px
}

.az__title {
  color: #FFF;
  text-align: center;
  font-family: Arial;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 71px !important;
}

@media (max-width:991px) {
  .az__title {
    font-size: 30px;
    margin-bottom: 41px !important;
  }
}

.az__title:not(:last-child) {
  margin-bottom: 15px
}

.az__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.az__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 355px;
  flex: 0 0 355px;
  -webkit-transition: -webkit-transform .7s ease-in-out;
  transition: -webkit-transform .7s ease-in-out;
  -o-transition: transform .7s ease-in-out;
  transition: transform .7s ease-in-out;
  transition: transform .7s ease-in-out, -webkit-transform .7s ease-in-out;
  transition: all .2s linear;
}

@media (any-hover:hover) {
  .az__item:hover {
    scale: 1.05;
  }
}

.az__item:active {
  scale: 1.05;
}

@media (max-width:991px) {
  .az__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 333px;
    flex: 0 0 333px
  }
}

@media (max-width:400px) {
  .az__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%
  }
}

.az__image {
  border-radius: 10px;
  overflow: hidden;
  height: 255px
}

@media (max-width:991px) {
  .az__image {
    height: 234px
  }
}

@media (max-width:600px) {
  .az__image {
    height: 221px
  }
}

.az__image a {
  display: block;
  width: 100%;
  height: 100%
}

.az__image a picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.footer__content {
  max-width: 1170px;
  margin: 0 auto;
  border-radius: 0 0 34px 34px;
  background-color: #122030;
  padding: 57px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width:991px) {
  .footer__content {
    padding: 53px 15px
  }
}

@media (max-width:600px) {
  .footer__content {
    padding: 71px 10px 35px 10px
  }
}


.footer img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 23px;
}


@media (max-width:600px) {
  .footer img {
    width: 70px;
    height: 70px;
  }
}

.footer span {
  display: block;
  color: #FFF;
  text-align: center;
  font-family: Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}




.slot__content {
  height: 800px
}

@media (max-width:991px) {
  .slot__content {
    height: 550px
  }
}

@media (max-width:600px) {
  .slot__content {
    height: 350px
  }
}

.slot__content iframe {
  width: 100%;
  height: 100%
}