@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800;900&display=swap');

*,
*:before,
*:after,
input[type='search'] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased !important;
  font-family: 'Open Sans', sans-serif;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  min-width: 320px;
  background: #f9fcfe;
  max-width: 100%;
  position: relative;
  height: 100%;
  color: #003648;
}

a,
img {
  outline: none;
}

img,
svg {
  max-width: 100%;
  vertical-align: top;
}

iframe {
  border: none;
}

a {
  color: #00acc1;
  text-decoration: none;
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}

a:hover {
  text-decoration: none;
}

a:focus,
a:active {
  text-decoration: none;
}

.fxd {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.about {
  position: relative;
  background: linear-gradient(237deg, #009aab 0%, #00acc1 89%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/about-bg.png) repeat 50% 50%;
  background-size: 100% 150%;
}

.about__header {
  position: relative;
  z-index: 2;
}

.about__body {
  padding: 137px 0 120px;
}

.about__title {
  font-size: 67px;
  line-height: 67px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.about__logo {
  text-align: center;
  margin-top: 27px;
}

.about__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px 0 0;
  position: relative;
  z-index: 1;
}

.about__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 80px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 26px 0 rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  width: 367px;
  min-height: 208px;
  text-align: center;
  color: #fff;
  padding: 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: relative;
}

.about__type:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 6px;
  background-image: linear-gradient(197deg, #355e70 0%, #18303d 98%);
}

.about__type:last-child {
  margin-right: 0;
}

.about__type:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.about__info,
.about__link {
  position: relative;
  z-index: 1;
}

.about__link {
  font-size: 33px;
  line-height: 33px;
  font-weight: 900;
  text-transform: uppercase;
}

.about__info {
  font-size: 19px;
  line-height: 21px;
  font-weight: 600;
  margin-top: 9px;
}

@media (max-width: 1399px) {
  .about__body {
    padding-top: 85px;
    padding-bottom: 60px;
  }
  .about__title {
    font-size: 48px;
    line-height: 48px;
  }
  .about__logo {
    margin-top: 23px;
  }
}

@media (max-width: 959px) {
  .about__body {
    padding-top: 38px;
    padding-bottom: 20px;
  }
  .about__title {
    font-size: 38px;
    line-height: 52px;
  }
  .about__logo {
    margin-top: 15px;
  }
  .about__option {
    display: block;
    margin-top: 32px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .about__type {
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
    min-height: 120px;
  }
  .about__type:first-child {
    margin-top: 0;
  }
}

@media (max-width: 639px) {
  .about__body {
    padding-top: 22px;
    padding-bottom: 50px;
  }
  .about__title {
    font-size: 26px;
    line-height: 36px;
  }
  .about__logo {
    margin-top: 9px;
  }
  .about__option {
    margin-top: 25px;
    padding-left: 0;
    padding-right: 0;
  }
  .about__type {
    margin-top: 15px;
    min-height: 83px;
  }
  .about__link {
    font-size: 19px;
    line-height: 19px;
  }
  .about__info {
    font-size: 14px;
    line-height: 16px;
    border-radius: 3px;
  }
  .about__type:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 3px;
  }
}

.actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.actions__button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 9px 20px;
  border-radius: 17px;
  font-size: 15px;
  line-height: 15px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.actions__button--accent {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-right: 29px;
  background: rgba(255, 255, 255, 0.2);
}

.actions__button span {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.actions__button span:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}

.actions__button:hover span:after {
  width: 100%;
}

.actions__button--accent:after {
  display: none;
}

.actions__button--accent:before {
  content: '';
  position: absolute;
  top: 13px;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}

.actions__button--accent:hover:before {
  -webkit-transform: rotate(135deg) translate(-2px, -2px);
  transform: rotate(135deg) translate(-2px, -2px);
}

@media (max-width: 1399px) {
  .header--burger-open .actions {
    display: block;
    margin-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .actions__button {
    display: block;
  }
  .actions__button {
    font-size: 21px;
    font-weight: 400;
    padding-top: 13px;
    padding-bottom: 13px;
    margin-top: 5px;
  }
  .actions__button--accent {
    background: #00aabe;
    border-radius: 3px;
    font-size: 19px;
    font-weight: 700;
    padding-right: 20px;
    margin-top: 0;
  }
  .actions__button--accent:before {
    top: 18px;
  }
  .actions__button span:after {
    display: none;
  }
}

@media (max-width: 959px) {
  .header--burger-open .actions {
    padding-left: 70px;
    padding-right: 70px;
  }
}

.address__item > img {
  width: 50%;
}

@media (max-width: 639px) {
  .actions__button {
    font-size: 18px;
  }
  .actions__button--accent {
    font-size: 17px;
  }
  .header--burger-open .actions {
    padding-left: 20px;
    padding-right: 20px;
  }
  .address__item > img {
    width: 145px;
  }
}

.address__item {
  margin-top: 29px;
}

.address__item:first-child {
  margin-top: 0;
}

@media (max-width: 959px) {
  .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .address__item {
    margin-top: 0;
    margin-right: 70px;
  }
  .address__item:last-child {
    margin-right: 0;
  }
}

@media (max-width: 639px) {
  .address {
    display: block;
  }
  .address__item {
    margin-top: 29px;
  }
}

.arrow-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  vertical-align: top;
  font-size: 16px;
  line-height: 18px;
  color: #00acc1;
  font-weight: bold;
  text-transform: uppercase;
}

.arrow-link__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 6px;
  position: relative;
  top: 2px;
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.arrow-link:hover .arrow-link__icon {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

.audience {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-top: 96px;
}

.audience__type {
  position: relative;
  width: 55%;
  background: #ebf7f9;
  border-radius: 5px;
}

.audience__target {
  width: 45%;
  padding-left: 100px;
}

.audience__block {
  position: absolute;
  top: 129px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.audience__list {
  margin: 37px 0 0;
  padding: 0;
  list-style: none;
}

.audience__item {
  margin-top: 36px;
}

.audience__item:first-child {
  margin-top: 0;
}

.audience__button {
  margin-top: 32px;
}

@media (max-width: 1399px) {
  .audience {
    padding-top: 80px;
  }
  .audience__target {
    padding-left: 45px;
  }
}

@media (max-width: 959px) {
  .audience {
    display: block;
  }
  .audience__type {
    display: none;
  }
  .audience__target {
    width: 100%;
    padding-left: 0;
  }
  .audience__title {
    text-align: center;
  }
  .audience__button {
    text-align: center;
  }
  .audience__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px -20px -20px;
  }
  .audience__item {
    width: 33.3333%;
    margin: 0;
    padding: 20px;
  }
  .audience__button {
    margin-top: 41px;
  }
}

@media (max-width: 639px) {
  .audience {
    padding-top: 60px;
  }
  .audience__item {
    width: 50%;
  }
}

.benefits {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.benefits__wrap {
  position: relative;
  padding: 73px 0 80px;
  background: #18303d;
}

.benefits__wrap:before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 80px 100vw;
  border-color: transparent transparent #18303d transparent;
}

.benefits__title {
  text-align: center;
}

.benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px -10px -10px;
  padding: 0;
  list-style: none;
}

.benefits__item {
  padding: 10px;
  width: 25%;
}

.benefits__box {
  background: #132732;
  border-radius: 2px;
  text-align: center;
  height: 100%;
  padding: 30px 20px;
}

.benefits__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 65px;
}

.benefits__name {
  margin-top: 16px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  position: relative;
}

.benefits__text {
  margin-top: 22px;
  font-size: 14px;
  line-height: 24px;
  color: #b8bec1;
}

.benefits__button {
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 1399px) {
  .benefits__wrap {
    padding-top: 54px;
    padding-bottom: 56px;
  }
  .benefits__item {
    width: 50%;
  }
  .benefits__box {
    text-align: left;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .benefits__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .benefits__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    height: auto;
    margin-right: 20px;
  }
  .benefits__name {
    top: 5px;
    margin-top: 0;
  }
  .benefits__text {
    margin-top: 27px;
  }
  .benefits__button {
    margin-top: 40px;
  }
}

@media (max-width: 959px) {
  .benefits__wrap {
    padding: 62px 50px 60px;
  }
  .benefits__list {
    display: block;
    margin: 40px auto 0;
  }
  .benefits__item {
    width: 100%;
    margin-top: 15px;
    padding: 0;
  }
  .benefits__item:first-child {
    margin-top: 0;
  }
  .benefits__box {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .benefits__text {
    margin-top: 18px;
  }
}

@media (max-width: 639px) {
  .benefits {
    padding-top: 0;
  }
  .benefits__wrap {
    padding: 40px 0;
  }
  .benefits__wrap:before {
    display: none;
  }
  .benefits__list {
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .benefits__box {
    padding-top: 19px;
    padding-bottom: 19px;
  }
  .benefits__text {
    margin-top: 12px;
  }
  .benefits__button {
    margin-top: 30px;
  }
}

.button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-family: inherit;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 18px 40px;
  background: #00acc1;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.button:hover {
  opacity: 0.8;
}

.button--light {
  color: #00acc1;
  background: #fff;
}

.button--dark {
  background: #18303d;
}

.button--accent {
  padding-top: 23px;
  padding-bottom: 23px;
}

.button--lg {
  width: 100%;
  text-transform: none;
  border-radius: 3px;
  padding: 25px 20px;
}

.button--pic {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.button__icon,
.button__text {
  display: inline-block;
  vertical-align: top;
}

.button__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
  top: 1px;
}

.button__icon .icon {
  fill: #fff;
}

.button--border {
  font-size: 14px;
  line-height: 16px;
  color: #00acc1;
  background: transparent;
  border: 1px solid #00acc1;
  padding: 11px 18px;
}

@media (max-width: 959px) {
  .button--border {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    border: none;
    padding: 18px 40px;
    background: #00acc1;
  }
}

@media (max-width: 639px) {
  .button {
    min-width: 280px;
    padding-left: 37px;
    padding-right: 37px;
  }
  .button--pic {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 31px;
  min-height: 18px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox__text {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  line-height: 16px;
  color: #668691;
  padding-top: 1px;
}

.checkbox__text a {
  font-weight: 600;
  color: #668691;
  text-decoration: underline;
}

.checkbox__text a:hover {
  text-decoration: none;
}

.checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid rgba(24, 48, 61, 0.3);
  border-radius: 2px;
}

.checkbox__checkmark:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #00acc1;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}

.checkbox input:checked ~ .checkbox__checkmark:after {
  display: block;
}

@media (max-width: 449px) {
  .checkbox__checkmark {
    top: 2px;
  }
}

.choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.choice__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #b8b8b8;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.choice__icon + .choice__icon {
  margin-left: 3px;
}

.choice__icon--check:after {
  content: '';
  position: absolute;
  top: -15px;
  left: -55px;
  background: url(/ico-check-sm.svg) no-repeat;
  background-size: contain;
  width: 66px;
  height: 51px;
}

.choice__icon--cross:after {
  content: '';
  position: absolute;
  top: -15px;
  left: -55px;
  background: url(/ico-cross-sm.svg) no-repeat;
  background-size: contain;
  width: 65px;
  height: 52px;
}

.choice--selected .choice__icon--check {
  background: #00acc1;
  border-color: #00acc1;
}

.choice--selected .choice__icon--check:after {
  background-image: url(/ico-check-sm-color.svg);
}

.choice--selected .choice__icon--cross {
  display: none;
}

.choice--rejected .choice__icon--cross {
  background: #f08e7c;
  border-color: #f08e7c;
}

.choice--rejected .choice__icon--cross:before,
.choice--rejected .choice__icon--cross:after {
  background-image: url(/ico-cross-sm-color.svg);
}

.choice--rejected .choice__icon--check {
  display: none;
}

.choice--rejected .choice__icon + .choice__icon {
  margin-left: 0;
}

.choice__name {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-left: 10px;
  font-size: 14px;
  line-height: 16px;
  color: #18303d;
}

.choice__name--list {
  cursor: pointer;
  padding-right: 12px;
}

.choice__name--list:after {
  content: '';
  position: absolute;
  top: 6px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #9b9b9b;
  border-left: 1px solid #9b9b9b;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.property__item--full .choice__name--list:after {
  top: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.choice__name span {
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
  color: #9b9b9b;
}

.contacts {
  position: relative;
  background: #132732;
  min-height: 605px;
  overflow: hidden;
}

.contacts__map {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -247px;
  margin-left: -600px;
  background: url(/contacts-map.png) no-repeat 50% 50%;
  background-size: contain;
  width: 1105px;
  height: 535px;
}

.contacts__box {
  position: absolute;
  top: 110px;
  left: 50%;
  margin-left: -561px;
  background: rgba(20, 48, 62, 0.8);
  border-radius: 5px;
  min-width: 338px;
  padding: 52px 35px;
}

.contacts__title {
  font-size: 36px;
  line-height: 40px;
  color: #fff;
  font-weight: bold;
  margin: 0;
}

.contacts__list {
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.contacts__item {
  margin-top: 40px;
}

.contacts__item:first-child {
  margin-top: 0;
}

.contacts__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: top;
}

.contacts__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
}

.contacts__icon .icon--mail {
  width: 26px;
  height: 17px;
  position: relative;
  top: 3px;
}

.contacts__icon .icon--tg2 {
  width: 25px;
  height: 20px;
}

.contacts__icon .icon--skype {
  width: 22px;
  height: 20px;
}

.contacts__name {
  font-size: 18px;
  line-height: 20px;
  color: #a0abb1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.contacts__link:hover .contacts__name {
  color: #fff;
}

@media (max-width: 1329px) {
  .contacts__box {
    left: 40px;
    margin-left: 0;
  }
  .contacts__map {
    margin-left: -476px;
  }
}

@media (max-width: 959px) {
  .contacts__box {
    top: auto;
    left: 60px;
    right: 60px;
    bottom: 40px;
  }
  .contacts__map {
    margin-left: -639px;
  }
}

@media (max-width: 639px) {
  .contacts {
    min-height: 415px;
  }
  .contacts__map {
    margin-top: -183px;
    margin-left: -470px;
    width: 754px;
    height: 370px;
  }
  .contacts__box {
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 1px;
    padding: 45px 20px;
    border-radius: 0;
  }
  .contacts__title {
    font-size: 21px;
    line-height: 25px;
  }
  .contacts__list,
  .contacts__item {
    margin-top: 28px;
  }
  .contacts__name {
    font-size: 16px;
    line-height: 18px;
  }
}

.content {
  position: relative;
  padding-bottom: 140px;
}

.content__steps {
  margin-top: 80px;
}

.content__benefits {
  margin-top: 66px;
}

.content__payouts,
.content__start {
  margin-top: 110px;
}

@media (max-width: 1399px) {
  .content {
    padding-bottom: 120px;
  }
  .content__payouts {
    margin-top: 83px;
  }
  .content__start {
    margin-top: 100px;
  }
  .content__benefits {
    margin-top: 38px;
  }
}

@media (max-width: 959px) {
  .content {
    padding-bottom: 100px;
  }
  .content__payouts {
    margin-top: 60px;
  }
  .content__start {
    margin-top: 80px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .content__benefits {
    margin-top: 20px;
  }
  .content__steps {
    margin-top: 50px;
  }
}

@media (max-width: 639px) {
  .content {
    padding-bottom: 0;
  }
  .content__steps,
  .content__benefits,
  .content__payouts {
    margin-top: 40px;
  }
  .content__start {
    margin: 60px -20px 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.deposit {
  background: #18303d;
  padding: 40px 0;
}

.deposit__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.deposit__title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 21px;
  line-height: 23px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0 70px 0 0;
}

.deposit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deposit__item {
  margin-right: 10px;
}

.deposit__item:last-child {
  margin-right: 0;
}

@media (max-width: 1399px) {
  .deposit {
    padding-top: 53px;
    padding-bottom: 45px;
    text-align: center;
  }
  .deposit__block {
    display: block;
  }
  .deposit__title {
    margin-right: 0;
  }
  .deposit__list {
    margin-top: 30px;
  }
}

@media (max-width: 959px) {
  .deposit {
    padding-bottom: 52px;
  }
  .deposit__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -30px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .deposit__item {
    margin-right: 50px;
    padding-bottom: 30px;
  }
  .deposit__item:nth-child(3n) {
    margin-right: 0;
  }
  .deposit__item:nth-child(1) {
    max-width: 87px;
  }
  .deposit__item:nth-child(2) {
    max-width: 84px;
  }
  .deposit__item:nth-child(3) {
    max-width: 90px;
  }
  .deposit__item:nth-child(4) {
    max-width: 106px;
  }
  .deposit__item:nth-child(5) {
    max-width: 80px;
  }
  .deposit__item:nth-child(6) {
    max-width: 132px;
  }
}

@media (max-width: 639px) {
  .deposit {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .deposit__list {
    max-width: 220px;
    margin-top: 35px;
  }
  .deposit__item:nth-child(3n) {
    margin-right: 50px;
  }
  .deposit__item:nth-child(2n) {
    margin-right: 0;
  }
  .deposit__item:nth-child(1) {
    max-width: 71px;
  }
  .deposit__item:nth-child(2) {
    max-width: 67px;
  }
  .deposit__item:nth-child(3) {
    max-width: 85px;
  }
  .deposit__item:nth-child(4) {
    max-width: 72px;
  }
  .deposit__item:nth-child(5) {
    max-width: 64px;
  }
  .deposit__item:nth-child(6) {
    max-width: 106px;
  }
}

.features {
  position: relative;
  padding: 90px 0;
  text-align: center;
}

.features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 58px -20px -25px;
  padding: 0;
  list-style: none;
}

.features__item {
  width: 33.3333%;
  padding: 25px 20px;
}

.features__box {
  position: relative;
}

.features__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  background: #18303d;
  border-radius: 20px;
}

.features__icon:before {
  content: '';
  position: absolute;
  top: 10px;
  left: -10px;
  background: #ebf7f9;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  z-index: -1;
}

.features__name {
  margin-top: 20px;
  font-size: 18px;
  line-height: 24px;
  color: #003648;
  font-weight: bold;
}

.features__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #003648;
}

.features__button {
  position: relative;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .features {
    padding-top: 84px;
    padding-bottom: 140px;
  }
  .features__list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: -1px -40px 0;
  }
  .features__item {
    width: 50%;
    padding: 32px 40px;
    text-align: left;
  }
  .features__icon {
    position: absolute;
    top: 0;
    left: 10px;
    margin-left: 0;
    margin-right: 0;
  }
  .features__box {
    padding-left: 90px;
  }
  .features__name {
    padding-top: 2px;
  }
  .features__button {
    margin-top: -150px;
    min-height: 52px;
    text-align: left;
    width: 100%;
  }
  .features__button .button {
    position: absolute;
    left: 50%;
    margin-left: 110px;
  }
}

@media (max-width: 959px) {
  .features {
    padding: 79px 50px 80px;
  }
  .features__list {
    display: block;
    margin: 40px 0 0;
  }
  .features__item {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .features__item:first-child {
    margin-top: 0;
  }
  .features__text {
    margin-top: 10px;
  }
  .features__button {
    margin-top: 40px;
    min-height: 1px;
    text-align: center;
  }
  .features__button .button {
    position: static;
    margin-left: 0;
  }
}

@media (max-width: 639px) {
  .features {
    padding: 50px 0 60px;
  }
  .features__list {
    margin-top: 30px;
  }
  .features__icon {
    width: 48px;
    height: 48px;
  }
  .features__icon:before {
    display: none;
  }
  .features__box {
    padding-left: 0;
  }
  .features__icon {
    left: 0;
  }
  .features__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 58px;
    min-height: 48px;
    padding-top: 0;
  }
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer--accent {
  padding-top: 80px;
}

.footer__main {
  padding: 85px 0 62px;
  position: relative;
  background: #18303d;
}

.footer--accent .footer__main:before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 80px 100vw;
  border-color: transparent transparent #18303d transparent;
}

.footer__line {
  background: #132732;
  padding: 12px 0;
}

.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer__about {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-right: 200px;
}

.footer__nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.footer__social {
  margin-top: 30px;
}

.footer__address {
  margin-top: 45px;
}

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

.footer__copyright {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  font-size: 13px;
  line-height: 15px;
  color: #a0a8ad;
}

.footer__partners {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-left: auto;
}

@media (max-width: 1399px) {
  .footer__main {
    padding-top: 64px;
    padding-bottom: 55px;
  }
  .footer--accent .footer__main {
    padding-top: 100px;
  }
  .footer__about {
    margin-right: auto;
  }
  .footer__nav {
    flex: 0 1 auto;
  }
}

@media (max-width: 959px) {
  .footer__line {
    padding: 16px 50px;
  }
  .footer__main {
    padding: 64px 50px;
  }
  .footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__social {
    margin-top: 0;
  }
  .footer__address {
    margin-top: 34px;
  }
  .footer__block {
    display: block;
  }
  .footer__about {
    margin-top: 45px;
  }
  .footer__logo {
    margin-right: 70px;
  }
}

@media (max-width: 639px) {
  .footer__main {
    padding: 50px 0;
  }
  .footer--accent {
    padding-top: 0;
  }
  .footer--accent .footer__main:before {
    display: none;
  }
  .footer__line {
    padding: 20px 0 25px;
  }
  .footer__wrap {
    display: block;
  }
  .footer__copyright {
    text-align: center;
    margin-top: 17px;
  }
  .footer__logo.logo,
  .footer__logo {
    display: none;
  }
  .footer__address {
    margin-top: 45px;
  }
  .footer__about {
    margin-top: 34px;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-nav__block {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-nav__support {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.footer-nav__area {
  margin-top: 45px;
}

.footer-nav__area:first-child {
  margin-top: 0;
}

.footer-nav__col {
  margin-right: 140px;
}

.footer-nav__col:last-child {
  margin-right: 0;
}

.footer-nav__title {
  font-size: 15px;
  line-height: 17px;
  color: #fff;
  font-weight: bold;
  margin: 0;
}

.footer-nav__list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.footer-nav__item {
  margin-top: 16px;
}

.footer-nav__item:first-child {
  margin-top: 0;
}

.footer-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: top;
  font-size: 14px;
  line-height: 16px;
  color: #a0a8ad;
}

.footer-nav__link:hover {
  color: #fff;
}

.footer-nav__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
  top: 2px;
}

@media (max-width: 1399px) {
  .footer-nav {
    display: block;
  }
  .footer-nav__support {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-nav__area {
    margin-top: 0;
    margin-right: 150px;
  }
  .footer-nav__area:last-child {
    margin-right: 0;
  }
  .footer-nav__block {
    margin-top: 50px;
  }
}

@media (max-width: 959px) {
  .footer-nav__area {
    margin-right: 60px;
  }
  .footer-nav__col {
    margin-right: 50px;
  }
}

@media (max-width: 639px) {
  .footer-nav__support {
    display: block;
  }
  .footer-nav__area {
    margin-right: 0;
    margin-top: 40px;
  }
  .footer-nav__block {
    display: block;
    margin-top: 40px;
  }
  .footer-nav__col {
    margin-right: 0;
    margin-top: 40px;
  }
  .footer-nav__col:first-child {
    margin-top: 0;
  }
}

.footer-partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-partners__item {
  display: inline-block;
  vertical-align: top;
  margin-right: 100px;
}

.footer-partners__item:last-child {
  margin-right: 0;
}

@media (max-width: 959px) {
  .footer-partners__item {
    margin-right: 40px;
    max-width: 103px;
  }
  .footer-partners__item:last-child {
    max-width: 61px;
  }
}

@media (max-width: 639px) {
  .footer-partners {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.formats {
  position: relative;
  padding: 80px 0 110px;
}

.formats__header {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.formats__list {
  margin: 90px auto 0;
  padding: 0;
  list-style: none;
  max-width: 1080px;
}

.formats__item {
  margin-top: 130px;
}

.formats__item:first-child {
  margin-top: 0;
}

.formats__start {
  margin: 130px auto 0;
  max-width: 1080px;
}

@media (max-width: 1399px) {
  .formats {
    padding-top: 45px;
  }
  .formats__list {
    margin-top: 60px;
  }
  .formats__item {
    margin-top: 100px;
  }
  .formats__start {
    margin-top: 110px;
  }
}

@media (max-width: 959px) {
  .formats {
    padding: 50px 50px 70px;
  }
  .formats__header {
    display: none;
  }
  .formats__list {
    margin-top: 0;
  }
  .formats__item {
    margin-top: 80px;
  }
  .formats__start {
    margin-top: 55px;
  }
}

@media (max-width: 639px) {
  .formats {
    padding: 30px 0 0;
  }
  .formats__item {
    margin-top: 60px;
  }
  .formats__start {
    margin: 60px -20px 0;
  }
}

.formats-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding-left: 67px;
}

.formats-block:before {
  content: '';
  position: absolute;
  top: 21px;
  left: 67px;
  background: url(/formats-line.png) no-repeat;
  background-size: contain;
  width: 980px;
  height: 260px;
}

.formats-block__circle {
  position: absolute;
  top: 21px;
  left: 0;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(0, 165, 185, 0.1);
}

.formats-block__circle:before {
  content: '';
  position: absolute;
  top: 38px;
  left: 38px;
  width: 198px;
  height: 198px;
  border-radius: 50%;
  background: rgba(0, 165, 185, 0.1);
}

.formats-block__title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  top: 88px;
  width: 144px;
  height: 144px;
  background: #18303d;
  border-radius: 50%;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin: 0 183px 0 0;
  overflow: hidden;
  padding-top: 46px;
}

.formats-block__area {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.formats-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.formats-block__list:first-child {
  margin-top: 0;
}

.formats-block__list:nth-child(3) {
  margin-top: 34px;
}

.formats-block__list:nth-child(4) {
  margin-top: 19px;
}

.formats-block__item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-right: 25px;
}

.formats-block__item:last-child {
  margin-right: 0;
}

.formats-block__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  vertical-align: top;
  background: #18303d;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
  border-radius: 7px;
  padding: 14px 12px 5px;
  min-width: 128px;
  height: 54px;
  overflow: hidden;
}

.formats-block__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
}

.formats-block__name {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: bold;
  position: relative;
  top: 4px;
}

.formats-block__link:hover .formats-block__name {
  color: #64ccc9;
}

@media (max-width: 1299px) {
  .formats-block {
    padding-left: 0;
  }
  .formats-block:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 14px;
    width: 841px;
    height: 212px;
  }
  .formats-block__circle {
    display: none;
  }
  .formats-block__title {
    top: 75px;
    margin-right: 194px;
    padding-top: 37px;
    width: 112px;
    height: 112px;
    font-size: 16px;
    line-height: 17px;
  }
  .formats-block__list {
    margin-top: 28px;
  }
  .formats-block__list:nth-child(3) {
    margin-top: 24px;
  }
  .formats-block__list:nth-child(4) {
    margin-top: 17px;
  }
  .formats-block__item {
    margin-right: 20px;
  }
  .formats-block__link {
    min-width: 81px;
    height: 44px;
    padding: 12px 10px 6px;
  }
  .formats-block__icon {
    margin-right: 10px;
  }
  .formats-block__name {
    font-size: 12px;
    line-height: 14px;
    top: 3px;
  }
}

.formats-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.formats-item__pic {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 50px;
}

.formats__item:nth-child(even) .formats-item__pic {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-right: 0;
  margin-left: 50px;
}

.formats-item__title {
  text-transform: uppercase;
}

.formats-item__text {
  margin-top: 15px;
}

.formats-item__button {
  margin-top: 35px;
}

@media (max-width: 1399px) {
  .formats-item__button {
    margin-top: 15px;
  }
}

@media (max-width: 959px) {
  .formats-item {
    display: block;
  }
  .formats-item__pic {
    margin-right: 0;
  }
  .formats__item:nth-child(even) .formats-item__pic {
    margin-left: 0;
  }
  .formats-item__info {
    margin-top: 25px;
  }
}

@media (max-width: 639px) {
  .formats__item:nth-child(even) .formats-item__pic,
  .formats-item__pic {
    margin-right: -20px;
    margin-left: -20px;
  }
}

.formats-pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 580px;
}

.formats-pic img {
  position: relative;
}

@media (max-width: 1399px) {
  .formats-pic {
    max-width: 440px;
  }
}

@media (max-width: 959px) {
  .formats-pic {
    max-width: 100%;
  }
}

@media (max-width: 639px) {
  .formats-pic {
    max-width: 150%;
  }
}

.formats-section {
  position: relative;
  padding: 94px 0 0;
}

.formats-section__area {
  position: relative;
}

.formats-section__title {
  width: 50%;
  text-align: center;
}

.formats-section__title.title {
  margin-bottom: -60px;
}

.formats-section__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.formats-section__nav,
.formats-section__body {
  width: 50%;
}

.formats-section__body {
  margin: 0 0 0 60px;
  padding: 0;
  list-style: none;
}

.formats-section__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 95px 10px 0 0;
  margin: -10px 0;
  list-style: none;
}

.formats-section__tag {
  width: 25%;
  padding: 10px 0;
  position: relative;
}

.formats-section__tag--fake {
  cursor: none;
  pointer-events: none;
}

.formats-section__box {
  height: 100%;
  border-radius: 8px;
  padding: 20px 5px;
}

.tabs__tag--active .formats-section__box {
  background-image: linear-gradient(225deg, rgba(112, 211, 233, 0.1) 0%, #ebf7f9 100%);
}

.formats-section__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 29px;
  position: relative;
}

.formats-section__name {
  font-size: 14px;
  line-height: 16px;
  color: #18303d;
  text-align: center;
  margin-top: 15px;
  position: relative;
}

.formats-section__text {
  margin-top: 35px;
}

.formats-section__link {
  margin-top: 35px;
}

@media (max-width: 1399px) {
  .formats-section__body {
    margin-left: 10px;
  }
  .formats-section__nav {
    width: 57%;
    padding-top: 0;
  }
  .formats-section__body {
    width: 43%;
  }
  .formats-section__name {
    font-size: 12px;
    line-height: 14px;
  }
  .formats-section__title.title {
    margin-bottom: 0;
    width: 100%;
  }
  .formats-section__tabs {
    margin-top: 40px;
  }
  .formats-section__text {
    margin-top: 22px;
  }
  .formats-section__text.text {
    font-size: 14px;
    line-height: 24px;
  }
  .formats-section__link {
    margin-top: 20px;
  }
}

@media (max-width: 959px) {
  .formats-section {
    padding-top: 60px;
  }
  .formats-section__area {
    padding-left: 50px;
    padding-right: 50px;
  }
  .formats-section__tabs {
    display: block;
    margin-top: 52px;
  }
  .formats-section__body,
  .formats-section__nav {
    width: 100%;
  }
  .formats-section__nav {
    background: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    padding: 0;
  }
  .formats-section__body {
    margin-left: 0;
    margin-top: 25px;
  }
  .formats-section__text {
    margin-top: 25px;
  }
  .formats-section__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
    padding: 0;
  }
  .tabs__tag--active .formats-section__box {
    background: transparent;
  }
  .formats-section__tag {
    width: 100%;
    padding: 15px 50px 15px 25px;
  }
  .formats-section__tag.tabs__tag--active:after {
    content: '';
    position: absolute;
    top: 23px;
    right: 25px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #18303d;
    border-left: 2px solid #18303d;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .tabs--open .formats-section__tag.tabs__tag--active:after {
    top: 26px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .formats-section__icon {
    top: 3px;
    margin-right: 25px;
  }
  .formats-section__name {
    font-size: 16px;
    line-height: 18px;
    margin-top: 0;
    top: -3px;
  }
  .formats-section__block--fake,
  .formats-section__tag--fake {
    display: none;
  }
}

@media (max-width: 639px) {
  .formats-section {
    padding-top: 40px;
  }
  .formats-section__area {
    padding-left: 0;
    padding-right: 0;
  }
  .formats-section__tabs {
    margin-top: 40px;
  }
  .formats-section__body {
    margin-top: 31px;
  }
  .formats-section__text {
    margin-top: 20px;
  }
  .formats-section__link {
    margin-top: 15px;
  }
}

.header {
  position: relative;
  text-align: center;
  padding: 40px 0 0;
}

.header--accent {
  background: linear-gradient(48deg, #009aab 0%, #00acc1 100%);
  padding: 25px 0;
}

.header__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  margin-right: 70px;
}

.header__wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__nav {
  position: relative;
  top: 4px;
}

.header__actions {
  margin-left: auto;
}

.header__burger {
  display: none;
  position: relative;
  padding: 5px;
  box-shadow: none;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  right: -5px;
}

.header__burger .icon--cross {
  display: none;
}

@media (max-width: 1399px) {
  .header {
    padding-top: 25px;
  }
  .header--accent {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header__logo {
    margin-right: auto;
  }
  .header__burger {
    display: block;
  }
  .header__wrap {
    display: none;
  }
  .header--burger-open {
    z-index: 100;
  }
  .header--burger-open .header__burger {
    z-index: 101;
  }
  .header--burger-open .header__logo {
    z-index: 101;
    background: #18303d;
  }
  .header--burger-open .header__wrap {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #18303d;
    z-index: 100;
    overflow: auto;
  }
  .header--burger-open .header__burger .icon--cross {
    display: block;
  }
  .header--burger-open .header__burger .icon--burger {
    display: none;
  }
}

@media (max-width: 959px) {
  .header {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 15px;
  }
  .header--accent {
    padding: 16px 50px;
  }
  .header--accent .icon--burger {
    width: 28px;
    height: 24px;
  }
  .header--accent .icon--cross {
    width: 28px;
    height: 28px;
  }
  .header--accent .logo__icon {
    width: 136px;
    height: 25px;
  }
}

@media (max-width: 639px) {
  .header {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .header--accent {
    padding: 10px 0;
  }
  .header--accent .icon--burger {
    width: 22px;
    height: 20px;
  }
  .header--accent .icon--cross {
    width: 22px;
    height: 22px;
  }
  .header--accent .logo__icon {
    width: 109px;
    height: 20px;
  }
  .header__burger {
    top: -4px;
  }
}

.icon {
  display: inline-block;
  vertical-align: top;
  fill: #44cccc;
}

.icon--logo {
  width: 63px;
  height: 60px;
  fill: #fff;
}

.icon--burger {
  width: 35px;
  height: 30px;
  fill: #fff;
}

.icon--cross {
  width: 35px;
  height: 35px;
  fill: #fff;
}

.icon--in,
.icon--twi,
.icon--inst,
.icon--fb,
.icon--tg {
  width: 33px;
  height: 33px;
}

.icon--mail {
  width: 20px;
  height: 13px;
}

.icon--tg2 {
  width: 19px;
  height: 15px;
}

.icon--skype {
  width: 17px;
  height: 15px;
}

.icon--arrow-right {
  width: 17px;
  height: 14px;
  fill: #00acc1;
}

.icon--native2,
.icon--native {
  width: 31px;
  height: 31px;
}

.icon--classic2,
.icon--classic {
  width: 29px;
  height: 25px;
}

.icon--push2,
.icon--push {
  width: 35px;
  height: 25px;
}

.icon--in-page2,
.icon--in-page {
  width: 29px;
  height: 27px;
}

.icon--in-stream2,
.icon--in-stream {
  width: 30px;
  height: 26px;
}

.icon--out-stream2,
.icon--out-stream {
  width: 30px;
  height: 26px;
}

.icon--in-video2,
.icon--in-video {
  width: 30px;
  height: 26px;
}

.icon--interstitial2,
.icon--interstitial {
  width: 30px;
  height: 27px;
}

.icon--pop-under2,
.icon--pop-under {
  width: 30px;
  height: 29px;
}

.icon--skim2,
.icon--skim {
  width: 29px;
  height: 26px;
}

.icon--tab2,
.icon--tab {
  width: 30px;
  height: 25px;
}

.icon--net {
  width: 39px;
  height: 30px;
}

.icon--earth {
  width: 26px;
  height: 27px;
}

.icon--cash {
  width: 28px;
  height: 30px;
}

.icon--magnifier {
  width: 30px;
  height: 30px;
}

.icon--thumbs {
  width: 25px;
  height: 29px;
}

.icon--coin {
  width: 28px;
  height: 28px;
}

.icon--person {
  width: 27px;
  height: 30px;
}

.icon--hammer {
  width: 30px;
  height: 30px;
}

.icon--list {
  width: 40px;
  height: 34px;
}

.icon--code {
  width: 56px;
  height: 40px;
}

.icon--crowd {
  width: 43px;
  height: 41px;
}

.icon--money {
  width: 43px;
  height: 31px;
}

.icon--mark {
  width: 33px;
  height: 27px;
}

.icon--magnifier2 {
  width: 30px;
  height: 30px;
}

.icon--flash {
  width: 16px;
  height: 30px;
}

.icon--hammer2 {
  width: 30px;
  height: 30px;
}

.icon--support {
  width: 27px;
  height: 30px;
}

.icon--device {
  width: 31px;
  height: 25px;
}

.icon--system {
  width: 28px;
  height: 28px;
}

.icon--browser {
  width: 30px;
  height: 25px;
}

.icon--lang {
  width: 22px;
  height: 23px;
}

.icon--geo {
  width: 19px;
  height: 26px;
}

.icon--isp {
  width: 29px;
  height: 18px;
}

@media (max-width: 1299px) {
  .formats-block .icon--native {
    width: 23px;
    height: 22px;
  }
  .formats-block .icon--classic {
    width: 21px;
    height: 18px;
  }
  .formats-block .icon--push {
    width: 27px;
    height: 19px;
  }
  .formats-block .icon--in-page {
    width: 21px;
    height: 20px;
  }
  .formats-block .icon--in-stream {
    width: 22px;
    height: 19px;
  }
  .formats-block .icon--out-stream {
    width: 22px;
    height: 19px;
  }
  .formats-block .icon--in-video {
    width: 25px;
    height: 24px;
  }
  .formats-block .icon--interstitial {
    width: 22px;
    height: 20px;
  }
  .formats-block .icon--pop-under {
    width: 22px;
    height: 21px;
  }
  .formats-block .icon--skim {
    width: 21px;
    height: 19px;
  }
  .formats-block .icon--tab {
    width: 21px;
    height: 18px;
  }
}

@media (max-width: 959px) {
  .icon--logo {
    width: 50px;
    height: 48px;
  }
  .icon--device {
    width: 35px;
    height: 28px;
  }
  .icon--system {
    width: 32px;
    height: 32px;
  }
  .icon--browser {
    width: 33px;
    height: 28px;
  }
  .icon--lang {
    width: 26px;
    height: 28px;
  }
  .icon--geo {
    width: 22px;
    height: 32px;
  }
  .icon--isp {
    width: 33px;
    height: 20px;
  }
}

@media (max-width: 639px) {
  .icon--logo {
    width: 30px;
    height: 29px;
  }
  .icon--burger {
    width: 22px;
    height: 20px;
  }
  .icon--cross {
    width: 22px;
    height: 22px;
  }
  .icon--list {
    width: 32px;
    height: 27px;
  }
  .icon--code {
    width: 45px;
    height: 32px;
  }
  .icon--crowd {
    width: 32px;
    height: 31px;
  }
  .icon--money {
    width: 35px;
    height: 25px;
  }
  .icon--mark {
    width: 27px;
    height: 21px;
  }
  .icon--magnifier2 {
    width: 24px;
    height: 24px;
  }
  .icon--flash {
    width: 13px;
    height: 24px;
  }
  .icon--hammer2 {
    width: 24px;
    height: 24px;
  }
  .icon--support {
    width: 21px;
    height: 24px;
  }
}

.info {
  position: relative;
  padding: 60px 20px;
  max-width: 825px;
  margin-left: auto;
  margin-right: auto;
}

.info__block {
  margin-top: 65px;
}

.info__block:first-child {
  margin-top: 0;
}

.info__text {
  margin-top: 20px;
}

@media (max-width: 1099px) {
  .info {
    max-width: 920px;
  }
}

@media (max-width: 959px) {
  .info {
    padding: 40px 70px 50px;
  }
  .info__block {
    margin-top: 36px;
  }
  .info__text {
    margin-top: 15px;
  }
}

@media (max-width: 639px) {
  .info {
    padding: 20px 20px 30px;
  }
  .info__block {
    margin-top: 30px;
  }
  .info__text {
    margin-top: 10px;
  }
}

.input {
  position: relative;
}

.input__label {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #99afb6;
  margin-bottom: 7px;
}

.input__area {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  font-size: 15px;
  color: #003648;
  background: #fff;
  border: 1px solid rgba(24, 48, 61, 0.15);
  border-radius: 4px;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
}

.input__area:focus {
  border-color: rgba(24, 48, 61, 0.35);
}

textarea.input__area {
  padding-top: 5px;
  padding-bottom: 5px;
  height: 100px;
  resize: vertical;
}

.input__select {
  position: relative;
}

.input__select:after {
  content: '';
  position: absolute;
  top: 22px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  border-top: 2px solid #99afb6;
  border-left: 2px solid #99afb6;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.input__select .input__area {
  color: #99afb6;
}

.input__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.input__col {
  width: 48%;
}

.input__area::-webkit-input-placeholder {
  color: #99afb6;
}
.input__area::-moz-placeholder {
  color: #99afb6;
}
.input__area:-ms-input-placeholder {
  color: #99afb6;
}
.input__area.placeholder {
  color: #99afb6;
}

.input__area:focus::-webkit-input-placeholder {
  color: transparent;
}
.input__area:focus::-moz-placeholder {
  color: transparent;
}
.input__area:focus:-ms-input-placeholder {
  color: transparent;
}
.input__area.placeholder:focus {
  color: transparent;
}

@media (max-width: 639px) {
  .input__line {
    display: block;
  }
  .input__col {
    width: 100%;
    margin-top: 20px;
  }
  .input__col:first-child {
    margin-top: 0;
  }
  .input__line--straight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .input__line--straight .input__col {
    width: 48%;
    margin-top: 0;
  }
}

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f9fcfe;
  position: relative;
  padding: 41px 10px 30px;
  min-height: 100vh;
  /* min-height: 700px; */
  height: 100%;
}

.login__body {
  width: 100%;
  text-align: center;
}

.login__logo {
  display: inline-block;
  vertical-align: top;
}

.login__logo .icon--logo {
  width: 40px;
  height: 39px;
  fill: #00acc1;
}

.login__block {
  width: 100%;
  max-width: 530px;
  margin: 30px auto 0;
  background: #ffffff;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 35px 45px 40px;
  text-align: left;
}

.login__block--sm {
  padding: 50px 20px 50px;
}

.login__title {
  font-size: 30px;
  line-height: 33px;
  color: #18303d;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.login__form {
  margin-top: 41px;
}

.login__row {
  margin-top: 20px;
}

.login__row--checks {
  padding-bottom: 11px;
}

.login__row--checks .input__line {
  padding-left: 28px;
}

.login__row--line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.login__col {
  width: 48%;
}

.login__row:first-child {
  margin-top: 0;
}

.login__button {
  margin-top: 25px;
}

.login__link {
  margin-top: 32px;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  color: #00acc3;
  text-align: center;
}

.login__link:hover {
  color: #18303d;
}

.login__sub-title {
  font-size: 21px;
  line-height: 23px;
  font-weight: 700;
  color: #17303e;
  text-align: center;
  margin: 0;
}

.login__sub-title span,
.login__sub-title a {
  color: #00acc3;
}

.login__text {
  margin-top: 40px;
  font-size: 16px;
  line-height: 20px;
  color: #17303e;
  text-align: center;
}

.login__text + .login__text {
  margin-top: 10px;
}

.login__text a,
.login__text span {
  font-weight: 600;
}

.login__note {
  margin-top: 50px;
  font-size: 14px;
  line-height: 16px;
  color: #74838b;
  text-align: center;
}

.login__note + .login__note {
  margin-top: 10px;
}

.login__note a {
  font-weight: 600;
  color: #74838b;
  text-decoration: underline;
}

.login__note a:hover {
  text-decoration: none;
}

@media (max-width: 639px) {
  .login {
    background: #fff;
    padding: 23px 20px 20px;
  }
  .login__block {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-top: 19px;
  }
  .login__title {
    font-size: 28px;
    line-height: 30px;
  }
  .login__form {
    margin-top: 26px;
  }
  .login__row--checks {
    padding-bottom: 0;
  }
  .login__row--checks .input__line {
    padding-left: 0;
  }
  .login__button {
    margin-top: 34px;
  }
}

.logo {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.logo__icon {
  width: 170px;
  height: 31px;
  fill: #fff;
}

.logo--accent .logo__icon {
  width: 220px;
  height: 40px;
}

@media (max-width: 959px) {
  .logo--accent .logo__icon {
    width: 176px;
    height: 32px;
  }
}

@media (max-width: 639px) {
  .logo__icon {
    width: 109px;
    height: 20px;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.nav__link {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-right: 50px;
  font-size: 15px;
  line-height: 15px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 4px;
}

.nav__link:last-child {
  margin-right: 0;
}

.nav__link--active:after,
.nav__link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}

.nav__link--active:after,
.nav__link:hover:after {
  width: 100%;
}

@media (max-width: 1399px) {
  .header--burger-open .nav {
    display: block;
    padding-top: 100px;
    padding-left: 40px;
  }
  .header--burger-open .nav__link {
    display: block;
    margin-right: 0;
    padding: 14px 0;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
  }
  .nav__link:after {
    display: none;
  }
}

@media (max-width: 959px) {
  .header--burger-open .nav {
    padding-top: 80px;
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 639px) {
  .header--burger-open .nav {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header--burger-open .nav__link {
    font-size: 18px;
    line-height: 18px;
  }
}

.page {
  position: relative;
  padding: 33px 0 60px;
}

.page__region {
  max-width: 785px;
  margin: 0 auto;
}

@media (max-width: 639px) {
  .page {
    padding-top: 25px;
    padding-bottom: 35px;
  }
}

.partners {
  position: relative;
  overflow: hidden;
  margin-top: -240px;
  text-align: center;
}

.partners__wrap {
  position: relative;
  padding-top: 240px;
}

.partners__wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 240px 2620px;
  border-color: transparent transparent #fff transparent;
}

.partners__block {
  background: #fff;
  padding-top: 77px;
  padding-bottom: 60px;
}

.partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.partners__item {
  display: inline-block;
  vertical-align: top;
  margin-right: 70px;
}

.partners__item:last-child {
  margin-right: 0;
}

@media (max-width: 1399px) {
  .partners__block {
    padding-top: 57px;
    padding-bottom: 50px;
  }
  .partners__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -30px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
  }
  .partners__item {
    margin-right: 80px;
    padding-bottom: 30px;
  }
  .partners__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 959px) {
  .partners__block {
    padding: 29px 50px 30px;
  }
  .partners__list {
    max-width: 470px;
  }
  .partners__item {
    margin-right: 50px;
  }
  .partners__item:nth-child(1) {
    max-width: 146px;
  }
  .partners__item:nth-child(2) {
    max-width: 127px;
  }
  .partners__item:nth-child(3) {
    max-width: 89px;
  }
  .partners__item:nth-child(4) {
    max-width: 104px;
  }
  .partners__item:nth-child(5) {
    max-width: 152px;
  }
  .partners__item:nth-child(6) {
    max-width: 94px;
  }
}

@media (max-width: 639px) {
  .partners {
    padding: 30px 0;
    margin-top: 0;
  }
  .partners__wrap {
    padding-top: 0;
  }
  .partners__wrap:before {
    display: none;
  }
  .partners__block {
    padding: 0;
  }
  .partners__list {
    margin-top: 15px;
    margin-bottom: -20px;
    max-width: 280px;
  }
  .partners__item {
    margin-right: 40px;
    padding-bottom: 20px;
  }
  .partners__item:nth-child(2n) {
    margin-right: 0;
  }
  .partners__item:nth-child(3n) {
    margin-right: 20px;
  }
  .partners__item:nth-child(1) {
    max-width: 128px;
  }
  .partners__item:nth-child(2) {
    max-width: 111px;
  }
  .partners__item:nth-child(3) {
    max-width: 78px;
  }
  .partners__item:nth-child(4) {
    max-width: 91px;
  }
  .partners__item:nth-child(5) {
    max-width: 133px;
  }
  .partners__item:nth-child(6) {
    max-width: 82px;
  }
}

.payouts {
  position: relative;
}

.payouts__title {
  text-align: center;
}

.payouts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}

.payouts__item {
  margin-right: 100px;
}

.payouts__item:last-child {
  margin-right: 0;
}

@media (max-width: 1399px) {
  .payouts__list {
    margin-top: 40px;
  }
  .payouts__item {
    margin-right: 60px;
  }
}

@media (max-width: 959px) {
  .payouts {
    padding-bottom: 40px;
  }
  .payouts__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }
  .payouts__item {
    margin-right: 80px;
    margin-bottom: 40px;
  }
  .payouts__item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 639px) {
  .payouts {
    padding-bottom: 56px;
  }
  .payouts__list {
    max-width: 300px;
    margin-top: 30px;
  }
  .payouts__item {
    margin-right: 22px;
    margin-bottom: 25px;
    max-width: 85px;
  }
  .payouts__item:nth-child(3),
  .payouts__item:nth-child(4) {
    max-width: 65px;
  }
  .payouts__item:nth-child(5) {
    max-width: 105px;
  }
}

.property {
  background: #ffffff;
  border-radius: 2px;
  width: 333px;
  padding-bottom: 17px;
}

.property__title {
  padding: 20px 32px 18px 23px;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  background: #18303d;
  position: relative;
  margin: 0;
}

.property__title:after {
  content: '';
  position: absolute;
  top: 24px;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #4baabe transparent;
}

.property__list {
  margin: 0;
  padding: 30px 22px 0;
  list-style: none;
  height: 230px;
  overflow: auto;
}

.property__list--sm {
  display: none;
  height: auto;
  overflow: visible;
  padding: 13px 10px 0;
}

.property__item--full .property__list--sm {
  display: block;
}

.property__item {
  margin-top: 18px;
}

.property__item:first-child {
  margin-top: 0;
}

.radio {
  display: block;
  position: relative;
  padding-left: 27px;
  min-height: 17px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio__text {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #003649;
}

.radio__checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 17px;
  width: 17px;
  border: 1px solid rgba(24, 48, 61, 0.15);
  border-radius: 50%;
}

.radio .radio__checkmark:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00acc1;
  display: none;
}

.radio input:checked ~ .radio__checkmark:after {
  display: block;
}

.region {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 959px) {
  .region {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.social__link {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.social__link:last-child {
  margin-right: 0;
}

.social__link:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 639px) {
  .social__link {
    margin-right: 30px;
  }
}

.start {
  position: relative;
  text-align: center;
  background: #009aab url(/about-bg.png) no-repeat 50% 50%;
  background-size: cover;
  padding: 60px;
  border-radius: 4px;
}

.start--blank {
  background: #00acc1;
  padding-top: 108px;
  padding-bottom: 108px;
  border-radius: 0;
}

.start__button {
  margin-top: 43px;
}

@media (max-width: 959px) {
  .start--blank {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

@media (max-width: 639px) {
  .start {
    padding: 25px 20px 40px;
    border-radius: 0;
  }
  .start--blank {
    padding-top: 30px;
    padding-bottom: 35px;
  }
  .start__button {
    margin-top: 20px;
  }
}

.steps {
  position: relative;
  overflow: hidden;
  margin-top: -240px;
}

.steps__wrap {
  position: relative;
  padding-top: 240px;
}

.steps__wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 240px 2620px;
  border-color: transparent transparent #fff transparent;
}

.steps__block {
  background: #fff;
  padding-top: 85px;
  padding-bottom: 80px;
}

.steps__title {
  text-align: center;
}

.steps__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}

.steps__item {
  width: 25%;
  margin-right: 75px;
  text-align: center;
  position: relative;
}

.steps__item:last-child {
  margin-right: 0;
}

.steps__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 41px;
}

.steps__name {
  margin-top: 51px;
  font-size: 21px;
  line-height: 23px;
  color: #18303d;
  font-weight: bold;
}

.steps__text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 25px;
  color: #000;
}

@media (max-width: 1399px) {
  .steps__block {
    padding-top: 90px;
  }
  .steps__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -80px;
  }
  .steps__item {
    width: 40%;
    margin-right: 105px;
    padding-bottom: 80px;
    text-align: left;
    padding-left: 85px;
  }
  .steps__item:nth-child(2n) {
    margin-right: 0;
  }
  .steps__icon {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
  }
  .steps__name {
    margin-top: 0;
    padding-top: 7px;
  }
  .steps__text {
    margin-top: 23px;
  }
}

@media (max-width: 959px) {
  .steps__block {
    padding: 60px 50px;
  }
  .steps__list {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .steps__item {
    width: 100%;
    margin-right: 0;
    padding-bottom: 40px;
    padding-left: 80px;
  }
  .steps__item:last-child {
    padding-bottom: 0;
  }
  .steps__text {
    margin-top: 9px;
  }
}

@media (max-width: 639px) {
  .steps {
    padding: 40px 0;
    margin-top: 0;
    background: #fff;
  }
  .steps__wrap {
    padding-top: 0;
  }
  .steps__wrap:before {
    display: none;
  }
  .steps__block {
    padding: 0;
  }
  .steps__list {
    margin-top: 30px;
  }
  .steps__item {
    padding-left: 0;
  }
  .steps__name {
    padding-left: 57px;
    font-size: 18px;
    line-height: 20px;
    padding-top: 5px;
  }
  .steps__text {
    margin-top: 16px;
  }
}

.strut {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: fixed;
}

.strut__row {
  display: table-row;
}

.strut--fixed-header {
  padding-top: 80px;
}

@media (max-width: 959px) {
  .strut--fixed-header {
    padding-top: 66px;
  }
}

@media (max-width: 639px) {
  .strut--fixed-header {
    padding-top: 50px;
  }
}

.strut__row--fixed-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}

.strut__row--expanded {
  height: 100%;
}

.tabs {
  position: relative;
}

.tabs__tag {
  cursor: pointer;
}

.tabs__section {
  display: none;
}

.tabs__section--visible {
  display: block;
}

@media (max-width: 959px) {
  .tabs__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 58px;
    overflow: hidden;
  }
  .tabs__tag--active {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .tabs--open .tabs__nav {
    height: auto;
  }
}

.target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 5px 0;
  cursor: pointer;
}

.target:hover {
  opacity: 0.8;
}

.target--active:hover {
  opacity: 1;
}

.target__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 31px;
  height: 28px;
  margin-right: 27px;
}

.target__name {
  font-size: 17px;
  line-height: 23px;
  color: #18303d;
}

.target--active .target__name {
  font-weight: bold;
}

@media (max-width: 959px) {
  .target {
    display: block;
    padding: 0;
    cursor: initial;
  }
  .target--active .target__name {
    font-weight: 400;
  }
  .target:hover {
    opacity: 1;
  }
  .target__icon {
    width: 35px;
    height: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  .target__name {
    text-align: center;
    margin-top: 20px;
  }
}

.text {
  font-size: 16px;
  line-height: 27px;
  color: #003648;
}

.text--sm {
  font-size: 15px;
  line-height: 25px;
}

.text--md {
  font-size: 19px;
  line-height: 32px;
}

@media (max-width: 959px) {
  .text--md {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 639px) {
  .text,
  .text--md {
    font-size: 14px;
    line-height: 24px;
  }
}

.title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin: 0;
  color: #18303d;
}

.title--up {
  text-transform: uppercase;
}

.title--light {
  color: #fff;
}

.title--md {
  font-size: 28px;
  line-height: 38px;
  text-transform: uppercase;
}

@media (max-width: 959px) {
  .title--up {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 639px) {
  .title {
    font-size: 28px;
    line-height: 38px;
  }
  .title--md,
  .title--up {
    font-size: 21px;
    line-height: 28px;
  }
}

.top {
  position: relative;
  background: linear-gradient(237deg, #009aab 0%, #00acc1 89%);
  padding-bottom: 25px;
}

.top:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/about-bg.png) repeat 50% 50%;
  background-size: cover;
}

.top__content {
  margin-top: 55px;
}

.top__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top__about {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 27px;
  width: 100%;
  max-width: 530px;
  padding-top: 25px;
  position: relative;
  z-index: 1;
}

.top__pic {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ffffff;
  box-shadow: 0 15px 26px 0 rgba(0, 0, 0, 0.18);
  border-radius: 7px;
  padding: 15px;
  text-align: center;
}

.top__pic--combined {
  background: #fff;
}

.top__pic--combined:before,
.top__pic--combined:after {
  content: '';
  position: absolute;
  bottom: -30px;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 3px;
  box-shadow: 0 15px 26px 0 rgba(0, 0, 0, 0.18);
}

.top__pic--combined:before {
  left: 30px;
  background-image: url(/advertisers-pic-bottom2x.png);
  width: 307px;
  height: 50px;
}

.top__pic--combined:after {
  right: -30px;
  background-image: url(/advertisers-pic-side2x.png);
  width: 115px;
  height: 416px;
}

.top__description {
  font-size: 19px;
  line-height: 35px;
  color: #fff;
}

.top__description p {
  margin: 0;
}

.top__description p + p {
  margin-top: 13px;
}

.top__button {
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .top {
    padding-bottom: 5px;
  }
  .top__content {
    margin-top: 25px;
  }
  .top__line {
    display: block;
    text-align: center;
  }
  .top__pic {
    max-width: 686px;
    margin: 0 auto;
  }
  .top__about {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    margin-top: 19px;
  }
  .top__description {
    font-size: 16px;
    line-height: 30px;
  }
  .top__pic--combined {
    margin-bottom: 40px;
  }
  .top__pic--combined:before,
  .top__pic--combined:after {
    bottom: -25px;
  }
  .top__pic--combined:before {
    left: 25px;
    width: 274px;
    height: 45px;
  }
  .top__pic--combined:after {
    right: -25px;
    width: 103px;
    height: 372px;
  }
}

@media (max-width: 959px) {
  .top__content {
    margin-top: 16px;
  }
  .top__line {
    padding-left: 50px;
    padding-right: 50px;
  }
  .top__about {
    margin-top: 0;
  }
  .top__description {
    font-size: 14px;
    line-height: 28px;
  }
  .top__pic {
    display: none;
  }
  .top__button {
    margin-top: 30px;
  }
}

@media (max-width: 639px) {
  .top {
    padding-bottom: 0;
  }
  .top__content {
    padding-bottom: 30px;
  }
  .top__line {
    padding-left: 0;
    padding-right: 0;
  }
  .top__button {
    margin-top: 20px;
  }
}

.wysiwyg:before,
.wysiwyg:after {
  content: ' ';
  display: table;
}

.wysiwyg:after {
  clear: both;
}

.wysiwyg p,
.wysiwyg ul,
.wysiwyg ol,
.wysiwyg hr,
.wysiwyg blockquote,
.wysiwyg .left-image,
.wysiwyg .right-image {
  margin: 1.2em 0 0;
}

.wysiwyg p:first-child,
.wysiwyg ul:first-child,
.wysiwyg ol:first-child,
.wysiwyg hr:first-child,
.wysiwyg blockquote:first-child,
.wysiwyg .left-image:first-child,
.wysiwyg .right-image:first-child {
  margin-top: 0;
}

.wysiwyg .left-image:first-child + p,
.wysiwyg .left-image:first-child + ul,
.wysiwyg .left-image:first-child + ol,
.wysiwyg .left-image:first-child + hr,
.wysiwyg .left-image:first-child + blockquote,
.wysiwyg .right-image:first-child + p,
.wysiwyg .right-image:first-child + ul,
.wysiwyg .right-image:first-child + ol,
.wysiwyg .right-image:first-child + hr,
.wysiwyg .right-image:first-child + blockquote {
  margin-top: 0;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.5em;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg blockquote {
  position: relative;
  padding-left: 45px;
}

.wysiwyg img {
  max-width: 100%;
  height: auto;
}

.wysiwyg a,
.wysiwyg i,
.wysiwyg span {
  display: inline;
}

.wysiwyg h1 {
  text-transform: uppercase;
  font-size: 2.25em;
  line-height: 1.5;
}

.wysiwyg h2 {
  font-size: 1.75em;
  line-height: 1.5;
  margin: 2em 0 0;
}

.wysiwyg h3 {
  font-size: 1.3em;
  line-height: 1.5;
  margin: 1em 0 0;
}

.wysiwyg h4 {
  font-size: 1em;
  line-height: 1.5;
  margin: 1em 0 0;
}

.wysiwyg h2:first-child,
.wysiwyg h3:first-child,
.wysiwyg h4:first-child {
  margin-top: 0;
}

.wysiwyg ol,
.wysiwyg ul,
.wysiwyg p {
  font-size: 1.2em;
  line-height: 2;
}

.wysiwyg a {
  color: #00a7bd;
  text-decoration: none;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.wysiwyg a:hover {
  color: #003649;
  text-decoration: none;
}

.wysiwyg strong {
  font-weight: 600;
}

.wysiwyg hr {
  height: 0;
  border-top: 1px solid;
}

.wysiwyg .left-image {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  top: 9px;
}

.wysiwyg .right-image {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
  top: 9px;
}

.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2em;
}

.wysiwyg table thead {
  text-align: left;
}

.wysiwyg table th,
.wysiwyg table td {
  border: 1px solid #e8e8e8;
  padding: 20px;
}

.align-center {
  text-align: center;
}

@media (max-width: 639px) {
  .wysiwyg h1 {
    font-size: 1.5em;
  }
  .wysiwyg h2 {
    font-size: 1.3em;
    line-height: 1.5;
    margin: 2em 0 0;
  }
  .wysiwyg h3 {
    font-size: 1.1em;
    line-height: 1.5;
    margin: 1em 0 0;
  }
  .wysiwyg h4 {
    font-size: 0.9em;
    line-height: 1.5;
    margin: 1em 0 0;
  }
  .wysiwyg ol,
  .wysiwyg ul,
  .wysiwyg p {
    font-size: 1em;
    line-height: 1.7;
  }
  .wysiwyg table th,
  .wysiwyg table td {
    padding: 5px;
    font-size: 0.8em;
  }
}
