@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: #fff;
    fill-rule: evenodd;
}

.path {
    fill: #fff;
    stroke: #fff;
}

.svg-menu rect, .header__menu-button path, .menu {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    overflow-x: hidden;
    background: #1c0922;
}

body.active {
    overflow: hidden;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
    margin: auto;
}

.content {
    max-width: 1290px;
    padding: 25px 30px;
    margin: auto;
}

.main {
    margin: auto;
}

h1, h2, h3, h4, .title {
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    z-index: 10;
    word-break: break-word;
}

h1, .title.general, h2, .title.high {
    font-size: 45px;
    line-height: 50px;
}

h3, .title.middle {
    font-size: 30px;
    line-height: 35px;
}

h4, .title.small {
    font-size: 20px;
    line-height: 25px;
}

.button {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    min-width: 160px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffc906), to(#ffa600));
    background: -webkit-linear-gradient(#ffc906, #ffa600);
    background: -moz-linear-gradient(#ffc906, #ffa600);
    background: -o-linear-gradient(#ffc906, #ffa600);
    background: linear-gradient(#ffc906, #ffa600);
    padding: 0 20px;
    font-size: 15px;
    line-height: 50px;
    color: #0b0906;
    font-weight: 700;
    display: inline-block;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.button:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background: -webkit-linear-gradient(#fff, #fff);
    background: -moz-linear-gradient(#fff, #fff);
    background: -o-linear-gradient(#fff, #fff);
    background: linear-gradient(#fff, #fff);
}

.button.white {
    background: transparent;
    line-height: 44px;
    border: 3px solid #fff;
    color: #fff;
}

.button.white:hover {
    background: #fff;
    color: #000;
}

.button.small {
    min-width: 115px;
}



/* header */

.header {
    z-index: 1000;
    margin: auto;
    background-color: #2b1234;
    -webkit-box-shadow: 0 10px 20px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 10px 20px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px 15px rgba(0, 0, 0, 0.05);
}

.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;
    padding: 25px 105px;
    overflow: visible;
}

.header__logo {
    max-height: 50px;
}

.header__logo img {
    display: block;
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.header__button + .header__button {
    margin-left: 10px;
}

.menu ul a {
    display: block;
    padding: 0 30px;
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 100%;
    text-align: center;
}

.header__menu ul > li:nth-child(2) a, .header__menu ul > li:nth-child(3) a {
    color: #4ed443;
}

.header__expand-menu {
    display: none;
}

.header__expand-menu .header__buttons {
    display: none;
}

.header__expand-menu li {
    display: block;
}

.header__expand-menu ul a {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.header__expand-menu ul li + li {
    margin-top: 15px;
}

.header__menu a:hover, .header__menu ul > li:nth-child(2) a:hover, .header__menu ul > li:nth-child(3) a:hover {
    color: #fde247;
}



/* article  */

article > * + *, .article > * + * {
    margin-top: 25px;
}

article li, .article li {
    display: block;
    padding-left: 15px;
}

.article ul li:before, article ul li:before {
    content: "-";
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.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: 16px;
    line-height: 25px;
    position: absolute;
    left: -25px;
    top: 0;
    font-weight: 400;
    color: #fff;
    opacity: 0.5;
}

.article > ol > li:marker, article > ol > li:marker {
    content: counters(li);
}



.wrap {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #270f2f;
    width: -webkit-calc(100% + 60px);
    width: -moz-calc(100% + 60px);
    width: calc(100% + 60px);
    margin-left: -30px;
    padding: 50px 105px;
}


/* preface */

.preface__content {
    padding-top: 50px;
}

.preface__content h1 {
    text-align: center;
    color: #ffc506;
}




/* cover */

.cover__content {
    padding: 0;
}

.cover__image:hover img {
    transition: all 0.2s linear;
}

.cover__image:hover img {
    transform: scale(1.05);
}


/* main info */

.main-info__content {
    padding-top: 50px;
}

table {
    width: 100%;
    line-height: 30px;
}

table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

table:not(.tournaments-levels__table) tr + tr {
    margin-top: 10px;
}

table thead + tbody tr {
    margin-top: 10px;
}

.main-info__wrap {
    margin-top: 50px;
}

.main-info__table tr td:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 27%;
    -moz-box-flex: 0;
    flex: 0 1 27%;
    font-weight: 700;
    min-width: 100px;
    color: #ffc506;
}

.main-info__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 73%;
    -moz-box-flex: 0;
    flex: 0 1 73%;
    padding-left: 30px;
    max-width: -webkit-calc(100% - 100px);
    max-width: -moz-calc(100% - 100px);
    max-width: calc(100% - 100px);
}


/* pros */

.pros__wrap {
    margin-top: 50px;
}

.pros__table {
    font-weight: 700;
}

.pros__table tr {
    -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-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 30px) / 2);
}

.pros__table tr > td:first-child {    
    color: #ffc506;
}

.pros__table tbody {
    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;
    max-width: 100%;
}
.pros__table td + td {
    margin-top: 10px;
}



/* registration */


.registration__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 35px;
    padding-bottom: 35px;
}

.registration__image {
    -webkit-box-flex: 40%;
    -webkit-flex: 40%;
    -moz-box-flex: 40%;
    flex: 40%;
}

.registration__buttons {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 60%;
    -moz-box-flex: 0;
    flex: 0 1 60%;
    padding-left: 100px;
}

.registration__button:not(.button) {
    border: 1px solid #f9d358;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    font-size: 18px;
    padding: 24px 60px;
    color: #6a2d7e;
    text-transform: uppercase;
}

.registration__button:nth-child(2) {
    font-weight: 700;
}

.registration__button.light {
    color: #f9d358;
    background-color: #3d1d48;
}

.registration__button.light:before {
    content: url(../images/arrow.svg);
    position: absolute;
    top: -webkit-calc(50% - 13.5px);
    top: -moz-calc(50% - 13.5px);
    top: calc(50% - 13.5px);
    right: 40px;
}

.registration__button.button {
    min-width: 210px;
    text-transform: uppercase;
}

.registration__button + .registration__button {
    margin-top: 25px;
}

.registration__content h2:nth-child(n + 2) {
    margin-top: 50px;
}

.registration__content li > ul {
    margin-top: 25px;
    margin-bottom: 25px;
}


/* bonus */

.bonus__wrap {
    margin-top: 50px;
    border: 1px solid #ffc405;
    padding: 35px 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bonus__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
    min-width: 200px;
}

.bonus__desc {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75%;
    -moz-box-flex: 0;
    flex: 0 1 75%;
    padding-left: 60px;
    font-size: 30px;
    line-height: 50px;
    max-width: -webkit-calc(100% - 200px);
    max-width: -moz-calc(100% - 200px);
    max-width: calc(100% - 200px);
    word-break: break-word;
}

.bonus__desc > * + * {
    margin-top: 25px;
}

.bonus__desc > *:nth-child(2) {
    font-weight: 700;
}

.bonus__desc > * {
    max-width: 630px;
}


/* vip */

.vip__content {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #ffc405;
    color: #1c0922;
}

.vip__content h2 {
    color: #1c0922;
}

.vip__list > li {
    padding: 25px 30px;
    font-size: 24px;
    text-transform: uppercase;
    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;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 60px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 60px) / 3);
}

.article .vip__list > li:before {
    content: none;
}

.vip__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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.vip__list > li:first-child {
    background-color: #fff;
}



/* tournaments */

.tournaments__content {
    padding-bottom: 0;
}

.tournaments__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;
    width: -webkit-calc(100% + 30px);
    width: -moz-calc(100% + 30px);
    width: calc(100% + 30px);
    margin-left: -30px;
}

.wrap.tournaments-levels__wrap {
    border: 1px solid #ffc405;
    padding: 45px 50px 45px 8%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% / 3);
    margin: auto;
    width: 100%;
    min-width: 250px;
}

.tournaments__article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% / 3 * 2);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% / 3 * 2);
    padding-left: 30px;
    max-width: -webkit-calc(100% - 250px);
    max-width: -moz-calc(100% - 250px);
    max-width: calc(100% - 250px);
}

.tournaments-levels__table {
    line-height: 25px;
}

.tournaments-levels__table thead {
    font-weight: 700;
    color: #ffc506;
}

.tournaments-levels__table tr td {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
    -moz-box-flex: 0;
    flex: 0 1 50%;
}

.tournaments-levels__table tr td:first-child {
    padding-right: 10px;
}

.tournaments-levels__table tbody tr:first-child {
    margin-top: 25px;
}

.tournaments__bonus > * + * {
    margin-top: 25px;
}

.tournaments__bonus {
    padding: 25px 75px 50px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #270f2f;
    font-size: 30px;
    line-height: 50px;
    font-weight: 500;
    word-break: break-word;
}

.tournaments-bonus__desc {
    font-weight: 700;
    max-width: 630px;
}

.tournaments-bonus__image {
    width: -webkit-calc(100% + 150px);
    width: -moz-calc(100% + 150px);
    width: calc(100% + 150px);
    margin-left: -75px;
}

.tournaments-info__wrap {
    width: -webkit-calc(100% + 30px);
    width: -moz-calc(100% + 30px);
    width: calc(100% + 30px);
    margin-top: 25px;
}

.tournaments-info__table tr td:nth-child(1) {
    font-weight: 700;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 27%;
    -moz-box-flex: 0;
    flex: 0 1 27%;
    min-width: 100px;
    color: #ffc506;
}

.tournaments-info__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 73%;
    -moz-box-flex: 0;
    flex: 0 1 73%;
    padding-left: 30px;
    max-width: -webkit-calc(100% - 100px);
    max-width: -moz-calc(100% - 100px);
    max-width: calc(100% - 100px);
}

.tournaments-info__table tr + tr {
    margin-top: 25px;
}



/* slots */

.article .slots__list > li:before {
    content: none;
}

.article .slots__list > li {
    margin-top: 25px;
    padding-left: 0;
}

.slots__list {
    margin-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-flex-wrap: wrap;
    flex-wrap: wrap;
}

.slots__list img {
    display: block;
}

.slots__list > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 90px) / 4);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 90px) / 4);
}

.slots__table thead, .slots__table tr td:nth-child(1) {
    font-weight: 700;
    color: #ffc506;
}

.slots__table td:nth-child(n + 2) {
    padding-left: 30px;
}

.slots__table tr td:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
}

.slots__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 22%;
    -moz-box-flex: 0;
    flex: 0 1 22%;
}

.slots__table tr td:nth-child(n + 3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 16%;
    -moz-box-flex: 0;
    flex: 0 1 16%;
}

.slots__table tbody tr:first-child {
    margin-top: 25px;
}


/* games */

.games__content {
    padding-top: 0;
    padding-bottom: 0;
}

.games-info__wrap {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding-top: 75px;
    text-align: center;
}

.games-info__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.games-info__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.games-info__title {
    max-width: 650px;
    margin: 0 auto 50px;
}

.games-info__title span {
    color: #7ae548;
}

.games__wrap {
    border: 1px solid #ffc405;
    padding-top: 35px;
    padding-bottom: 35px;
    overflow: hidden;
}

.games__wrap:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #34173e;
}

.games__table {
    font-weight: 700;
}

.games__table td:nth-child(1), .games__table td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
    min-width: 60px;
}

.games__table td:nth-child(3) {
    min-width: 90px;
}

.games__table td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
    -moz-box-flex: 0;
    flex: 0 1 50%;
    max-width: -webkit-calc(100% - 60px - 90px);
    max-width: -moz-calc(100% - 60px - 90px);
    max-width: calc(100% - 60px - 90px);
}

.games__table tbody tr {
    margin-top: 25px;
}

.games__table tr td:nth-child(n + 2) {
    padding-left: 30px;
}

.games__table thead tr {
    margin-bottom: 35px;
    color: #ffc506;
}


/* payment */

.payment__content h2 {
    color: #7ae548;
}

.article .payment__list > li:before {
    content: none;
}

.article .payment__list > li {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
    padding: 0;
    margin-left: 20px;
}

.payment__list {
    margin-left: -20px;
    margin-bottom: 40px;
}

.payment__wrap {
    padding: 25px 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #fff;
}

.payment__table thead, .payment__table tr td:first-child {
    font-weight: 700;
    color: #ffc506;
}

.payment__table tr td:nth-child(n + 2) {
    padding-left: 30px;
}

.payment__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 22%;
    -moz-box-flex: 0;
    flex: 0 1 22%;
    min-width: 90px;
}

.payment__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 15%;
    -moz-box-flex: 0;
    flex: 0 1 15%;
    min-width: 60px;
}

.payment__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 63%;
    -moz-box-flex: 0;
    flex: 0 1 63%;
    max-width: -webkit-calc(100% - 90px - 60px);
    max-width: -moz-calc(100% - 90px - 60px);
    max-width: calc(100% - 90px - 60px);
}

.payment__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: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.payment__wrapper > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 30px) / 2);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 30px) / 2);
}

.payment-info__wrap {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #ffc505;
    padding: 50px 75px;
}

.payment-info__table {
    font-weight: 700;
}

.payment-info__table tr td:first-child {
    color: #ffc505;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 40%;
    -moz-box-flex: 0;
    flex: 0 1 40%;
}

.payment-info__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 60%;
    -moz-box-flex: 0;
    flex: 0 1 60%;
    padding-left: 30px;
}

.payment-info__table tr + tr {
    margin-top: 25px;
}

.payment-info__article h2 {
    color: #fff;
}



/* faq */

.faq__content h2 {
    margin-bottom: 50px;
    color: #ffc505;
}

.faq__wrap {
    background-color: transparent;
    padding: 0;
}

.faq-item__question {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #270f2f;
    color: #7ae548;
    font-size: 20px;
    font-weight: 500;
    padding: 25px 30px;
}

.faq-item__answer {
    padding: 35px 30px;
}
