@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');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;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: 'Roboto', Arial, sans-serif;
    width: 100%;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    overflow-x: hidden;
    background: #2b1234;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

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;
}

.header {
    z-index: 1000;
    width: 100%;
    background: #4b2659;
}

.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);
}

.image img {
    margin: auto;
    display: block;
}

.content {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 30px;
}

.content.border {
    background: #371942;
    border: 1px solid #6d3383;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.content + .content {
    margin-top: 25px;
}

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;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
}

h1, .title.general {
    font-size: 45px;
    line-height: 55px;
    color: #ffc606;
    text-transform: uppercase;
    font-family: 'Rubik', Arial, sans-serif;
}

h1 span {
    color: #fff;
}

h2, .title.high, h3, .title.middle {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 25px;
    color: #32c940;
}

h2 span, h3 span {
    padding-left: 150px;
    padding-right: 150px;
}

h2 span:before, h3 span:before {
    content: '';
    position: absolute;
    width: 98px;
    height: 30px;
    left: 0;
    top: -webkit-calc(50% - 15px);
    top: -moz-calc(50% - 15px);
    top: calc(50% - 15px);
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/title-left.svg);
}

h2 span:after, h3 span:after {
    content: '';
    position: absolute;
    width: 98px;
    height: 30px;
    right: 0;
    top: -webkit-calc(50% - 15px);
    top: -moz-calc(50% - 15px);
    top: calc(50% - 15px);
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/title-right.svg);
}

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: 210px;
    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;
    font-family: 'Poppins', Arial, sans-serif;
}

.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;
    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 {
    padding-left: 8%;
    padding-right: 30px;
}

.header__menu * {
    display: inline-block;
    vertical-align: middle;
}

.header__left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
}

.header__menu {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
}

.header__menu a, .header__expand-menu > *:nth-child(2) a {
    padding: 10px;
    -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: 500;
    text-transform: uppercase;
    font-family: 'Oswald', Arial, sans-serif;
}

.header__menu li + li {
    margin-left: 58px;
}

.header__menu li:after {
    content: '';
    position: absolute;
    width: 58px;
    height: 15px;
    top: -webkit-calc(50% - 7.5px);
    top: -moz-calc(50% - 7.5px);
    top: calc(50% - 7.5px);
    right: -58px;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/menu.svg);
}

.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 li:before {
    content: '';
    position: absolute;
    width: 58px;
    height: 15px;
    top: -22px;
    left: -webkit-calc(50% - 29px);
    left: -moz-calc(50% - 29px);
    left: calc(50% - 29px);
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/menu.svg);
}

.header__expand-menu li:last-child:after {
    content: '';
    position: absolute;
    width: 58px;
    height: 15px;
    bottom: -22px;
    left: -webkit-calc(50% - 29px);
    left: -moz-calc(50% - 29px);
    left: calc(50% - 29px);
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/menu.svg);
}

.header__expand-menu li + li {
    margin-top: 25px;
}

.header__expand-menu > *:nth-child(2) a {
    color: #fff;
    padding: 12.5px;
    width: 100vw;
}

.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:first-child {
    color: #ffbd04;
    border: 2px solid #ffbd04;
    padding: 10.5px 15px;
    background: transparent;
    min-width: 180px;
}

.header__button + .header__button.button {
    margin-left: 30px;
}




/* cover */

.cover__content.content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.cover__title.title {
    max-width: 900px;
    margin: auto;
}




/* main info */


.main-info__title.title {
    margin-bottom: 30px;
}

.wrap {
    background: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.wrap:before {
    background: #552666;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.main-info__wrap {
    padding: 30px 40px 60px;
}

.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;
    font-family: 'Rubik', Arial, sans-serif;
}

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;
    color: #fff;
    font-weight: 700;
}

.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;
}


/* registration */

.registration__content {
    padding-bottom: 40px;
}

.registration__list {
    font-weight: 700;
    margin-top: 30px;
}

.registration__list > * + * {
    margin-top: 20px;
}




/* app */

.app__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;
}

.app__list > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 30px) / 2);
}




/* list */

.list__content, .main-info__content, .app__content {
    padding-left: 30px;
    padding-right: 30px;
}

.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;
    margin-top: -25px;
}

.list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 120px) / 4);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 120px) / 4);
    padding: 20px 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: rgba(127, 37, 110, 0.84);
    border: 1px solid #65518a;
    margin-top: 25px;
    margin-left: 30px;
}

.list h3 {
    text-align: left;
    color: #fff;
    margin-bottom: 25px;
}


/* banner */

.banner__content.content {
    padding: 0;
}

.banner__wrapper {
    padding: 45px 6%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.banner__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #6d3383;
}

.banner__bg img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.banner__image {
    position: absolute;
    left: 30px;
    bottom: 0;
    height: -webkit-calc(100% + 25px);
    height: -moz-calc(100% + 25px);
    height: calc(100% + 25px);
    z-index: 50;
}

.banner__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    height: 100%;
}

.banner__desc {
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    z-index: 100;
    font-family: 'Rubik', Arial, sans-serif;
}

.banner__desc span:nth-child(1), .banner__desc span:nth-child(2) {
    color: #9cf24c;
}

.banner__desc span:nth-child(3), .banner__desc span:nth-child(4) {
    color: #fece0c;
}

.banner__wrapper:hover .banner__button {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.banner__wrap {
    max-width: 720px;
    padding: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 100;
    width: 80%;
}





/* dark */

.dark {
    padding: 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #492257;
    color: #fff;
    border: 1px solid #6d3383;
}

.dark h3 {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    color: #fff;
    font-weight: 700;
}

.dark li {
    display: block;
}



/* pros */

.pros__wrap {
    padding: 30px 40px;
}

.pros__wrap:before {
    width: -webkit-calc((100% - 80px) * 0.40 + 40px);
    width: -moz-calc((100% - 80px) * 0.40 + 40px);
    width: calc((100% - 80px) * 0.40 + 40px);
}

.pros__list {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
    font-size: 18px;
    line-height: 36px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.pros__list > li:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 40%;
    -moz-box-flex: 0;
    flex: 0 1 40%;
    padding-right: 30px;
}

.pros__list > li:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 60%;
    -moz-box-flex: 0;
    flex: 0 1 60%;
    padding-left: 30px;
    color: #1c192c;
}

.pros-item__desc {
    font-weight: 700;
}

.pros-item__list li {
    margin-top: 25px;
}

.pros__list li {
    display: block;
}


/* bonus */

.bonus__table {
    font-size: 18px;
    line-height: 36px;
    color: #1c192c;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.bonus__table thead {
    font-weight: 700;
}

.bonus__wrap {
    padding: 30px 40px;
}

.bonus__wrap:before {
    width: -webkit-calc((100% - 80px) * 0.40 + 40px);
    width: -moz-calc((100% - 80px) * 0.40 + 40px);
    width: calc((100% - 80px) * 0.40 + 40px);
}

.bonus__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 40%;
    -moz-box-flex: 0;
    flex: 0 1 40%;
    padding-right: 30px;
    color: #fff;
}

.bonus__table tr td:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 60%;
    -moz-box-flex: 0;
    flex: 0 1 60%;
    padding-left: 30px;
}

.bonus__table tbody tr {
    margin-top: 25px;
}



/* payment */

.payment__wrap {
    padding: 30px 50px 40px;
}

.payment__wrap:before {
    width: -webkit-calc((100% - 100px) * 0.3 + 50px);
    width: -moz-calc((100% - 100px) * 0.3 + 50px);
    width: calc((100% - 100px) * 0.3 + 50px);
}

.payment__table {
    font-size: 24px;
    line-height: 36px;
    color: #0f1732;
    font-weight: 700;
}

.payment__table tbody tr:first-child {
    margin-top: 25px;
}

.payment__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    padding-right: 30px;
    color: #fff
}

.payment__table tr td:nth-child(n + 2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 35%;
    -moz-box-flex: 0;
    flex: 0 1 35%;
    padding-left: 60px;
}



/* slots */

.article .slots__wrap {
    margin-top: 40px;
}

.slots__wrap {
    padding: 30px;
}

.slots__wrap:before {
    width: -webkit-calc((100% - 60px) * 0.17 + 30px);
    width: -moz-calc((100% - 60px) * 0.17 + 30px);
    width: calc((100% - 60px) * 0.17 + 30px);
}

.slots__table {
    font-size: 18px;
    line-height: 36px;
    font-weight: 700;
    color: #0f1732;
}

.slots__table tbody tr {
    margin-top: 25px;
}

.slots__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 17%;
    -moz-box-flex: 0;
    flex: 0 1 17%;
    padding-right: 30px;
    color: #fff;
}

.slots__table tr td:nth-child(n + 2) {
    padding-left: 40px;
}

.slots__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 16%;
    -moz-box-flex: 0;
    flex: 0 1 16%;
}

.slots__table tr td:nth-child(3), .slots__table tr td:nth-child(4) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 12%;
    -moz-box-flex: 0;
    flex: 0 1 12%;
}

.slots__table tr td:nth-child(5) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 13%;
    -moz-box-flex: 0;
    flex: 0 1 13%;
}

.slots__table tr td:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    font-size: 16px;
    color: #d54f76;
}



/* 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);
}

.article * + h2, .article * + h3 {
    margin-top: 35px;
}

.banner + .content {
    padding-top: 50px;
}




/* faq */

.faq__content.content {
    padding-top: 0;
}

.faq__title.title {
    margin-bottom: 50px;
}

.faq__item {
    overflow: hidden;
    display: block;
    text-align: left;
    font-family: 'Poppins', Arial, sans-serif;
}

.faq-item__question {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    font-weight: 500;
    background: #230e2b;
    padding: 23px 75px;
    cursor: pointer;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #6d3383;
    -webkit-transform: color background border-color 0.2s linear;
    -moz-transform: color background border-color 0.2s linear;
    -o-transform: color background border-color 0.2s linear;
    transform: color background border-color 0.2s linear;
}

.faq-item__question:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 22px;
    width: 27px;
    height: 29px;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/faq.png);
    -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 + .faq__item {
    margin-top: 25px;
}

.faq-item__answer {
   padding: 20px 0 0;
   text-align: left;
   font-weight: 300;
   color: #ffb001;
   font-size: 16px;
   line-height: 25px;
}

.faq__item.active .faq-item__question:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq__item.active .faq-item__question {
    color: #ffbe04;
    background: #441e52;
    border-color: #ffc305;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}





/* points */

.points__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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
}

.points__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;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #48d142;
    padding: 40px 50px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 57%;
    -moz-box-flex: 0;
    flex: 0 1 57%;
}

.points__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;
    font-weight: 300;
    font-size: 14px;
    width: 100%;
}

.points__list span {
    display: block;
}

.points__list li + li {
    margin-left: 15px;
}

.points__list li span:first-child {
    min-height: 50px;
}

.points__list li span:last-child {
    color: #48d142;
}

.points__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(43% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(43% - 30px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #67004e;
    border: 1px solid #6d3383;
    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: 40px 20px 40px 50px;
}

.points__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
    -moz-box-flex: 0;
    flex: 0 1 50%;
}

.points__main {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(50% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(50% - 30px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #ffce06;
    padding: 15px 25px 15px 40px;
}

.points__main span {
    display: block;
}

.points__main span:last-child {
    font-size: 26px;
    line-height: 26px;
    font-weight: 900;
}

.points__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
}



/* reviews */

.reviews__title.title {
    margin-bottom: 50px;
}

.reviews__list {
    margin-top: -25px;
    margin-left: -30px;
    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;
}

.reviews__list li {
    padding: 20px 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #492257;
    border: 1px solid #6d3383;
    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-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 90px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 90px) / 3);
    margin-left: 30px;
    margin-top: 25px;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}

.reviews__list li div > span:nth-child(2) {
    color: #fecf0b;
}



/* 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;
}
