@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@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: #445058;
    fill-rule: evenodd;
}

.path {
    fill: #445058;
    stroke: #445058;
}

html {
    scroll-behavior: smooth;
}

.svg-menu rect, .menu {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
    color: #1A2930;
    font-size: 16px;
    line-height: 24px;
    overflow-x: hidden;
    background: #014B4A;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
}

a {
    color: inherit;
}

body.active {
    margin-top: 80px;
    overflow: hidden;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
}

.header {
    z-index: 1000;
    width: 100%;
    background: #EDF1F3;
}

.main > * + * {
    margin-top: 20px;
}

.image img {
    margin: auto;
}

.content {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px;
    background: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

a {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

h1, h2, h3, h4, .title {
    font-weight: 700;
    z-index: 100;
    color: #1A2930;
    text-align: center;
}

h1, .title.general {
    font-size: 40px;
    line-height: 48px;
    color: #fff;
}

h2, .title.high {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
}

h3, .title.middle {
    font-size: 16px;
    line-height: 24px;
}

h4, .title.small {
    font-size: 16px;
    line-height: 24px;
}

.button {
    min-width: 210px;
    background: #FF6B00;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 12px 20px;
    display: inline-block;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 10;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    text-transform: uppercase;
}

.button:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    background: #ff8b38;
}



/* header */



.header__menu {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    margin-left: 50px;
    margin-right: 50px;
}

.header__menu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    text-align: right;
    overflow: hidden;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

.header__menu > ul a {
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    padding: 10px 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #445058;
    text-transform: uppercase;
    border-bottom: 5px solid transparent;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.header__menu > ul a:hover {
    color: #00AA81;
}

.header__menu > ul a svg {
    display: block;
}

.header__menu > ul a:hover svg path {
    fill: #00AA81;
}

.header__menu > ul a span:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 24px;
    -moz-box-flex: 0;
    flex: 0 1 24px;
    margin-right: 16px;
    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;
}

.header__menu > ul a svg path {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.header__expand-menu {
    display: none;
    margin-bottom: 50px;
    z-index: 1001;
}

.header__expand-menu svg {
    display: block;
    margin: auto;
}

.header__expand-menu > * {
    display: none;
    width: 100%;
}

.header__expand-menu > *:nth-child(2) a {
    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;
}

.header__expand-menu li {
    display: block;
}

.header__expand-menu > *:nth-child(2) a {
    background-color: rgba(0, 0, 0, 0.05);
    color: #445058;
    font-weight: 500;
    padding: 12.5px;
    margin-bottom: 15px;
    width: 100vw;
    text-transform: uppercase;
}

.header__expand-menu img {
    display: block;
}

.header__expand-menu a span:first-child {
    margin-right: 10px;
}







.content.header__content {
    padding: 5px 0;
    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;
    background: transparent;
    border: none;
    min-height: 80px;
}

.header.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.logo img {
    display: block;
    max-width: 152px;
}

.header__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 152px;
    -moz-box-flex: 0;
    flex: 0 1 152px;
    width: 152px;
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
    width: 45px;
}

.header__button:last-child {
    margin-left: 20px;
}

.header__buttons .button {
    min-width: 100px;
    margin-right: 0vh;
}

.header__buttons > *:nth-child(2) {
    background: #00AA81;
}

.header__buttons > *:nth-child(2):hover {
    background: #00d1a0;
}


.header__menu .header__buttons {
    display: none;
}

.header__expand-menu .header__buttons {
    display: none;
}

.header__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    justify-content: flex-end;
}

.header__buttons > *:not(:first-child) {
    margin-left: 16px;
}

.header__language img {
    display: block;
    max-width: 24px;
}

.header__language {
    color: #445058;
    font-size: 16px;
    line-height: 24px;
    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;
    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;
    width: 55px;
}

.header__language span:first-child {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.header__language span:nth-child(2) {
    margin-left: 10px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}




/* cover */

.cover {
    overflow: hidden;
    background: #07080A;
}

.content.cover__content {
    padding: 88px 0;
    overflow: visible;
    background: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

.cover__wrap {
    z-index: 100;
    max-width: 590px;
    width: 60%;
    text-align: center;
    padding: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #fff;
}

.title.general > span {
    display: block;
    margin-bottom: 16px;
}

.title.general > span span {
    color: #FF6B00;
}

.cover__desc {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cover__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cover__bg img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}



/* table */

table {
    width: 100%;
    text-align: left;
}

table thead tr:nth-child(n) {
    background: #EBEFEF;
    font-weight: 700;
    margin-bottom: 8px;
}

table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
    border-bottom: 0.5px solid #1A2930;
}

table tr + tr {
    margin-top: 8px;
}

table tbody tr td:first-child {
    font-weight: 500;
}

table td {
    padding: 12px 20px;
}

table td:nth-child(n + 2) {
    padding-left: 0;
}

.information__table td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
    min-width: 200px;
}

.information__table td:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75%;
    -moz-box-flex: 0;
    flex: 0 1 75%;
    max-width: -webkit-calc(100% - 200px);
    max-width: -moz-calc(100% - 200px);
    max-width: calc(100% - 200px);
}

table a {
    display: block;
}

table td > * + * {
    margin-top: 8px;
}


.vip__wrap {
    max-width: 820px;
    margin: auto;
}

.vip__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 35%;
    -moz-box-flex: 0;
    flex: 0 1 35%;
    min-width: 230px;
}

.vip__table tr td:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 65%;
    -moz-box-flex: 0;
    flex: 0 1 65%;
    max-width: -webkit-calc(100% - 230px);
    max-width: -moz-calc(100% - 230px);
    max-width: calc(100% - 230px);
}



.tournaments__table tr td, .casino__table tr td {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 38%;
    -moz-box-flex: 0;
    flex: 0 1 38%;
}

.tournaments__table tr td:nth-child(1), .casino__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 24%;
    -moz-box-flex: 0;
    flex: 0 1 24%;
}



.slots__table tr td {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 19%;
    -moz-box-flex: 0;
    flex: 0 1 19%;
}

.slots__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 24%;
    -moz-box-flex: 0;
    flex: 0 1 24%;
}



.deposit__wrap {
    max-width: 820px;
    margin: auto;
}

.deposit__table tr td {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% / 3);
}







/* plus */

.plus__list {
    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;
    margin-top: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.article * + .plus__list {
    margin-top: 0;
}

.plus-list__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 20px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 20px) / 2);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #F8F9F9;
    display: block;
    -webkit-box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    -moz-box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
}

.article .plus-list__item {
    padding: 30px 60px;
    margin-left: 0;
    margin-top: 20px;
}

.article .plus-list__item:before {
    content: none;
}

.plus-item__title {
    text-align: left;
}

.plus-item__title:before {
    content: '';
    position: absolute;
    left: -40px;
    top: -webkit-calc(50% - 12px);
    top: -moz-calc(50% - 12px);
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/plus.svg);
}

.plus-list__item:nth-child(2) .plus-item__title:before {
    background-image: url(../images/minus.svg);
}

.plus-list__item > div:nth-child(2) > * + * {
    margin-top: 8px;
}



/* article  */

article, .article {
    text-align: center;
}

article p, .article p {
    text-align: left;
}

article > *, .article > * {
    margin-top: 16px;
}

.article > * + .button, article > * + .button {
    margin-top: 16px;
}

article > *:first-child, .article > *:first-child, article > a.button:first-child, .article > a.button:first-child {
    margin-top: 0;
}

article li, .article li {
    padding-left: 20px;
    display: block;
    text-align: left;
    margin-left: 32px;
}

article li span, .article li span {
    font-weight: 700;
}

article li + li, .article li + li {
    margin-top: 8px;
}

.article ul li:before, article ul li:before {
    content: "";
    width: 3px;
    height: 3px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #1A2930;
    position: absolute;
    left: 7px;
    top: 10.5px;
}

.article ol, article ol {
    list-style-position: inside;
    list-style: none;
}

.article ol > li, article > ol li {
    counter-increment: ol;
}

.article ol > li:before, article ol > li:before {
    content: counter(ol) '.';
    font-size: inherit;
    line-height: inherit;
    position: absolute;
    left: 0;
    top: 0;
    color: #1A2930;
}

.article > ol > li:marker, article > ol > li:marker {
    content: counters(li);
}

.article p a {
    text-decoration: underline;
}





/* faq */

.faq__content.content {
    overflow: hidden;
}

.title.middle.faq-item__title {
    padding: 14.5px 53px 14.5px 16px;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    background: #F8F9F9;
    color: #1A2930;
    font-weight: 700;
}

.title.middle.faq-item__title:before {
    content: url(../images/arrow.svg);
    position: absolute;
    right: 14px;
    top: -webkit-calc(50% - 17px);
    top: -moz-calc(50% - 17px);
    top: calc(50% - 17px);
    width: 32px;
    height: 32px;
    line-height: 0;
    -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.active .title.middle.faq-item__title:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq__item {
    display: block;
    cursor: pointer;
}

.faq__item + .faq__item {
    margin-top: 8px;
}

.faq-item__answer {
    padding: 10px 16px;
    border-bottom: 0.5px solid #1A2930;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}


/* footer */

.footer {
    margin-top: 20px;
    background: #fff;
    font-weight: 500;
}

.content.footer__content {
    padding: 30px 0;
    background: transparent;
    color: #868C96;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.footer img {
    display: block;
    margin: auto;
}

.footer__payment {
    border-top: 1px solid #868C96;
    border-bottom: 1px solid #868C96;
    padding: 10px 0 30px;
}

.footer__payment ul {
    text-align: center;
    margin-left: -18px;
}

.footer__payment li {
    vertical-align: middle;
    display: inline-block;
    margin-left: 18px;
    margin-top: 20px;
}

.footer__article {
    margin-top: 30px;
    margin-bottom: 16px;
}



/* feedback */

.feedback__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    margin-top: -20px;
    -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;
}

.feedback-list__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 40px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 40px) / 3);
    margin-top: 20px;
    padding: 20px;
    border-bottom: 0.5px solid #1A2930;
    display: block;
    min-height: 160px;
}

.feedback-list__item:nth-child(2n + 1) {
    background: #F8F9F9;
}

.feedback-list__item > span {
    display: block;
}





/* mobile */


.mobile__button {
    z-index: 100;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    background: #00AA81;
    min-width: 240px;
    width: 240px;
    padding: 16px 30px;
    z-index: 101;
}

.mobile__button span span {
    display: block;
}

.mobile__button img {
    display: block;
}

.mobile__button > span:first-child {
    margin-right: 12px;
}

.mobile__button > span:last-child {
    text-align: left;
}

.mobile__button:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    background: #00d1a0;
}


.mobile__wrapper {
    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;
}

.article .mobile__wrapper {
    margin-top: 0;
}

.mobile__wrap {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #F8F9F9;
    padding: 30px 20px;
    -webkit-box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    -moz-box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    text-align: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 20px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 20px) / 2);
    margin-top: 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;
}

.mobile__wrap > * + * {
    margin-top: 16px;
}

.mobile__button {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    max-height: 64px;
    margin: auto auto 0;
}

.mobile__wrap ol {
    margin-bottom: 16px;
}



/* rating */

.rating__list {
    margin-top: -20px;
    margin-left: -20px;
    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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.rating-list__item {
    margin-left: 20px;
    margin-top: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 20px * 5) / 5);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 20px * 5) / 5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #F8F9F9;
    padding: 20px;
    -webkit-box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    -moz-box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
}

.rating-item__image {
    margin-bottom: 16px;
}

.rating-item__marke {
    margin-top: 16px;
    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: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    align-items: flex-end;
    font-weight: 700;
}

.rating-item__marke span:first-child {
    font-size: 24px;
    line-height: 28px;
}




/* offer */

.offer__content.content {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    overflow: hidden;
    min-height: 400px;
}

.offer__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.offer__bg img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    height: 100%;
    width: 100%;
}

.offer__wrap {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #fff;
    padding: 20px;
    max-width: 590px;
    width: 70%;
    text-align: center;
    z-index: 100;
}

.offer__type {
    z-index: 1;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 50px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: -45px;
    top: 13px;
    background: #FF6B00;
}

.offer__type.green {
    background: #00AA81;
}




/* register */

.register__wrap {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #F8F9F9;
    padding: 16px 20px;
    -webkit-box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    -moz-box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
    box-shadow: 4px 4px 20px rgba(68, 80, 88, 0.5);
}

.article .register__wrap > * {
    text-align: left;
}

.register__wrap > * + * {
    margin-top: 16px;
}




/* promotions */

.promotions__content > * + * {
    margin-top: 16px;
}

.promotions__list {
    margin-top: 0;
}

.promotions-list__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 24px 20px;
    overflow: hidden;
    min-height: 288px;
    margin-top: 20px;
}

.promotions-item__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.promotions-item__bg img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    -o-object-position: right;
    object-position: right;
}

.promotions-item__image {
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: 100%;
}

.promotions-item__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    height: 100%;
}

.promotions-item__wrap {
    z-index: 100;
    color: #fff;
    max-width: 570px;
    text-align: center;
    width: 74%;
}

.promotions-item__title.title.high {
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.promotions-item__title:before {
    content: '';
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 48px;
    height: 1px;
    left: -webkit-calc(50% - 24px);
    left: -moz-calc(50% - 24px);
    left: calc(50% - 24px);
}

.promotions-item__desc {
    text-align: left;
}

.promotions-item__desc > * + * {
    margin-top: 8px;
}

.promotions-item__buttons {
    margin-top: 10px;
    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;
}

.promotions-item__button.button {
    min-width: 135px;
    margin: 14px 8px 0;
    height: 48px;
    padding: 12px 24px;
}

.promotions-item__button.button.transparent {
    color: #fff;
    border: 1px solid #F0F3F5;
    background: transparent;
    padding: 11px 24px;
}

.promotions-list__item:nth-child(1) .promotions-item__image {
    right: 14%;
}

.promotions-list__item:nth-child(2) .promotions-item__image {
    right: 11%;
}

.promotions-list__item:nth-child(3) .promotions-item__image {
    right: 14%;
}

.promotions-list__item:nth-child(4) .promotions-item__image {
    right: 8%;
}
