@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  background: #0a626a;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #054146;
  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;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  font-size: 32px;
  margin-bottom: 0;
}

h2,
.title.high {
  font-weight: 600;
  font-size: 30px;
  color: #054146;
  text-transform: initial;
  border-bottom: 3px solid #054146;
  padding: 16px 0px;
}

h3,
.title.middle {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  text-transform: initial;
}

.pages h3 {
  text-transform: uppercase;
}

h4,
.title.mini {
  font-size: 18px;
}

/* Article */
article,
.article {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #054146;
  text-align: left;
}

article > * + *,
.article > * + * {
  margin-top: 16px;
}

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: '•';
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
  left: 0;
}

article p a,
.article p a {
  color: #054146;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

article p a:hover,
.article p a:hover {
  color: #00b25b;
  text-shadow: 0 0.3px #00b25b, 0.3px 0 #00b25b;
}

article .button,
.article .button {
  margin-right: auto;
}

/* Button */
.button {
  -webkit-box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
  -moz-box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
  box-shadow: 0 4px 18px 0 rgba(14, 24, 17, 0.25);
  background: #f04c4d;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 220px;
  min-height: 48px;
  position: relative;
}

.button:hover {
  background: #41b15b;
}

.button img,
.button span {
  display: inline-block;
  vertical-align: middle;
}

.button img {
  margin-right: 10px;
}

.button span {
  text-align: left;
}

/* Button Inverse */
.button.inverse {
  background: #41b15b;
}

.button.inverse:hover {
  background: #f04c4d;
}

/* 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 {
  margin-top: 20px;
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px;
}

.content-bg > h2,
.content-bg > p {
  color: #fff;
}

.content-bg > h2 {
  border-color: #fff;
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}

.content > *,
.cover > * {
  display: block;
  position: relative;
}

.content .scroll {
  position: absolute;
  width: 0;
  height: 0;
  top: -74px;
  left: 0;
}

.scroll + h2,
.content .background + h2,
.content .background + p,
.scroll + .double {
  margin-top: 0;
}

.main__buttons {
  display: none;
}

/* Header */
.header {
  background: #003135;
  -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;
  min-height: 80px;
  margin-top: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow: visible;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
}

.header__logo img {
  max-width: 116px;
}

.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 131px;
}

.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;
  background: #124b4f;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  padding: 10px 28px;
}

.header__menu ul li + li {
  margin-left: 32px;
}

.header__menu ul a {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.28;
  text-transform: uppercase;
  color: #fff;
}

.header__menu ul a:hover {
  color: #41b15b;
  text-shadow: 0 0.3px #41b15b, 0.3px 0 #41b15b;
}

.header__button {
  min-width: 169px;
  margin-top: 0;
}

.header__signup {
  margin-left: 8px;
}

.header__time {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.69231;
  color: #fff;
  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-left: 16px;
}

.header__time img {
  max-width: 18px;
  margin-right: 8px;
}

.header__lang {
  width: 24px;
  height: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin-left: 16px;
}

/* Main */
.main {
  position: relative;
  margin: 0 auto;
  padding: 80px 20px 80px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.main__content {
  position: relative;
  overflow: hidden;
  margin-left: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 -webkit-calc(100% - 20px - 240px);
  -moz-box-flex: 1;
  flex: 1 1 calc(100% - 20px - 240px);
}

/* Sidebar */
.sidebar {
  width: 240px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 240px;
  -moz-box-flex: 0;
  flex: 0 0 240px;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar__wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  max-height: -webkit-calc(100vh - 80px);
  max-height: -moz-calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  padding-top: 20px;
  overflow-y: auto;
}

.sidebar__wrap::-webkit-scrollbar {
  display: none;
}

.sidebar__wrap {
  scrollbar-width: none;
}

.sidebar__item {
  position: relative;
}

/* Sidebar__left */
.sidebar__slots {
  margin-bottom: 10px;
}

.sidebar__slots ul li + li {
  margin-top: 10px;
}

.sidebar__slots ul li a {
  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-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
  background: #003135;
}

.slots__image {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.slots__image img {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__slots ul li a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.slots__text {
  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;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  margin-top: 10px;
}

.slots__text span:last-child {
  opacity: 0.5;
  font-size: 12px;
  margin-top: 4px;
}

.sidebar__links {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.sidebar__links-button {
  font-family: 'Roboto', sans-serif;
  background: #003135;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 8px 40px 8px 11px;
}

.sidebar__links-button:before {
  content: '';
  background: url('../images/icon-nav.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: 10px;
  right: 10px;
  width: 13px;
  height: 13px;
}

.sidebar__links-button:hover {
  background: rgba(0, 49, 53, 0.6);
}

.sidebar__links-button.active:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sidebar__links-list {
  background: #fff;
}

.sidebar__links-list a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: #003135;
  opacity: 0.5;
  position: relative;
  padding: 8px 10px;
}

.sidebar__links-list a:hover {
  opacity: 1;
}

/* Sidebar-main */
.sidebar__links-main {
  display: none;
}

/* Prime */
.prime {
  min-height: 380px;
  color: #fff;
  background: #000;
  -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;
}

.banner__wrap {
  position: relative;
  max-width: 620px;
  width: auto;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 15px 10px;
  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;
}

.prime__wrap {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.prime__rating {
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.prime__rating-value {
  font-weight: 700;
  margin-left: 6px;
}

.prime__rating-text {
  opacity: 0.8;
}

.prime__title {
  margin-bottom: 0;
}

.prime__text {
  margin-top: 16px;
}

/* List */
.list {
  position: relative;
  width: 100%;
}

.list > ul > li,
.list > ol > li {
  z-index: 1;
  background: #e8ebf0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375;
  color: #054146;
  padding: 12px 10px 12px 80px;
  min-height: 68px;
  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;
}

.dark.list > ul > li,
.dark.list > ol > li {
  background: #054146;
  color: #fff;
}

.list > ul > li a,
.list > ol > li a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #054146;
}

.list > ul > li a:hover,
.list > ol > li a:hover {
  text-shadow: 0 0.3px #054146, 0.3px 0 #054146;
}

.list > ul li + li,
.list > ol li + li {
  margin-top: 20px;
}

.list li > ul {
  margin-top: 20px;
}

.list > ul > li::before,
.list > ol > li::before {
  top: 0;
  left: 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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  background: #00b25b;
  height: 100%;
  width: 68px;
  padding: 4px;
  text-align: center;
}

.list > ul > li::before {
  content: '';
  background-image: url('../images/icon-list.svg');
  -webkit-background-size: 32px 32px;
  -moz-background-size: 32px 32px;
  background-size: 32px 32px;
  background-position: center;
  background-repeat: no-repeat;
}

.list > ol > li::before {
  font-weight: 600;
  font-size: 24px;
  line-height: 0.92;
  text-align: center;
  color: #fff;
  content: counter(ol);
}

/* Double */
.double {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.double > * {
  position: relative;
  width: -webkit-calc((100% - 20px) / 2);
  width: -moz-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}

.double > *:last-child {
  margin-left: 20px;
}

.double__item > * + * {
  margin-top: 16px;
}

/* Table */
.table {
  position: relative;
  width: 100%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  background: #e8ebf0;
}

.table a {
  text-decoration: underline;
  color: #054146;
}

.table a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.table tr {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  padding: 0 16px;
}

.table thead tr {
  min-height: 45px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  border-bottom: 2px solid rgba(5, 65, 70, 0.2);
}

.table tbody tr + tr {
  border-top: 2px solid rgba(5, 65, 70, 0.2);
}

.table tr > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -moz-box-flex: 1;
  flex: 1 1 0%;
}

.table tr > th {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 8px;
}

.table tr > td {
  font-size: 15px;
  line-height: 1.35;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table tr > * + * {
  padding-left: 16px;
}

/* Compare */
.compare__table thead tr {
  min-height: 70px;
}

.compare__table tr th {
  position: relative;
  font-size: 20px;
  line-height: 1.6;
  padding-left: 42px;
}

.compare__table tr th::before {
  content: '';
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  width: 32px;
  height: 32px;
}

.compare__table tr th:first-child:before {
  background-image: url('../images/icon-plus.svg');
}

.compare__table tr th:last-child:before {
  background-image: url('../images/icon-minus.svg');
}

/* Upto */
.upto__content {
  min-height: 360px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  background: none;
}

.content.upto__content-left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.content.upto__content-right {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.content.upto__content-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.upto__wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  text-align: center;
}

.upto__content-left .upto__wrap {
  margin-left: 30px;
}

.upto__content-right .upto__wrap {
  margin-right: 30px;
}

.upto__title {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding: 0;
  border-bottom: none;
}

.upto__text {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 8px;
}

.upto__button {
  margin-top: 30px;
}

/* Frame */
.frame {
  position: relative;
  width: 100%;
  background: #054146;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  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-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.frame h3 {
  color: #fff;
}

.frame p {
  color: #fff;
  position: relative;
}

.frame > * + * {
  margin-top: 16px;
}

.frame > .background + * {
  margin-top: 0;
}

/* Inner frame */
.inner__frame {
  position: relative;
  width: 100%;
  background: #e8ebf0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  padding: 16px;
  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;
}

.inner__frame h3 {
  color: #054146;
}

.inner__frame p {
  color: #054146;
}

.inner__frame > * + * {
  margin-top: 16px;
}

/* Download__content */
.content.download__content,
.content .download__content {
  background: none;
  width: 100%;
  min-height: 220px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  padding: 20px;
}

.download__content > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
}

.download__image-left {
  width: 310px;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  margin-bottom: -20px;
  margin-top: -20px;
}

.download__image-right {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -moz-box-ordinal-group: 5;
  order: 4;
  margin-left: 10px;
}

.download__buttons {
  position: relative;
  z-index: 1;
  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;
  margin: -16px;
}

.download__button {
  display: block;
  background: #00b25b;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 6px 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.65;
  color: #fff;
  text-transform: initial;
  white-space: normal;
  text-align: center;
  min-width: 265px;
  max-width: 265px;
  min-height: 62px;
  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;
}

.download__buttons .button.download__button {
  margin: 16px;
}

.download__button:hover {
  background: #f04c4d;
}

.download__button span {
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
}

/* List-img */
.list__image {
  position: absolute;
  z-index: 1;
}

.list__image1 img {
  max-width: 566px;
}

.list__image1 {
  bottom: 85px;
  right: -15px;
}

/* Cards */
ul.cards {
  width: -webkit-calc(100% + 20px);
  width: -moz-calc(100% + 20px);
  width: calc(100% + 20px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}

ul.cards li {
  background: #e8ebf0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  padding: 16px;
  margin: 10px;
}

ul.cards li::before {
  display: none;
}

ul.cards li .image img {
  max-width: 32px;
  margin-left: 0;
}

ul.cards li h3 {
  color: #054146;
  text-transform: initial;
  font-weight: 500;
}

ul.cards li > * + * {
  margin-top: 16px;
}

ul.cards li p {
  color: #054146;
}

/* Double cards */
ul.cards-double li {
  width: -webkit-calc((100% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
}

/* Triple cards */
ul.cards-triple li {
  width: -webkit-calc((100% - 60px) / 3);
  width: -moz-calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
}

/* Slots */
ul.slots__cards {
  margin-top: 6px;
}

.background + ul.slots__cards {
  margin-top: -10px;
}

/* Slots */
.slots__table tr > *:first-child {
  min-width: 170px;
}

/* FAQ */
.faq__list {
  margin-top: 16px;
}

.faq__list li {
  background: #e8ebf0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.faq__list li + li {
  margin-top: 16px;
}

.title.faq-item__title {
  z-index: 2;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #054146;
  padding: 16px 50px 16px 16px;
  -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;
}

.faq-item__title:after {
  content: '';
  background-image: 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: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq__item.active .faq-item__title::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-item__title:hover {
  text-shadow: 0 0.3px #054146, 0.3px 0 #054146;
}

.faq-item__desc {
  position: relative;
  padding: 16px 20px;
  border-top: 1px solid #054146;
}

/* Reviews */
.review__wrap {
  width: 100%;
}

.review__carousel {
  padding: 0 68px;
}

.owl-carousel .owl-nav.review__nav {
  position: absolute;
  left: 0;
  top: -webkit-calc(50% - 24px);
  top: -moz-calc(50% - 24px);
  top: calc(50% - 24px);
  z-index: 1;
  width: 100%;
  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;
}

.owl-nav.review__nav .button {
  width: 48px;
  height: 48px;
  min-width: 0;
  background: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.owl-nav.review__nav .button img {
  margin-right: 0;
}

.owl-nav.review__nav .button.owl-prev {
  margin: 0 auto 0 0;
}

.owl-nav.review__nav .button.owl-next {
  margin: 0 0 0 auto;
}

.owl-carousel.review__carousel .owl-stage-outer {
  z-index: 100;
}

.owl-nav.review__nav .button {
  min-height: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.owl-nav.review__nav .button:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.owl-stage {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: flex !important;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
}

.owl-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.review__item {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px;
  background: #e8ebf0;
}

.review__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #054146;
  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;
}

.review__rating {
  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 130px;
  -moz-box-flex: 0;
  flex: 0 1 130px;
  margin-left: 10px;
}

.review__rating img {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 22px;
  -moz-box-flex: 0;
  flex: 0 1 22px;
}

.review__rating img + img {
  margin-left: 2px;
}

.review__text {
  color: #054146;
  margin-top: 16px;
}

/* Rating */
.rating__table {
  width: 100%;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-top: 16px;
}

.rating__table tbody {
  width: 100%;
}

.rating__table tr {
  background: #e8ebf0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  min-height: 54px;
}

.rating__table table tr + tr {
  border-top: none;
  margin-top: 20px;
}

.rating__table table tr td:nth-child(1) {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #054146;
}

.rating__table table tr td:nth-child(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;
}

.rating__table table tr td:nth-child(2) img {
  max-width: 22px;
}

.rating__table table tr td:nth-child(2) img + img {
  margin-left: 5px;
}

/* Summary */
.content.summary {
  background: #000;
}

.summary__background img {
  opacity: 0.7;
}

.summary p {
  color: #fff;
}

.summary h2 {
  color: #fff;
  border-color: #fff;
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 20px;
  bottom: 20px;
  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__arrowtop a {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  bottom: 20px;
  right: 0;
  width: 40px;
  height: 40px;
}

.main__arrowtop a img {
  max-width: 40px;
}

.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 {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.65;
  color: #b9cdcf;
}

.footer__countries {
  width: 100%;
  margin-bottom: 20px;
}

.footer__countries ul {
  width: auto;
  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-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin: -10px;
}

.footer__countries li {
  margin: 10px;
}

.footer__countries li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #0a626a;
  background: #fff;
  border: 1px solid rgba(254, 192, 126, 0.2);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 12px;
  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;
}

.footer__countries li a:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.9);
  -moz-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.9);
}

.footer__countries li a img {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  max-width: 24px;
  margin-right: 8px;
}

.footer__bg {
  background: #002f33;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer__top {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.top__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 200px;
  -moz-box-flex: 0;
  flex: 0 1 200px;
  min-width: 127px;
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
}

.footer__logo:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  margin: -8px;
}

.footer__links-item {
  min-width: 0;
  margin: 8px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 -webkit-calc((100% - 147px - 80px) / 5);
  -moz-box-flex: 0;
  flex: 0 1 calc((100% - 147px - 80px) / 5);
}

.footer__links p {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 12px;
}

.footer__links ul li + li {
  margin-top: 12px;
}

.footer__links ul li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: #b9cdcf;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.footer__links ul li a:hover,
.footer__links ul li a:hover span {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
}

.footer__app {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 147px;
  -moz-box-flex: 0;
  flex: 0 1 147px;
  min-width: 125px;
  max-width: 147px;
}

.footer__app ul li a {
  border: 1px solid #00b35c;
  background: #00b35c;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 5px 16px;
  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;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.08333;
  color: #fff;
}

.footer__app ul li a:hover {
  text-decoration: none;
  background: none;
  -webkit-box-shadow: rgba(65, 177, 91, 0.9) 0px 0px 10px 0px;
  -moz-box-shadow: rgba(65, 177, 91, 0.9) 0px 0px 10px 0px;
  box-shadow: rgba(65, 177, 91, 0.9) 0px 0px 10px 0px;
}

.footer__app ul li a:hover span {
  color: #fff;
  background: none;
  text-decoration: none;
}

.footer__app ul li a img {
  display: block;
  margin-right: 12px;
  max-width: 16px;
}

.footer__app ul li a span > span:last-child {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.14286;
}

.footer__info {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  margin-top: 32px;
}

.footer__info > * {
  background: #185b63;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 16px;
  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;
}

.footer__text {
  width: -webkit-calc(100% - 24px - 137px);
  width: -moz-calc(100% - 24px - 137px);
  width: calc(100% - 24px - 137px);
}

.footer__image {
  width: 137px;
  margin-left: 24px;
}

.footer__bottom {
  width: 100%;
  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-top: 32px;
}

.footer__copy {
  width: -webkit-calc(100% - 40px);
  width: -moz-calc(100% - 40px);
  width: -webkit-calc(100% - 40px - 16px);
  width: -moz-calc(100% - 40px - 16px);
  width: calc(100% - 40px - 16px);
}

.footer__copy p a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #00b35c;
}

.footer__copy p a:hover {
  color: #fff;
  text-decoration: none;
}

.footer__age {
  width: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin-left: 16px;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  display: inline-block;
  text-align: center;
  margin-bottom: 8px;
  width: auto;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

.breadcrumbs > li:not(:last-child) a {
  font-weight: 400;
}

.breadcrumbs > li:not(:last-child) a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

.breadcrumbs > li a:not([href]) {
  font-weight: 400;
}

.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 4px;
}

/* BONUS PAGE */
/* Welcome */
ul.welcome__cards {
  margin-top: 6px;
}

ul.welcome__cards li {
  background: #fff;
}

/* Vip image */
.list__image2 {
  bottom: 0;
  right: 20px;
}

.list__image2 img {
  max-width: 579px;
}

.list__image3 {
  bottom: 0;
  left: 652px;
}

.list__image3 img {
  max-width: 400px;
}

/* APP PAGE */
.mobile__frame {
  background: #054146;
}

.mobile__frame h4 {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
  text-transform: initial;
}

/* Require */
ul.require__list {
  width: 100%;
}

ul.require__list li::before {
  display: none;
}

ul.require__list li + li {
  margin-top: 20px;
}

ul.require__list li {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

ul.require__list li > * {
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.require__image {
  width: 280px;
  margin-left: 20px;
}

.require__text {
  width: -webkit-calc(100% - 20px - 280px);
  width: -moz-calc(100% - 20px - 280px);
  width: calc(100% - 20px - 280px);
}

/* BETTING PAGE */
.list__image4 {
  bottom: 0;
  right: 68px;
}

.list__image4 img {
  max-width: 375px;
}

.list__image5 {
  bottom: 0;
  right: 67px;
}

.list__image5 img {
  max-width: 482px;
}
@media screen and (min-width: 1580px) {
  .cover {
    padding-left: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-left: calc(50% - ((1580px - 40px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .main {
    padding-left: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-left: calc(50% - ((1580px - 40px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .main__arrowtop {
    right: -webkit-calc(50% - ((1580px - 40px) / 2));
    right: -moz-calc(50% - ((1580px - 40px) / 2));
    right: calc(50% - ((1580px - 40px) / 2));
  }
}

@media screen and (max-width: 1400px) {
  /* Prime */
  .prime__background img {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1280px) {
  /* Prime */
  .prime__background img {
    -o-object-position: 60%;
    object-position: 60%;
  }

  /* BONUS */
  /* Vip image */
  .list__image2 {
    right: -40px;
  }

  .list__image3 {
    left: 500px;
  }
}

@media screen and (max-width: 1200px) {
  .header__menu {
    margin-left: auto;
  }

  .sidebar__left {
    display: none;
  }

  .main__content {
    margin-left: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    flex: 1 1 100%;
  }

  .sidebar__links-main {
    display: block;
    margin-top: 20px;
  }

  .sidebar__links-button:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sidebar__links-button.active:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .sidebar__links-list {
    display: none;
  }
}

@media screen and (max-width: 1064px) {
  h2,
  .title.high {
    font-size: 28px;
    padding: 10px 0;
  }

  /* HEADER */
  .header__logo {
    margin-right: auto;
  }

  .menu-button {
    display: block;
    background-color: transparent;
    padding: 8px;
    width: 32px;
    height: 32px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    order: 1;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    flex: none;
    margin-left: 10px;
  }

  .menu-button svg {
    display: block;
    margin: auto;
  }

  .menu-button svg rect {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    fill: #fff;
  }

  .menu-button.active svg rect:nth-child(1) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .menu-button.active svg rect:nth-child(2) {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 2);
    -moz-transform: scale(0, 2);
    -o-transform: scale(0, 2);
    transform: scale(0, 2);
  }

  .menu-button.active svg rect:nth-child(3) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: -webkit-calc(100vh - 80px);
    max-height: -moz-calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: #003135;
    z-index: 100;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: none;
    padding: 25px;
    text-align: center;
  }

  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    text-align: center;
    padding: 0;
    background: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .header__menu ul li + li {
    margin-left: 0;
    margin-top: 16px;
  }

  .header__menu ul a {
    padding: 13px 22px;
    min-height: 48px;
    font-weight: 600;
    min-width: 200px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    border: 1px solid #fff;
  }

  .header__menu ul a:hover {
    -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    text-shadow: none;
    text-decoration: none;
    border-color: #41b15b;
  }

  /* FOOTER */
  .footer__links {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__links-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 48px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 48px) / 3);
  }

  /* Upto */
  .content .upto__wrap {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 950px) {
  /* List-img */
  .list__image1 img {
    max-width: 500px;
  }

  .list__image1 {
    right: -50px;
  }

  .list__image2 {
    right: -192px;
  }
}

@media screen and (max-width: 850px) {
  h1,
  .title.general {
    font-size: 30px;
  }

  h2,
  .title.high {
    font-size: 24px;
    padding: 6px 0;
  }

  h3,
  .title.middle {
    font-size: 18px;
  }

  .content {
    padding: 15px;
  }

  .cover,
  .main {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main__arrowtop {
    right: 15px;
  }

  /* Prime */
  .prime__background img {
    -o-object-position: 75%;
    object-position: 75%;
    opacity: 1;
  }

  .banner__wrap {
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .prime__wrap {
    margin: 0;
  }

  /* Frame */
  .frame,
  .inner__frame {
    padding: 15px;
  }

  /* Table */
  .table tr {
    padding-left: 12px;
    padding-right: 12px;
  }

  .table tr > * + * {
    padding-left: 8px;
  }

  /* Triple cards */
  ul.cards-triple li {
    width: -webkit-calc((100% - 40px) / 2);
    width: -moz-calc((100% - 40px) / 2);
    width: calc((100% - 40px) / 2);
  }

  /* Upto */
  .upto__content-left .upto__background img {
    -o-object-position: 70%;
    object-position: 70%;
  }

  .upto__content-right .upto__background img {
    -o-object-position: 30%;
    object-position: 30%;
  }

  /* Download__content */
  .content.download__content,
  .content .download__content {
    padding: 32px 10px 200px 10px;
  }

  .download__image-left {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0;
  }

  /* Reviews */
  .review__carousel {
    padding: 0 40px;
  }

  .owl-carousel .owl-nav.review__nav {
    top: -webkit-calc(50% - 16px);
    top: -moz-calc(50% - 16px);
    top: calc(50% - 16px);
  }

  .owl-nav.review__nav .button {
    width: 32px;
    height: 32px;
  }

  /* BONUS */
  /* List-img */
  .list__image3 {
    z-index: 0;
    left: auto;
    right: -65px;
  }

  .list.dark.list-img3 > ul > li,
  .list.dark.list-img3 > ol > li {
    background: rgba(5, 65, 70, 0.9);
  }

  /* FOOTER */
  .footer__countries ul {
    margin: -4px;
  }

  .footer__countries li {
    margin: 4px;
  }
}

@media screen and (max-width: 768px) {
  /* HEADER */
  .header > .header__button {
    display: none;
  }

  .header__menu .header__signup,
  .header__menu .header__login {
    display: inline-block;
    min-width: 200px;
    margin: 0 5px 16px;
  }

  /* Table-wide */
  .table-wide {
    overflow: auto;
  }

  .table-wide table {
    width: 820px;
  }

  /* Intro__table */
  .intro__table td:first-child,
  .intro__table th:first-child {
    max-width: 200px;
  }

  /* List-img */
  .list__image1 {
    right: -230px;
  }

  .list__image2 {
    right: -308px;
  }

  .list__image4 {
    right: -65px;
  }

  .list__image5 {
    right: -100px;
  }

  /* Tour */
  .tour__table tr > *:first-child {
    max-width: 200px;
  }

  /* Vip */
  .vip__table tr > *:first-child {
    max-width: 120px;
  }

  /* Games */
  .games__table tr > *:first-child {
    max-width: 150px;
  }

  /* Double */
  .double {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .double > * {
    width: 100%;
  }

  .double > *:last-child {
    margin: 20px 0 0 0;
  }

  /* FOOTER */
  .footer__countries {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* APP */
  /* Require */
  ul.require__list li {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.require__list li > * {
    width: 100%;
  }

  .require__image {
    height: 300px;
    margin: 20px 0 0 0;
  }

  .require__image img {
    -o-object-position: center 25%;
    object-position: center 25%;
  }
}

@media screen and (max-width: 650px) {
  h1,
  .title.general {
    font-size: 26px;
    text-align: center;
  }

  h2,
  .title.high {
    font-size: 22px;
  }

  .main__buttons {
    background: rgba(5, 66, 71, 0.8);
    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;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 16px;
  }

  .main__buttons .button {
    width: -webkit-calc(50% - 4px);
    width: -moz-calc(50% - 4px);
    width: calc(50% - 4px);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    min-width: 0;
  }

  .main {
    padding-bottom: 50px;
  }

  .main__arrowtop {
    bottom: 5px;
  }

  .main__arrowtop a {
    bottom: 90px;
  }

  /* Prime */
  .prime__wrap {
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  .prime__background img {
    -o-object-position: 83%;
    object-position: 83%;
  }

  /* List */
  .list > ul > li,
  .list > ol > li {
    padding-left: 40px;
    padding-right: 8px;
    min-height: 46px;
  }

  .list > ul > li::before,
  .list > ol > li::before {
    width: 32px;
  }

  .list > ul > li::before {
    -webkit-background-size: 24px 24px;
    -moz-background-size: 24px 24px;
    background-size: 24px 24px;
  }

  /* Table */
  .table-small {
    overflow: auto;
  }

  .table-small table {
    width: 620px;
  }

  /* Upto */
  .content.upto__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  .upto__content-left .upto__background img {
    -o-object-position: 80%;
    object-position: 80%;
  }

  .upto__content-right .upto__background img {
    -o-object-position: 20%;
    object-position: 20%;
  }

  /* Download__content */
  .content.download__content,
  .content .download__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
  }

  .download__image-right {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    order: 0;
    margin: 0 0 32px 0;
  }

  /* List-img */
  .list__image1 img {
    max-width: 400px;
  }

  .list__image2 {
    z-index: 0;
    right: -190px;
  }

  .list__image2 img {
    max-width: 490px;
  }

  .list__image3 img {
    max-width: 300px;
  }

  .list__image4 img {
    max-width: 280px;
  }

  .list__image5 img {
    max-width: 360px;
  }

  .list.dark.list-img2 > ul > li,
  .list.dark.list-img2 > ol > li {
    background: rgba(5, 65, 70, 0.9);
  }

  /* Cards */
  ul.cards li {
    width: 100%;
    padding: 12px 10px;
  }

  /* FOOTER */
  .footer {
    padding-bottom: 75px;
  }

  .footer__top {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .top__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -moz-box-flex: 0;
    flex: 0 1 100%;
    margin: 0 0 20px 0;
  }
}

@media screen and (max-width: 550px) {
  /* List-img */
  .list__image1 {
    z-index: 0;
    bottom: 87px;
  }

  .list-img > ul > li,
  .list-img > ol > li {
    background: rgba(232, 235, 240, 0.95);
  }

  .list__image4,
  .list__image5 {
    z-index: 0;
  }

  /* FOOTER */
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    flex-direction: column-reverse;
    padding: 0 5px;
  }

  .footer__info > * {
    padding: 10px;
  }

  .footer__image {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .footer__text {
    width: 100%;
  }

  .footer__bottom {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 470px) {
  /* FOOTER */
  .footer__links-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 32px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 32px) / 2);
  }
}

@media screen and (max-width: 450px) {
  h1,
  .title.general {
    font-size: 24px;
  }

  h2,
  .title.high {
    font-size: 20px;
  }

  .content {
    padding: 10px;
  }

  .main__arrowtop {
    right: 10px;
  }

  .menu-button {
    margin-left: 10px;
  }

  .cover,
  .main {
    padding-left: 10px;
    padding-right: 10px;
  }

  article .button,
  .article .button {
    margin-left: auto;
  }

  .banner__wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Frame */
  .frame,
  .inner__frame {
    padding: 10px;
  }

  /* Review */
  .review__item {
    padding: 10px;
  }

  .review__title {
    -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;
  }

  .review__rating {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    flex: 0 1 auto;
    max-width: 130px;
    margin: 10px 0 0 0;
  }

  .review__text {
    margin-top: 10px;
  }

  /* FAQ */
  .title.faq-item__title {
    font-size: 16px;
    padding: 10px 38px 10px 10px;
  }

  .faq-item__title:after {
    right: 8px;
    top: 10px;
  }

  .faq-item__desc {
    font-size: 14px;
    padding: 5px 10px;
  }

  /* Table-wide */
  .rating__table {
    overflow: auto;
  }

  .rating__table table {
    width: 410px;
  }

  .rating__table table tr td:nth-child(2) {
    max-width: 200px;
  }
}
