@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;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: #3e3d3d;
    fill-rule: evenodd;
}

.path {
    fill: #3e3d3d;
    stroke: #3e3d3d;
}

.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;
}

a {
    color: inherit;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    width: 100%;
    color: #20363b;
    font-size: 15px;
    line-height: 25px;
    overflow-x: hidden;
    background: #eeeff4;
    -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: 75px;
}

* {
    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: #fff;
}

.image img {
    margin: auto;
    display: block;
}

.content {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 30px;
}

.content:last-child {
    padding-bottom: 25px;
}

.main {
    padding-bottom: 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;
}

h1, .title.general {
    font-size: 55px;
    line-height: 64px;
    color: #fff;
    text-transform: uppercase;
}

h1 span, .title.general span {
    color: #20363b;
}

h2, .title.high, h3, .title.middle {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
    color: #203138;
}

h4, .title.small {
    font-size: 24px;
    line-height: 30px;
    color: #205350;
}

.button {
    min-width: 180px;
    background: #3e3d3d;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    padding: 12.5px 15px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 10;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

.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: 75px;
}

.header.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header__logo img {
    display: block;
    margin: auto;
    max-width: 155px;
}

.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: 20px;
    padding-right: 40px;
}

.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;
    text-align: center;
}

.header__menu a, .header__expand-menu > *:nth-child(2) a {
    padding: 10px 20px;
    -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: #010101;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    text-transform: uppercase;
}

.header__menu a:hover {
    color: #01a67f;
}

.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 + li {
    margin-top: 10px;
}

.header__expand-menu > *:nth-child(2) a {
    color: #fff;
    padding: 12.5px;
    width: 100vw;
    background: rgba(1, 166, 127, 1);
}

.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 {
    background: #01a67f;
}

.header__button + .header__button.button {
    margin-left: 30px;
}





/* cover */

.cover {
    padding-top: 25px;
}


.cover__content.content {
    padding: 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    overflow: hidden;
}

.cover__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cover__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    -o-object-position: 80%;
    object-position: 80%;
}

.cover__wrap {
    padding: 75px 50px;
    max-width: 820px;
    text-align: center;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/cover-decor.png);
    background-position: right;
    z-index: 100;
    width: 80%;
}

.cover__button.button {
    margin-top: 25px;
    background: #01a67f;
}



/* main info */

.main-info__content.content {
    background: -webkit-gradient(linear, left top, left bottom, from(#203036), to(#1f5653));
    background: -webkit-linear-gradient(#203036, #1f5653);
    background: -moz-linear-gradient(#203036, #1f5653);
    background: -o-linear-gradient(#203036, #1f5653);
    background: linear-gradient(#203036, #1f5653);
    padding-top: 75px;
    padding-bottom: 50px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    margin-top: 50px;
}

.main-info__content + .content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.main-info__title.title.high {
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    padding: 9px 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #fd6e2b;
    width: 600px;
    left: -webkit-calc(50% - 300px);
    left: -moz-calc(50% - 300px);
    left: calc(50% - 300px);
    top: -25px;
    position: absolute;
    text-align: center;
}

table {
    width: 100%;
    word-break: break-word;
}

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;
}

table.main-info__table {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
}

.main-info__table tr {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
}

.main-info__table tr + tr {
    margin-top: 25px;
}

.main-info__table tr td {
    padding: 9px 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.main-info__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-box-flex: 0;
    flex: 0 1 32%;
    min-width: 200px;
    background: -webkit-gradient(linear, left top, right top, from(#01a77f), to(#336764));
    background: -webkit-linear-gradient(left, #01a77f, #336764);
    background: -moz-linear-gradient(left, #01a77f, #336764);
    background: -o-linear-gradient(left, #01a77f, #336764);
    background: linear-gradient(to right, #01a77f, #336764);
}

.main-info__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(68% - 30px);
    -moz-box-flex: 0;
    flex: 0 1 calc(68% - 30px);
    max-width: -webkit-calc(100% - 200px - 30px);
    max-width: -moz-calc(100% - 200px - 30px);
    max-width: calc(100% - 200px - 30px);
    background: #336764;
}



/* pros */

.pros__content.content {
    padding-left: 0;
    padding-right: 0;
}

.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);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(#203036), to(#1f5653));
    background: -webkit-linear-gradient(#203036, #1f5653);
    background: -moz-linear-gradient(#203036, #1f5653);
    background: -o-linear-gradient(#203036, #1f5653);
    background: linear-gradient(#203036, #1f5653);
    padding: 50px 60px 50px 105px;
    color: #fff;
    display: block;
}

.pros-item__list li {
    display: block;
}

.pros-item__desc span {
    font-size: 35px;
    line-height: 45px;
    padding: 15px 30px 15px 105px;
    -webkit-border-radius: 0 40px 40px 0;
    -moz-border-radius: 0 40px 40px 0;
    border-radius: 0 40px 40px 0;
    margin-left: -105px;
    background: -webkit-gradient(linear, left top, right top, from(#20363b), to(#01a77f));
    background: -webkit-linear-gradient(left, #20363b, #01a77f);
    background: -moz-linear-gradient(left, #20363b, #01a77f);
    background: -o-linear-gradient(left, #20363b, #01a77f);
    background: linear-gradient(to right, #20363b, #01a77f);
    margin-bottom: 25px;
    text-transform: uppercase;
}



.article .image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
}

.article > h3:last-child {
    margin-bottom: 0;
}


/* registration */

.registration__content.content {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.list li {
    display: block;
    -webkit-border-radius: 0 20px 20px 0;
    -moz-border-radius: 0 20px 20px 0;
    border-radius: 0 20px 20px 0;
    color: #fff;
    padding: 25px 30px;
    background: -webkit-gradient(linear, left top, right top, from(#20363b), to(#01a77f));
    background: -webkit-linear-gradient(left, #20363b, #01a77f);
    background: -moz-linear-gradient(left, #20363b, #01a77f);
    background: -o-linear-gradient(left, #20363b, #01a77f);
    background: linear-gradient(to right, #20363b, #01a77f);
}

.list li + li {
    margin-top: 25px;
}

.list li > *:first-child {
    font-weight: 700;
    margin-bottom: 20px;
}


.first-bonus__content.content {
    padding: 0;
}


/* bonus */

.bonus__content + .content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.bonus__content.content {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #dcdde1;
}

.bonus__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack:  center;
    -webkit-justify-content:  center;
    -moz-box-pack:  center;
    justify-content:  center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-top: -25px;
}

.bonus-list__item {
    margin-top: 25px;
    margin-left: 30px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 90px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 90px) / 3);
    overflow: hidden;
    background: #eeeff4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.bonus-list__item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: 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;
    overflow: hidden;
    padding-bottom: 10px;
    width: 100%;
}

.bonus-item__wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    /* margin-top: -70px; */
    padding: 60px 25px 90px;
    text-align: center;
    color: #23564f;
}

.bonus-item__decor {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    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;
    position: absolute;
    left: -webkit-calc(50% - 50px);
    left: -moz-calc(50% - 50px);
    left: calc(50% - 50px);
    top: -50px;
}

.bonus-item__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    flex: 0 1 auto;
    overflow: hidden;
    width: 100%;
    margin-bottom: -17%;
}

.bonus-item__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.bonus-item__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #23574f;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.bonus-item__title:before {
    content: '';
    width: 60px;
    height: 3px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #909191;
    position: absolute;
    left: -webkit-calc(50% - 30px);
    left: -moz-calc(50% - 30px);
    left: calc(50% - 30px);
    bottom: 0;
}

.bonus-item__buttons {
    text-align: center;
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    left: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    position: absolute;
    bottom: 23px;
    -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;
}

.bonus-item__button {
    min-width: 0;
    margin: 15px 8px 0;
    font-size: 9px;
    line-height: 20px;
    text-align: center;
}

.bonus-item__button:first-child {
    background: #00AA81;
    padding: 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
    -moz-box-flex: 0;
    flex: 0 1 45%;
}

.bonus-item__button:nth-child(2) {
    background: #fff;
    color: #4b504f;
    padding: 8.5px 10px;
    border: 1.5px solid #d1d2d3;
    min-height: 40px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 65%;
    -moz-box-flex: 0;
    flex: 0 1 65%;
}







/* form */

.form__content.content {
    padding: 0;
}

.form__content + .content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.form__wrap {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: -webkit-gradient(linear, left bottom, right top, from(#20363b), to(#01a77f));
    background: -webkit-linear-gradient(bottom left, #20363b, #01a77f);
    background: -moz-linear-gradient(bottom left, #20363b, #01a77f);
    background: -o-linear-gradient(bottom left, #20363b, #01a77f);
    background: linear-gradient(to top right, #20363b, #01a77f);
    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: 100px 105px;
}

.form__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 52%;
    -moz-box-flex: 0;
    flex: 0 1 52%;
}

.form__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(48% - 75px);
    -moz-box-flex: 0;
    flex: 0 1 calc(48% - 75px);
}

.form__image img {
    display: block;
    margin: auto;
    max-width: 420px;
    width: 100%;
}

.form__field {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 1px solid #fff;
    padding: 24px 30px;
    background: transparent;
}

.form__right > * + * {
    margin-top: 25px;
}

.form__check {
    padding-left: 40px;
    max-width: 350px;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    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 #fff;
}

.form__button.button {
    margin-top: 35px;
    min-width: 210px;
    padding: 15px;
    text-transform: uppercase;
    background: #fff;
    color: #245951;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    font-weight: 700;
}



/* app */

.app__content {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #dcdde1;
}

.app__content + .content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.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__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);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #eeeff4;
    border: 1px solid #04a57e;
    color: #7b7c80;
    padding: 0 30px 50px;
    text-align: center;
}

.app-item__image {
    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;
    background: -webkit-gradient(linear, left top, left bottom, from(#20363b), to(#01a77f));
    background: -webkit-linear-gradient(#20363b, #01a77f);
    background: -moz-linear-gradient(#20363b, #01a77f);
    background: -o-linear-gradient(#20363b, #01a77f);
    background: linear-gradient(#20363b, #01a77f);
    width: 180px;
    height: 100px;
    -webkit-border-radius: 0 0 45px 45px;
    -moz-border-radius: 0 0 45px 45px;
    border-radius: 0 0 45px 45px;
    margin: 0 auto 50px;
}

.app-item__desc {
    color: #205350;
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
}





/* 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;
    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: 30px;
}

.article > h2:last-child {
    margin-bottom: 0;
}


/* tournaments */

.tournaments__content {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #dcdde1;
}

.tournaments__content + .content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.tournaments__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;
}

.tournaments-list__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 60px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 60px) / 3);
    background: #eeeff4;
    padding: 30px 30px 50px;
    color: #838489;
    display: block;
}

.tournaments-item__desc {
    font-size: 24px;
    line-height: 32px;
    color: #23574f;
    text-transform: uppercase;
    margin-bottom: 25px;
    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;
}


/* games */

.games__content.content {
    padding: 40px 60px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 1px solid #2d947d;
    overflow: hidden;
    background: #f8f9fd;
}

.games__content + .content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.games__content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background: -webkit-gradient(linear, left top, right top, from(#20363b), to(#01a77f));
    background: -webkit-linear-gradient(left, #20363b, #01a77f);
    background: -moz-linear-gradient(left, #20363b, #01a77f);
    background: -o-linear-gradient(left, #20363b, #01a77f);
    background: linear-gradient(to right, #20363b, #01a77f);
}

.games__table {
    font-size: 15px;
    line-height: 30px;
}

.games__table thead tr td {
    font-weight: 700;
    color: #fff;
    line-height: 20px;
    padding-bottom: 40px;
}

.games__table tbody tr {
    margin-top: 25px;
}

.games__table tr td:first-child {
    font-weight: 700;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 13%;
    -moz-box-flex: 0;
    flex: 0 1 13%;
    padding-right: 30px;
    min-width: 120px;
}

.games__table tr td:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 87%;
    -moz-box-flex: 0;
    flex: 0 1 87%;
}





/* slots */

.slots__content.content {
    padding: 50px 30px 50px 105px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #f8f9fd;
}

.slots__content + .content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.slots__table {
    font-size: 15px;
    line-height: 25px;
    color: #203138;
}

.slots__table thead tr {
    font-weight: 700;
    margin-bottom: 25px;
}

.slots__table tr + tr {
    margin-top: 5px;
}

.slots__table tr td:nth-child(1) {
    font-weight: 700;
}

.slots__table tr td:nth-child(1), .slots__table tr td:nth-child(2) {
    -webkit-box-flex: 23%;
    -webkit-flex: 23%;
    -moz-box-flex: 23%;
    flex: 23%;
}

.slots__table tr td:nth-child(n + 3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 18%;
    -moz-box-flex: 0;
    flex: 0 1 18%;
}

.slots__table tr td:nth-child(n + 2) {
    padding-left: 30px;
}






/* faq */

.faq {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    background: rgba(78, 105, 118, 0.12);
}

.faq__item {
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.faq-item__question {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    background: #41569d;
    padding: 21px 40px 21px 40px;
    font-family: 'Poppins', Arial, sans-serif;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    background: -webkit-gradient(linear, left top, right top, from(#20363b), to(#01a77f));
    background: -webkit-linear-gradient(left, #20363b, #01a77f);
    background: -moz-linear-gradient(left, #20363b, #01a77f);
    background: -o-linear-gradient(left, #20363b, #01a77f);
    background: linear-gradient(to right, #20363b, #01a77f);
}

.faq__item + .faq__item {
    margin-top: 25px;
}

.faq-item__answer {
   padding: 15px 5px 0;
   color: #1b2f3f;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}

.faq + .content {
    padding-top: 50px;
    padding-bottom: 50px;
}




/* reviews */

.reviews__content.content {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #dcdde1;
}

.reviews__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;
    margin-top: -25px;
}

.reviews__list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc((100% - 60px) / 3);
    -moz-box-flex: 0;
    flex: 0 1 calc((100% - 60px) / 3);
    margin-top: 25px;
    background: #eeeff4;
    padding: 25px 30px;
}

.reviews__list span {
    display: block;
}

.reviews__content + .content {
    padding: 50px 0 25px;
}
