/* === STYLE === */

@import url("https://fonts.googleapis.com/css?family=Poppins:regular,500,700&display=swap");

html {
  font-size: 100%;
}

/* COLORS */

/* === GLOBAL STYLES === */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Poppins", helvetica, sans-serif;
  line-height: 1.5;
  color: #fff;
  background: #292526;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
}

a {
  font-family: "Poppins", helvetica, sans-serif;
  color: inherit;
  text-decoration: none;
}

ol > li {
  counter-increment: step;
}

.content {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
}

/* === page === */

.page__content {
  padding-top: 20px;
  padding-bottom: 20px;
}

.page__content > *:not(:last-child) {
  margin-bottom: 20px;
}

/* === BURGER === */

#burger {
  display: none;
}

/* === BUTTONS === */

.button {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 500;
  line-height: 1;
  color: #322e2f;
  text-align: center;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, from(#fec380), to(#ffa36e));
  background: -webkit-linear-gradient(top, #fec380 0%, #ffa36e 100%);
  background: -moz-linear-gradient(top, #fec380 0%, #ffa36e 100%);
  background: -o-linear-gradient(top, #fec380 0%, #ffa36e 100%);
  background: linear-gradient(180deg, #fec380 0%, #ffa36e 100%);
  border: 1px solid #feb276;
}

.button:active {
  position: relative;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}

.button.transparent {
  background: transparent;
  border: 1px solid #fdcd0b;
  color: #fdcd0b;
}

.button._fw {
  width: 100%;
}

/* === TITLE === */

h1,
h2,
h3,
h4,
h5,
h6 .title {
  font-weight: 700;
  line-height: 1.2;
  color: #FFAA00;
  text-transform: uppercase;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

h1:before,
h1:after,
h2:before,
h2:after,
h3:before,
h3:after,
h4:before,
h4:after,
h5:before,
h5:after,
h6 .title:before,
h6 .title:after {
  vertical-align: middle;
  display: inline-block;
  content: "";
  background: url("../images/title-01.svg") center center/cover no-repeat;
  width: 112px;
  height: 22px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 112px;
  -moz-box-flex: 0;
  flex: 0 0 112px;
}

h1::before,
h2::before,
h3::before,
h4::before,
h5::before,
h6 .title::before {
  left: 0;
  margin-right: 16px;
}

h1::after,
h2::after,
h3::after,
h4::after,
h5::after,
h6 .title::after {
  margin-left: 16px;
  right: 0;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

h1,
.title.xxl {
  font-size: 48px;
}

h2,
.title.xl {
  font-size: 40px;
}

h3,
.title.l {
  font-size: 34px;
}

h4,
.title.m {
  font-size: 24px;
}

/* LOGO */

.logo {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  display: inline-block;
  overflow: hidden;
  max-width: 102px;
  max-height: 40px;
}

.logo img {
  -o-object-fit: cover;
  object-fit: cover;
}

/* BACKGROUND */

.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #666666;
}

.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* SECTION */

.section {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  padding: 32px 20px;
  overflow: hidden;
  background: #2a2829;
}

/* IMAGE */

.image {
  overflow: hidden;
  pointer-events: none;
}

.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* BREADCRUMBS */

.breadcrumbs {
  font-size: 16px;
}

.breadcrumbs ol {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.breadcrumbs li:not(:last-child) {
  position: relative;
  padding-right: 2px;
}

.breadcrumbs li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 15px;
  content: "";
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.breadcrumbs a {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 8px 12px;
  opacity: 0.84;
}

/* SMALL-TEXT */

.small-text {
  font-size: 10px;
}

/* TABLE */

table,
.table {
  width: 100%;
}

table tr,
.table tr {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: rgba(235, 182, 255, 0.1);
}

table tr > *:first-child,
.table tr > *:first-child {
  -webkit-border-radius: 100px 0 0 100px;
  -moz-border-radius: 100px 0 0 100px;
  border-radius: 100px 0 0 100px;
}

table tr > *:last-child,
.table tr > *:last-child {
  -webkit-border-radius: 0 100px 100px 0;
  -moz-border-radius: 0 100px 100px 0;
  border-radius: 0 100px 100px 0;
}

table th,
.table th {
  font-weight: 700;
  padding: 8px 16px 8px 16px;
}

table th > div:first-of-type,
.table th > div:first-of-type {
  display: inline-block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32px;
  -moz-box-flex: 0;
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
  margin-right: 28px;
  overflow: hidden;
  vertical-align: middle;
}

table th > div:first-of-type img,
.table th > div:first-of-type img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

table td,
.table td {
  font-size: 14px;
  vertical-align: middle;
  padding: 8px 8px 8px 8px;
}

/* HEADER */

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #292526;
  color: #fff;
}

.header__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__logo:not(:last-child) {
  margin-right: 20px;
}

.header__menu {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
}

.header__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.header__buttons > *:not(:first-child) {
  margin-left: 21px;
}

.header-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
}

.header-menu__list a {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding: 10px 52px 10px 24px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.header-menu__list a:before {
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: url("../images/header-icon-01.svg") center center/cover no-repeat;
}

.header-menu__sub {
  position: relative;
}

.header-menu-sub__button {
  position: relative;
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-menu-sub__button::before,
.header-menu-sub__button::after,
.header-menu-sub__button span {
  display: inline-block;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin: 4px;
}

.header-menu-sub__button::before,
.header-menu-sub__button::after {
  content: "";
}

.header-menu-sub__button.hidden {
  display: none;
}

.header-menu-sub__button.hidden ~ div:first-of-type {
  display: none;
}

.header-menu-sub__dropdown {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #292526;
  padding: 10px;
  border: 1px solid #fdcd0b;
  z-index: 2;
  -webkit-transform: translate(-50%, 18%);
  -moz-transform: translate(-50%, 18%);
  -o-transform: translate(-50%, 18%);
  transform: translate(-50%, 18%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-menu-sub__dropdown a {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4285714286;
  text-transform: uppercase;
  opacity: 0.7;
}

.header-menu-sub__dropdown a:before {
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 5px;
  background-color: #9e2b86;
}

.header-menu-sub__dropdown a > svg {
  -webkit-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  -moz-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 18px;
  -moz-box-flex: 0;
  flex: 0 0 18px;
  margin-right: 10px;
  fill: #fff;
}

.header-menu-sub__dropdown.hidden {
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -o-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-buttons__button {
  white-space: nowrap;
}

/* COVER */

.cover {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cover__content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
}

.cover__rating {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  max-width: 236px;
  margin: 0 auto;
}

.cover__wrapper {
  position: relative;
  max-width: 630px;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.cover__wrapper > *:not(:last-child) {
  margin-bottom: 16px;
}

.cover__title {
  color: #fff;
}

.cover__title::before,
.cover__title::after {
  content: none;
}

.cover__button:not(:last-child) {
  margin-bottom: 8px;
}

.cover__image {
  position: absolute;
  right: -12.9032258065%;
  bottom: 0;
  width: 420px;
  height: 440px;
}

.cover__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cover__image.left {
  right: unset;
  left: -10.4838709677%;
}

.cover-rating__text {
  font-size: 14px;
  text-transform: uppercase;
}

.cover-rating__text > span:first-of-type {
  opacity: 0.8;
}

.cover-rating-text__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.cover-rating-text__wrap > span {
  font-weight: 500;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.cover-rating-text__wrap > span:first-of-type {
  margin-right: 10px;
}

.cover-rating-text__wrap:not(:last-child) {
  margin-bottom: 5px;
}

.cover-rating-text__image {
  display: inline-block;
  width: 144px;
  height: 24px;
  vertical-align: middle;
}

.cover-rating-text__image img {
  max-width: 100%;
  max-height: 100%;
}

/* ARTICLE */

article *:not(:last-child),
.article *:not(:last-child) {
  margin-bottom: 19px;
}

article li,
.article li {
  position: relative;
  padding-left: 24px;
  line-height: 2;
}

article li::before,
.article li::before {
  position: absolute;
  top: 0;
  left: 8px;
}

article ol li:not(:last-child),
article ul li:not(:last-child),
.article ol li:not(:last-child),
.article ul li:not(:last-child) {
  margin-bottom: 0;
}

article ul li::before,
.article ul li::before {
  top: 14px;
  width: 4px;
  height: 4px;
  content: "";
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

article ol li::before,
.article ol li::before {
  content: counter(step) ".";
}

article__box,
.article__box {
  text-align: center;
}

/* BONUS */

.bonus__section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  background: transparent;
  color: #fff;
  border: 1px solid #fdcd0b;
}

.bonus__wrapper {
  position: relative;
  text-align: center;
}

.bonus__wrapper > *:not(:last-child) {
  margin-bottom: 10px;
}

.bonus__title {
  color: #fff;
}

.bonus__title:before,
.bonus__title:after {
  content: none;
}

.bonus__text {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}

.bonus__image {
  max-height: 376px;
  max-width: 312px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 312px;
  -moz-box-flex: 0;
  flex: 0 1 312px;
  overflow: hidden;
  margin-top: -20px;
  margin-bottom: -20px;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}

.bonus__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* FACTS */

.facts__section {
  position: relative;
}

.facts__title {
  position: relative;
}

.facts__title:not(:last-child) {
  margin-bottom: 18px;
}

/* FAQ */

.faq__title:not(:last-child) {
  margin-bottom: 20px;
}

.faq__list li:not(:last-child) {
  margin-bottom: 20px;
}

.faq__list li > button {
  text-align: center;
  text-decoration: none;
  text-transform: none;
  vertical-align: top;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  width: 100%;
  padding: 28px 76px 28px 20px;
  overflow: hidden;
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
  text-align: left;
  text-transform: uppercase;
  white-space: unset;
  background-color: #322e2f;
}

.faq__list li > button span {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background-color: #938879;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.faq__list li > button span::before,
.faq__list li > button span::after {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 49%;
  width: 10px;
  height: 2px;
  content: "";
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  -o-transition: -o-transform 0.5s ease 0s;
  -moz-transition: transform 0.5s ease 0s, -moz-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, -moz-transform 0.5s ease 0s, -o-transform 0.5s ease 0s;
}

.faq__list li > button span::before {
  -webkit-transform: translate(-75%, -50%) rotate(40deg);
  -moz-transform: translate(-75%, -50%) rotate(40deg);
  -o-transform: translate(-75%, -50%) rotate(40deg);
  transform: translate(-75%, -50%) rotate(40deg);
}

.faq__list li > button span::after {
  -webkit-transform: translate(0, -50%) rotate(-40deg);
  -moz-transform: translate(0, -50%) rotate(-40deg);
  -o-transform: translate(0, -50%) rotate(-40deg);
  transform: translate(0, -50%) rotate(-40deg);
}

.faq__list li > button.spoller-active {
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}

.faq__list li > button.spoller-active span::before {
  -webkit-transform: translateX(-75%) rotate(-40deg);
  -moz-transform: translateX(-75%) rotate(-40deg);
  -o-transform: translateX(-75%) rotate(-40deg);
  transform: translateX(-75%) rotate(-40deg);
}

.faq__list li > button.spoller-active span::after {
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}

.faq__list li > div {
  position: relative;
  padding: 17px 20px;
  background-color: #322e2f;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

.faq__list li > div:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: -webkit-calc(100% - 40px);
  width: -moz-calc(100% - 40px);
  width: calc(100% - 40px);
  content: "";
  height: 1px;
  background-color: #fff;
}

/* BONUS-CARDS */

.bonus-cards__section > *:not(:last-child) {
  margin-bottom: 20px;
}

.bonus-cards-list__item {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 32.2580645161%;
  -moz-box-flex: 0;
  flex: 0 1 32.2580645161%;
  background-color: #322e2f;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topright: 0;
  border-top-right-radius: 0;
}

/* BONUS-CARD */

.bonus-cards-list-item__image {
  position: relative;
  padding-bottom: 65.25%;
}

.bonus-cards-list-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bonus-cards-list-item__article {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #fdcd0b;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
}

.bonus-cards-list-item__article h1,
.bonus-cards-list-item__article h2,
.bonus-cards-list-item__article h3,
.bonus-cards-list-item__article h4,
.bonus-cards-list-item__article h5,
.bonus-cards-list-item__article h6 {
  text-align: center;
  padding-bottom: 10px;
  line-height: 1.39;
  border-bottom: 1px solid #fdcd0b;
}

.bonus-cards-list-item__article h1:before,
.bonus-cards-list-item__article h1::after,
.bonus-cards-list-item__article h2:before,
.bonus-cards-list-item__article h2::after,
.bonus-cards-list-item__article h3:before,
.bonus-cards-list-item__article h3::after,
.bonus-cards-list-item__article h4:before,
.bonus-cards-list-item__article h4::after,
.bonus-cards-list-item__article h5:before,
.bonus-cards-list-item__article h5::after,
.bonus-cards-list-item__article h6:before,
.bonus-cards-list-item__article h6::after {
  content: none;
}

.bonus-cards-list-item__article .button {
  width: 100%;
}

/* GAMES */

.games > *:not(:last-child) {
  margin-bottom: 20px;
}

.games__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  margin-top: -20px;
}

.games-list__item {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 32.2580645161%;
  -moz-box-flex: 0;
  flex: 0 1 32.2580645161%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding: 20px;
  margin-top: 20px;
  overflow: hidden;
}

.games-list__item:hover .games-list-item__wrapper {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.games-list-item__image {
  padding-bottom: 100%;
}

.games-list-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.games-list-item__wrapper {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow-y: auto;
  text-align: center;
  pointer-events: none;
  visibility: hidden;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.games-list-item__wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

.games-list-item__button {
  min-width: 154px;
  margin: auto 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff4303), to(#fd6a35));
  background: -webkit-linear-gradient(top, #ff4303 0%, #fd6a35 100%);
  background: -moz-linear-gradient(top, #ff4303 0%, #fd6a35 100%);
  background: -o-linear-gradient(top, #ff4303 0%, #fd6a35 100%);
  background: linear-gradient(180deg, #ff4303 0%, #fd6a35 100%);
  -webkit-box-shadow: 0px 4px 20px #ff561b;
  -moz-box-shadow: 0px 4px 20px #ff561b;
  box-shadow: 0px 4px 20px #ff561b;
}

/* DOWNLOAD */

.download__section {
  position: relative;
  background-color: transparent;
  border: 1px solid #fdcd0b;
}

.download__image {
  width: 223px;
  height: 166px;
  margin-top: -20px;
  margin-bottom: -20px;
}

.download__logo {
  max-width: 297px;
  max-height: 117px;
  width: 100%;
  overflow: hidden;
}

.download__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* === FOOTER === */

.footer__section {
  background-color: transparent;
}

.footer__section > *:not(:last-child) {
  margin-bottom: 20px;
}

.footer__top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: 0 -20px;
  padding: 0 0 20px;
}

.footer__top:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(208, 165, 110, 0)), color-stop(50%, #d0a56e), to(rgba(208, 165, 110, 0)));
  background: -webkit-linear-gradient(left, rgba(208, 165, 110, 0) 0%, #d0a56e 50%, rgba(208, 165, 110, 0) 100%);
  background: -moz-linear-gradient(left, rgba(208, 165, 110, 0) 0%, #d0a56e 50%, rgba(208, 165, 110, 0) 100%);
  background: -o-linear-gradient(left, rgba(208, 165, 110, 0) 0%, #d0a56e 50%, rgba(208, 165, 110, 0) 100%);
  background: linear-gradient(90deg, rgba(208, 165, 110, 0) 0%, #d0a56e 50%, rgba(208, 165, 110, 0) 100%);
}

.footer__top li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
  max-height: 50px;
  padding: 10px 30px;
}

.footer__top li img {
  display: block;
}

.footer__middle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__bottom li {
  max-width: 240px;
  max-height: 60px;
}

.footer__bottom li:not(:last-child) {
  margin-right: 40px;
}

.footer__copyright {
  font-size: 14px;
  text-align: center;
}

.footer-middle__logo {
  width: 96px;
  height: 50px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 96px;
  -moz-box-flex: 0;
  flex: 0 0 96px;
}

.footer-middle__article {
  -webkit-box-flex: 89.5833333333%;
  -webkit-flex: 89.5833333333%;
  -moz-box-flex: 89.5833333333%;
  flex: 89.5833333333%;
}

.footer-middle__years {
  display: inline-block;
  font-size: 26px;
  padding: 5px;
  width: 85px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 85px;
  -moz-box-flex: 0;
  flex: 0 0 85px;
  height: 85px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  background-color: #fe5151;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumbs__item.breadcrumbs__page span{
	margin-left: 15px;
}