@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

svg use {
    fill: #fff;
    fill-rule: evenodd;
}

.path {
    fill: #fff;
    stroke: #fff;
}

.svg-menu rect, .header__menu-button path, .menu {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    width: 100%;
    color: #192A32;
    font-size: 16px;
    line-height: 25px;
    overflow-x: hidden;
    background-color: #F5F5F5;
}

body.active {
    margin-top: 106px;
}

body.active header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

a span {
    display: inline-block;
    vertical-align: middle;
}

a img {
    display: block;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
    margin: auto;
}

.content {
    max-width: 1240px;
    padding: 30px 20px;
    margin: 25px auto 0;
    background: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.content li {
    display: block;
}

h1, h2, h3, h4, .title {
    font-weight: 700;
    text-transform: uppercase;
    color: #192A32;
    word-break: break-word;
    z-index: 100;
}

h1, .title.general {
    font-size: 52px;
    line-height: 62px;
    color: #fff;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);;
}

h2, .title.high {
    font-size: 48px;
    line-height: 58px;
}

h1 span, h2 span, h3 span {
    display: block;
}

h3, .title.middle {
    font-size: 40px;
    line-height: 48px;
}

h4, .title.small {
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
    text-transform: none;
}

.button {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    min-width: 160px;
    background-color: #EC622B;
    padding: 12.5px 20px;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.button:hover {
    background-color: #863211;
}

.button.green {
    background-color: #0FA810;
}

.button.green:hover {
    background-color: #0c680c;
}

.header__content .button {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    min-width: 120px;
}


table {
    width: 100%;
    word-break: break-word;
    text-align: left;
}

table tr {
    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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
}

table tr + tr {
    margin-top: 15px;
}

table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    min-width: 100px;
    font-weight: 600;
}

table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 70%;
    -moz-box-flex: 0;
    flex: 0 1 70%;
    max-width: -webkit-calc(100% - 100px);
    max-width: -moz-calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding-left: 20px;
}

table tr td:nth-child(n + 2) {
    padding-left: 30px;
}

table a {
    color: #192A32;
    font-weight: 400;
    text-transform: none;
}

table a:hover {
    color: #000000;
}


.list li {
    padding-left: 25px;
    text-align: left;
}

.list li:before {
    content: '.';
    position: absolute;
    font-weight: 900;
    font-size: 20px;
    left: 7px;
    top: -5px;
}



/* header */

.header {
    background-color: #0D1D34;
    z-index: 1000;
}

.header__content.content {
    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;
    padding: 15px 0;
    background: transparent;
    margin-top: 0;
}

.header__left, .header__right {
    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__logo img {
    display: block;
}

.header__language {
    padding: 12.5px 20px;
    min-width: 120px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #173569;
}

.header__language:hover, .header__app:hover {
    background: #13294f;
}

.header__language > * + * {
    margin-left: 2px;
}

.header__language > *:first-child img {
    max-height: 24px;
    border-radius: 50%;
}

.header__buttons {
    margin-left: 10px;
}

.header__buttons > * + * {
    margin-left: 5px;
}

.header__app {
    padding: 12.5px 20px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    min-width: 120px;
    background: #173569;
    margin-left: 20px;
}

.header__app > * + * {
    margin-left: 5px;
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.header__menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.menu ul a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    padding: 12.5px 10px;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    opacity: 0.5;
}

.menu ul a > * + * {
    margin-left: 7px;
}

.header__menu a:hover {
    opacity: 1;
}

.header__expand-menu {
    display: none;
}

.header__expand-menu .header__buttons {
    display: none;
}

.header__expand-menu li {
    display: block;
}

.header__expand-menu li a {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
}

.header__expand-menu li + li {
    margin-top: 20px;
}



/* cover */

.cover__content {
    padding: 175px 20px;
    background: #000;
}

.cover__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cover__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    -o-object-position: 90%;
    object-position: 90%;
}

.cover__wrap {
    max-width: 715px;
    width: 70%;
}

.button.cover__button {
    margin-top: 35px;
    min-width: 400px;
    font-size: 26px;
    line-height: 30px;
    padding: 21px 30px;
}


/* main info */

.main-info__title > * + * {
 margin-top: 10px;
}

.main-info__table tr + tr {
    margin-top: 0;
}

.main-info__table tr td:first-child {
    padding: 7.5px 10px 7.5px 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 28%;
    -moz-box-flex: 0;
    flex: 0 1 28%;
    min-width: 250px;
    color: #fff;
    background: #2E364A;
}

.main-info__table tr td:nth-child(2) {
    padding: 7.5px 0 7.5px 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 72%;
    -moz-box-flex: 0;
    flex: 0 1 72%;
    max-width: -webkit-calc(100% - 250px);
    max-width: -moz-calc(100% - 250px);
    max-width: calc(100% - 250px);
}

.main-info__table tr:first-child td {
    padding-top: 30px;
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

.main-info__table tr:last-child td {
    padding-bottom: 30px;
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px
}

.main-info__table td {
    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;
    text-align: left;
}

.main-info__table tr td:nth-child(2) {
    -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;
}

.main-info__table img {
    display: block;
}

.main-info__table tr td:first-child > span:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 20px;
    -moz-box-flex: 0;
    flex: 0 1 20px;
    margin-right: 10px;
}

.main-info__table tr td:first-child > span:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 20px - 10px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 20px - 10px);
}


/* pros */

.pros__content.content {
    background: transparent;
    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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    padding: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pros__content > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 20px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 20px) / 2);
    background: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 30px 20px;
}

.pros__content > li ul {
    margin-top: 25px;
}

.title.middle.pros__title {
    font-size: 32px;
    line-height: 38px;
    text-transform: none;
    font-weight: 500;
}

.pros__title {
    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: 520px;
}

.pros__title > span:first-child {
    margin-right: 25px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 60px;
    -moz-box-flex: 0;
    flex: 0 1 60px;
}

.pros__title > span:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 60px - 25px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 60px - 25px);
}

.pros__content li li {
    margin-top: 15px;
    padding-left: 40px;
}

.pros__content > li:first-child li:before {
    content: url(../images/pros.png);
    position: absolute;
    left: 0;
    top: 2px;
}

.pros__content > li:nth-child(2) li:before {
    content: url(../images/cons.png);
    position: absolute;
    left: 0;
    top: 2px;
}

.content.image {
    padding: 0;
}


/* registration */

.content.registration__content {
    padding: 0;
    background: transparent;
    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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
}

.registration__content > * .content {
    margin: 0;
}

.registration__content > * {
    margin-top: 20px;
}

.registration__content > .registration__wrapper > .content {
    margin: 0;
}

.registration__image.content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 43%;
    -moz-box-flex: 0;
    flex: 0 1 43%;
    margin: 20px 0 0;
    background: transparent;
}

.registration__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.registration__wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 43% - 20px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 43% - 20px);
}

.registration__wrapper + .registration__wrapper {
    margin-top: 20px;
}

.registration__content > * .content + .content {
    margin-top: 20px;
}


/* mobile */

.mobile__content.content {
    padding: 0;
    background: transparent;
    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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
}

.mobile__image.image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 43%;
    -moz-box-flex: 0;
    flex: 0 1 43%;
    margin: 20px 0 0;
    background: transparent;
}

.mobile__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.mobile__wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 43% - 20px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 43% - 20px);
}

.mobile__wrapper > .content {
    margin: 20px 0 0;
}


/* banner */

.content.banner__content {
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    overflow: visible;
}

.banner__content > a {
    display: block;
}

.banner__content > a:hover {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}


/* games */

table.games__table tr td {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 20%;
    -moz-box-flex: 0;
    flex: 0 1 20%;
    text-align: center;
    padding: 9px 5px;
    font-weight: 400;
    min-width: 0;
}

.games__table thead {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.games__table thead tr {
    background: #2E364A;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.games__table tbody tr {
    margin-top: 15px;
}



/* article  */

article > * + *, .article > * + * {
    margin-top: 16px;
}

article p span, .article p span {
    font-weight: 500;
}

article li, .article li {
    display: block;
}

article .button, .article .button {
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}



/* faq */


.faq-item__question {
    font-weight: 700;
    padding: 20px 80px 20px 20px;
    text-align: left;
    font-size: 16px;
    line-height: 25px;
}

.faq__item {
    display: block;
    cursor: pointer;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #2E364A;
    color: #fff;
    margin-bottom: 15px;
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq-item__question:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    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;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    top: -webkit-calc(50% - 20px);
    top: -moz-calc(50% - 20px);
    top: calc(50% - 20px);
    right: 20px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.faq-item__question:before {
    content: url(../images/faq.svg);
    position: absolute;
    width: 40px;
    height: 40px;
    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;
    top: -webkit-calc(50% - 20px);
    top: -moz-calc(50% - 20px);
    top: calc(50% - 20px);
    right: 20px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 100;
}

.faq__item.active .faq-item__question:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 20px;
    border-top: 1px solid #fff;;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}


/* footer */

.footer__content {
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.footer__list {
    max-width: 1010px;
    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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto 10px;
    padding-right: 30px;
}

.footer__list li {
    margin-bottom: 10px;
    margin-left: 30px;
}

.footer__wrap {
    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: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid #000;
}

.footer__age {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 90px;
    -moz-box-flex: 0;
    flex: 0 1 90px;
}

.footer__article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 90px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 90px);
    padding-right: 30px;
}

.footer__last {
    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;
    margin-top: 16px;
}



/* review */


.title.feedback__title {
    padding-right: 110px;
    z-index: 1;
}

.feedback__carousel {
    overflow: visible;
    padding-top: 20px;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.feedback__item {
    overflow: hidden;
    background: #2E364A;
    padding: 20px 10px 30px;
    color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.feedback-item__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;
}

.feedback-item__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 40px;
    -moz-box-flex: 0;
    flex: 0 1 40px;
}

.feedback-item__name {
    padding-left: 10px;
    text-align: left;
}

.feedback-item__text {
    margin-top: 25px;
}

.feedback-item__text > *:nth-child(n + 2) {
    margin-top: 5px;
}

.owl-nav {
	display: block;
    position: absolute;
    top: -45px;
    right: 0;
    width: 90px;
    z-index: 1000;
}

.owl-nav .button.arrow.feedback-nav__button {
    min-width: 0;
    background-color: #EDF1F3;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.1);
}

.button.arrow.feedback-nav__button:hover {
    background-color: #d0d9de;
}

.button.arrow + .button.arrow {
    position: absolute;
    right: 0;
}
