

@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html {
	scroll-behavior: smooth;
}
body {
	overflow-x: hidden;
	background: #01102d;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
	color: #fff;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
}


p {
  margin-top: 20px;
}
ul {
	list-style: none;
}
ul, ol {
  text-align: left;
}


a:hover {
  text-decoration: underline;
}



/* Title */
h1, h2, h3, h4, .title {
	display: block;
	position: relative;
  font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 16px;
}

h1 {
	font-size: 32px;
	line-height: 120%;
}

h2 {
  font-size: 26px;
	line-height: 120%;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	padding: 10px 15px;
	position: relative;
	z-index: 2;
}


h3, h4, h5, h6 {
	font-size: 20px;
	line-height: 120%;
	font-weight: 600;
	text-transform: none;
}


/* Button */
.button {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	width: auto;
  min-width: 210px;
	height: auto;
	-webkit-box-shadow: 0 15px 10px 0 rgba(13, 29, 66, 0.2);
	        box-shadow: 0 15px 10px 0 rgba(13, 29, 66, 0.2);
	background: #18c214;
	font-size: 20px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	-webkit-border-radius: 10px;
	        border-radius: 10px;
	font-weight: 800;
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	text-transform: capitalize;
	color: rgba(255,255,255,1.00);
	cursor: pointer;
	padding: 13px 28px;
	margin: 20px auto 0px 0px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
}

.button:hover {
	-webkit-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	        transform: scale(1.04);
	text-decoration: none;
}


/* Button Inverse */
.button.inverse {
	background: #21befe;
	border: 2px solid #21befe;
}



/* var */
.button > img,
.button > span {
	display: inline-block;
	position: relative;
	font: inherit;
	line-height: 1;
	vertical-align: middle;
}
.button > img + span {
	margin-left: 10px;
}



/* Special */
.image img,
.background img {
	display: block;
	position: relative;
}

.background {
	display: block !important;
	position: absolute !important;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: 0!important;
	z-index: -2;
}

.background img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.js-expand-content {
	display: none;
	overflow: hidden;
}

.js-expand-content.expanded {
	height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
	fill: rgba(255, 255, 255, 1);
  line-height: 1;
}
use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}




/* Article */

article > *:first-child,
.article > *:first-child {
	margin-top: 0px;
}

article > * + *,
.article > * + * {
	margin-top: 20px;
}

article > * + h2,
.article > * + h2 {
	margin-top: 20px;
}
article > * + h3,
.article > * + h3 {
	margin-top: 20px;
}
article > * + h4,
.article > * + h4 {
	margin-top: 20px;
}

article > h2 + *,
.article > h2 + * {
	margin-top: 0px;
}

article > h3 + *,
.article > h3 + *,
article > h4 + *,
.article > h4 + * {
	margin-top: 0;
}


article p:first-child,
.article p:first-child {
	margin-top: 0px;
}


article a:not(.button):hover,
.article a:not(.button):hover {
	text-decoration: underline;
}

.article__inner {
	max-width: 700px;
	position: static;
}
.article__inner > * + * {
	margin-top: 20px;
}
.article__inner > * {
	z-index: 1;
	position: relative;
}
.article__inner2 {
	max-width: 100%;
	width: 73%;
}
.article__image {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
	z-index: -1;
	margin: 0;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.article__bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 30px;
}
.article__bottom .button {
	margin: 0;
}
/* Content */

.cover {
	position: relative;
	overflow: hidden;
	z-index: 0;
	max-width: 100%;
	overflow: hidden;
	padding-left: -webkit-calc(50% - ((1600px - 60px) / 2));
	padding-left: calc(50% - ((1600px - 60px) / 2));
	padding-right: -webkit-calc(50% - ((1600px - 60px) / 2));
	padding-right: calc(50% - ((1600px - 60px) / 2));
}

.cover > * {
	display: block;
	position: relative;
}
.section {
	z-index: 0;
	position: relative;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	padding: 20px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(108, 65, 167, 0.5)), to(rgba(71, 30, 132, 0.5)));
	background: -o-linear-gradient(top, rgba(108, 65, 167, 0.5) 0%, rgba(71, 30, 132, 0.5) 100%);
	background: linear-gradient(180deg, rgba(108, 65, 167, 0.5) 0%, rgba(71, 30, 132, 0.5) 100%);
	overflow: hidden;
	margin-top: 20px;
}
.section__image {
	position: absolute;
	z-index: -1;
	max-width: 164px;
	right: 0;
	bottom: 0;
}

.page {
	padding: 100px 30px 0px 30px;
	max-width: 1600px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.main {
	width: -webkit-calc(100% - 240px);
	width: calc(100% - 240px);
	position: relative;
}




/* HEADER */
.header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	        -webkit-justify-content: space-between;
	        justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	        -webkit-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	height: auto;
	overflow: unset;
	background: #01102d;
	color: rgba(255, 255, 255, 1);
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 1000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 7;
	-webkit-border-radius: 0;
	        border-radius: 0;
}


.header > * {
	display: block;
	position: relative;
	width: auto;
}

.header__button-menu {
	display: none;
}


/* Menu */
.header__menu .header__button {
	display: none;
}
.header__menu .header__controls {
	display: none;
}
.header__menu a {
	cursor: pointer;
}
.header__menu > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	margin: 0px;
	padding: 0px;
}



.header__menu > ul > li {
	display: block;
  position: relative;
	padding: 0px;
}
.header__menu > ul > li:before { display: none; }

.header__menu > ul > li > a {
  display: block;
	font-weight: 600;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.header__menu > ul > li > a:hover {
	color: #fff;
}
.header__menu > ul > li + li {
  margin-left: 32px;
}

.header__menu > ul > li > a img {
	margin-right: 10px;
}

.header__controls {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-left: auto;
}
.header__controls a {
	width: 32px;
	height: 32px;
	-webkit-border-radius: 3px;
	        border-radius: 3px;
	background: rgba(255, 255, 255, 0.17);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-left: 10px;
}
.header__controls a:hover {
	background: #ff4949;
}
.header__controls a img {
	max-width: 16px;
}

/* hover */
.header__menu > ul > li:hover > a {
  text-decoration: none;
}
.header__buttons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header__menu {
	margin-right: auto;
}

.header__button {
	margin: 0 0 0 16px;
	min-width: 100px;
	font-size: 16px;
	-webkit-border-radius: 100px;
	        border-radius: 100px;
	font-weight: 700;
}

.header__language {
	white-space: nowrap;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	text-transform: uppercase;
	font-size: 14px;
	text-decoration: none!important;
	padding: 11px 24px;
	-webkit-border-radius: 100px;
	        border-radius: 100px;
	background: #16225a;
}

.header__language img {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	margin-right: 9px;
	-o-object-fit: cover;
	   object-fit: cover;
}
/* logo */
.header__logo {
	width: 120px;
	height: 60px;
	margin: 0 100px 0 60px;
	z-index: -1;
}
.header__logo > img {
  display: block;
  position: relative;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	max-height: none;
	max-width: 300px;
}

.header__logo[href]:hover {
  opacity: 0.50;
}



/* Prime */

.prime {
	border: 2px solid #6C41A7;
	margin: 0;
	padding: 32px 20px;
	background-color: #000;
	min-height: 380px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}



.prime__wrap {
	width: 100%;
	max-width: 675px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
	z-index: 0;
}

.prime__title {
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
}

.prime__button {
	margin: 0;
}

.prime__text {
	color: #FFF;
	margin: 0 0 20px 0;
	font-size: 16px;
}

/* bonus LIST */
.bonus {
	overflow: initial;
	padding: 0;
	background: none;
	-webkit-border-radius: 0;
	        border-radius: 0;
}

.bonus__list {
  padding: 0px;
}
.bonus__item + .bonus__item {
	margin-top: 20px;
}
.bonus__item {
	padding: 0;
	position: relative;
	z-index: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin: 0;
	-webkit-border-radius: 10px;
	        border-radius: 10px;
}
.bonus__item::after {
	content: '';
	display: block;
	background: -o-linear-gradient(left, #0B96CE 0%, #2D09E5 100%);
	background: -webkit-gradient(linear, left top, right top, from(#0B96CE), to(#2D09E5));
	background: linear-gradient(90deg, #0B96CE 0%, #2D09E5 100%);
	width: -webkit-calc(100% + 2px);
	width: calc(100% + 2px);
	height: -webkit-calc(100% + 2px);
	height: calc(100% + 2px);
	position: absolute;
	left: -1px;
	top: -1px;
	-webkit-border-radius: 10px;
	        border-radius: 10px;
	z-index: -1;
}

.bonus__list > li:before { display: none; }

.bonus-item__image {
	width: 370px;
	-webkit-border-radius: 10px 0 0 10px;
	        border-radius: 10px 0 0 10px;
	overflow: hidden;
}
.bonus-item__image img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.bonus-item__desc {
	background: -o-linear-gradient(top, #031231 3.69%, #0f1c40 31.88%, #101a31 79.12%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(3.69%, #031231), color-stop(31.88%, #0f1c40), color-stop(79.12%, #101a31));
	background: linear-gradient(180deg, #031231 3.69%, #0f1c40 31.88%, #101a31 79.12%);
	width: -webkit-calc(100% - 370px);
	width: calc(100% - 370px);
	-webkit-border-radius: 0 10px 10px 0;
	        border-radius: 0 10px 10px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.bonus-item__inner {
	padding: 32px 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;

}
.bonus-item__title {
	margin: 0 0 16px 0;
	font-weight: 700;
	font-size: 26px;
	line-height: 120%;
	text-transform: capitalize;
	text-align: left;
	color: #fff;
}
.bonus-item__subtitle {
	margin: 0 0 16px 0;
	font-weight: 600;
	font-size: 14px;
	line-height: 150%;
	text-align: left;
	color: #fff;
}
.bonus-item__subtitle strong {
	color: #18c214;
}
.bonus-item__desc p {
	color: #fff;
	font-size: 14px;
	margin: 0;
}

.bonus-item__buttons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 32px 20px;
	min-width: 220px;
	gap: 12px;
}
.bonus-item__button {
	margin: 0;
}

/* RATING */
.prime__rating {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column;
}
.prime__rating-text {
	margin: 0 18px 0 0;
	color: #fff;
}

.prime__rating-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
}
.prime__rating-numbers {
	white-space: nowrap;
}


/* F.A.Q. */


.faq__item {
	padding: 0px;
	position: relative;
}
.faq__item {
	margin-top: 16px;
}
.faq__list > li:before { display: none; }


.faq-item__title {
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 133%;
	text-transform: none;
	margin: 0;
	padding: 13px 55px 13px 16px;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}

.faq-item__title:before {
	content: '';
	display: block;
	position: absolute;
	top: 14px;
	right: 16px;
	width: 24px;
	height: 24px;
	background: url('../images/icons/faq-arrow1.svg') no-repeat center center / contain;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}


/* var */
.faq__item.active .faq-item__title:before {
	background: url('../images/icons/faq-arrow2.svg') no-repeat center center / contain;
}


.faq-item__desc .wrap {
	padding: 12px 16px;
	margin-top: 8px;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
}

.faq-item__desc p {
	margin: 0;
	color: #fff;
}

.faq-item__desc p + p {
	margin-top: 16px;
}


/* Breadcrumbs */
.breadcrumbs {
	text-align: left;
	margin-bottom: 10px;
}
.breadcrumbs > li {
	display: inline-block;
	padding: 0px;
}

.breadcrumbs > li:before { display: none; }

.breadcrumbs > li a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
}
.breadcrumbs > li a:hover {
	text-decoration: underline;
	color: #fff;
}
.breadcrumbs > li a:not([href]) {
	font-weight: 700;
}
.breadcrumbs > li a:not([href]):hover {
	text-decoration: none;
	color: #fff;
}

.breadcrumbs > li:not(:last-child):after {
	content: '|';
	display: inline-block;
	position: relative;
	font: inherit;
	color: rgba(255, 255, 255, 1);
	margin: 0px 8px;
	font-weight: 700;
}

.sidebar {
	width: 240px;
	margin-right: 20px;
	position: -webkit-sticky;
	position: sticky;
	height: auto;
	max-height: -webkit-calc(100vh - 100px);
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	top: 100px;
	z-index: 0;
	padding: 0 20px 25px 20px
}
.sidebar::-webkit-scrollbar {
	display: none;
}
.sidebar__nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.sidebar__nav li + li {
	margin-top: 7px;
}
.sidebar__nav a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	color: #fff;
	text-decoration: none!important;
	padding: 14px 40px 14px 50px;
	position: relative;
}
.sidebar__nav a::after {
	content: '';
	background: rgba(40, 29, 226, .6);
	content: "";
	-webkit-filter: blur(20px);
	        filter: blur(20px);
	height: 30px;
	left: 6px;
	position: absolute;
	top: 6px;
	width: 30px;
}
.sidebar__nav .icon {
	width: 31px;
	height: 29px;
	-o-object-fit: contain;
	   object-fit: contain;
	position: absolute;
	left: 0;
	top: 0;
	margin: auto;
	bottom: 0;
}
.sidebar__nav .arrow {
	position: absolute;
	right: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 14px;
	height: 14px;
}
.sidebar__nav small {
	width: 23px;
	height: 23px;
	position: absolute;
	right: 6px;
	top: 0;
	bottom: 0;
	margin: auto;
	font-weight: 700;
	font-size: 15px;
	text-align: center;
	color: #fff;
	line-height: 23px;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	background: -o-linear-gradient(top, #1ebdfe 0%, #c813cb 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#1ebdfe), to(#c813cb));
	background: linear-gradient(180deg, #1ebdfe 0%, #c813cb 100%);;
}
.sidebar__nav a:hover {
	color: #21BEFE;
}

.sidebar__button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 40px 0;
	background: -o-linear-gradient(left, #ce730b 0%, #2d09e5 100%);
	background: -webkit-gradient(linear, left top, right top, from(#ce730b), to(#2d09e5));
	background: linear-gradient(90deg, #ce730b 0%, #2d09e5 100%);
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	padding: 10px 16px;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-width: 167px;
	text-decoration: none!important;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
}
.sidebar__button img {
	margin-right: 7px;
	width: 24px;
	-o-object-fit: contain;
	   object-fit: contain;
}
.sidebar__button:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}
.main__navigation {
	display: none;
}
.navigation__head {
	cursor: pointer;
	text-align: left;
	padding: 12px 38px 12px 0px;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	position: relative;
}

.navigation__head::before{
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icons/sidebar-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 16px;
	top: 0;
	margin: auto;
	bottom: 0;
	-webkit-transform: scale(-1);
	    -ms-transform: scale(-1);
	        transform: scale(-1);
}
.navigation ul {
	padding: 12px 0 0 0;
	overflow: hidden;
}


.navigation a {
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	color: #fff;
	display: block;
	text-decoration: none;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	position: relative;
}


.navigation li + li {
	margin-top: 12px;
}
.navigation a:hover {
	color: #21befe;
}

.accordion--js.hide::before  {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}


.back-top {
	position: fixed;
	right: 30px;
	bottom: 20px;
	width: 42px;
	height: 42px;
	text-decoration: none;
	display: block;
	z-index: 8;
}
.back-top img {
	width: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.back-top:hover {
	-webkit-filter: grayscale(1);
	        filter: grayscale(1);
}
.footer {
	margin: 20px auto 0 auto;
	position: relative;
	z-index: 6;
	max-width: 1600px;
	padding: 0 30px;
}
.footer li::before{
	display: none;
}
.footer__pays  {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 16px;
	-webkit-border-radius: 10px;
	        border-radius: 10px;
	padding: 20px;
	background: #141e35;
}
.footer__pays img {
	height: 42px;
	-o-object-fit: contain;
	   object-fit: contain;
}

.footer__content {
	margin-top: 32px;
	-webkit-border-radius: 10px 10px 0 0;
	        border-radius: 10px 10px 0 0;
	padding: 40px;
	background: #101a31;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.footer__inner {
	width: 104px;
	margin-right: 7%;
}

.footer__logo {
	display: inline-block;
}
.footer__lang {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-weight: 500;
	font-size: 14px;
	line-height: 143%;
	text-align: center;
	color: #fff;
	text-decoration: none!important;
	padding: 10px 12px 10px 10px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	-webkit-border-radius: 100px;
	        border-radius: 100px;
	margin-top: 24px;
	width: 100%;
	display: none;
}
.footer__lang:hover {
	border-color: #fff;
}
.footer__lang img:first-of-type {
	width: 24px;
	-o-object-fit: contain;
	   object-fit: contain;
	margin-right: 5px;
}
.footer__lang img:last-of-type {
	width: 7px;
	margin-left: 5px;
	-o-object-fit: contain;
	   object-fit: contain;
}
.footer__nav {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.footer__nav a {
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	line-height: 150%;
	display: block;
}
.footer__nav a:hover {
	text-decoration: underline;
}
.footer__nav ul li:first-child {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 500;
}
.footer__nav li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer__nav li img {
	margin-right: 10px;
}
.footer__nav li + li {
	margin-top: 8px;
}

.footer__contacts {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.footer__mail {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 295px;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	border: 1.50px dashed rgba(255, 255, 255, 0.4);
	-webkit-border-radius: 100px;
	        border-radius: 100px;
	padding: 10px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.footer__mail:hover {
	border-color: #fff;
}
.footer__mail img {
	max-width: 20px;
	margin-right: 10px;
}
.footer__socials{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 13px;
}
.footer__socials-item {
	display: block;
	width: 44px;
	height: 44px;
	text-decoration: none!important;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.footer__socials-item img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.footer__socials-item:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}
.footer__icons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
}
.footer__icons img {
	max-width: 48px;
}
.footer__icons a {
	display: inline-block;
}



.table {
	display: block;
	width: 100%;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
}
.table thead {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.table th {
	padding: 12px 20px;
	font-weight: 600;
	font-size: 15px;
	line-height: 140%;
	text-transform: uppercase;
	color: #fff;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.table tbody {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.table tr:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.table tr {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
.table td {
	font-size: 15px;
	line-height: 147%;
	font-weight: 300;
	color: #fff;
	padding: 12px 20px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.table_about thead {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.table_grade img + img {
	margin-left: 5px;
}
ol, ul {
	list-style: none;
}

.list li {
	padding: 0 0 0 18px;
	font-weight: 400;
	font-size: 15px;
	line-height: 165%;
	color: #fff;
	position: relative;
	width: 100%;
}


ol.list > li::before {
	content: counter(ol);
	color: #223ca8;
	background-color: #fff;
	width: 40px;
	height: 100%;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
ol.list > li {
	counter-increment: ol;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	padding: 12px 20px 12px 60px;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
	overflow: hidden;
	min-height: 49px;
}
ol.list > li + li {
	margin-top: 20px;
}

ol.list ul {
	margin-top: 19px;
}
ol.list ul li::before {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	border: 1px solid;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0px;
	position: absolute;
}
ol.list ul li + li {
	margin-top: 14px;
}
ul.list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
ul.list li + li {
	margin-top: 12px;
}
ul.list_col3, ul.list_col2 {
	gap: 20px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
}
ul.list_col3 li + li, ul.list_col2 li + li {
	margin: 0;
}

.list_col2 li {
	width: -webkit-calc(50% - 10px);
	width: calc(50% - 10px);
}
.list_col3 li {
	width: -webkit-calc(33.33333% - 13.333333px);
	width: calc(33.33333% - 13.333333px);
}
ul.list > li::before{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background-color: #fff;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0px;
	position: absolute;
}

.list_bg > li {
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
	padding: 12px 12px 12px 30px;
}
.list.list_bg > li::before {
	left: 12px;
}
.list_bg > li > ul > li::before {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	border: 1px solid;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0px;
	position: absolute;
}
.list_bg > li > ul {
	margin-top: 16px;
}
.list.list_app li:last-child{
	padding: 14px 18px;
}
.list.list_app li:last-child::before {
	display: none;
}




.compare {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.compare-item {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.compare-item__title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 16px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}
.compare-item__title img {
	max-width: 40px;
	margin-right: 24px;
}
.compare-item__title h3 {
	color: #fff;
	margin: 0;
	padding: 0;
	border: none;
}
.compare-item ul {
	padding-left: 64px;
}
.compare-item li:before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background-color: #fff;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	top: 9px;
	left: 0;
	position: absolute;
}
.compare-item li {
	font-weight: 400;
	font-size: 15px;
	line-height: 165%;
	color: #fff;
	padding-left: 18px;
	position: relative;
}
.compare-item li + li {
	margin-top: 12px;
}






.mobile {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	gap: 20px;
	padding: 63px 20px;
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 12px;
	        border-radius: 12px;
}

.mobile__button{
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	font-weight: 900;
	font-size: 14px;
	line-height: 114%;
	text-align: center;
	text-transform: uppercase;
	color: #fff!important;
	padding: 16px 20px 16px 32px;
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	background: #18c214;
	-webkit-border-radius: 100px;
	        border-radius: 100px;
	min-width: 240px;
	text-decoration: none!important;
}
.mobile__button img {
	max-width: 32px;
	margin-right: 20px;
}
.mobile__button:hover {
	background: #01102d;
}
.mobile__image {
	margin-left: auto;
}




.blocks {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 20px;
}
.block {
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
	padding: 20px;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	overflow: hidden;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	z-index: 0;
}
.block > * + * {
	margin-top: 20px;
}
.blocks_other .block p {
	margin-bottom: 20px;
}
.blocks .block h3 {
	padding: 0 0 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.blocks .block_other h3 {
	border: none;
	padding: 0;
}
.block.block_other .mobile__button {
	margin-right: auto;
	-webkit-border-radius: 10px;
	        border-radius: 10px;
}
.blocks .block {
	width: -webkit-calc(50% - 10px);
	width: calc(50% - 10px);
	padding: 20px 12px;
}

.block h3 + p, .block h3 + .list {
	margin-top: 0;
}
.blocks .block_img {
	background: none;
	padding: 0;
	text-align: center;
}

.block_img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.blocks .block__button {
	margin: auto auto 0 0;
}
.block__button {
	-webkit-box-shadow: 10px 10px 50px 0 rgba(30, 233, 50, 0.3), -10px -10px 50px 0 #1b0c71, -2px -6px 20px 0 rgba(30, 233, 50, 0.3), inset 0 0 10px 0 rgba(255, 255, 255, 0.6);
	        box-shadow: 10px 10px 50px 0 rgba(30, 233, 50, 0.3), -10px -10px 50px 0 #1b0c71, -2px -6px 20px 0 rgba(30, 233, 50, 0.3), inset 0 0 10px 0 rgba(255, 255, 255, 0.6);
}

.block .mobile__button {
	margin: 20px 0 0 0;
}

.block__inner {
	width: -webkit-calc(100% - 390px);
	width: calc(100% - 390px);
}
.list.list_other li:last-child {
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 25px;
	background: none;
}
.list.list_other li::before {
	display: none;
}
.list__button {
	margin: 0;
}
.blocks .list + .block__button {
	margin-top: 20px;
}
.reviews__list{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 20px;
}

.reviews-item {
	width: -webkit-calc(50% - 10px);
	width: calc(50% - 10px);
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
	padding: 14px 20px;
	color: #fff;
}
.reviews-item__inner {
	padding-left: 80px;
	position: relative;
	min-height: 60px;
}
.reviews-item__image{
	width: 60px;
	height: 60px;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.reviews-item__name{
	margin: 0 0 8px 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	color: #fff;
}
.reviews-item__rate {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 4px;
}
.reviews-item__text {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	color: #fff;
	margin: 8px 0 0 0;
}

.conclusion {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 16px;
	color: #fff;
}
.conclusion__image {
	width: 165px;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	overflow: hidden;
}
.conclusion__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.conclusion__desc {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.conclusion__title {
	font-weight: 600;
	font-size: 20px;
	line-height: 150%;
	color: #fff;
	margin: 0 0 16px 0;
}





.support {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	overflow: hidden;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
}
.support__desc {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 20px;
	width: 50%;
}

.support__image {
	width: 50%;
}
.support__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}


.offers {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	overflow: hidden;
	background: -webkit-gradient(linear, left top, left bottom, from(#6c41a7), to(#471e84));
	background: -o-linear-gradient(top, #6c41a7 0%, #471e84 100%);
	background: linear-gradient(180deg, #6c41a7 0%, #471e84 100%);
}
.offers__desc{
	width: 65%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 20px;
	position: relative;
	z-index: 0;
}
.offers__desc-image {
	position: absolute;
	right: 10%;
	bottom: 0;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	z-index: -1;
}

.offers__image {
	width: 35%;
}
.offers__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}


.responsibly {
	padding: 70px;
	overflow: hidden;
	position: relative;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
}

ul.responsibly__list {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 20px;
}
.responsibly__list li {
	width: -webkit-calc(50% - 10px);
	width: calc(50% - 10px);
}
ul.responsibly__list li + li {
	margin: 0;
}


.play {
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	padding: 20px;
}
.play__logo {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	margin: auto;
	max-height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	z-index: -1;
}

.play__button {
	margin: 0;
}
