@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  background: #130404;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
}

p {
  margin-top: 16px;
  width: 100%;
}

.title + p,
p:first-child {
  margin-top: 0;
}

ul,
ol {
  text-align: left;
  width: 100%;
}

/* Title */
h1,
h2,
h3,
h4 {
  display: block;
  font-weight: 700;
  line-height: 1.2;
  color: #fff72e;
  text-align: center;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  text-align: left;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 0;
}

h2,
.title.high {
  font-size: 32px;
  color: #fff;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(122, 20, 22, 0)), color-stop(25%, #7a5114), color-stop(50%, #7a1416), color-stop(75%, #7a5114), to(rgba(122, 20, 22, 0)));
  background: -webkit-linear-gradient(left, rgba(122, 20, 22, 0) 0%, #7a5114 25%, #7a1416 50%, #7a5114 75%, rgba(122, 20, 22, 0) 100%);
  background: -moz-linear-gradient(left, rgba(122, 20, 22, 0) 0%, #7a5114 25%, #7a1416 50%, #7a5114 75%, rgba(122, 20, 22, 0) 100%);
  background: -o-linear-gradient(left, rgba(122, 20, 22, 0) 0%, #7a5114 25%, #7a1416 50%, #7a5114 75%, rgba(122, 20, 22, 0) 100%);
  background: linear-gradient(90deg, rgba(122, 20, 22, 0) 0%, #7a5114 25%, #7a1416 50%, #7a5114 75%, rgba(122, 20, 22, 0) 100%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 6px;
}

h2 span {
  display: inline-block;
  position: relative;
  padding: 0 80px;
  width: auto;
}

h2 span:before {
  left: 0;
  background: url('../images/icon-heading-decor.svg');
}

h2 span:after {
  right: 0;
  background: url('../images/icon-heading-decor.svg');
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

h2 span:before,
h2 span:after {
  content: '';
  position: absolute;
  top: 10px;
  width: 64px;
  height: 18px;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

h3,
.title.middle {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}

h4,
.title.mini {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}

/* Article */
article,
.article {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

article > * + *,
.article > * + * {
  margin-top: 20px;
}

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

article ol > li,
.article ol > li {
  counter-increment: ol;
}

article ul > li:before,
article ol > li:before,
.article ul > li:before,
.article ol > li:before {
  display: inline-block;
  position: absolute;
  font: inherit;
  color: inherit;
  z-index: 1;
  top: 0;
  left: 8px;
}

article ul > li:before,
.article ul > li:before {
  content: '-';
}

.pages article ul > li:before,
.pages .article ul > li:before,
article.dots ul > li:before,
.dots.article ul > li:before {
  content: '•';
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
}

article p a,
.article p a {
  color: #fff72e;
}

article p a:hover,
.article p a:hover {
  text-shadow: 0 0.4px #fff72e, 0.4px 0 #fff72e;
}

.article > .image {
  background: #0b0c21;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.article > .button {
  margin-right: auto;
}

/* Button */
.button {
  background-color: #4cb63a;
  border: 1px solid #4cb63a;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 170px;
  position: relative;
  padding: 10.5px 15px;
}

.button:hover {
  background: #130404;
  border: 1px solid #fff72e;
  color: #fff72e;
}

.button img,
.button span {
  display: inline-block;
  vertical-align: middle;
}

.button img {
  margin-right: 16px;
}

.button span {
  text-align: left;
}

/* Button Inverse */
.button.inverse {
  border: 1px solid #fff72e;
  background: #130404;
  color: #fff72e;
}
.button.inverse:hover {
  background-color: #4cb63a;
  border: 1px solid #4cb63a;
  color: #fff;
}

/* Special */
.image img,
.background img {
  display: block;
  position: relative;
  margin: auto;
}

.background {
  display: block !important;
  position: absolute !important;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

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

.js-expand-content {
  display: none;
  overflow: hidden;
}

.js-expand-content.expanded {
  height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: rgba(255, 255, 255, 1);
  line-height: 1;
}

use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* Content */
.content,
.cover {
  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-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.content {
  max-width: 1280px;
  margin-top: 20px;
  padding: 20px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: #2d2121;
  border: 2px dashed #483e3e;
}

.cover {
  padding-left: 30px;
  padding-right: 30px;
}

.content > *,
.cover > * {
  display: block;
  position: relative;
}

.main__buttons {
  display: none;
}

/* Header */
.header {
  background: #130404;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 90px;
  overflow: visible;
}

.header:after {
  content: '';
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 247, 46, 0)), color-stop(50%, rgba(255, 247, 46, 1)), color-stop(50%, rgba(255, 247, 46, 1)), to(rgba(255, 247, 46, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 247, 46, 0) 0%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 247, 46, 0) 0%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 247, 46, 0) 0%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 0) 100%);
  background: linear-gradient(to right, rgba(255, 247, 46, 0) 0%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 1) 50%, rgba(255, 247, 46, 0) 100%);
  height: 2px;
  position: absolute;
  left: 290px;
  right: 30px;
  bottom: -1px;
  z-index: 1;
}

.logo {
  display: inline-block;
  margin-left: 55px;
}

.logo img {
  display: block;
}

.header__logo img {
  max-width: 123px;
}

.logo[href]:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.menu-button,
.header__menu .header__button {
  display: none;
}

.header__menu {
  margin: 0 auto 0 85px;
}

.header__menu ul {
  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;
}

.header__menu ul li + li {
  padding-left: 50px;
  position: relative;
}

.header__menu ul li + li:before {
  content: '';
  background: url('../images/header-divider.webp');
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  width: 30px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
}

.header__menu ul a {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.header__menu ul a:hover {
  color: #fff72e;
}

.header__button {
  margin-top: 0;
  min-width: 115px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.header__login {
  margin-left: auto;
}

.header__signup {
  min-width: 145px;
  margin-left: 20px;
}

.header__lang {
  width: 24px;
  height: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin-left: 20px;
}

.header__lang img {
  display: block;
  max-width: 24px;
  max-height: 24px;
}

/* Main */
.main {
  position: relative;
  padding: 90px 30px 0 290px;
}

/* Sidebar */
.sidebar {
  width: 240px;
  position: fixed;
  top: 90px;
  left: 30px;
  height: -webkit-calc(100vh - 90px);
  height: -moz-calc(100vh - 90px);
  height: calc(100vh - 90px);
  padding-bottom: 20px;
  overflow: auto;
  z-index: 10;
}

.sidebar__wrap {
  background-color: #2d0d0d;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar__item {
  position: relative;
  background-color: #2d0d0d;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.sidebar__item li a:hover {
  background: -o-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -webkit-gradient(linear, right top, left top, from(#2d0d0d), to(#130404));
  background: -webkit-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: -moz-linear-gradient(right, #2d0d0d 0%, #130404 100%);
  background: linear-gradient(270deg, #2d0d0d 0%, #130404 100%);
}

.sidebar__menu {
  background: -webkit-gradient(linear, left top, left bottom, from(#130404), to(#2d0d0d));
  background: -webkit-linear-gradient(top, #130404 0%, #2d0d0d 100%);
  background: -moz-linear-gradient(top, #130404 0%, #2d0d0d 100%);
  background: -o-linear-gradient(top, #130404 0%, #2d0d0d 100%);
  background: linear-gradient(180deg, #130404 0%, #2d0d0d 100%);
  padding: 17px 0;
}

.sidebar__menu li {
  position: relative;
}

.sidebar__menu li a {
  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;
  color: #fff;
  padding: 12px 16px;
}

.sidebar__menu li a img {
  margin-right: 12px;
  max-width: 24px;
  max-height: 24px;
}

.sidebar__links-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 18px 44px 18px 20px;
}

.sidebar__links-button:before {
  content: '';
  background: url('../images/icon-arrow-sidebar.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 22px;
  right: 20px;
  width: 16px;
  height: 16px;
}

.sidebar__links-button:hover {
  color: #fff72e;
}

.sidebar__links-button:hover:before {
  background: url('../images/icon-arrow-sidebar-hover.svg');
}

.sidebar__links-button.active:before {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.sidebar__links-list {
  padding-bottom: 20px;
}

.sidebar__links li + li {
  margin-top: 5px;
}

.sidebar__links-list a {
  display: block;
  color: #fff;
  line-height: 1.286;
  padding: 8px 20px;
  position: relative;
}

.sidebar__links-list a:hover {
  text-shadow: 0 0.4px #fff, 0.4px 0 #fff;
}

/* Prime */
.prime {
  min-height: 380px;
  background: #130404;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 20px;
  margin-top: 0;
  border: none;
}

.prime__wrap {
  max-width: 616px;
  text-align: left;
  width: 100%;
  padding: 20px;
  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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  margin-left: 10px;
}

.prime__rating {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.prime__rating-value {
  margin-left: 18px;
}

.prime__title {
  max-width: 528px;
  margin-bottom: 0;
}

.prime__text {
  max-width: 420px;
  margin-top: 10px;
}

.prime__button {
  margin-top: 20px;
}

/* Table */
.table tr {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #412f2f;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 6px 20px;
}

/* Table-wrap */
.table-wrap tbody {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin: -7.5px -10px;
}

.table-wrap tr {
  width: -webkit-calc(50% - 20px);
  width: -moz-calc(50% - 20px);
  width: calc(50% - 20px);
  margin: 7.5px 10px;
}

/* Info */
.info__list tr,
.info__table tr {
  position: relative;
  min-height: 37px;
  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;
}

/* Info__table */
.info__table td:first-child {
  width: 180px;
}

.info__table td:last-child {
  width: -webkit-calc(100% - 180px);
  width: -moz-calc(100% - 180px);
  width: calc(100% - 180px);
  min-width: 50%;
  padding-left: 16px;
}

/* Info__list */
.info__list td:first-child {
  width: 20px;
}

.info__list img {
  display: block;
  max-width: 20px;
}

.info__list td:last-child {
  width: -webkit-calc(100% - 20px);
  width: -moz-calc(100% - 20px);
  width: calc(100% - 20px);
  padding-left: 16px;
}

/* Upto */
.content.upto__content {
  min-height: 425px;
  background: #130404;
  -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;
}

.upto__image {
  position: absolute;
  bottom: 0;
  left: -80px;
  display: none;
}

.upto__image img {
  max-width: 309px;
  opacity: 0.5;
}

.upto__wrap {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #fff;
  max-width: 440px;
  margin-right: 200px;
}

.upto__title {
  color: #fff72e;
  text-transform: uppercase;
  padding: 0;
  border: none;
  background: none;
}

.upto__text {
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 6px;
}

.upto__button {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-top: 23px;
}

/* Rating */
.rating__table {
  width: 100%;
}

.rating__table tbody {
  margin-top: -10px;
  margin-bottom: -10px;
}

.rating__table tr {
  position: relative;
  font-weight: 500;
  min-height: 36px;
  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: 6px;
  padding-bottom: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.rating__table tr td:nth-child(1) {
  font-weight: 500;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 182px;
  -moz-box-flex: 0;
  flex: 0 0 182px;
  padding-right: 8px;
}

.rating__table tr td:nth-child(2) {
  position: relative;
  min-width: 0;
  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;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 300px;
  -moz-box-flex: 0;
  flex: 0 1 300px;
  max-width: 300px;
}

.rating__table tr td:nth-child(2) > * {
  display: block;
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 20px;
  -moz-box-flex: 0;
  flex: 0 1 20px;
}

.rating__table tr td:nth-child(2) > img + img {
  margin-left: 2px;
}

.rating__table tr td:nth-child(3) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 52px;
  -moz-box-flex: 0;
  flex: 0 0 52px;
  padding-left: 6px;
  text-align: center;
}

/* FAQ */
.faq__item {
  counter-increment: ol;
}

.faq__list li {
  position: relative;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.faq__list li + li {
  margin-top: 20px;
}

.faq-item__title {
  background: #412f2f;
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  padding: 13px 44px 13px 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item__title:before {
  content: counter(ol) '.';
  display: inline-block;
  font: inherit;
  color: #fff72e;
  margin-right: 4px;
}

.faq-item__title:after {
  content: '';
  background: url('../images/icon-faq.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item__title:hover {
  color: #fff72e;
}

.faq-item__desc {
  position: relative;
  padding: 13px 20px;
  border: 2px solid #412f2f;
  background: #2d2121;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
}

.faq__item.active .faq-item__title:after {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 30px;
  bottom: -62px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.main .main__arrowtop {
  height: 72%;
}

.main .bonus .main__arrowtop {
  height: 67%;
}

.main .app .main__arrowtop {
  height: 50%;
}

.main__arrowtop a {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  bottom: 10px;
  right: 0;
  width: 42px;
  height: 42px;
}

.main__arrowtop a img {
  max-width: 42px;
}

.main__arrowtop a:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/* Footer */
.footer {
  margin-top: 20px;
  padding: 62px 68px 24px 328px;
}

.footer:before {
  content: '';
  position: absolute;
  left: 328px;
  right: 68px;
  top: 0;
  height: 31px;
  background: url('../images/footer-decor.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

.footer__menu ul {
  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;
  margin: -2px 0;
}

.footer__menu li {
  padding: 0 16px;
  margin: 2px 0;
}

.footer__menu li + li {
  border-left: 1px solid #fff72e;
}

.footer__menu li a {
  font-size: 16px;
  color: #d8d3d3;
  text-transform: uppercase;
}

.footer__menu li a:hover {
  color: #fff72e;
}

.footer__payment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: 32px 0;
}

.footer__payment li {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  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-top: -3.5px;
  margin-bottom: -3.5px;
}

.footer__payment li img {
  max-width: 120px;
  display: block;
  margin: auto;
}

.footer__text {
  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;
  max-width: 1075px;
  padding-top: 26px;
  position: relative;
  width: 100%;
}

.footer__text:before {
  content: '';
  background: -o-linear-gradient(left, rgba(255, 247, 46, 0) 1.44%, #fff72e 50.08%, rgba(255, 247, 46, 0) 98.72%);
  background: -webkit-gradient(linear, left top, right top, color-stop(1.44%, rgba(255, 247, 46, 0)), color-stop(50.08%, #fff72e), color-stop(98.72%, rgba(255, 247, 46, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 247, 46, 0) 1.44%, #fff72e 50.08%, rgba(255, 247, 46, 0) 98.72%);
  background: -moz-linear-gradient(left, rgba(255, 247, 46, 0) 1.44%, #fff72e 50.08%, rgba(255, 247, 46, 0) 98.72%);
  background: linear-gradient(90deg, rgba(255, 247, 46, 0) 1.44%, #fff72e 50.08%, rgba(255, 247, 46, 0) 98.72%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
}

.footer__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
  color: #d8d3d3;
  padding-right: 20px;
}

.footer__age {
  background: #fe5151;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 2.9;
  width: 40px;
  height: 40px;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
  width: auto;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  font-weight: 500;
  color: #fff;
}

.breadcrumbs > li:not(:last-child) a {
  font-weight: 500;
}

.breadcrumbs > li:not(:last-child) a:hover {
  text-shadow: 0 0.4px #fff, 0.4px 0 #fff;
}

.breadcrumbs > li a:not([href]) {
  font-weight: 700;
}

.breadcrumbs > li a:not([href]),
.breadcrumbs > li a:not([href]) span {
  cursor: default;
}

.breadcrumbs > li:not(:last-child):after {
  content: '|';
  display: inline-block;
  position: relative;
  font: inherit;
  color: #fff;
  margin: 0px 20px;
}

/* BONUS PAGE */
/* Bonuses */
.content.bonus__content {
  padding: 0;
  background: transparent;
  border: none;
}

.bonus__content ul li {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.bonus__content ul li + li {
  margin-top: 20px;
}

.bonus__image {
  position: relative;
  z-index: 3;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 272px;
  -moz-box-flex: 0;
  flex: 0 0 272px;
}

.bonus__image img {
  max-width: 272px;
}

.bonus__bottom {
  position: relative;
  max-height: 206px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc(100% - 272px + 50px);
  -moz-box-flex: 0;
  flex: 0 1 calc(100% - 272px + 50px);
  margin-left: -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-border-radius: 0 12px 12px 0;
  -moz-border-radius: 0 12px 12px 0;
  border-radius: 0 12px 12px 0;
  background: #2d2121;
  border: 2px dashed #483e3e;
}

.bottom__text {
  min-width: 460px;
  min-height: 206px;
  padding: 30px 20px 30px 70px;
  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: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc(100% - 349px);
  -moz-box-flex: 0;
  flex: 0 1 calc(100% - 349px);
}

.bonus__title {
  color: #fff72e;
  text-transform: uppercase;
  text-align: left;
  padding: 0;
  background: none;
  font-size: 24px;
  max-width: 430px;
}

.bonus__bottom p {
  margin-top: 15px;
  max-width: 525px;
}

.bottom__button {
  padding: 25px 14px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 349px;
  -moz-box-flex: 0;
  flex: 0 1 349px;
  -webkit-align-self: stretch;
  align-self: stretch;
  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: -webkit-gradient(linear, left top, right top, from(#2d2121), color-stop(25%, #2d2121), color-stop(50%, #7a1416), color-stop(75%, #2d2121), to(#2d2121));
  background: -webkit-linear-gradient(left, #2d2121 0%, #2d2121 25%, #7a1416 50%, #2d2121 75%, #2d2121 100%);
  background: -moz-linear-gradient(left, #2d2121 0%, #2d2121 25%, #7a1416 50%, #2d2121 75%, #2d2121 100%);
  background: -o-linear-gradient(left, #2d2121 0%, #2d2121 25%, #7a1416 50%, #2d2121 75%, #2d2121 100%);
  background: linear-gradient(90deg, #2d2121 0%, #2d2121 25%, #7a1416 50%, #2d2121 75%, #2d2121 100%);
  -webkit-border-radius: 0 12px 12px 0;
  -moz-border-radius: 0 12px 12px 0;
  border-radius: 0 12px 12px 0;
}

.bonus__button {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 260px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* APP PAGE */
/* App__content */
.content.app__content {
  min-height: 190px;
  -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-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  border: none;
}

.app__content > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
}

.app__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.app__image img {
  max-width: 163px;
}

.app__buttons {
  position: relative;
  z-index: 1;
  width: -webkit-calc(100% + 280px);
  width: -moz-calc(100% + 280px);
  width: calc(100% + 280px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -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;
  margin: -7px -140px;
}

.app__button {
  display: block;
  border: 2px solid #4cb63a;
  background: #4cb63a;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.14286;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  text-align: center;
  min-width: 240px;
  max-width: 240px;
  max-height: 64px;
  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;
  margin: 7px 140px;
}

.app .app__button:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
  background: #130404;
  border: 2px solid #4cb63a;
}

.app__button span {
  text-align: center;
}

.app__button:first-child span {
  min-width: 128px;
}
