@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;
}

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: 'Poppins', Arial, sans-serif;
    width: 100%;
    color: #fbd667;
    font-size: 15px;
    line-height: 25px;
    overflow-x: hidden;
    background: #052108;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

* {
    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: #3c2720;
}

.main {
    padding-bottom: 25px;
}

.image img {
    margin: auto;
    display: block;
}

.content {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 30px;
}

.main:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../images/main.png);
}

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: 600;
    z-index: 100;
}

h1, .title.general {
    font-size: 48px;
    line-height: 56px;
    color: #fbd667;
    text-transform: uppercase;
    text-align: center;
}

h1 span {
    padding: 0 180px;
}

h1 span:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 98px;
    left: 0;
    top: -webkit-calc(50% - 49px);
    top: -moz-calc(50% - 49px);
    top: calc(50% - 49px);
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/title.png);
}

h1 span:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 98px;
    right: 0;
    top: -webkit-calc(50% - 49px);
    top: -moz-calc(50% - 49px);
    top: calc(50% - 49px);
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/title.png);
}

h2, .title.high, h3, .title.middle {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 25px;
    color: #fbd667;
}

h3, .title.middle {
    margin-bottom: 0;
}

h2.white, h3.white {
    color: #fff;
}

h4, .title.small {
    font-size: 24px;
    line-height: 30px;
    color: #a534f3;
    text-transform: none;
    text-align: left;
}

.button {
    min-width: 180px;
    background: -webkit-gradient(linear, left top, left bottom, from(#aef94e), to(#24c33e));
    background: -webkit-linear-gradient(#aef94e, #24c33e);
    background: -moz-linear-gradient(#aef94e, #24c33e);
    background: -o-linear-gradient(#aef94e, #24c33e);
    background: linear-gradient(#aef94e, #24c33e);
    color: #2b1234;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    padding: 12.5px 15px;
    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: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.button:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}


/* header */


.content.header__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;
    background: transparent;
    border: none;
    min-height: 100px;
    padding: 15px 6%;
}

.logo img {
    display: block;
    max-width: none;
}

.header__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 120px;
    -moz-box-flex: 0;
    flex: 0 1 120px;
}

.header__button + .header__button.button {
    margin-left: 30px;
    padding: 10.5px 15px;
    background: transparent;
    color: #ffbd04;
    border: 2px solid #ffbd04;
}

.header__button + .header__button.button:hover {
    background: #ffbd04;
    color: #2b1234;
}

.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;
}

.header__desc {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    margin-left: 8%;
    margin-right: 8%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

a {
    color: inherit;
}

.header__desc a + a {
    margin-left: 40px;
}

.header__desc a:hover {
    color: #ffbd04;
}




/* cover */

.cover__content.content {
    padding-top: 0;
    padding-bottom: 0;
}

.cover__title.title {
    padding-top: 75px;
    padding-bottom: 75px;
    max-width: 850px;
    margin: auto;
}

.cover__article {
    color: #fff;
}




/* main info */

.main-info__content.content {
    padding-bottom: 0;
}

.main-info__content + .content {
    color: #fff;
}

.title.main-info__title.high {
    text-align: center;
    color: #3c2720;
    font-size: 18px;
    line-height: 36px;
    text-transform: uppercase;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    padding: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fffbea), to(#fac90f));
    background: -webkit-linear-gradient(#fffbea, #fac90f);
    background: -moz-linear-gradient(#fffbea, #fac90f);
    background: -o-linear-gradient(#fffbea, #fac90f);
    background: linear-gradient(#fffbea, #fac90f);
}

.wrap {
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #a28852;
}

.wrap:before {
    background: #3c2720;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.main-info__wrap {
    padding: 40px 30px 50px;
}

.main-info__wrap:before {
    width: -webkit-calc((100% - 60px) * 0.32 + 30px);
    width: -moz-calc((100% - 60px) * 0.32 + 30px);
    width: calc((100% - 60px) * 0.32 + 30px);
}

table {
    width: 100%;
    word-break: break-word;
}

.main-info__table {
    font-size: 18px;
    line-height: 36px;
    text-transform: uppercase;
    color: #1c192c;
}

table a {
    color: #1c192c;
}

table a:hover {
    text-decoration: underline;
}

table tr {
    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;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.main-info__table tbody tr + tr {
    margin-top: 25px;
}

.main-info__table tr td:first-child {
    padding-right: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-box-flex: 0;
    flex: 0 1 32%;
    min-width: 200px;
    padding-right: 15px;
    font-weight: 600;
    color: #fcdc7d;
}

.main-info__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 68%;
    -moz-box-flex: 0;
    flex: 0 1 68%;
    max-width: -webkit-calc(100% - 200px);
    max-width: -moz-calc(100% - 200px);
    max-width: calc(100% - 200px);
    padding-left: 60px;
}


/* tournaments */

.tournaments__table {
    font-size: 24px;
    line-height: 36px;
    color: #0f1732;
}

.tournaments__wrap {
    padding: 35px 30px 50px 50px;
}

.tournaments__wrap:before {
    width: -webkit-calc((100% - 80px) * 0.30 + 50px);
    width: -moz-calc((100% - 80px) * 0.30 + 50px);
    width: calc((100% - 80px) * 0.30 + 50px);
}

.tournaments__table tr td:first-child {
    padding-right: 30px;
    color: #fbd667;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
}

.tournaments__table tr td:nth-child(n + 2) {
    padding-left: 30px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 35%;
    -moz-box-flex: 0;
    flex: 0 1 35%;
}

.tournaments__table tbody tr {
    margin-top: 25px;
}

.tournaments__table thead {
    font-weight: 600;
}


/* slots */

.slots__content.content {
    padding-top: 0;
}

.slots__table {
    color: #fff;
    font-size: 18px;
    line-height: 36px;
    font-weight: 600;
}

.slots__wrap {
    background: #50342b;
    border: none;
}

.slots__table:before {
    width: 23%;
    background: -webkit-gradient(linear, left top, left bottom, from(#9ef34c), to(#38cb40));
    background: -webkit-linear-gradient(#9ef34c, #38cb40);
    background: -moz-linear-gradient(#9ef34c, #38cb40);
    background: -o-linear-gradient(#9ef34c, #38cb40);
    background: linear-gradient(#9ef34c, #38cb40);
    content: '';
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}

.slots__table tr td:first-child {
    color: #052108;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 23%;
    -moz-box-flex: 0;
    flex: 0 1 23%;
    padding-left: 40px;
}

.slots__table td {
    padding: 15px 20px 15px 30px;
}

.slots__table thead td {
    padding-top: 30px;
}

.slots__table tbody tr:last-child td {
    padding-bottom: 30px;
}

.slots__table tr td:nth-child(2), .slots__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 19%;
    -moz-box-flex: 0;
    flex: 0 1 19%;
    padding-left: 40px;
}

.slots__table tr td:nth-child(n + 4) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 13%;
    -moz-box-flex: 0;
    flex: 0 1 13%;
}

.slots__table tr td:nth-child(2n) {
    background: #3c2720;
}


/* form */

.form__content.content {
    padding-bottom: 15px;
}

.form__content h2 {
    margin-bottom: 40px;
}

.form__wrap {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: -webkit-gradient(linear, left top, right top, from(#fbe194), to(#fbd665));
    background: -webkit-linear-gradient(left, #fbe194, #fbd665);
    background: -moz-linear-gradient(left, #fbe194, #fbd665);
    background: -o-linear-gradient(left, #fbe194, #fbd665);
    background: linear-gradient(to right, #fbe194, #fbd665);
    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: 45px 75px 45px 0;
}

.form__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 48%;
    -moz-box-flex: 0;
    flex: 0 1 48%;
}

.form__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(52% - 75px);
    -moz-box-flex: 0;
    flex: 0 1 calc(52% - 75px);
}

.form__field {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #3c2720;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #3c2720;
    padding: 25px 30px;
}

.form__right > * + * {
    margin-top: 30px;
}

.form__check {
    padding-left: 40px;
    max-width: 400px;
    font-size: 16px;
    line-height: 25px;
    color: #665e47;
    margin-top: 35px;
}

.form__check:before {
    content: '';
    position: absolute;
    left: 5px;
    width: 20px;
    height: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    top: -webkit-calc(50% - 10px);
    top: -moz-calc(50% - 10px);
    top: calc(50% - 10px);
    border: 2px solid #908565;
}

.form__button.button {
    margin-top: 35px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #000;
    min-width: 210px;
    padding: 15px;
    text-transform: uppercase;
}




/* app */

.app__content > * + * {
    margin-top: 25px;
}

.app__content h2 {
    margin-bottom: 50px;
}

.app__content h2 + * + .dark {
    margin-top: 40px;
}


/* banner */


.banner__content.content {
    padding-top: 0;
    padding-bottom: 15px;
}

.banner__wrapper {
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #71d945;
    text-align: center;
    overflow: hidden;
    padding: 75px 50px;
}

.banner__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.banner__title.title {
    margin-bottom: 50px;
}

.banner__title span {
    display: block;
}

.banner__wrapper:hover .banner__button {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}


/* pros */

.dark {
    padding: 35px 40px 50px 55px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #3c2720;
    border: 1px solid #a28852;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
}

.dark h3 {
    margin-bottom: 25px;
}

.dark li + li {
    margin-top: 10px;
}

.dark li {
    display: block;
}


.pros__content.content {
    padding-top: 0;
    padding-bottom: 15px;
}

.pros__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;
}

.pros-list__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 30px) / 2);
    font-weight: 600;
    display: block;
}



/* registration */

.registration__list {
    margin-top: 35px;
    margin-bottom: 35px;
}

.registration__list li + li {
    margin-top: 25px;
}

.registration__list li {
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    border: 3px solid #32c73f;
    padding: 25px 30px;
}


.bonus__content.article * + h3 {
    margin-top: 40px;
}

.vip__content.article h2 + *, .vip__content.article h3 + *, .vip__content.article * + h2, .vip__content.article * + h3 {
    margin-top: 40px;
}

.vip__content.content {
    padding-top: 15px;
}



/* article  */

article > *, .article > * {
    margin-top: 25px;
}

.article > * + .button, article > * + .button {
    margin-top: 25px;
}

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: 30px;
    display: block;
}

article li + li, .article li + li {
    margin-top: 10px;
}

.article ul li:before, article ul li:before {
    content: ".";
    font-size: 25px;
    line-height: inherit;
    color: #fff;
    font-weight: 700;
    position: absolute;
    left: 10px;
    top: -6px;
}

.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: 10px;
    top: 0;
    font-weight: 400;
    color: #fff;
}

.article > ol > li:marker, article > ol > li:marker {
    content: counters(li);
}



/* deposit */

.deposit__content.content {
    padding-top: 15px;
    padding-bottom: 0;
}

.deposit__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;
}

.deposit-list__item {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 30px) / 2);
}

.deposit-list__item.dark {
    color: #f7ce6c;
    font-size: 15px;
    line-height: 25px;
}

.deposit-item__desc {
    margin-top: 40px;
    margin-bottom: 40px;
}

.deposit-item__list li + li {
    margin-top: 0;
}

.deposit-item__list {
    font-weight: 600;
}



/* payment */

.payment__content.content {
    padding-top: 0;
    padding-bottom: 0;
}

.payment__list {
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 35px 5% 45px;
}

.payment__list ul {
    margin-left: -23px;
    text-align: center;
}

.payment__list img {
    display: block;
    margin: auto;
}

.payment__list li {
    margin-top: 15px;
    margin-left: 23px;
}



/* faq */

.faq__content.content {
    padding-top: 0;
    padding-bottom: 0;
}

.faq__wrap {
    padding: 40px 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#604137), to(#503025));
    background: -webkit-linear-gradient(#604137, #503025);
    background: -moz-linear-gradient(#604137, #503025);
    background: -o-linear-gradient(#604137, #503025);
    background: linear-gradient(#604137, #503025);
}

.faq__title.title {
    color: #ffc705;
    margin-bottom: 40px;
    text-align: center;
}


.faq__item {
    overflow: hidden;
    display: block;
    background: #fff;
    color: #052108;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.faq-item__question {
    font-size: 30px;
    line-height: 40px;
    color: #0f1732;
    font-weight: 700;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#9bf04c), to(#45cd41));
    background: -webkit-linear-gradient(#9bf04c, #45cd41);
    background: -moz-linear-gradient(#9bf04c, #45cd41);
    background: -o-linear-gradient(#9bf04c, #45cd41);
    background: linear-gradient(#9bf04c, #45cd41);
    padding: 15px 20px;
    cursor: pointer;
}

.faq__item + .faq__item {
    margin-top: 25px;
}

.faq-item__answer {
   padding: 20px;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}



/* games */

.games__content.content {
    padding-top: 10px;
    padding-bottom: 15px;
}

.games__content > * + * {
    margin-top: 25px;
}

.games__list li + li {
    margin-top: 25px;
}

.games__list li {
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 24px;
    line-height: 36px;
    color: #052108;
    padding: 20px 30px;
    background: -webkit-gradient(linear, left top, right top, from(#a7f64d), to(#2fc73f));
    background: -webkit-linear-gradient(left, #a7f64d, #2fc73f);
    background: -moz-linear-gradient(left, #a7f64d, #2fc73f);
    background: -o-linear-gradient(left, #a7f64d, #2fc73f);
    background: linear-gradient(to right, #a7f64d, #2fc73f);
}

.games__list span {
    font-weight: 700;
}



/* live */

.live__content > * + * {
    margin-top: 25px;
}

.live__list {
    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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-left: -30px;
}

.live__list + * {
    margin-top: 35px;
}

.live__list li {
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-top: 25px;
    margin-left: 30px;
    background: #3c2720;
    border: 1px solid #a28852;
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    text-align: center;
    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;
    padding: 20px 15px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 120px) / 4);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 120px) / 4);
}


/* reviews */


.reviews__list {
    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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -25px;
    margin-left: -30px;
}

.reviews__list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 90px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 90px) / 3);
    margin-top: 25px;
    margin-left: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    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;
    text-align: center;
    color: #fff;
    background: #3c2720;
    padding: 25px 30px;
    border: 1px solid #f7ce6c;
}



/* points */

.points__content.content {
    padding-top: 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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
}

.points__wrap {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffc705), to(#ffad01));
    background: -webkit-linear-gradient(#ffc705, #ffad01);
    background: -moz-linear-gradient(#ffc705, #ffad01);
    background: -o-linear-gradient(#ffc705, #ffad01);
    background: linear-gradient(#ffc705, #ffad01);
    color: #052108;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    padding: 2px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 60px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 60px) / 3);
}

.points__desc {
    font-size: 24px;
    line-height: 30px;
    color: #ffc304;
    padding: 15px 25px;
    background: #052108;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
}

.points__list {
    padding: 25px;
}

.points__list li + li {
    margin-top: 20px;
}

.points__list li {
    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;
}

.points__list li span:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 70%;
    -moz-box-flex: 0;
    flex: 0 1 70%;
    padding-right: 20px;
    max-width: -webkit-calc(100% - 50px);
    max-width: -moz-calc(100% - 50px);
    max-width: calc(100% - 50px);
}

.points__list li span:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    min-width: 50px;
}


.points__article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 60px) / 3 * 2 + 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 60px) / 3 * 2 + 30px);
    background: #1e4922;
    color: #ffb503;
    padding: 40px 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.points__article h2 {
    color: #ffb503;
}
