@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, .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: #fff;
    font-size: 15px;
    line-height: 25px;
    overflow-x: hidden;
    background: #411c24;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
}

body.active {
    margin-top: 100px;
}

* {
    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;
    margin: auto;
}

.header {
    z-index: 1000;
    width: 100%;
    background: #512831;
}

.image img {
    margin: auto;
    display: block;
}

.content {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 30px;
}

.main {
    padding-bottom: 25px;
}

.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: 45px;
    line-height: 55px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

h1 span {
    color: #ffcf0e;
}

h2, .title.high, h3, .title.middle {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 20px;
    color: #fbd667;
}

h2.green, h3.green {
    text-transform: uppercase;
    text-align: center;
    color: #95ef4b;
    margin-bottom: 50px;
}

h2.green span, h3.green span {
    padding-left: 50px;
    padding-right: 50px;
}

h2.green span:before, h3.green span:before {
    content: '';
    position: absolute;
    left: 0;
    width: 31px;
    height: 35px;
    top: -webkit-calc(50% - 17.5px);
    top: -moz-calc(50% - 17.5px);
    top: calc(50% - 17.5px);
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/title-left.png);
}

h2.green span:after, h3.green span:after {
    content: '';
    position: absolute;
    right: 0;
    width: 31px;
    height: 35px;
    top: -webkit-calc(50% - 17.5px);
    top: -moz-calc(50% - 17.5px);
    top: calc(50% - 17.5px);
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/title-right.png);
}

h4, .title.small {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
}

.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 {
    padding: 10px 30px 10px 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;
    min-height: 100px;
}

.header.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header__logo img {
    display: block;
    margin: auto;
}

.header__logo {
    display: block;
}

.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__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.header__menu {
    margin-left: 70px;
}

.header__menu * {
    display: inline-block;
    vertical-align: middle;
}

.header__menu a, .header__expand-menu > *:nth-child(2) a {
    padding: 10px 30px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.header__menu a:hover {
    color: #ffbd04;
}

.header__expand-menu {
    display: none;
}

.header__expand-menu > * {
    display: none;
    width: 100%;
}

.header__expand-menu > *:nth-child(n + 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(255, 255, 255, 0.1);
    color: #fff;
    padding: 12.5px;
    margin-bottom: 15px;
    width: 100vw;
}

.header__expand-menu > *:nth-child(2) > li:last-child a {
    margin-bottom: 0;
}

.header__right > .header__buttons {
    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__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;
}







/* cover */

.cover__content.content {
    padding: 60px 15px 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;
}

.cover__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 156px;
    -moz-box-flex: 0;
    flex: 0 1 156px;
}

.cover__article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 156px - 156px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 156px - 156px);
    padding: 0 20px;
    text-align: center;
}




/* main info */


.main-info__content h2 {
    margin-bottom: 50px;
    color: #95ef4b;
    text-align: center;
    text-transform: uppercase;
}

.main-info__wrap {
    color: #1c192c;
    text-transform: uppercase;
    overflow: hidden;
    padding: 40px 30px 40px 60px;
}

.wrap {
    border: 2px solid #a18446;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
}

.wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #3c2720;
}

.main-info__wrap:before {
    width: -webkit-calc((100% - 30px - 60px) * 0.30 + 60px);
    width: -moz-calc((100% - 30px - 60px) * 0.30 + 60px);
    width: calc((100% - 30px - 60px) * 0.30 + 60px);
}

table {
    width: 100%;
    font-size: 18px;
    line-height: 36px;
    word-break: break-word;
}

.main-info__table tr td:first-child {
    font-weight: 600;
}

table tr td:first-child {
    color: #a2f44d;
}

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 tr td:first-child {
    padding-right: 30px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    min-width: 200px;
}

.main-info__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% - 200px);
    max-width: -moz-calc(100% - 200px);
    max-width: calc(100% - 200px);
    padding-left: 60px;
}

.main-info__table tbody tr + tr {
    margin-top: 25px;
}


/* app */

.app__content.content {
    padding-top: 50px;
    padding-bottom: 50px;
}



.light {
    padding: 25px 0;
    background: #512831;
}

.small img {
    margin: auto;
    display: block;
}

.image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
}

/* vip */

.vip__content.content {
    padding-top: 50px;
}

.vip__content.article > * + * {
    margin-top: 40px;
}


/* tournaments */

table.big {
    font-size: 24px;
    color: #0f1732;
}

.tournaments__content.article > * + * {
    margin-top: 40px;
}

.tournaments__content .tournaments__wrap + .image {
    margin-top: 50px;
}

.tournaments__wrap {
    padding: 0 0 40px 30px;
}

.tournaments__wrap:before {
    width: -webkit-calc((100% - 30px) * 0.24 + 30px);
    width: -moz-calc((100% - 30px) * 0.24 + 30px);
    width: calc((100% - 30px) * 0.24 + 30px);
}

.tournaments__table thead {
    font-weight: 600;
}

.tournaments__table thead td {
    padding-top: 30px;
    padding-bottom: 30px;
}

.tournaments__table thead tr td:nth-child(n + 2) {
    background: rgba(0, 0, 0, 0.05);
}

.tournaments__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 24%;
    -moz-box-flex: 0;
    flex: 0 1 24%;
    padding-right: 30px;
}

.tournaments__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-box-flex: 0;
    flex: 0 1 32%;
    padding-left: 60px;
}

.tournaments__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 44%;
    -moz-box-flex: 0;
    flex: 0 1 44%;
    padding-left: 60px;
    padding-right: 30px;
}

.tournaments__table tbody tr {
    margin-top: 25px;
}




/* selection */

.selection__content.article > * + * {
    margin-top: 40px;
}



/* games */

.games__wrap {
    padding: 30px 30px 40px 60px;
}

.games__wrap:before {
    width: -webkit-calc((100% - 30px - 60px) * 0.2 + 60px);
    width: -moz-calc((100% - 30px - 60px) * 0.2 + 60px);
    width: calc((100% - 30px - 60px) * 0.2 + 60px);
}

.games__table thead, .games__table tr td:first-child {
    font-weight: 600;
}

.games__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 20%;
    -moz-box-flex: 0;
    flex: 0 1 20%;
    padding-right: 20px;
}

.games__table tr td:nth-child(n + 2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 40%;
    -moz-box-flex: 0;
    flex: 0 1 40%;
    padding-left: 60px;
}

.games__table tbody tr {
    margin-top: 25px;
}

.games__table span {
    display: block;
}

.games__table tbody tr:first-child {
    margin-top: 50px;
}




/* payment */

.payment__content.content {
    padding-top: 15px;
}

.payment__list {
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 35px 5% 45px;
    margin-bottom: 40px;
}

.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;
}

.payment__wrap {
    color: #411c24;
    font-weight: 600;
    padding: 40px 30px 40px 60px;
}

.payment__wrap:before {
    width: -webkit-calc((100% - 30px - 60px) * 0.30 + 60px);
    width: -moz-calc((100% - 30px - 60px) * 0.30 + 60px);
    width: calc((100% - 30px - 60px) * 0.30 + 60px);
}

.payment__table tr td:first-child {
    padding-right: 30px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    min-width: 200px;
}

.payment__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% - 200px);
    max-width: -moz-calc(100% - 200px);
    max-width: calc(100% - 200px);
    padding-left: 30px;
}

.payment__table tbody tr + tr {
    margin-top: 50px;
}



/* support */

.support__content.content {
    padding-top: 15px;
}

.support__wrap {
    font-weight: 600;
    padding: 40px 40px 60px 60px;
}

.support__wrap:before {
    width: -webkit-calc((100% - 60px - 40px) * 0.48 + 60px);
    width: -moz-calc((100% - 60px - 40px) * 0.48 + 60px);
    width: calc((100% - 60px - 40px) * 0.48 + 60px);
}

.support__table.big {
    color: #411c24;
}

.support__table tr td:first-child {
    padding-right: 60px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 48%;
    -moz-box-flex: 0;
    flex: 0 1 48%;
}

.support__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 52%;
    -moz-box-flex: 0;
    flex: 0 1 52%;
    padding-left: 60px;
}

.support__table tr + tr {
    margin-top: 40px;
}




/* slots */

.slots__wrap {
    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-left: -30px;
    margin-top: -25px;
}

.slots__wrap > * {
    margin-top: 25px;
    margin-left: 30px;
}

.slots__article {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left bottom, left top, from(#5c2b36), to(#60353e));
    background: -webkit-linear-gradient(bottom, #5c2b36, #60353e);
    background: -moz-linear-gradient(bottom, #5c2b36, #60353e);
    background: -o-linear-gradient(bottom, #5c2b36, #60353e);
    background: linear-gradient(to top, #5c2b36, #60353e);
    padding: 20px 25px 25px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(25% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(25% - 30px);
}

.slots__games {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(50% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(50% - 30px);
}

.slots-games__small {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(25% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(25% - 30px);
}

.slots-games__desc {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #5f323c;
    padding: 30px 35px;
}

.slots-games__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-left: -30px;
}
.slots-games__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: 20px;
    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;
    overflow: hidden;
}

.slots-games__list span:nth-child(2), .slots-games-small__list span:nth-child(2) {
    width: 100%;
}

.slots-games__list span:nth-child(2) img, .slots-games-small__list span:nth-child(2) img {
    display: block;
    margin: auto;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.slots-games__list li > span:nth-child(1) span, .slots-games-small__list li > span:nth-child(1) span {
    display: block;
}

.slots-games__list li > span:nth-child(1), .slots-games-small__list li > span:nth-child(1) {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 10px 15px;
    width: 100%;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    z-index: 10;
    text-align: center;
}

.slots-games__list li > span:nth-child(1) span:nth-child(2), .slots-games-small__list li > span:nth-child(1) span:nth-child(2) {
    color: #fbd667;
    margin-top: 5px;
}

.slots-games__small {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left bottom, left top, from(#5c2b36), to(#60353e));
    background: -webkit-linear-gradient(bottom, #5c2b36, #60353e);
    background: -moz-linear-gradient(bottom, #5c2b36, #60353e);
    background: -o-linear-gradient(bottom, #5c2b36, #60353e);
    background: linear-gradient(to top, #5c2b36, #60353e);
    padding: 25px;
    text-align: center;
}

.slots-games-small__desc {
    margin-bottom: 15px;
}

.slots-games-small__list li {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    overflow: hidden;
    max-width: 180px;
    margin: 20px auto 0;
    border: 1px solid #8e4d5b;
}



/* form */

.form__content.content {
    padding-bottom: 0;
}

.form__content.content h2 {
    margin-bottom: 40px;
}

.form__wrap {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #64333d;
    padding: 65px 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.form__left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 68%;
    -moz-box-flex: 0;
    flex: 0 1 68%;
    max-width: -webkit-calc(100% - 310px);
    max-width: -moz-calc(100% - 310px);
    max-width: calc(100% - 310px);
}

.form__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-box-flex: 0;
    flex: 0 1 32%;
    padding-left: 60px;
    min-width: 310px;
}

.form__contacts li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    min-height: 90px;
    font-size: 18px;
    line-height: 30px;
    color: #fbd667;
    font-weight: 600;
    -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;
}

.form__contacts span {
    display: block;
}

.form__contacts li + li {
    margin-top: 25px;
}

.form__point {
    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;
}

.form__point + .form__point {
    margin-top: 25px;
}

.form-point__desc {
    min-height: 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    color: #fbd667;
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
}

.form-point__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(70% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(70% - 30px);
}

.form-point__field {
    width: 100%;
    min-height: 90px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    color: #411c24;
    font-size: 24px;
    line-height: 34px;
    padding: 28px 32px;
}

.form__point:last-child .form-point__field {
    min-height: 250px;
}

.form-point__check {
    padding: 20px 0 20px 50px;
}

.form-point__check:before {
    content: '';
    position: absolute;
    width: 21px;
    height: 21px;
    top: -webkit-calc(50% - 10.5px);
    top: -moz-calc(50% - 10.5px);
    top: calc(50% - 10.5px);
    left: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 2px solid #9b5765;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.form-point__button {
    display: block;
    min-height: 90px;
    text-align: center;
    -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);
    font-size: 24px;
    line-height: 50px;
    padding: 20px;
    width: 100%;
    font-weight: 600;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.form-point__button:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}




/* article  */

article > *, .article > * {
    margin-top: 20px;
}

.article > * + .button, article > * + .button {
    margin-top: 20px;
}

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;
    text-align: left;
}

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);
}

.article * + h2, .article * + h3 {
    margin-top: 35px;
}

.article.points h2, .article.points h3 {
    padding-left: 50px;
}

.article.points h2:before, .article.points h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7.5px;
    height: 35px;
    width: 31px;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/title.png);
}


/* faq */

.faq__wrap {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    padding: 30px 30px;
}

.faq__title.title {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #411c24;
    font-weight: 700;
}

.faq__item {
    overflow: hidden;
    cursor: pointer;
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #ffc705;
    color: #052108;
}

.faq-item__question {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#5f323c), to(#411c24));
    background: -webkit-linear-gradient(#5f323c, #411c24);
    background: -moz-linear-gradient(#5f323c, #411c24);
    background: -o-linear-gradient(#5f323c, #411c24);
    background: linear-gradient(#5f323c, #411c24);
    padding: 20px;
}

.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%;
}







/* testimonials */

.testimonials__title.title {
    margin-bottom: 40px;
}

.testimonials__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;
}

.testimonials-list__item {
    -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: #5b2d37;
    padding: 40px 30px;
    border: 1px solid #f7ce6c;
}


/* rating */

.rating__title.title {
    color: #ffc304;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    border: 2px solid #ffc705;
    padding: 16px 20px;
    margin-bottom: 0;
}

.rating__list {
    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);
    padding: 0 20px 20px 0;
    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-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 30px;
    color: #411c24;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px
}

.rating__list li {
    display: block;
    margin-top: 20px;
    margin-left: 20px;
}

.rating__list li:nth-child(1), .rating__list li:nth-child(4) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 35%;
    -moz-box-flex: 0;
    flex: 0 1 35%;
}

.rating__list li:nth-child(2), .rating__list li:nth-child(5) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 23%;
    -moz-box-flex: 0;
    flex: 0 1 23%;
}

.rating__list li:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 36% - 22% - 60px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 36% - 22% - 60px);
}
