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

body {
  overflow-x: hidden;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  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: #203238;
}

p {
  margin-bottom: 16px;
}

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: 'Lato', 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;
}

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

h1 {
  margin-bottom: 0;
}

h2,
h3,
h4 {
  line-height: 1.2;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 24px;
}

.description {
  margin-bottom: 40px;
}

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

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

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

/* Article */
.text,
article {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.text h2,
article h2 {
  margin-bottom: 35px;
}

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

.text ul,
article ul {
  padding: 25px 30px;
  border-radius: 15px;
  background-color: #245551;
}

.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 {
  margin-left: -30px;
  padding: 25px 30px;
  font-size: 18px;
  color: #eeeff4;
  border-radius: 0 15px 15px 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#336865),
    color-stop(98%, #0fa17c),
    to(#0fa17c)
  );
  background-image: -o-linear-gradient(
    left,
    #336865 0%,
    #0fa17c 98%,
    #0fa17c 100%
  );
  background-image: linear-gradient(
    90deg,
    #336865 0%,
    #0fa17c 98%,
    #0fa17c 100%
  );
}

.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;
}

.button.text__button {
  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-text {
  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;
  font-size: 15px;
}

.table {
  position: relative;
  width: 100%;
  border-radius: 16px;
}

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 */
.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: 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: 'Lato', 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;
}

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

.button.button-inverse {
  color: #203238;
  background-color: #ffffff;
  border: 2px solid #ffffff;
}

.button.button-inverse:hover {
  background-color: transparent;
  color: #ffffff;
}

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

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

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

.section {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
  max-width: 1290px;
}

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

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

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

.image {
  z-index: -1;
}

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

.backgr {
  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;
}

.backgr img {
  display: block;
}

.contrast-text {
  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: 40px;
  padding-bottom: 40px;
  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;
  background-color: #203238;
  color: rgba(255, 255, 255, 1);
  -webkit-box-shadow: 0 0px 10px #01a77f;
  box-shadow: 0 0px 10px #01a77f;
  border-bottom: 0.5px solid #01a77f;
  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__button-menu {
  display: none;
}

.header__button {
  margin: 0 0 0 30px;
}

.header__button-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 10px;
  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;
  line-height: 1.3;
  font-weight: 400;
  white-space: nowrap;
  color: #01a77f;
  text-transform: uppercase;
}

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

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

.dropdown li > a::before,
.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::before {
  top: 0;
}
.dropdown li > a::after {
  bottom: 0;
}
.dropdown li > a:hover::before,
.dropdown li > a:hover::after {
  width: 100%;
}

.header__button-mob {
  display: none;
}

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

.main > * {
  position: relative;
}

/* Prime */
.prime {
  padding: 24px 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;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#3eb99a),
    to(#0ca37d)
  );
  background-image: -o-linear-gradient(bottom, #3eb99a 0%, #0ca37d 100%);
  background-image: linear-gradient(0deg, #3eb99a 0%, #0ca37d 100%);
  max-width: 100vw;
  position: relative;
  border-radius: 0;
  z-index: 0;
  overflow: hidden;
}

.prime__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;
}

.prime__wrapper-left {
  padding: 50px 70px 50px 0;
  width: 42%;
}
.prime__wrapper-right {
  padding: 50px 170px 50px 70px;
  width: 56%;
}
.prime__wrapper::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100vw;
  top: 0;
  border-radius: 15px;
  z-index: -1;
}
.prime__wrapper-left::after {
  right: 0;
  background-image: -o-linear-gradient(67deg, #266f76 -71%, #203238 171%);
  background-image: linear-gradient(23deg, #266f76 -71%, #203238 171%);
}
.prime__wrapper-right::after {
  left: 0;
  background-image: -o-linear-gradient(
    234deg,
    rgba(11, 136, 106, 0.99) -187%,
    #2e5c7c 287%
  );
  background-image: linear-gradient(
    216deg,
    rgba(11, 136, 106, 0.99) -187%,
    #2e5c7c 287%
  );
}

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

.prime__title .contrast-text,
.prime__title.contrast-text {
  color: #01a77f;
}

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

.prime__title-secondary {
  font-size: 36px;
  text-transform: none;
}

.prime__title-secondary > span {
  display: block;
}

.prime__title-secondary > span + span {
  margin-top: 6px;
}

.prime__button {
  z-index: 10;
}

.prime-wrapper__img {
  position: absolute;
  height: calc(100% - 40px * 2);
  right: 20px;
  bottom: 40px;
  z-index: 1;
}
.prime-wrapper__img img {
  display: block;
  height: 100%;
  max-width: unset;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

/* Bonus */
.bonus > * {
  margin-bottom: 40px;
}
.bonus > *:last-child {
  margin-bottom: 0;
}

.bonus__wrapper {
  padding: 35px 30px;
  border-radius: 15px;
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#01a77f),
    to(#274046)
  );
  background-image: -o-linear-gradient(right, #01a77f 0%, #274046 100%);
  background-image: linear-gradient(-90deg, #01a77f 0%, #274046 100%);
}

.bonus__wrapper * {
  font-size: 18px;
}

.bonus__wrapper > * {
  margin-bottom: 20px;
}
.bonus__wrapper > *:last-child {
  margin-bottom: 0;
}

.bonus-wrapper__list .contrast-text {
  color: #35e0b6;
}

.bonus-wrapper__list li + li {
  margin-top: 20px;
}
.bonus-wrapper__list li::before {
  display: none;
}

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

.general__table {
  border-radius: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.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: 32px;
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 100% !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #203238;
}

.general__table tbody {
  padding-top: 15px;
  padding-bottom: 40px;
	display: block;
  position: relative;
  z-index: 10;
}
.general__table tbody::before {
  content: '';
  position: absolute;
  width: 32.5%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#01a77f),
    color-stop(97%, #336764),
    to(#336764)
  );
  background-image: -o-linear-gradient(
    left,
    #01a77f 0%,
    #336764 97%,
    #336764 100%
  );
  background-image: linear-gradient(
    90deg,
    #01a77f 0%,
    #336764 97%,
    #336764 100%
  );
  border-radius: 0 15px 0 0;
  z-index: -1;
}

.general__table td {
  padding: 12px 60px;
  color: #203238;
  font-size: 24px;
  line-height: 1.1;
  border: none !important;
}

.general__table tbody td:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 32.5%;
  -ms-flex: 0 1 32.5%;
  flex: 0 1 32.5%;
  color: #fff;
}
.general__table td:last-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc(100% - 32.5%);
  -ms-flex: 0 1 calc(100% - 32.5%);
  flex: 0 1 calc(100% - 32.5%);
}

/* Slots */
.slots__table {
  padding: 24px 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;
  position: relative;
  border-radius: 15px;
  background-color: #2b3f45;
  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-top: 4px;
  padding-bottom: 30px;
}

.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 {
  -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);
}

.slots__table th {
  padding: 32px 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}
.slots__table th::after {
  content: '';
  position: absolute;
  top: 24px;
  width: calc((100% - 30px * 5) / 4);
  height: calc(100% - 24px * 2);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(32, 55, 59, 1)),
    to(rgba(4, 165, 126, 1))
  );
  background-image: -o-linear-gradient(
    left,
    rgba(32, 55, 59, 1) 0%,
    rgba(4, 165, 126, 1) 100%
  );
  background-image: linear-gradient(
    90deg,
    rgba(32, 55, 59, 1) 0%,
    rgba(4, 165, 126, 1) 100%
  );
  border-radius: 15px;
  z-index: -1;
}
.slots__table th:first-child::after {
  left: 30px;
}
.slots__table th:nth-child(2)::after {
  left: calc((100% - 30px * 5) / 4 + 30px * 2);
}
.slots__table th:nth-child(3)::after {
  right: calc((100% - 30px * 5) / 4 + 30px * 2);
}
.slots__table th:nth-child(4)::after {
  right: 30px;
}

.slots__table td {
  padding: 1px 24px;
}

/* Factors */
.factors__title {
  margin-bottom: 40px;
}

.factors__table {
  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;
  border-radius: 15px;
  background-image: -o-linear-gradient(60deg, #336865 0%, #0ea27d 100%);
  background-image: linear-gradient(30deg, #336865 0%, #0ea27d 100%);
}

.factors-table__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);
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
}

.factors-table__title {
  margin-bottom: 0;
  padding: 46px 32px;
  position: relative;
  display: block;
  width: 100%;
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
  color: #229276;
  background-color: #203238;
  font-weight: 700;
  z-index: 10;
}

.factors-table__list {
  padding: 36px 30px;
  color: #203238;
}

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

/* Banner */
.banner {
  padding: 0;
  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;
  border-radius: 15px;
  background-image: -o-linear-gradient(
    60deg,
    #296978 0%,
    #1d7b71 98%,
    #1d7b71 100%
  );
  background-image: linear-gradient(
    30deg,
    #296978 0%,
    #1d7b71 98%,
    #1d7b71 100%
  );
  overflow: hidden;
}

.banner__img {
  padding: 40px;
  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 0 450px;
  -ms-flex: 0 0 450px;
  flex: 0 0 450px;
  position: relative;
  background-image: -o-linear-gradient(
    60deg,
    #336865 0%,
    #10a17c 95%,
    #10a17c 100%
  );
  background-image: linear-gradient(
    30deg,
    #336865 0%,
    #10a17c 95%,
    #10a17c 100%
  );
  overflow: hidden;
}
.banner__img-bottom {
  padding: 0 40px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.banner__img::after {
  content: '';
  position: absolute;
  width: 102%;
  height: 102%;
  bottom: -1%;
  left: -1%;
  background-image: url(../img/banner-img-background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.banner__img-dark::after {
  background-image: url(../img/banner-img-background-dark.png);
}

.banner__img img {
  display: block;
  max-height: 250px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  z-index: 10;
}
.banner__img-bottom img {
  max-height: 315px;
}

.banner__desc {
  padding: 50px 75px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.banner__desc > * + * {
  margin-top: 45px;
}

.banner__title {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}
.banner__title + .banner__title {
  margin-top: 24px;
}

/* Deposits */
.license__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;
}
.license__table tr + tr {
  margin-top: 25px;
}
.license__table td {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(32, 55, 59, 0.99)),
    to(rgba(4, 165, 126, 0.99))
  );
  background-image: -o-linear-gradient(
    left,
    rgba(32, 55, 59, 0.99) 0%,
    rgba(4, 165, 126, 0.99) 100%
  );
  background-image: linear-gradient(
    90deg,
    rgba(32, 55, 59, 0.99) 0%,
    rgba(4, 165, 126, 0.99) 100%
  );
  border: none;
  text-transform: uppercase;
}
.license__table td:first-child {
  padding: 30px 40px 30px 60px;
  margin-right: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 315px;
  -ms-flex: 0 0 315px;
  flex: 0 0 315px;
  font-size: 24px;
  border-radius: 0 15px 15px 0;
}
.license__table td:nth-child(2) {
  padding: 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 18px;
  border-radius: 15px 0 0 15px;
}

/* 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(99, 128, 142, 0.12);
  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;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  text-transform: none;
  cursor: pointer;
  border-radius: 15px;
  background-image: -o-linear-gradient(
    left,
    #314d53 0%,
    #05a47d 98%,
    #05a47d 100%
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#314d53),
    color-stop(98%, #05a47d),
    to(#05a47d)
  );
  background-image: linear-gradient(
    90deg,
    #314d53 0%,
    #05a47d 98%,
    #05a47d 100%
  );
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

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

/* Review */
.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: 15px;
  background-color: #334c55;
}

.review__item {
  margin: 13px 15px;
  padding: 30px 30px 25px;
  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 - 30px);
  -ms-flex: 0 1 calc(100% / 3 - 30px);
  flex: 0 1 calc(100% / 3 - 30px);
  background-color: #eeeff4;
  border-radius: 15px;
  border: 2px solid #236357;
}

.review__item::before {
  display: none;
}

.review-item__description {
  margin-bottom: auto;
  color: #203138;
  font-weight: 400;
}

.review__author {
  margin-top: 20px;
  padding: 13px 20px;
  min-width: 183px;
  border-radius: 15px;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#20373c),
    to(#05a47d)
  );
  background-image: -o-linear-gradient(left, #20373c 0%, #05a47d 100%);
  background-image: linear-gradient(90deg, #20373c 0%, #05a47d 100%);
  font-size: 18px;
  line-height: 1;
  color: #fffefe;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* Resume */
.resume {
  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__wrapper {
  padding: 40px;
  border-radius: 15px;
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#01a77f),
    color-stop(98%, #304c53),
    to(#304c53)
  );
  background-image: -o-linear-gradient(
    right,
    #01a77f 0%,
    #304c53 98%,
    #304c53 100%
  );
  background-image: linear-gradient(
    -90deg,
    #01a77f 0%,
    #304c53 98%,
    #304c53 100%
  );
  overflow: hidden;
}
.resume__wrapper-classification {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 40.7%;
  -ms-flex: 0 1 40.7%;
  flex: 0 1 40.7%;
}
.resume__wrapper-resume {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 57%;
  -ms-flex: 0 1 57%;
  flex: 0 1 57%;
}
.resume__wrapper > *:not(:last-child) {
  margin-bottom: 32px;
}

.resume__title {
  font-size: 30px;
}

.resume__description {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

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

.resume__table {
  padding: 30px 0;
  position: relative;
  font-size: 18px;
  line-height: 1.8;
  z-index: 1;
}
.resume__table::before,
.resume__table::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  background-color: #29444b;
  bottom: 0;
  z-index: -1;
}
.resume__table::before {
  left: calc(-27% - 30px / 2);
}
.resume__table::after {
  right: calc(-69% - 30px / 2);
}

.resume__table thead {
  color: #09a37d;
  font-weight: 700;
}
.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 {
  padding-right: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 69%;
  -ms-flex: 0 0 69%;
  flex: 0 0 69%;
}
.resume__table td:nth-child(2) {
  padding-left: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 27%;
  -ms-flex: 0 0 27%;
  flex: 0 0 27%;
}
