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

body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #ffffff;
  text-align: left;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #2e4776;
}

p {
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

ul,
ol {
  text-align: left;
}

ul > li,
ol > li {
  display: block;
  position: relative;
  list-style: none;
}

ol > li {
  counter-increment: step-counter;
}

ul > li:before,
ol > li:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  text-align: center;
  padding: 8px 8px 0 0;
  padding-top: inherit;
}

ul > li:before {
  content: '-';
  color: #ffffff;
}

ol > li:before {
  content: counter(step-counter) '.';
  color: #ffffff;
}

a:hover {
  text-decoration: underline;
}

/* Title */
h1,
h2,
h3,
h4 {
  display: block;
  position: relative;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 40px;
  text-align: left;
  text-transform: uppercase;
}

h1,
.title.general {
  font-size: 48px;
}

h1 {
  margin-bottom: 0;
}

h2,
h3,
h4 {
  line-height: 1.4;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 22px;
}

.descr {
  margin-bottom: 40px;
}

.descr:last-child {
  margin-bottom: 0;
}

.btn-box {
  text-align: left;
}

section,
article {
  margin-bottom: 40px;
}

/* Text, Article */
.text,
article {
  padding: 30px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  background-color: #3c5687;
}

.text.text-transparent {
  padding: 0 30px;
  background-color: transparent;
}

.text > *:not(:last-child),
article > *:not(:last-child),
.text > div > *:not(:last-child),
article > div > *:not(:last-child) {
  margin-bottom: 40px;
}

.text ul,
article ul {
  padding: 0;
}

.text ul > li,
.text ol > li,
article ul > li,
article ol > li {
  display: block;
  position: relative;
  list-style: none;
}

.text ul > li,
article ul > li {
  padding: 32px 30px;
  color: #3e3d3d;
  font-weight: 700;
  border-radius: 5px;
  background-color: #ffffff;
}

.text ol > li,
article ol > li {
  padding: 0 0 0 24px;
}

.text ul > li + li,
.text ol > li + li,
article ul > li + li,
article ol > li + li {
  margin-top: 24px;
}

.text ol > li:before,
article ol > li:before {
  display: inline-block;
  position: absolute;
  color: #ffffff;
  top: 0;
  left: 0;
  text-align: left;
  padding: 0;
}

.text ul > li:before,
article ul > li:before {
  display: none;
}

.text > div {
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 24px !important;
  padding: 35px 30px;
  background-color: #4d69a0;
  width: calc(100% + 30px * 2);
}
.text > div:last-child {
  margin-bottom: -30px !important;
}

.bttn.text__bttn {
  margin: 0 16px 0 0;
  min-width: 125px;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.5;
}

.text > *,
article > * {
  margin-bottom: 540px;
}

.text > *:last-child,
article > *:last-child {
  margin-bottom: 0;
}

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

.text > p.contrast {
  margin-bottom: 6px;
}

.text a,
article a {
  font-style: italic;
}

.text li a,
article li a {
  font: inherit;
  color: inherit;
  text-decoration: underline;
}

.text .btn-box,
article .btn-box {
  text-align: left;
}

article > a,
.text > a {
  display: inline-block;
  width: auto;
  min-width: 125px;
  height: auto;
  background-color: #2bc69d;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  font-style: normal;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  cursor: pointer;
  padding: 14px 16px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 2px solid #2bc69d;
}

article > a:hover,
.text > a:hover {
  text-decoration: none;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Table */
table {
  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: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.table {
  position: relative;
  width: 100%;
}

table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.table thead tr > *:first-child {
  border-radius: 16px 0 0 0;
}
.table thead tr > *:last-child {
  border-radius: 0 16px 0 0;
}

.table th,
.table td {
  padding: 25px 30px;
  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;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc(100% / 2);
  -ms-flex: 0 1 calc(100% / 2);
  flex: 0 1 calc(100% / 2);
  text-align: center;
  border: 1px solid #2bc69d;
}

.table tbody td {
  border-top-width: 0.5px;
}

.table tbody td a {
  font: inherit;
  color: inherit;
  text-decoration: underline;
}

.table thead {
  font-weight: 700;
  text-transform: uppercase;
}

.table a {
  color: inherit;
  font: inherit;
}

.table a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* Button */
.bttn {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: auto;
  min-width: 180px;
  height: auto;
  border-radius: 24px;
  background-color: #01a77f;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
  cursor: pointer;
  padding: 12px 16px;
  text-transform: uppercase;
  border: 2px solid #01a77f;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.bttn:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: #01a77f;
}

.bttn.bttn-inverse {
  color: #ffffff;
  background-color: #3e3d3d;
  border: 2px solid #3e3d3d;
}

.bttn.bttn-inverse:hover {
  background-color: #ffffff;
  color: #3e3d3d;
}

.bttn.bttn-white {
  background-color: #ffffff;
  color: #3e3d3d;
  border: 2px solid #ffffff;
}
.bttn.bttn-white:hover {
  color: #ffffff;
  background-color: #3e3d3d;
}

.bttn > img,
.bttn > span {
  display: inline-block;
  position: relative;
  font: inherit;
  line-height: 1;
  vertical-align: middle;
}

.bttn > img + span {
  margin-left: 10px;
}

.container,
article {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
  max-width: 1290px;
  border-radius: 5px;
}

.container-contrast {
  padding: 30px;
  background-color: #ffffff;
}
.container-contrast .descr,
.container-contrast .title {
  color: #3e3d3d;
}

.container-background {
  padding: 30px;
  border-radius: 15px;
  background-color: #ffffff;
}

.dummy {
  position: absolute;
  top: -130px;
  left: 0;
  width: 0;
  height: 0;
}

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

.image {
  z-index: -1;
}

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

.background {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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;
  position: absolute !important;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background img {
  display: block;
}

.contrast {
  color: #56ceb1;
}

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

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

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  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;
}

/* Content */
.content,
.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 32px 30px 0 30px;
}

.cover {
  max-width: 100%;
  overflow: hidden;
  padding-left: calc(50% - 1290px / 2);
  padding-right: calc(50% - 1290px / 2);
}

.content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  padding: 20px 32px 0 32px;
  overflow: hidden;
}

.content > *,
.cover > * {
  display: block;
}

/* HEADER */
.header {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: initial;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: auto;
  -webkit-filter: drop-shadow(6px 6px 10px rgba(25, 34, 69, 0.04));
  filter: drop-shadow(6px 6px 10px rgba(25, 34, 69, 0.04));
  background-color: #ffffff;
  z-index: 1000;
}

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

.header__logo {
  max-width: 155px;
  margin-right: 40px;
}

.header__dropdown {
  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;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.header__bttn-menu {
  display: none;
}

.header__bttn {
  margin: 0 0 0 30px;
  font-weight: 400;
}

.header__bttn-bonus {
  margin-right: 16px;
  text-transform: uppercase;
}

.logo > img {
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 48px;
}

.logo[href]:hover {
  opacity: 0.5;
}

/* Menu */
.dropdown ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  width: auto;
}

.dropdown li {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0;
}

.dropdown li:before {
  display: none;
}

.dropdown li > a {
  padding: 12px;
  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;
  position: relative;
  align-items: center;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  white-space: nowrap;
  color: #010101;
  text-transform: uppercase;
}

.dropdown li + li {
  margin-left: 30px;
}

.dropdown li > a:hover,
.dropdown li > a.current {
  color: #01a77f;
  text-decoration: none;
}

.dropdown li > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: #17b08b;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.dropdown li > a::after {
  bottom: 0;
}
.dropdown li > a:hover::after {
  width: 100%;
}

.header__bttn-mob {
  display: none;
}

/* MAIN */
.main {
  display: block;
  position: relative;
  overflow-x: hidden;
}

.main > * {
  position: relative;
}

/* Prime */
.primary {
  padding: 70px calc(50% - 1290px / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: url(../img/primary-bg.png), #172f5c;
  max-width: 100vw;
  position: relative;
  border-radius: 0;
  z-index: 0;
  overflow: hidden;
}

.primary__wrapper {
  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;
  position: relative;
  border-radius: 5px;
}

.primary__wrapper-left {
  padding: 35px 70px 35px 260px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 65%;
  -ms-flex: 0 1 65%;
  flex: 0 1 65%;
  background-color: #ed742e;
}
.primary__wrapper-right {
  padding: 25px 110px 25px 25px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 33%;
  -ms-flex: 0 1 33%;
  flex: 0 1 33%;
  background-color: #01a77f;
}

.primary__title {
  margin-bottom: 28px;
  color: #ffffff;
  z-index: 10;
}
.primary__title:last-child {
  margin-bottom: 0;
}

.primary__title .contrast,
.primary__title.contrast {
  color: #172f5c;
}

.primary__title-general {
  font-size: 48px;
  text-transform: uppercase;
}

.primary__title-secondary {
  font-size: 24px;
  text-transform: none;
}

.primary__bttn {
  z-index: 10;
}

.primary-wrapper__img {
  position: absolute;
  z-index: 1;
}
.primary__wrapper-left .primary-wrapper__img {
  height: calc(100% + 105px);
  max-height: 285px;
  bottom: 50%;
  -webkit-transform: translateY(55%);
  -ms-transform: translateY(55%);
  transform: translateY(55%);
  left: -80px;
}
.primary__wrapper-right .primary-wrapper__img {
  height: calc(100% + 25px);
  max-height: 205px;
  bottom: 0;
  right: 0;
}
.primary-wrapper__img img {
  display: block;
  height: 100%;
  max-width: unset;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center bottom;
  object-position: center bottom;
}

.primary-wrapper__descr {
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  max-width: 965px;
  text-align: center;
}

/* General */
.general__title.title-contrast {
  color: #01a77f;
}

.general__table {
  padding: 30px;
  color: #203238;
  border-radius: 5px;
  background-color: #ffffff;
  overflow: hidden;
}
.general__table thead {
  margin-bottom: 34px;
}
.general__table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.general__table thead td {
  padding: 0;
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 100% !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
  font-size: 36px;
  line-height: 1.1;
}

.general__table tbody {
  display: block;
  position: relative;
  z-index: 10;
}

.general__table td {
  padding: 10px 30px;
  color: #203238;
  line-height: 1.15;
  border: none !important;
}

.general__table tbody td:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 32%;
  -ms-flex: 0 1 32%;
  flex: 0 1 32%;
  color: #fff;
  background-color: #3e3d3d;
}
.general__table tbody td:last-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc(100% - 32% - 30px);
  -ms-flex: 0 1 calc(100% - 32% - 30px);
  flex: 0 1 calc(100% - 32% - 30px);
  background-color: #f8f9fb;
}
.general__table tbody tr:first-child td {
  padding-top: 27px;
  border-radius: 5px 5px 0 0;
}
.general__table tbody tr:last-child td {
  padding-bottom: 54px;
  border-radius: 0 0 5px 5px;
}

/* Bonuses */
.bonuses__wrapper .bonuses__title {
	font-size: 36px;
}

/* Slots */
.slots__table {
  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: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  color: #fff;
}

.slots__table thead,
.slots__table tbody {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}

.slots__table tbody {
  padding-bottom: 40px;
}

.slots__table tr {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.slots__table th,
.slots__table td {
  padding-left: 45px;
  padding-right: 45px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc((100% - 30px * 3) / 4);
  -ms-flex: 0 1 calc((100% - 30px * 3) / 4);
  flex: 0 1 calc((100% - 30px * 3) / 4);
  font-size: 18px;
  line-height: 1.2;
  text-transform: none;
}

.slots__table th {
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.slots__table th::after {
  content: '';
  position: absolute;
  top: 0;
  width: calc((100% - 30px * 3) / 4);
  height: 100%;
  background-color: #3e3d3d;
  border-radius: 5px;
  z-index: -1;
}
.slots__table th:first-child::after {
  left: 0;
}
.slots__table th:nth-child(2)::after {
  left: calc((100% - 30px * 3) / 4 + 30px);
}
.slots__table th:nth-child(3)::after {
  right: calc((100% - 30px * 3) / 4 + 30px);
}
.slots__table th:nth-child(4)::after {
  right: 0;
}

.slots__table td {
  padding-top: 4px;
  padding-bottom: 4px;
}
.slots__table td:first-child {
  font-weight: 700;
}

/* Live */
.live__list {
  padding: 25px 30px;
  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: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #3e3d3d;
}

.live-list__item {
  padding: 20px 30px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  background-color: #01a77f;
}
.live-list__item::before {
  display: none;
}

.live-list__item + .live-list__item {
  margin-top: 24px;
}

/* Factors */
.factors {
  padding: 30px;
  background-color: #3e3d3d;
  border: 1px solid #ffffff;
}

.factors__title {
  margin-bottom: 40px;
}

.factors__table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.factors-table__wrapper {
  padding: 50px 75px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc((100% - 30px) / 2);
  -ms-flex: 0 1 calc((100% - 30px) / 2);
  flex: 0 1 calc((100% - 30px) / 2);
  border-radius: 5px;
  background-color: #ffffff;
  overflow: hidden;
}

.factors-table__title {
  margin-bottom: 54px;
  position: relative;
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 35px;
  color: #3e3d3d;
  line-height: 1;
  text-transform: uppercase;
  z-index: 10;
}

.factors-table__list {
  color: #203238;
}

.factors-table__list li {
  margin-bottom: 10px;
  font-size: 18px;
}
.factors-table__list li:last-child {
  margin-bottom: 0;
}
.factors-table__list li::before {
  display: none;
}

/* Banner */
.banner {
  padding: 50px 500px 50px 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #01a77f;
  overflow: hidden;
}

.banner__img {
  position: absolute;
  height: 100%;
  max-height: 330px;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.banner__img img {
  display: block;
  height: 100%;
  max-width: unset;
  max-height: unset;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  z-index: 10;
}

.banner__desc {
  width: 100%;
}

.banner__title {
  text-transform: none;
}
.banner__title .contrast {
  margin-top: 10px;
  display: block;
  font-size: 28px;
  color: #3e3d3d;
}

/* Deposits */
.deposits__table {
  padding: 24px;
  background-color: #3e3d3d;
}
.deposits__table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.deposits__table tr + tr {
  margin-top: 25px;
}
.deposits__table td {
  padding: 25px 30px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  border: none;
  text-transform: uppercase;
}
.deposits__table td:first-child {
  margin-right: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 170px;
  -ms-flex: 0 0 170px;
  flex: 0 0 170px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #01a77f;
  color: #fff;
  text-align: center;
}
.deposits__table td:nth-child(2) {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #3e3d3d;
  background-color: #fff;
}

/* F.A.Q. */
.faq__list {
  padding: 33px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.faq__list::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: rgba(20, 37, 70, 0.76);
  z-index: -1;
}

.faq__item:before {
  display: none;
}

.faq__item {
  width: 100%;
  color: #ffffff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.faq__item + .faq__item {
  margin-top: 28px;
}

.faq-item__title {
  margin: 0;
  padding: 25px 40px;
  position: relative;
  text-align: left;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: #ed742e;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.faq-item__descr {
  padding: 25px 10px 6px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}

/* Review */
.review__title {
  text-transform: none;
}

.review__list {
  padding: 12px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 5px;
  background-color: #ffffff;
}

.review__item {
  margin: 14px;
  padding: 30px;
  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-flex: 0;
  -webkit-flex: 0 1 calc(100% / 3 - 28px);
  -ms-flex: 0 1 calc(100% / 3 - 28px);
  flex: 0 1 calc(100% / 3 - 28px);
  background-color: #2e4776;
}

.review__item::before {
  display: none;
}

.review-item__descr {
  margin-bottom: auto;
  font-size: 15px;
  color: #ffffff;
}

.review__author {
  margin-top: 20px;
  padding: 13px 20px;
  min-width: 183px;
  border-radius: 5px;
  background-color: #ed742e;
  font-size: 18px;
  line-height: 1;
  color: #fffefe;
  font-weight: 700;
}

/* Resume */
.resume {
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #3c5687;
}
.resume > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.resume__wrapper {
  border-radius: 5px;
  background-color: #2e313f;
  overflow: hidden;
}
.resume__wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc((100% - 30px) / 2);
  -ms-flex: 0 1 calc((100% - 30px) / 2);
  flex: 0 1 calc((100% - 30px) / 2);
}
.resume__wrapper > *:not(:last-child) {
  margin-bottom: 32px;
}

.resume__descr > * {
  margin-bottom: 40px;
}
.resume__descr > *:last-child {
  margin-bottom: 0;
}

.resume__table {
  font-size: 24px;
  line-height: 1.5;
  z-index: 1;
}

.resume__table thead {
  padding: 30px 40px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #414558;
}
.resume__table tbody {
  padding: 40px;
}
.resume__table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.resume__table td:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 54%;
  -ms-flex: 0 0 54%;
  flex: 0 0 54%;
}
.resume__table td:nth-child(2) {
  padding-left: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 46%;
  -ms-flex: 0 0 46%;
  flex: 0 0 46%;
  text-align: center;
}

.resume__wrapper-text {
  padding: 35px;
}
.resume-wrapper__descr {
  font-size: 18px;
}
