/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Ubuntu&display=swap');


/* Media queries */
/* Container */
/* Grid */
/* Grid col */
/* Col size */
/* Font */
/* Text */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.15;
  /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%;
  /* 2. Prevent adjustments of font size after orientation changes in iOS. */
}

body {
  font-size: 1.6rem;
  line-height: 2.7rem;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #151515;
  font-weight: normal;
  height: auto;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex: 1;
}

@media all and (min-width: 768px) {
  body {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

@media all and (min-width: 1200px) {
  body {
    font-size: 2.5rem;
    line-height: 2.7rem;
  }
}

.body--backdrop:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-transition: background-color 0s;
  transition: background-color 0s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  z-index: 10;
}

button,
input,
select,
textarea,
input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  color: inherit;
  font-family: 'Montserrat', sans-serif;
  border-radius: 0;
  border: none;
}

input,
textarea,
select {
  color: #000;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

:disabled {
  cursor: not-allowed;
}

svg {
  display: inline-block;
  vertical-align: top;
}

a {
  color: #151515;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

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

@media all and (min-width: 1200px) {
  a:hover {
    color: #FF5A59;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
}

a:active {
  color: #DD2B2B;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

/* Headings */
h1 {
  color: #151515;
  text-transform: uppercase;
  font-size: 2.4rem;
  line-height: 2.4rem;
}

@media all and (min-width: 768px) {
  h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
}

@media all and (min-width: 1200px) {
  h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
}

.btn {
  font-size: 1.4rem;
  line-height: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-color: #FF5A59;
  background-color: #FF5A59;
  border-radius: 10rem;
  padding: 0.9rem 1rem;
  outline: none;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  /* Added just for IE consistency. Must be deleted because of doubled DOM nodes, if IE text-moving is not imported */
}

@media all and (min-width: 768px) {
  .btn {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

@media all and (min-width: 1200px) {
  .btn {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

@media all and (min-width: 768px) {
  .btn {
    padding: 1rem 1rem;
  }
}

@media all and (min-width: 1200px) {
  .btn {
    padding: 1.5rem 1rem;
  }
}

.btn:hover {
  text-decoration: none;
}

@media all and (min-width: 1200px) {
  .btn:hover {
    color: #fff;
    border-color: #DD2B2B;
    background-color: #DD2B2B;
    -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  }
}

.btn:active, .btn--active {
  color: #fff;
  border-color: #FF5A59;
  background-color: #FF5A59;
  text-decoration: none;
  font-weight: normal;
  -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn:focus, .btn:visited {
  outline: 0;
  text-decoration: none;
}

.btn:focus span, .btn:visited span {
  text-decoration: none;
}

.btn--secondary {
  color: #fff;
  border-color: #4A90E2;
  background-color: #4A90E2;
}

@media all and (min-width: 1200px) {
  .btn--secondary:hover {
    color: #fff;
    border-color: #2B7DDD;
    background-color: #2B7DDD;
  }
}

.btn--secondary:active, .btn--secondary--active {
  color: #fff;
  border-color: #4A90E2;
  background-color: #4A90E2;
}

.btn--ghost {
  color: #3C3C3C;
  background-color: #fff;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  -webkit-transition: none;
  transition: none;
}

@media all and (min-width: 1200px) {
  .btn:disabled:hover {
    color: #fff;
    border-color: #151515;
    background-color: #151515;
    -webkit-transition: none;
    transition: none;
  }
}

.btn:disabled:active {
  color: #fff;
  border-color: #151515;
  background-color: #151515;
}

.btn--dark {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

@media all and (min-width: 1200px) {
  .btn--dark:hover {
    color: #151515;
    border-color: #fff;
    background-color: #fff;
  }
}

.btn--dark:active, .btn--dark--active {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.btn--sm {
  font-size: 1.2rem;
  line-height: 1.4rem;
  line-height: 1.5;
  min-width: 10rem;
}

.btn--md {
  font-size: 1.6rem;
  line-height: 2.7rem;
  line-height: 1.5;
  min-width: 16rem;
}

@media all and (min-width: 768px) {
  .btn--md {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

@media all and (min-width: 1200px) {
  .btn--md {
    font-size: 2.5rem;
    line-height: 2.7rem;
  }
}

.btn--lg {
  font-size: 1.8rem;
  line-height: 2.4rem;
  line-height: 1.5;
  min-width: 20rem;
}

.btn--block {
  width: 100%;
}

.btn__text {
  position: relative;
  pointer-events: none;
}

.btn svg {
  display: inline-block;
  vertical-align: baseline;
}

.btn:disabled {
  background-color: #9B9B9B;
  color: #fff;
  border-color: #9B9B9B;
}

@media all and (min-width: 1200px) {
  .btn:disabled:hover {
    background-color: #9B9B9B;
    color: #fff;
    border-color: #9B9B9B;
  }
}

.btn:disabled:active, .btn:disabled--active {
  background-color: #9B9B9B;
  color: #fff;
  border-color: #9B9B9B;
}

input::-webkit-input-placeholder {
  color: #9B9B9B;
}

input::-webkit-input-placeholder {
  color: #9B9B9B;
}

input::-moz-placeholder {
  color: #9B9B9B;
}

input:-ms-input-placeholder {
  color: #9B9B9B;
}

input:-moz-placeholder {
  color: #9B9B9B;
}

.input {
  height: 3.6rem;
  position: relative;
}

.input input,
.input select {
  border: 1px solid #9B9B9B;
  border-radius: 3px;
}

.input input {
  width: 100%;
  height: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input input::-webkit-input-placeholder {
  color: #9B9B9B;
  font-size: inherit;
  line-height: inherit;
}

.input input::-webkit-input-placeholder {
  color: #9B9B9B;
  font-size: inherit;
  line-height: inherit;
}

.input input::-moz-placeholder {
  color: #9B9B9B;
  font-size: inherit;
  line-height: inherit;
}

.input input::-ms-input-placeholder {
  color: #9B9B9B;
  font-size: inherit;
  line-height: inherit;
}

.input input:-moz-placeholder {
  color: #9B9B9B;
  font-size: inherit;
  line-height: inherit;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  font-size: 1.4rem;
  line-height: 1.6rem;
  letter-spacing: 0.0381818px;
  padding: 1.1rem 1rem;
  border: 1px solid #9B9B9B;
  border-radius: 3px;
  opacity: 0.5;
  outline: none;
}

input[type="text"]:active, input[type="text"]:focus,
input[type="password"]:active, input[type="password"]:focus,
input[type="email"]:active, input[type="email"]:focus {
  opacity: 1;
}

/*input[type="text"]:invalid {
  opacity: 1;
  border: 1px solid #ED0505;
}

input[type="text"]:invalid::-webkit-input-placeholder {
  color: #ED0505;
}

input[type="text"]:invalid::-webkit-input-placeholder {
  color: #ED0505;
}

input[type="text"]:invalid::-moz-placeholder {
  color: #ED0505;
}

input[type="text"]:invalid:-ms-input-placeholder {
  color: #ED0505;
}

input[type="text"]:invalid:-moz-placeholder {
  color: #ED0505;
}*/

@media all and (min-width: 1200px) {
  input[type="text"],
  input[type="password"],
  input[type="email"] {
    padding: 1.8rem 1.5rem;
  }

  input[type="text"]:hover,
  input[type="password"]:hover,
  input[type="email"]:hover {
    opacity: 1;
  }
}

.input-warning {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #ED0505;
  font-size: 0.8rem;
  line-height: 1rem;
  letter-spacing: 0.0218182px;
  padding-bottom: 0.5rem;
  -webkit-transform: translateY(calc(100% + 5px));
  transform: translateY(calc(100% + 5px));
}

@media all and (min-width: 1200px) {
  .input-warning {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}

@media all and (min-width: 1200px) {
  .input-warning {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}

textarea {
  font-size: 1.4rem;
  line-height: 1.6rem;
  letter-spacing: 0.0381818px;
  padding: 1.1rem 1rem;
  border: 1px solid #9B9B9B;
  border-radius: 3px;
  opacity: 0.5;
  outline: none;
  height: 13rem;
  display: block;
}

textarea:active, textarea:focus {
  opacity: 1;
}

@media all and (min-width: 1200px) {
  textarea {
    padding: 1.8rem 1.5rem;
  }

  textarea:hover {
    opacity: 1;
  }
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label:before {
  content: '';
  width: 2rem;
  height: 2rem;
  border: 2px solid #4A90E2;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-radius: 4px;
}

input[type="checkbox"] + label {
  padding-left: 2.3rem;
  font-size: 1.2rem;
  line-height: 2.4rem;
}

@media all and (min-width: 1200px) {
  input[type="checkbox"] + label {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label:before {
  border-color: #FF5A59;
  background-image: url(/img/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

input[type="checkbox"]:checked + label:before {
  background-color: #FF5A59;
  background-size: 65%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

input[type="checkbox"].input--secondary + label:before {
  border-color: #4A90E2;
}

input[type="checkbox"].input--secondary:checked + label:before {
  background-color: #4A90E2;
}

input[type="checkbox"]:disabled + label {
  opacity: 0.3;
}

input[type="checkbox"]:disabled + label span,
input[type="checkbox"]:disabled + label svg,
input[type="checkbox"]:disabled + label img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  content: '';
  width: 2rem;
  height: 2rem;
  border-radius: 50% 50%;
  border: 2px solid #4A90E2;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

input[type="radio"]:checked + label:before {
  border-color: #4A90E2;
}

input[type="radio"] + label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50% 50%;
  background: #4A90E2;
  -webkit-transform: translate(0, -50%) scale(0);
  transform: translate(0, -50%) scale(0);
}

input[type="radio"]:checked + label:after {
  -webkit-transform: translate(0, -50%) scale(1);
  transform: translate(0, -50%) scale(1);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

input[type="radio"] + label.no-checkbox {
  display: -webkit-box;
  display: flex;
}

input[type="radio"] + label.no-checkbox:before {
  content: none;
}

input[type="radio"]:checked + label.no-checkbox:after {
  content: none;
}

input[type="radio"].input--important + label:before {
  border: 2px solid #FF5A59;
}

input[type="radio"].input--important + label:before {
  border-color: #FF5A59;
}

input[type="radio"].input--important + label:after {
  background: #FF5A59;
}

label {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 2.4rem;
  color: #4B4B4B;
  font-weight: 500;
  padding-left: 2.3rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

@media all and (min-width: 768px) {
  label {
    padding-left: 3rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

.header {
  background-color: #fff;
  position: fixed;
  z-index: 10;
  width: 100%;
}

.header__wrap {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  -webkit-box-align: start;
  align-items: flex-start;
}

@media all and (max-width: 767px) {
  .header__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .header__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .header__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .header__wrap {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .header__wrap {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .header__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .header__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .header__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (max-width: 767px) {
  .header__wrap {
    padding-right: 0;
  }
}

@media all and (min-width: 768px) {
  .header__wrap {
    padding-right: 0;
  }
}

@media all and (min-width: 1200px) {
  .header__wrap {
    padding-right: 3rem;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

.header-features {
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
  display: none;
}

@media all and (min-width: 768px) {
  .header-features {
    margin: 0;
    width: auto;
  }
}

@media all and (min-width: 1200px) {
  .header-features {
    display: -webkit-box;
    display: flex;
  }
}

.header-features__item {
  position: relative;
}

.header-features__link {
  font-size: 1.5rem;
  line-height: 2rem;
  display: block;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media all and (min-width: 1600px) {
  .header-features__link {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}

@media all and (min-width: 1600px) {
  .header-features__link {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.header-logo {
  font-size: 0;
  display: -webkit-box;
  display: flex;
  padding-top: 1rem;
  padding-bottom: 2.6rem;
}

@media all and (min-width: 768px) {
  .header-logo {
    padding-top: 2rem;
    padding-bottom: 3.4rem;
  }
}

@media all and (min-width: 1200px) {
  .header-logo {
    width: auto;
    padding-bottom: 2rem;
  }
}

.header-logo__icon {
  height: 2.4rem;
}

@media all and (min-width: 768px) {
  .header-logo__icon {
    height: 3.6rem;
    width: 11rem;
  }
}

@media all and (min-width: 1200px) {
  .header-logo__icon {
    width: 14.5rem;
    height: auto;
  }
}

.header-controls {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
}

.header-login {
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media all and (min-width: 768px) {
  .header-login {
    padding-top: 2rem;
  }
}

.header-login--active {
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header-login__list {
  display: -webkit-box;
  display: flex;
}

.header-login__item {
  font-size: 0;
}

.header-login__link {
  text-transform: uppercase;
  position: relative;
  border-radius: 4px;
  line-height: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 0;
  margin: 0 0.2rem;
  padding: 0 0.6rem;
  min-width: 2.4rem;
}

@media all and (min-width: 1200px) {
  .header-login__link {
    background-color: transparent;
  }
}

@media all and (min-width: 1200px) {
  .header-login__link--language {
    padding-right: 2rem;
    margin-right: 1.5rem;
  }
}

.header-login__link--language .header-login__icon {
  height: 1.6rem;
}

@media all and (min-width: 1200px) {
  .header-login__link--language .header-login__icon {
    display: inline-block;
  }
}

@media all and (min-width: 1200px) {
  .header-login__link--language .header-login__text {
    display: none;
  }
}

.header-login__icon {
  display: inline-block;
  vertical-align: middle;
}

.header-login__text {
  font-size: 1.6rem;
  line-height: 1.9rem;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

@media all and (min-width: 1200px) {
  .header-login__text {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

.header-login__btn {
  font-size: 1.5rem;
  line-height: 2rem;
  display: none;
  min-width: 11rem;
  padding: 1.15rem 1rem;
  letter-spacing: 0.9375px;
}

.header-login__btn:first-child {
  margin-right: 1rem;
}

@media all and (min-width: 1600px) {
  .header-login__btn:first-child {
    margin-right: 2rem;
  }
}

@media all and (min-width: 768px) {
  .header-login__btn {
    display: inline-block;
  }
}

@media all and (min-width: 1200px) {
  .header-login__btn {
    font-size: 1.6rem;
    line-height: 2rem;
    min-width: 13.5rem;
    letter-spacing: 1px;
  }
}

.header-locales {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  position: absolute;
  right: 47.5px;
  top: 0;
}

@media all and (min-width: 768px) {
  .header-locales {
    right: 82.5px;
  }
}

@media all and (min-width: 1200px) {
  .header-locales {
    right: 3rem;
  }
}

.header-locales--active .header-locales__desc {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header-locales--active .header-locales__item {
  max-width: 8rem;
}

.header-locales__link {
  font-size: 0;
  position: relative;
  display: block;
  padding: 0.7rem 0.25rem;
}

@media all and (min-width: 768px) {
  .header-locales__link {
    padding: 1.7rem 0.75rem 0 0.75rem;
  }
}

@media all and (min-width: 1200px) {
  .header-locales__link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.header-locales__desc {
  font-size: 1rem;
  line-height: 1.2rem;
  color: #4A4A4A;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media all and (min-width: 768px) {
  .header-locales__desc {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

.header-locales__item {
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #fff;
}

@media all and (min-width: 1200px) {
  .header-locales__item--md {
    display: none;
  }
}

.header-locales__item--active {
  max-width: 8rem;
}

.header-locales__icon {
  width: 3rem;
  display: block;
}

@media all and (min-width: 768px) {
  .header-locales__icon {
    width: 4.5rem;
  }
}

@media all and (min-width: 1200px) {
  .header-locales__icon {
    width: 4.8rem;
  }
}

.header-burger {
  display: block;
  padding: 0.7rem 1.5rem 1.3rem 0.25rem;
  border: none;
  margin: 0;
  outline: none;
  background: transparent;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  text-transform: none;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .header-burger {
    padding-right: 3rem;
    padding-top: 1.7rem;
    padding-left: 0.75rem;
  }
}

@media all and (min-width: 1200px) {
  .header-burger {
    display: none;
  }
}

.header-burger__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #979797;
  position: relative;
  display: block;
}

@media all and (min-width: 768px) {
  .header-burger__btn {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.header-burger__box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 9px;
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .header-burger__box {
    width: 26px;
    height: 13px;
  }
}

.header-burger__inner {
  top: 50%;
  display: block;
  margin-top: 0;
}

.header-burger__inner, .header-burger__inner:after, .header-burger__inner:before {
  position: absolute;
  width: 16px;
  height: 1px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 4px;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 75ms;
  transition-duration: 75ms;
  background-color: #979797;
}

@media all and (min-width: 768px) {
  .header-burger__inner, .header-burger__inner:after, .header-burger__inner:before {
    width: 26px;
  }
}

.header-burger__inner:before, .header-burger__inner:after {
  content: '';
  display: block;
}

.header-burger__inner:before {
  -webkit-transition: top 75ms ease .12s, opacity 75ms ease;
  transition: top 75ms ease .12s, opacity 75ms ease;
  top: -4px;
}

@media all and (min-width: 768px) {
  .header-burger__inner:before {
    top: -6px;
  }
}

.header-burger__inner:after {
  -webkit-transition: bottom 75ms ease 0.12s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  bottom: -4px;
}

@media all and (min-width: 768px) {
  .header-burger__inner:after {
    bottom: -6px;
  }
}

.header-burger--active .header-burger__inner {
  -webkit-transition-delay: .12s;
  transition-delay: .12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #979797;
  position: relative;
}

.header-burger--active .header-burger__inner:before {
  background-color: #979797;
  top: 0;
  -webkit-transition: top 75ms ease, opacity 75ms ease .12s;
  transition: top 75ms ease, opacity 75ms ease .12s;
  opacity: 0;
}

.header-burger--active .header-burger__inner:after {
  background-color: #979797;
  bottom: 0;
  -webkit-transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  -webkit-transition: opacity 0.4s, visibility 0s 0.4s;
  transition: opacity 0.4s, visibility 0s 0.4s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  visibility: hidden;
}

@media all and (min-width: 1200px) {
  .header-menu {
    display: none;
  }
}

.header-menu--active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.header-menu--active .header-menu__content {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.header-menu__content {
  background: #FDFDFD;
  border: 1px solid #F0F0F0;
  padding: 1rem 1rem 2rem 1rem;
  position: absolute;
  right: 0;
  top: 0;
  height: 100vh;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .header-menu__content {
    padding: 1.5rem 3.5rem 5rem 5rem;
  }
}

.header-menu-burger {
  display: block;
  padding: 0 0.5rem 1rem 1rem;
  border: none;
  margin: 0;
  outline: none;
  background: transparent;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  text-transform: none;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .header-menu-burger {
    padding: 0 0 2.5rem 2.5rem;
  }
}

@media all and (min-width: 1200px) {
  .header-menu-burger {
    display: none;
  }
}

.header-menu-burger__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #979797;
  position: relative;
  display: block;
}

@media all and (min-width: 768px) {
  .header-menu-burger__btn {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.header-menu-burger__box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 9px;
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .header-menu-burger__box {
    width: 26px;
    height: 13px;
  }
}

.header-menu-burger__inner {
  top: 50%;
  display: block;
  margin-top: 0;
}

.header-menu-burger__inner, .header-menu-burger__inner:after, .header-menu-burger__inner:before {
  position: absolute;
  width: 16px;
  height: 1px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 4px;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 75ms;
  transition-duration: 75ms;
  background-color: #979797;
}

@media all and (min-width: 768px) {
  .header-menu-burger__inner, .header-menu-burger__inner:after, .header-menu-burger__inner:before {
    width: 26px;
  }
}

.header-menu-burger__inner:before, .header-menu-burger__inner:after {
  content: '';
  display: block;
}

.header-menu-burger__inner:before {
  -webkit-transition: top 75ms ease .12s, opacity 75ms ease;
  transition: top 75ms ease .12s, opacity 75ms ease;
  top: -4px;
}

@media all and (min-width: 768px) {
  .header-menu-burger__inner:before {
    top: -6px;
  }
}

.header-menu-burger__inner:after {
  -webkit-transition: bottom 75ms ease 0.12s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  bottom: -4px;
}

@media all and (min-width: 768px) {
  .header-menu-burger__inner:after {
    bottom: -6px;
  }
}

.header-menu-burger--active .header-menu-burger__inner {
  -webkit-transition-delay: .12s;
  transition-delay: .12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #979797;
  position: relative;
}

.header-menu-burger--active .header-menu-burger__inner:before {
  background-color: #979797;
  top: 0;
  -webkit-transition: top 75ms ease, opacity 75ms ease .12s;
  transition: top 75ms ease, opacity 75ms ease .12s;
  opacity: 0;
}

.header-menu-burger--active .header-menu-burger__inner:after {
  background-color: #979797;
  bottom: 0;
  -webkit-transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header-menu-controls {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .header-menu-controls {
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 1.5rem;
  }
}

.header-menu-logo__icon {
  height: 3rem;
}

@media all and (min-width: 768px) {
  .header-menu-logo__icon {
    height: 4rem;
  }
}

.header-menu-features {
  overflow: auto;
}

.header-menu-features__item {
  border-bottom: 1px solid #F0F0F0;
  position: relative;
  overflow: hidden;
}

.header-menu-features__item:last-child {
  border-bottom: none;
}

.header-menu-features__item--sub {
  max-height: 0;
  border-width: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header-menu-features__item--active {
  max-height: 20rem;
  border-width: 1px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header-menu-features__link {
  font-size: 1.8rem;
  line-height: 3rem;
  display: block;
  min-width: 18.5rem;
  padding: 1.4rem 0;
  color: #919191;
  letter-spacing: 0.473684px;
}

@media all and (min-width: 768px) {
  .header-menu-features__link {
    min-width: 29.5rem;
  }
}

.header-menu-features__link--sub {
  padding-left: 2rem;
}

@media all and (min-width: 768px) {
  .header-menu-features__link--sub {
    padding-left: 3rem;
  }
}

.header-features-sublist {
  border: 1px solid #D8D8D8;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  min-width: 15.4rem;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  height: 0;
  overflow: hidden;
}

.header-features-sublist--active {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  height: auto;
}

.header-features-sublist__item:last-child .header-features-sublist__link {
  border-bottom: none;
}

.header-features-sublist__link {
  font-size: 1.6rem;
  line-height: 4.5rem;
  height: 4.5rem;
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: center;
  display: block;
  border-bottom: 1px solid #D8D8D8;
}

.main {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  padding-top: 6rem;
}

@media all and (min-width: 768px) {
  .main {
    padding-top: 9rem;
  }
}

.main__wrap {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  align-items: center;
  padding-top: 1.7rem;
}

@media all and (max-width: 767px) {
  .main__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .main__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .main__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .main__wrap {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .main__wrap {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .main__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  max-width: 1920px;
  width: 100%;
  height: 16.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (min-width: 768px) {
  .main__bg {
    height: 48rem;
  }
}

@media all and (min-width: 1200px) {
  .main__bg {
    height: 98.5rem;
  }
}

.footer {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  position: relative;
  background-color: #151515;
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.9rem;
  letter-spacing: 0.8125px;
}

@media all and (min-width: 768px) {
  .footer {
    font-size: 1.5rem;
    line-height: 2.9rem;
    letter-spacing: 0.9375px;
  }
}

@media all and (min-width: 1200px) {
  .footer {
    font-size: 1.6rem;
    line-height: 2.9rem;
    letter-spacing: 1px;
  }
}

.footer a {
  color: #fff;
}

.footer__wrap {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  font-size: 1.5rem;
  line-height: 2rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 4rem;
  text-align: center;
}

@media all and (max-width: 767px) {
  .footer__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .footer__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .footer__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .footer__wrap {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .footer__wrap {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .footer__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .footer__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__wrap {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

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

@media all and (min-width: 768px) {
  .footer__content {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
}

@media all and (min-width: 1200px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.footer__nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  padding-top: 0.5rem;
  list-style: none;
}

@media all and (min-width: 768px) {
  .footer__nav {
    -webkit-box-ordinal-group: 3;
    order: 2;
    width: 67%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 18rem;
    margin-bottom: 0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__nav {
    width: 42%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 2.5rem;
    padding-top: 0;
  }
}

@media all and (min-width: 768px) {
  .footer__nav li {
    width: 50%;
  }
}

.footer__nav a {
  font-size: 1.3rem;
  line-height: 2rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  letter-spacing: 0.8125px;
  padding: 0.95rem 0;
  font-weight: bold;
  text-align: left;
}

@media all and (min-width: 768px) {
  .footer__nav a {
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 0 0 1.9rem 0;
  }
}

@media all and (min-width: 1200px) {
  .footer__nav a {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.footer__contacts {
  margin-bottom: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  display: -webkit-box;
  display: flex;
}

@media all and (min-width: 768px) {
  .footer__contacts {
    -webkit-box-ordinal-group: 4;
    order: 3;
    width: 33%;
    -webkit-box-align: end;
    align-items: flex-end;
  }
}

@media all and (min-width: 1200px) {
  .footer__contacts {
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.footer__contacts a {
  padding-right: 0.4rem;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.9375px;
}

.footer__contacts a:first-child {
  padding-left: 0.4rem;
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .footer__contacts a:first-child {
    margin-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  .footer__contacts a {
    margin: 0;
    padding-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__contacts a {
    padding-bottom: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__rates {
  padding: 1rem 0;
}

.footer__copyrights {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  padding: 1rem 0;
  letter-spacing: 0.8125px;
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: bold;
}

.footer__copyrights a {
  text-decoration: underline;
}

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

@media all and (min-width: 768px) {
  .footer__copyrights {
    width: 100%;
    -webkit-box-ordinal-group: 6;
    order: 5;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__copyrights {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}

@media all and (min-width: 768px) {
  .footer__login {
    width: 100%;
    -webkit-box-ordinal-group: 4;
    order: 3;
    display: -webkit-box;
    display: flex;
    margin-bottom: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__login {
    -webkit-box-ordinal-group: 2;
    order: 1;
    display: -webkit-box;
    display: flex;
    width: auto;
    margin-bottom: 0;
  }
}

.footer__login-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: normal;
  align-items: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  max-width: 75rem;
  margin-bottom: 1rem;
}

@media all and (max-width: 767px) {
  .footer__login-wrap {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 768px) {
  .footer__login-wrap {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__login-wrap {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

@media all and (min-width: 1600px) {
  .footer__login-wrap {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}

@media all and (min-width: 768px) {
  .footer__login-wrap {
    margin: 0 auto;
  }
}

@media all and (min-width: 1200px) {
  .footer__login-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: 0;
  }
}

.footer__btn-wrap {
  width: 50%;
}

@media all and (max-width: 767px) {
  .footer__btn-wrap {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) {
  .footer__btn-wrap {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__btn-wrap {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 1600px) {
  .footer__btn-wrap {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .footer__btn-wrap {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__btn-wrap {
    padding: 0;
    width: 100%;
    margin-bottom: 3.5rem;
  }
}

.footer__btn {
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 0.875px;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  width: 100%;
}

@media all and (min-width: 768px) {
  .footer__btn {
    padding: 1.15rem 1rem;
    width: 17rem;
  }
}

@media all and (min-width: 1200px) {
  .footer__btn {
    font-size: 1.6rem;
    line-height: 2rem;
    width: 13.5rem;
    letter-spacing: 1px;
    padding: 1.3rem 1rem;
  }
}

.footer-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  list-style: none;
}

@media all and (min-width: 768px) {
  .footer-social {
    width: 100%;
    -webkit-box-ordinal-group: 5;
    order: 4;
    margin-bottom: 3.5rem;
  }
}

@media all and (min-width: 1200px) {
  .footer-social {
    position: absolute;
    width: auto;
    right: 0;
    top: 10rem;
    margin-bottom: 0;
  }
}

.footer-social__link {
  width: 5rem;
  padding: 0.75rem;
  display: block;
}

@media all and (min-width: 768px) {
  .footer-social__link {
    width: 5.5rem;
    padding: 0.75rem 0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .footer-social__link {
    width: 4.5rem;
    padding: 0.75rem 0.25rem;
  }
}

.lang {
  position: absolute;
  right: 0;
  top: 25%;
  text-align: right;
  border: 1px solid #222;
  padding: 4px 0;
}

.lang:hover {
  padding-top: 32px;
  border: 1px solid #2c2c2c;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #373737;
  z-index: 101;
}

.lang:hover li.first {
  position: absolute;
  top: 4px;
  right: 0;
}

.lang li {
  display: none;
  padding-right: 25px;
  padding-left: 25px;
  line-height: 27px;
  white-space: nowrap;
}

.lang li.first,
.lang:hover li {
  display: block;
}

.lang li.first {
  padding-right: 13px;
}

.lang a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  padding-left: 21px;
  background-size: 14px auto;
  background: 0 calc(50% + -2px) no-repeat;
  background-size: 18px auto;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

.lang .en {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAQCAIAAACdjxhxAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDlDOTk4Rjk3QzMyMTFFNUExQTY5M0NEOEFEODJFMjIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDlDOTk4RkE3QzMyMTFFNUExQTY5M0NEOEFEODJFMjIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowOUM5OThGNzdDMzIxMUU1QTFBNjkzQ0Q4QUQ4MkUyMiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowOUM5OThGODdDMzIxMUU1QTFBNjkzQ0Q4QUQ4MkUyMiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ps9+040AAAFoSURBVHjaYoyLm8fMzMRACLR/OYJLitnQMKCgwJ2J6X9wsCkeUuPBZUYcgOXv379HjtwwMlLauvWCo6MWhNy27YKDgxZchJGRQWzFTKxO+P//P8ufP/9NTID6L7q66mzfjp3cvfvK88AEXB5h+vv3z44dl4F2bthwFhf59evP/3//4UJAV/yzs9NYseJEYKDpypXYyfXrT0ttWoTVCX/+/AGFxapVp7y9jRYvPhIebomVBCp97BqK0yO/f//18jKYM2cf0DZc5OfP3//9/oMLMbi69jg69syff9rYuAUXCUT/cYBv374Bw+JPcrJbb+/W3Fz3SZN2YCUnT975WMkMixf4eL6zszHa2rb++8fy5ctP/Klz84eNWIzg5fnGysz48eNHPj4+BnLBp0+fWJ6aun9kZPr/5SsZ+hl5uL8w/mf5//cPAyMzw79/5Ljh79//DP8Y3r17958CANTOeI5LnoGRgRIAEGAA78hz0tITuKYAAAAASUVORK5CYII=");
}

.lang .jp {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA30lEQVRIS2NkoDFgpLH5DMPEgv9AQIugYgQBkMHD34Ivl28zPOpbxPDp1BVwSPKZ6TDIFcUx8Oiq4g1ZooLo6aw1DLdy2xn+/fqNYhgTGyuD2uRKBum0EJyWELQA5PLTJhEYhsNMBFliemYFTp8QtOBSUCHD6/V78QaDaKAzg966fqxqCFpwVN6d4cej53gt4JCTZLB+uHOQWkDzIKJ5JIMCFl8yVZ1QziCTGUZ+MoXpBPnkbs1khi8XboKFeAzUGZRbcqmT0SgpBAkmU0oMB+mlnwWUuhSf/mFSZdIyiAAFko4ZeIpw3QAAAABJRU5ErkJggg==");
}

.lang .fr {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAASklEQVRIS2NkoDFgpLH5DMPFgtAl/3EF1f9V0XhD8YOTGU55wf2nGSFBNGoBjkAaDSJwwIymIobRjDZaVAyWfEDDenO4VJk0DCIAqaZwGd2UPfgAAAAASUVORK5CYII=");
}

.lang .de {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAUElEQVRIS2NkoDFgpLH5DMPHgv80CipGWBCNWoArhOkURMAIoEkcACMY4oNRC3DGMP2C6AyNItkEFsmjFuCIZcbhE0Q0qgvAxg6fKpNmoQQAtgchGbStPHQAAAAASUVORK5CYII=");
}

.lang .es {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABN0lEQVRIS+2VQUsCQRSAv7XNVYOiIGGJ1AqCMoqCikIogiDor/gHvRTUYuWhEIQ9eAhMM4hSkoVW1Gm3wovK7mZ7ER+827z5Zr73mJHwOSSf92dEANmpmPBD1aFRkr4VjQGD9HYVCY3eHgSsMjvt6Pymx0ZJKX560AOQofau8FINIYRAVT+ZnWtC2xuhP8BCfhhQ0kPcXCgIqcP+kcnSRpPp8D8B8pUYxt0b97kZls/TxNcLmI0rduJlT4TeG1inb1smHnInPGo62XqU7eM0a4tPtF4v2T24RlZsp+44fQEtE/TiKfVKjttshLAcYW/TJJhIklzNMGlr+jPAHhYhkSmnmK/lKRejBBsy6kqV58QWZwsaEwF7pNzF4ClyV++4qgsYPxWOT4Xvihy7NcSCEfkyhzDgWPoFTsOCGdSO61oAAAAASUVORK5CYII=");
}

.lang .hi {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA5UlEQVRIS2NkoDFgpLH5DMPEgv8zjf/TIqgY088ygoNo1AJcwUvHIPr/n2Akv3v3g+HixVdgx+rpiTIIC3MSTBeMIACOZAIWvHnznWHDhlsM0tK8DCAdT558ZvD3V2UQFeXCawnRFuzf/4jhx48/DNu332P49+8/g7e3MgMbGzODs7M89Sz4+fMPw5Ytd0G+ZfD1VWFgZaWiBbAgkpLiYWBiYmR4/PgzQ0AAFYMIFA5v335nuHABEskGBmKkRbJQBzvBVEQwyWBR8K7iJyQVjVqAK/joF0TkRCCxeoZJlUmsd8lRBwAAbnYZVJbMogAAAABJRU5ErkJggg==");
}

.lang .ch {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg5Qjk3NTY5NUJBQzExRTU4MEI1RkZGOTIwMUYyREM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjg5Qjk3NTZBNUJBQzExRTU4MEI1RkZGOTIwMUYyREM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ODlCOTc1Njc1QkFDMTFFNTgwQjVGRkY5MjAxRjJEQzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODlCOTc1Njg1QkFDMTFFNTgwQjVGRkY5MjAxRjJEQzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4znioHAAACSUlEQVR42uxVzW7UMBD+xnb+NmRZfsq2cOFZeA/ECQmJA8/AQ8CL9IKE1IoTB04ICa4coBRE+dls08SOPYyzB4TUQrpQISQiOU7k8XzffDMeEzPjLB+FM37+fQDz/Hr+9nLWV7UGys8KDEJ7HkgsgZX8ZQlge8D3YBrjkhDNCvH0CVltNlO6etEEzA6A9koCktX5fgeeCpjXaG5OQM9qFE89/GwcQBSmoCBvX5m29XU356o7JOjbBmwd2ofCIk/hFxbh0RfgjcPSyjaJUsn807rjlfBaZjGtjZfQ068l2vspylu14Ceo9QUcPaghEKKhML8xAbIUyU4DN7MwPZ0s17BAUDITKSg6l8G+UugfWzhx3onbbrtFvm+R5ELFiHku0hViJxu0yNZLJJ7GDQMnDC8RJtMCzT0PvfRINgU5EUccoDcUaGeJVi+G77JWOMz8wPBXmYjDJAhI5y2a3R76dUBIgmTZwM/FoCP0AkR3t6CevEf1wqGZOahA48vUakLwUo6SXLq2SpBihyCVGRbCmDWWux9Q7gW4koXOoBp49EGTHRzDTWJMNAyzFIm2Krg7G+hSSfvLFtY5sGEkIuxpupc5rsz6lMFNB7wjNMURcidRiqUKa5zkYyutkIWPFn7bIpvGUpAReMWc/gBAlM1nhNRoBKEdKGBknxgJsMKQXuQHv3Ra2jFW4sHLiQDEP85rd9OUfZXFHsqxPBn9b/bweENGX7l8p+grszD5niFVOWnNrL6fwrUBIsEgXZgcDvSkpv938l8H+CbAAJPi+UZQN9wFAAAAAElFTkSuQmCC");
}

.lang .th {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNDgwIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+PGcgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCAwaDY0MHY0ODBIMHoiLz48cGF0aCBmaWxsPSIjMDAxYjlhIiBkPSJNMCAxNjIuNTQ0aDY0MHYxNjAuMDAzSDB6Ii8+PHBhdGggZmlsbD0iI2U3MDAwMCIgZD0iTTAgLjA0Mmg2NDB2ODIuNUgwem0wIDM5OS45Nmg2NDB2ODBIMHoiLz48L2c+PC9zdmc+");
}

.lang .vi {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgMzAgMjAiPjxwYXRoIGZpbGw9IiNkYTI1MWQiIGQ9Ik0wIDBoMzB2MjBIMHoiLz48cGF0aCBmaWxsPSIjZmYwIiBkPSJNMTUgNGwtMy41MyAxMC44NSA5LjI0LTYuN0g5LjI5bDkuMjQgNi43Ii8+PC9zdmc+");
}

.lang .kr {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MDAiIGhlaWdodD0iNjAwIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iLTM2IC0yNCA3MiA0OCI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTS0zNi0yNGg3MnY0OGgtNzJ6Ii8+PGcgdHJhbnNmb3JtPSJyb3RhdGUoLTU2LjMxKSI+PGcgaWQ9ImIiPjxwYXRoIGlkPSJhIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMiIgZD0iTS02LTI1SDZtLTEyIDNINm0tMTIgM0g2Ii8+PHVzZSB5PSI0NCIgeGxpbms6aHJlZj0iI2EiLz48L2c+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMCAxN3YxMCIvPjxjaXJjbGUgcj0iMTIiIGZpbGw9IiNjZDJlM2EiLz48cGF0aCBmaWxsPSIjMDA0N2EwIiBkPSJNMC0xMkE2IDYgMCAwIDAgMCAwYTYgNiAwIDAgMSAwIDEyIDEyIDEyIDAgMCAxIDAtMjR6Ii8+PC9nPjxnIHRyYW5zZm9ybT0icm90YXRlKC0xMjMuNjkpIj48dXNlIHhsaW5rOmhyZWY9IiNiIi8+PHBhdGggc3Ryb2tlPSIjZmZmIiBkPSJNMC0yMy41djNNMCAxN3YzLjVtMCAzdjMiLz48L2c+PC9zdmc+");
}

.lang .ms {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBoZWlnaHQ9IjQ4MCIgd2lkdGg9IjY0MCIgdmlld0JveD0iMCAwIDY0MCA0ODAiPgogIDxwYXRoIGZpbGw9IiNjYzAwMDEiIGQ9Ik0wLS4wNWg2NDB2NDgwLjFIMHoiLz4KICA8cGF0aCBpZD0iYSIgZmlsbD0iI2ZmZiIgZD0iTTAgNDQ1Ljc1N2g2NDB2MzQuMjkzSDB6Ii8+CiAgPHVzZSBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC02OC41ODYpIiB4bGluazpocmVmPSIjYSIvPgogIDx1c2UgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtMTM3LjE3KSIgeGxpbms6aHJlZj0iI2EiLz4KICA8dXNlIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTIwNS43NTcpIiB4bGluazpocmVmPSIjYSIvPgogIDx1c2UgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtMjc0LjM0MykiIHhsaW5rOmhyZWY9IiNhIi8+CiAgPHVzZSBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0zNDIuOTMpIiB4bGluazpocmVmPSIjYSIvPgogIDx1c2UgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtNDExLjUxNCkiIHhsaW5rOmhyZWY9IiNhIi8+CiAgPHBhdGggZmlsbD0iIzAxMDA2NiIgZD0iTTAtLjA1aDQ4MC4xdjI3NC4zNDNIMHoiLz4KICA8cGF0aCBkPSJNMTk3LjUyNyAzNC4yNDNjLTU2Ljk3NiAwLTEwMy4yMjIgNDYuMDktMTAzLjIyMiAxMDIuODc4UzE0MC41NSAyNDAgMTk3LjUyNyAyNDBjMjAuNTg1IDAgMzkuNzY0LTYuMDIzIDU1Ljg3Mi0xNi4zODZhOTEuNTc0IDkxLjU3NCAwIDAgMS0yOS45MyA1LjAwN2MtNTAuNTIgMC05MS41MjUtNDAuODY2LTkxLjUyNS05MS4yMiAwLTUwLjM1NiA0MS4wMDQtOTEuMjIzIDkxLjUyNi05MS4yMjMgMTEuMTY3IDAgMjEuODYyIDEuOTk0IDMxLjc1NyA1LjY0Ny0xNi40NzQtMTEuMDk2LTM2LjMzNC0xNy41OC01Ny43LTE3LjU4eiIgZmlsbD0iI2ZjMCIvPgogIDxwYXRoIGQ9Ik0zNjguNzA2IDE5MC42NzhsLTQzLjQ4LTIyLjY4NiAxMi44NTUgNDYuNDNMMzA5IDE3NS41OGwtOS4wNzMgNDcuMjcyLTguOTIzLTQ3LjI5OC0yOS4yMDUgMzguNzUgMTMuMDAyLTQ2LjM5LTQzLjU1MiAyMi41NTUgMzIuMzUzLTM2LjI5Mi00OS4yNzMgMS44OTIgNDUuMjk2LTE5LjAxLTQ1LjIzNS0xOS4xNDUgNDkuMjY3IDIuMDQtMzIuMjM4LTM2LjM5IDQzLjQ4IDIyLjY4Ni0xMi44NTYtNDYuNDI4IDI5LjA4IDM4LjgzOCA5LjA3NC00Ny4yNyA4LjkyMyA0Ny4yOTcgMjkuMjA2LTM4Ljc1LTEzLjAwMyA0Ni4zOSA0My41NTItMjIuNTU1LTMyLjM1MyAzNi4yOTMgNDkuMjczLTEuODkyLTQ1LjI5NiAxOS4wMSA0NS4yMzQgMTkuMTQ1LTQ5LjI2Ni0yLjA0eiIgZmlsbD0iI2ZjMCIvPgo8L3N2Zz4K");
}

.lang .fl {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBoZWlnaHQ9IjQ4MCIgd2lkdGg9IjY0MCIgdmlld0JveD0iMCAwIDY0MCA0ODAiPgogIDxwYXRoIGZpbGw9IiMwMDM4YTgiIGQ9Ik0wIDBoNjQwdjI0MEgweiIvPgogIDxwYXRoIGZpbGw9IiNjZTExMjYiIGQ9Ik0wIDI0MGg2NDB2MjQwSDB6Ii8+CiAgPHBhdGggZD0iTTQxNS42OTIgMjQwTDAgNDgwVjAiIGZpbGw9IiNmZmYiLz4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNDkuMzMzIDI0MCkgc2NhbGUoNS4zMzMzMykiIGZpbGw9IiNmY2QxMTYiPgogICAgPGNpcmNsZSByPSI5Ii8+CiAgICA8ZyBpZD0iZCI+CiAgICAgIDxnIGlkPSJjIj4KICAgICAgICA8ZyBpZD0iYiI+CiAgICAgICAgICA8cGF0aCBkPSJNLTEgMGwuMDYyLjA2MkwwIDBsLS45MzgtLjA2MnoiIHRyYW5zZm9ybT0ic2NhbGUoMTkpIi8+CiAgICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTS0uODg0LjExNmwuMDUuMDVMMCAweiIgdHJhbnNmb3JtPSJzY2FsZSgxOS4yMzgxKSIvPgogICAgICAgICAgPHVzZSBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIiB4bGluazpocmVmPSIjYSIgdHJhbnNmb3JtPSJzY2FsZSgxIC0xKSIvPgogICAgICAgIDwvZz4KICAgICAgICA8dXNlIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiIHhsaW5rOmhyZWY9IiNiIiB0cmFuc2Zvcm09InJvdGF0ZSg0NSkiLz4KICAgICAgPC9nPgogICAgICA8dXNlIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiIHhsaW5rOmhyZWY9IiNjIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCkiLz4KICAgIDwvZz4KICAgIDx1c2UgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgeGxpbms6aHJlZj0iI2QiIHRyYW5zZm9ybT0ic2NhbGUoLTEpIi8+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMi4wMikiPgogICAgICA8ZyBpZD0iZiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzcuOTYyKSI+CiAgICAgICAgPHBhdGggaWQ9ImUiIGQ9Ik01IDBMMS42MTggMS4xNzZsLS4wNzMgMy41OC0yLjE2My0yLjg1NC0zLjQyNyAxLjAzN0wtMiAweiIvPgogICAgICAgIDx1c2UgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgeGxpbms6aHJlZj0iI2UiIHRyYW5zZm9ybT0ic2NhbGUoMSAtMSkiLz4KICAgICAgPC9nPgogICAgICA8dXNlIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiIHhsaW5rOmhyZWY9IiNmIiB0cmFuc2Zvcm09InJvdGF0ZSgxMjApIi8+CiAgICAgIDx1c2UgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgeGxpbms6aHJlZj0iI2YiIHRyYW5zZm9ybT0icm90YXRlKC0xMjApIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K");
}

.lang .id {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgwIiB3aWR0aD0iNjQwIiB2aWV3Qm94PSIwIDAgNjQwIDQ4MCI+CiAgPGcgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2Utd2lkdGg9IjFwdCI+CiAgICA8cGF0aCBmaWxsPSIjZTcwMDExIiBkPSJNMCAwaDYzOS45NTh2MjQ4Ljk0N0gweiIvPgogICAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMjQwaDYzOS45NTh2MjQwSDB6Ii8+CiAgPC9nPgo8L3N2Zz4K");
}

.advice {
  position: relative;
  width: 100%;
  padding: 6% 0 14% 0;
  height: calc(100vh - 6rem);
}

@media all and (min-width: 768px) {
  .advice {
    padding-bottom: 7rem;
    height: auto;
    padding-top: 0;
  }
}

@media all and (min-width: 1200px) {
  .advice {
    height: calc(100vh - 9rem);
    padding: 2% 0 3% 0;
    padding-top: 0;
  }
}

.advice__options {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  height: 100%;
}

@media all and (max-width: 767px) {
  .advice__options {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .advice__options {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .advice__options {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .advice__options {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .advice__options {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .advice__options {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .advice__options {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .advice__options {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .advice__options {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.advice-spiral {
  height: auto;
  width: 100%;
  position: absolute;
  top: 46%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media all and (min-width: 768px) {
  .advice-spiral {
    position: relative;
    top: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    margin-bottom: 4.5rem;
  }
}

@media all and (max-width: 512px) {
  .advice {
    height: auto;

  }

  .advice-spiral {
    transform: none;
    position: relative;
    top: 0;
  }

  .advice__options {
    display: none;
  }

  .network {
    padding-top: 0 !important;
  }
}

@media all and (min-width: 1200px) {
  .advice-spiral {
    height: auto;
    margin-bottom: 5.1vh;
  }
}

.advice-spiral__wrap {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 1px;
}

@media all and (max-width: 767px) {
  .advice-spiral__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .advice-spiral__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .advice-spiral__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .advice-spiral__wrap {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .advice-spiral__wrap {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .advice-spiral__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .advice-spiral__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .advice-spiral__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.advice-spiral__btns {
  position: relative;
}

.advice-spiral__img {
  display: block;
  height: 19vh;
  width: 100%;
}

@media all and (min-width: 768px) {
  .advice-spiral__img {
    height: 28.2rem;
  }
}

@media all and (min-width: 1200px) {
  .advice-spiral__img {
    height: 51vh;
  }
}

.advice-spiral__btn {
  position: absolute;
  top: 2px;
  right: 0;
  padding: 1rem;
  border: 1px solid #4A4A4A;
  border-radius: 1px;
  font-size: 1rem;
  line-height: 1.2rem;
  background-color: transparent;
  outline: none;
  z-index: 1;
}

.advice-option {
  width: 100%;
  text-align: center;
  padding: 0;
  padding-bottom: 3vh;
}

@media all and (min-width: 768px) {
  .advice-option {
    width: 50%;
    text-align: left;
    padding-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  .advice-option:first-child {
    margin-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  .advice-option:nth-child(2) {
    text-align: right;
  }
}

.advice-option__title {
  font-size: 15.6vw;
  line-height: 18.75vw;
  font-family: 'Ubuntu', sans-serif;
  text-transform: uppercase;
}

@media all and (min-width: 768px) {
  .advice-option__title {
    font-size: 6rem;
    line-height: 7rem;
  }
}

@media all and (min-width: 1200px) {
  .advice-option__title {
    font-size: 9vh;
    line-height: 1;
  }
}

@media all and (min-width: 1200px) and (orientation: portrait) {
  .advice-option__title {
    font-size: 8.5vw;
    line-height: 1;
  }
}

.advice-option__desc {
  font-size: 2.8vh;
  line-height: 3.35vh;
  font-size: 2.8vh;
  line-height: 3.35vh;
  letter-spacing: 0.32px;
  margin-bottom: 2.65vh;
}

@media all and (min-width: 768px) {
  .advice-option__desc {
    font-size: 2rem;
    line-height: 2.4rem;
    letter-spacing: 0.4px;
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .advice-option__desc {
    font-size: 2.95vh;
    line-height: 3.6vh;
    letter-spacing: 0.64px;
  }
}

.advice-option__btn {
  min-width: 19rem;
}

@media all and (min-width: 768px) {
  .advice-option__btn {
    min-width: 23rem;
  }
}

@media all and (min-width: 1200px) {
  .advice-option__btn {
    min-width: 29rem;
  }
}

.network {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  background-color: rgba(216, 216, 216, 0.05);
}

@media all and (max-width: 767px) {
  .network {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .network {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .network {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .network {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .network {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .network {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .network {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .network {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .network {
    padding-top: 7rem;
  }
}

@media all and (min-width: 1200px) {
  .network {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

.network__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
}

@media all and (min-width: 768px) {
  .network__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .network__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.network__title-important {
  font-weight: 600;
}

.network__img {
  display: none;
  margin: 0 auto;
}

@media all and (min-width: 1600px) {
  .network__img {
    display: block;
  }
}

img.network__img {
  display: none;
}

@media all and (max-width: 767px) {
  .network__img--sm {
    display: block;
  }
}

@media all and (min-width: 768px) {
  .network__img--sm {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .network__img--md {
    display: block;
  }
}

@media all and (min-width: 1600px) {
  .network__img--md {
    display: none;
  }
}

.network__img--active {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-animation: 1.5s show-map -0.01s ease-out;
  animation: 1.5s show-map -0.01s ease-out;
}

.ie svg.network__img {
  display: none !important;
}

.ie img.network__img {
  display: none;
  width: 816px;
}

@media all and (min-width: 1600px) {
  .ie img.network__img {
    display: block !important;
  }
}

.ie img.network__img--sm {
  width: 226px;
}

@media all and (max-width: 767px) {
  .ie img.network__img--sm {
    display: block !important;
  }
}

@media all and (min-width: 768px) {
  .ie img.network__img--sm {
    display: none !important;
  }
}

.ie img.network__img--md {
  width: 417px;
}

@media all and (min-width: 768px) {
  .ie img.network__img--md {
    display: block !important;
  }
}

@media all and (min-width: 1600px) {
  .ie img.network__img--md {
    display: none !important;
  }
}

.network__list {
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}

@media all and (min-width: 768px) {
  .network__list {
    width: 708px;
  }
}

@media all and (min-width: 1600px) {
  .network__list {
    width: 100%;
  }
}

.network__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

@media all and (min-width: 1600px) {
  .network__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: baseline;
    align-items: baseline;
  }
}

.network__item:first-child {
  left: 50%;
  bottom: 0;
  top: auto;
  -webkit-transform: translate(-50%, -20%);
  transform: translate(-50%, -20%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .network__item:first-child {
    left: 0;
    top: 0;
    bottom: auto;
    -webkit-transform: translate(30%, 35%);
    transform: translate(30%, 35%);
  }
}

@media all and (min-width: 1600px) {
  .network__item:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-transform: translate(15%, 140%);
    transform: translate(15%, 140%);
  }
}

.network__item:nth-child(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  bottom: 0;
  top: auto;
  left: 0;
  right: auto;
  -webkit-transform: translateY(-80%);
  transform: translateY(-80%);
}

@media all and (min-width: 768px) {
  .network__item:nth-child(2) {
    top: 50%;
    left: 0;
    bottom: auto;
    -webkit-transform: translate(20%, -50%);
    transform: translate(20%, -50%);
  }
}

@media all and (min-width: 1600px) {
  .network__item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-transform: translate(40%, -60%);
    transform: translate(40%, -60%);
  }
}

.network__item:nth-child(3) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  bottom: 0;
  top: auto;
  right: 0;
  left: auto;
  -webkit-transform: translate(-20%, -80%);
  transform: translate(-20%, -80%);
}

@media all and (min-width: 768px) {
  .network__item:nth-child(3) {
    left: 0;
    right: auto;
    -webkit-transform: translate(50%, -30%);
    transform: translate(50%, -30%);
  }
}

@media all and (min-width: 1600px) {
  .network__item:nth-child(3) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-transform: translate(65%, -140%);
    transform: translate(65%, -140%);
  }
}

.network__item:nth-child(4) {
  -webkit-transform: translate(10%, 75%);
  transform: translate(10%, 75%);
}

@media all and (min-width: 768px) {
  .network__item:nth-child(4) {
    right: 0;
    top: 0;
    left: auto;
    -webkit-transform: translate(-25%, 30%);
    transform: translate(-25%, 30%);
  }
}

@media all and (min-width: 1600px) {
  .network__item:nth-child(4) {
    -webkit-transform: translate(-35%, 140%);
    transform: translate(-35%, 140%);
  }
}

.network__item:nth-child(5) {
  right: 50%;
  left: auto;
  -webkit-transform: translate(50%, 30%);
  transform: translate(50%, 30%);
}

@media all and (min-width: 768px) {
  .network__item:nth-child(5) {
    right: 0;
    top: 50%;
    -webkit-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
  }
}

@media all and (min-width: 1600px) {
  .network__item:nth-child(5) {
    -webkit-transform: translate(-35%, -60%);
    transform: translate(-35%, -60%);
  }
}

.network__item:nth-child(6) {
  right: 0;
  left: auto;
  -webkit-transform: translate(-15%, 75%);
  transform: translate(-15%, 75%);
}

@media all and (min-width: 768px) {
  .network__item:nth-child(6) {
    top: auto;
    bottom: 0;
    -webkit-transform: translate(-30%, -30%);
    transform: translate(-30%, -30%);
  }
}

@media all and (min-width: 1600px) {
  .network__item:nth-child(6) {
    -webkit-transform: translate(-30%, -140%);
    transform: translate(-30%, -140%);
  }
}

@media all and (min-width: 768px) {
  .network__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media all and (min-width: 1600px) {
  .network__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.network__number {
  font-size: 3rem;
  line-height: 3rem;
  text-align: center;
  letter-spacing: -1.875px;
  color: #4A4A4A;
}

@media all and (min-width: 768px) {
  .network__number {
    font-size: 5rem;
    line-height: 5rem;
    letter-spacing: -3.125px;
  }
}

@media all and (min-width: 1600px) {
  .network__number {
    font-size: 7rem;
    line-height: 7rem;
    letter-spacing: -4.375px;
  }
}

.network__text {
  font-size: 1.1rem;
  line-height: 1.4rem;
  text-align: center;
  color: #656B6F;
}

@media all and (min-width: 768px) {
  .network__text {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

@media all and (min-width: 1600px) {
  .network__text {
    font-size: 2.4rem;
    line-height: 2.9rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}

.network-diagram {
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

@media all and (min-width: 1600px) {
  .network-diagram {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }
}

.network-diagram--active .network-diagram__line path {
  -webkit-animation: 0.5s show-scheme -0.01s ease-out forwards;
  animation: 0.5s show-scheme -0.01s ease-out forwards;
}

.ie .network-diagram--active .network-diagram__line path {
  stroke-width: 3;
}

.network-diagram--active .network__item {
  -webkit-animation: 0.5s show-scheme-text 0.49s ease-out forwards;
  animation: 0.5s show-scheme-text 0.49s ease-out forwards;
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .network-diagram--active .network__item:first-child {
    -webkit-animation: 0.5s show-scheme-text-1 0.49s ease-out forwards;
    animation: 0.5s show-scheme-text-1 0.49s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .network-diagram--active .network__item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-animation: 0.5s show-scheme-text-2 0.69s ease-out forwards;
    animation: 0.5s show-scheme-text-2 0.69s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .network-diagram--active .network__item:nth-child(3) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-animation: 0.5s show-scheme-text-3 0.89s ease-out forwards;
    animation: 0.5s show-scheme-text-3 0.89s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .network-diagram--active .network__item:nth-child(4) {
    -webkit-animation: 0.5s show-scheme-text-4 0.49s ease-out forwards;
    animation: 0.5s show-scheme-text-4 0.49s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .network-diagram--active .network__item:nth-child(5) {
    -webkit-animation: 0.5s show-scheme-text-5 0.69s ease-out forwards;
    animation: 0.5s show-scheme-text-5 0.69s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .network-diagram--active .network__item:nth-child(6) {
    -webkit-animation: 0.5s show-scheme-text-6 0.89s ease-out forwards;
    animation: 0.5s show-scheme-text-6 0.89s ease-out forwards;
  }
}

.network-diagram__line path {
  stroke-width: 0;
}

@-webkit-keyframes show-scheme {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 3;
  }
}

@keyframes show-scheme {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 3;
  }
}

@-webkit-keyframes show-scheme-text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show-scheme-text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes show-scheme-text-1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-85%, 140%);
    transform: translate(-85%, 140%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(15%, 140%);
    transform: translate(15%, 140%);
  }
}

@keyframes show-scheme-text-1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-85%, 140%);
    transform: translate(-85%, 140%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(15%, 140%);
    transform: translate(15%, 140%);
  }
}

@-webkit-keyframes show-scheme-text-2 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-60%, -60%);
    transform: translate(-60%, -60%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(40%, -60%);
    transform: translate(40%, -60%);
  }
}

@keyframes show-scheme-text-2 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-60%, -60%);
    transform: translate(-60%, -60%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(40%, -60%);
    transform: translate(40%, -60%);
  }
}

@-webkit-keyframes show-scheme-text-3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-35%, -140%);
    transform: translate(-35%, -140%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(65%, -140%);
    transform: translate(65%, -140%);
  }
}

@keyframes show-scheme-text-3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-35%, -140%);
    transform: translate(-35%, -140%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(65%, -140%);
    transform: translate(65%, -140%);
  }
}

@-webkit-keyframes show-scheme-text-4 {
  0% {
    opacity: 0;
    -webkit-transform: translate(65%, 140%);
    transform: translate(65%, 140%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-35%, 140%);
    transform: translate(-35%, 140%);
  }
}

@keyframes show-scheme-text-4 {
  0% {
    opacity: 0;
    -webkit-transform: translate(65%, 140%);
    transform: translate(65%, 140%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-35%, 140%);
    transform: translate(-35%, 140%);
  }
}

@-webkit-keyframes show-scheme-text-5 {
  0% {
    opacity: 0;
    -webkit-transform: translate(65%, -60%);
    transform: translate(65%, -60%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-35%, -60%);
    transform: translate(-35%, -60%);
  }
}

@keyframes show-scheme-text-5 {
  0% {
    opacity: 0;
    -webkit-transform: translate(65%, -60%);
    transform: translate(65%, -60%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-35%, -60%);
    transform: translate(-35%, -60%);
  }
}

@-webkit-keyframes show-scheme-text-6 {
  0% {
    opacity: 0;
    -webkit-transform: translate(70%, -140%);
    transform: translate(70%, -140%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-30%, -140%);
    transform: translate(-30%, -140%);
  }
}

@keyframes show-scheme-text-6 {
  0% {
    opacity: 0;
    -webkit-transform: translate(70%, -140%);
    transform: translate(70%, -140%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-30%, -140%);
    transform: translate(-30%, -140%);
  }
}

.reasons {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .reasons {
    padding-bottom: 4rem;
    padding-top: 5rem;
  }
}

@media all and (min-width: 1200px) {
  .reasons {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }
}

.reasons__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .reasons__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .reasons__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.reasons__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .reasons__title {
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .reasons__title {
    margin-bottom: 5rem;
  }
}

.reason-slider {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  width: 100%;
  max-width: 64rem !important;
  margin: 0 auto;
}

@media all and (max-width: 767px) {
  .reason-slider {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .reason-slider {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .reason-slider {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .reason-slider {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .reason-slider {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .reason-slider {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .reason-slider {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .reason-slider {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.reasons-nav__icon {
  width: 2.8rem;
}

@media all and (min-width: 768px) {
  .reasons-nav__icon {
    width: 4.6rem;
  }
}

@media all and (min-width: 768px) {
  .reasons-nav__icon {
    width: 4.6rem;
  }
}

.reasons-nav__progress-bar {
  width: 100%;
  height: 2px;
  background-color: rgba(155, 155, 155, 0.2);
}

.reasons-nav__progress-bar-percent {
  background: -webkit-gradient(linear, left top, right top, color-stop(6.61%, #4A90E2), color-stop(98.04%, #FF5A59));
  background: linear-gradient(90deg, #4A90E2 6.61%, #FF5A59 98.04%);
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
  transform: matrix(1, 0, 0, -1, 0, 0);
  width: 0;
  height: 100%;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}

.reasons-nav__controls {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-around;
}

@media all and (min-width: 1200px) {
  .reasons-nav__controls {
    max-width: 980px;
    margin: 0 auto;
  }
}

.reasons-nav__marker {
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50% 50%;
  background-color: #9B9B9B;
  z-index: 1;
}

.reasons-nav__control {
  padding: 1rem;
  display: block;
  position: relative;
}

@media all and (min-width: 768px) {
  .reasons-nav__control {
    padding: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .reasons-nav__control {
    padding: 3rem;
  }
}

.reasons-nav__control:active g, .reasons-nav__control--active g {
  fill: #FF5A59;
}

.reasons-nav__control:active .reasons-nav__marker, .reasons-nav__control--active .reasons-nav__marker {
  background-color: #FF5A59;
}

@media all and (min-width: 1200px) {
  .reasons-nav__control:hover g {
    fill: #FF5A59;
  }
}

.reasons-nav__control--stroke:active g, .reasons-nav__control--stroke.reasons-nav__control--active g {
  fill: none;
  stroke: #FF5A59;
}

@media all and (min-width: 1200px) {
  .reasons-nav__control--stroke:hover g {
    fill: none;
    stroke: #FF5A59;
  }
}

.reason-card {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

@media all and (max-width: 767px) {
  .reason-card {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .reason-card {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .reason-card {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .reason-card {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .reason-card {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .reason-card {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .reason-card {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .reason-card {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .reason-card {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

@media all and (min-width: 1200px) {
  .reason-card {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }
}

.reason-card__title {
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.114286px;
  text-transform: uppercase;
  color: #FF5A59;
  margin-bottom: 1.5rem;
}

@media all and (min-width: 768px) {
  .reason-card__title {
    font-size: 2.4rem;
    line-height: 2.5rem;
    letter-spacing: 0.171429px;
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .reason-card__title {
    font-size: 3.2rem;
    line-height: 2.5rem;
    letter-spacing: 0.228572px;
  }
}

.reason-card__text {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #656B6F;
  letter-spacing: 0.164706px;
  margin-bottom: 1.5rem;
}

@media all and (min-width: 768px) {
  .reason-card__text {
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: 0.211765px;
    margin-bottom: 3.5rem;
  }
}

@media all and (min-width: 1200px) {
  .reason-card__text {
    font-size: 2rem;
    line-height: 3.3rem;
    letter-spacing: 0.235294px;
    margin-bottom: 3rem;
  }
}

.reason-card__btn {
  font-size: 1.6rem;
  line-height: 2.5rem;
  min-width: 19.2rem;
  padding: 0.65rem 1rem;
  letter-spacing: 0.2px;
}

.reason-card__btn:active svg path, .reason-card__btn--active svg path {
  fill: #fff;
}

@media all and (min-width: 768px) {
  .reason-card__btn {
    font-size: 1.8rem;
    line-height: 2.5rem;
    min-width: 29rem;
    letter-spacing: 0.225px;
    padding: 0.9rem 1rem;
  }
}

@media all and (min-width: 1200px) {
  .reason-card__btn {
    padding: 1.4rem 1rem;
  }

  .reason-card__btn:hover svg path {
    fill: #fff;
  }
}

.articles {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  background-color: rgba(216, 216, 216, 0.05);
}

@media all and (max-width: 767px) {
  .articles {
    max-width: 100%;
  }

  .articles__scrollbar {
    display: block;
  }

}

@media all and (min-width: 768px) {
  .articles {
    max-width: 100%;
  }

  .articles__scrollbar {
    display: block;
  }
}

@media all and (min-width: 1200px) {
  .articles {
    max-width: 100%;
  }

  .articles__scrollbar {
    display: block;
  }

}

@media all and (min-width: 1600px) {
  .articles {
    max-width: 1600px;
  }

  .articles__scrollbar {
    display: block;
  }

}

@media all and (max-width: 767px) {
  .articles {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .articles {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .articles {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .articles {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .articles {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

@media all and (min-width: 1200px) {
  .articles {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
}

.articles__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row;
}

.articles__item {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .articles__item {
    width: 50%;
  }
}

@media all and (min-width: 1200px) {
  .articles__item {
    width: 33.333%;
  }
}

.articles__slider {
  padding-top: 1.5rem;
}

@media all and (min-width: 768px) {
  .articles__slider {
    padding-top: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .articles__slider {
    padding-top: 6rem;
  }
}

.article {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.article__img {
  display: block;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.article__slide-link {
  display: flex;
  height: 100%;
  min-height: 100%;
}

/*.article__img-wrap {*/
/*  display: -webkit-box;*/
/*  display: flex;*/
/*  -webkit-box-pack: center;*/
/*  justify-content: center;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*}*/

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

.article__content {
  border: 1px solid #F2F2F2;
  border-radius: 0 0 8px 8px;
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  margin-top: -1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media all and (min-width: 768px) {
  .article__content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .article__content {
    padding: 3rem 2rem 2.5rem 2rem;
  }
}

.article__desc {
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #FF5A59;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

@media all and (min-width: 1200px) {
  .article__desc {
    font-size: 1.4rem;
    line-height: 1.8rem;
    letter-spacing: 1.16667px;
    margin-bottom: 2rem;
  }
}

.article__desc--secondary {
  color: #4A90E2;
}

.article__title {
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .article__title {
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .article__title {
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 1rem;
  }
}

.article__btn {
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2rem;
  font-family: 'Montserrat', sans-serif;
  min-width: 14.4rem;
  padding: 0.4rem 1rem;
  margin-top: auto;
}

@media all and (min-width: 768px) {
  .article__btn {
    min-width: 15.2rem;
  }
}

@media all and (min-width: 1200px) {
  .article__btn {
    min-width: 14.7rem;
    padding: 0.9rem 1rem;
  }
}

.map {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

@media all and (max-width: 767px) {
  .map {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .map {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .map {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .map {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .map {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .map {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .map {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .map {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .map {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media all and (min-width: 1200px) {
  .map {
    padding-top: 9rem;
    padding-bottom: 11rem;
  }
}

.map__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media all and (min-width: 768px) {
  .map__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .map__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.map__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .map__title {
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .map__title {
    margin-bottom: 5rem;
  }
}

.map__map {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 59rem;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.map__map__no_gray {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  margin: 0 auto;
  display: block;
}

@media all and (min-width: 1200px) {
  .map__map {
    max-width: 120rem;
  }
}

.map__map--active {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-animation: 1.5s show-map -0.01s ease-out;
  animation: 1.5s show-map -0.01s ease-out;
}

@-webkit-keyframes show-map {
  0% {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  25% {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
  60% {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  100% {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}

@keyframes show-map {
  0% {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  25% {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
  60% {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  100% {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}

.partners {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

@media all and (max-width: 767px) {
  .partners {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .partners {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .partners {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .partners {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .partners {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .partners {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .partners {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .partners {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .partners {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}

@media all and (min-width: 1200px) {
  .partners {
    padding-top: 10rem;
    padding-bottom: 20rem;
  }
}

.partners__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media all and (min-width: 768px) {
  .partners__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .partners__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.partners__title-important {
  font-weight: 400;
}

@media all and (min-width: 768px) {
  .partners__title {
    margin-bottom: 2.5rem;
  }
}

@media all and (min-width: 1200px) {
  .partners__title {
    margin-bottom: 5rem;
  }
}

.partners__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.partners__img {
  max-height: 4rem;
  max-width: 100%;
}

.partners__img.--circle {
  max-height: 200px;
}


@media all and (min-width: 1200px) {
  .partners__img {
    height: auto;
  }
}

@media all and (min-width: 1600px) {
  .partners__img {
    height: auto;
    max-width: 20rem;
    max-height: 6rem;
  }
}

.partners__item {
  padding: 0 0.5rem;
}

@media all and (min-width: 1200px) {
  .partners__item {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: -webkit-filter 0.2s;
    transition: -webkit-filter 0.2s;
    transition: filter 0.2s;
    transition: filter 0.2s, -webkit-filter 0.2s;
  }

  .partners__item:hover {
    -webkit-filter: none;
    filter: none;
    -webkit-transition: -webkit-filter 0.2s;
    transition: -webkit-filter 0.2s;
    transition: filter 0.2s;
    transition: filter 0.2s, -webkit-filter 0.2s;
  }
}

.partners__list .slick-slide {
  width: 120px;
}

@media all and (min-width: 1200px) {
  .partners__list .slick-slide {
    width: 200px;
  }
}

.partners__item {
  text-align: center;
}

.partners__img {
  margin: 0 auto;
}

.features {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 1430px;
}

@media all and (max-width: 767px) {
  .features {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .features {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .features {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .features {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .features {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .features {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .features {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .features {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .features {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
    max-width: 1430px;
  }
}

@media all and (min-width: 1200px) {
  .features {
    max-width: 1430px;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.features__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .features__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .features__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.features__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .features__title {
    margin-bottom: 2.5rem;
  }
}

@media all and (min-width: 1200px) {
  .features__title {
    margin-bottom: 7.5rem;
  }
}

.features__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: normal;
  align-items: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  display: flex;
}

@media all and (max-width: 767px) {
  .features__list {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 768px) {
  .features__list {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .features__list {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

@media all and (min-width: 1600px) {
  .features__list {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}

.features__item {
  width: 100%;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: flex;
}

@media all and (max-width: 767px) {
  .features__item {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) {
  .features__item {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .features__item {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 1600px) {
  .features__item {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .features__item {
    width: 50%;
  }
}

@media all and (min-width: 1200px) {
  .features__item {
    width: 33.333%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
  }
}

.features__btn {
  display: block;
  margin: 0 auto;
  width: 19.2rem;
}

@media all and (min-width: 768px) {
  .features__btn {
    width: 23rem;
  }
}

@media all and (min-width: 1200px) {
  .features__btn {
    width: 29rem;
  }
}

.feature {
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  -webkit-box-flex: 1;
  flex: 1;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14);
}

@media all and (min-width: 768px) {
  .feature {
    padding: 2rem 0.5rem 2rem 3rem;
    text-align: left;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14);
  }
}

@media all and (min-width: 1200px) {
  .feature {
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.14);
    padding: 2.5rem 3rem 3rem 5rem;
  }
}

.feature__icon {
  margin-bottom: 0.5rem;
  width: 4.4rem;
  height: 4.4rem;
}

@media all and (min-width: 768px) {
  .feature__icon {
    width: 5.3rem;
    height: 5.3rem;
    margin-bottom: 1rem;
  }
}

@media all and (min-width: 1200px) {
  .feature__icon {
    width: 6.8rem;
    height: 6.8rem;
    margin-bottom: 1rem;
  }
}

.feature__title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  line-height: 1.9rem;
  font-style: normal;
  font-weight: normal;
  color: #2C2E30;
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .feature__title {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

@media all and (min-width: 1200px) {
  .feature__title {
    font-size: 2.4rem;
    line-height: 3.4rem;
    margin-bottom: 1.5rem;
  }
}

.feature__text {
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #54565A;
}

@media all and (min-width: 1200px) {
  .feature__text {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}

.payment-methods {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}

@media all and (max-width: 767px) {
  .payment-methods {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .payment-methods {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .payment-methods {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .payment-methods {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .payment-methods {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .payment-methods {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .payment-methods {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .payment-methods {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .payment-methods {
    padding-bottom: 10rem;
  }
}

@media all and (min-width: 1200px) {
  .payment-methods {
    padding-top: 4rem;
    max-width: 1280px;
    padding-bottom: 20rem;
  }
}

.payment-methods__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .payment-methods__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .payment-methods__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.payment-methods__title-important {
  font-weight: 600;
}

@media all and (max-width: 767px) {
  .payment-methods__title {
    max-width: 28rem;
  }
}

@media all and (min-width: 768px) {
  .payment-methods__title {
    margin-bottom: 4rem;
  }
}

@media all and (min-width: 1200px) {
  .payment-methods__title {
    margin-bottom: 8rem;
  }
}

.payment-methods__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
  -webkit-box-align: center;
  align-items: center;
}

@media all and (max-width: 767px) {
  .payment-methods__list {
    padding: 0 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .payment-methods__list {
    padding: 0 3rem;
    margin-bottom: 4rem;
  }
}

.payment-methods__img {
  max-width: 6.9rem;
}

@media all and (min-width: 768px) {
  .payment-methods__img {
    max-width: 17rem;
  }
}

@media all and (min-width: 1200px) {
  .payment-methods__img {
    max-width: 29rem;
  }
}

.payment-methods__btn {
  display: block;
  margin: 0 auto;
  width: 19.2rem;
}

@media all and (min-width: 768px) {
  .payment-methods__btn {
    width: 23rem;
  }
}

@media all and (min-width: 1200px) {
  .payment-methods__btn {
    width: 29rem;
  }
}

.pricing-models {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media all and (max-width: 767px) {
  .pricing-models {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .pricing-models {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .pricing-models {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .pricing-models {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .pricing-models {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .pricing-models {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .pricing-models {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models {
    padding-top: 11rem;
    padding-bottom: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models--advertisers {
    padding-top: 13rem;
  }
}

.pricing-models--advertisers .pricing-model__title {
  color: #4A90E2;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.pricing-models--advertisers .pricing-models__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
}

.pricing-models--advertisers .pricing-model__icon {
  width: 7rem;
  height: 4.3rem;
}

@media all and (min-width: 768px) {
  .pricing-models--advertisers .pricing-models__title {
    margin-bottom: 4.5rem;
  }

  .pricing-models--advertisers .pricing-model__icon {
    width: 13rem;
    height: 8rem;
    margin-bottom: 1rem;
  }

  .pricing-models--advertisers .pricing-models__list {
    padding: 0;
  }

  .pricing-models--advertisers .pricing-model__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .pricing-models--advertisers .pricing-models__list {
    margin-bottom: 1rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models--advertisers .pricing-models__title {
    margin-bottom: 7.5rem;
  }

  .pricing-models--advertisers .pricing-model__icon {
    width: 14.6rem;
    height: 9.2rem;
    margin-bottom: 4.5rem;
  }

  .pricing-models--advertisers .pricing-models__list {
    padding: 0 10rem;
  }

  .pricing-models--advertisers .pricing-model__title {
    font-size: 3.2rem;
    line-height: 3.9rem;
  }
}

.pricing-models__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .pricing-models__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.pricing-models__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .pricing-models__title {
    margin-bottom: 8rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models__title {
    margin-bottom: 7.5rem;
  }
}

@media all and (min-width: 768px) {
  .pricing-models__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0 4.5rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models__list {
    max-width: 1166px;
    margin: 0 auto;
  }
}

.pricing-models__item {
  margin-bottom: 2.5rem;
}

@media all and (min-width: 1200px) {
  .pricing-models__item {
    margin-bottom: 10rem;
  }
}

.pricing-models__btn {
  display: block;
  margin: 0 auto;
  width: 19.2rem;
}

@media all and (min-width: 768px) {
  .pricing-models__btn {
    width: 23rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-models__btn {
    width: 29rem;
  }
}

.pricing-model {
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

.pricing-model__icon {
  width: 9.5rem;
  height: 6rem;
  margin-bottom: 0.5rem;
}

@media all and (min-width: 768px) {
  .pricing-model__icon {
    width: 13rem;
    height: 8.2rem;
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-model__icon {
    width: 14.6rem;
    height: 9.2rem;
    margin-bottom: 4.5rem;
  }
}

.pricing-model__title {
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #FF5A59;
  max-width: 16rem;
}

.pricing-model__title--secondary {
  color: #4A90E2;
}

@media all and (min-width: 768px) {
  .pricing-model__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-model__title {
    font-size: 3.2rem;
    line-height: 4.4rem;
  }
}

@media all and (min-width: 768px) {
  .pricing-model__title {
    max-width: 16rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-model__title {
    max-width: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    width: 200%;
  }
}

.pricing-model__comment {
  font-size: 0.9rem;
  line-height: 1.1rem;
  display: block;
}

@media all and (min-width: 768px) {
  .pricing-model__comment {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}

@media all and (min-width: 1200px) {
  .pricing-model__comment {
    font-size: 2.2rem;
    line-height: 4rem;
  }
}

.formats {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

@media all and (max-width: 767px) {
  .formats {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .formats {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .formats {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .formats {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .formats {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .formats {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .formats {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .formats {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .formats {
    padding-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .formats {
    padding-top: 5.5rem;
    padding-bottom: 5rem;
    max-width: 1280px;
  }
}

.formats__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .formats__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .formats__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.formats__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .formats__title {
    margin-bottom: 4rem;
  }
}

@media all and (min-width: 1200px) {
  .formats__title {
    margin-bottom: 12.5rem;
  }
}

.formats__item {
  margin-bottom: 3rem;
}

@media all and (min-width: 768px) {
  .formats__item {
    margin-bottom: 5rem;
  }

  .formats__item:nth-child(2n) .format {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }

  .formats__item:nth-child(2n) .format__content {
    padding-left: 0;
  }
}

@media all and (min-width: 1200px) {
  .formats__item {
    margin-bottom: 9rem;
  }
}

.format {
  text-align: center;
  position: relative;
}

@media all and (min-width: 768px) {
  .format {
    display: -webkit-box;
    display: flex;
  }
}

@media all and (min-width: 1200px) {
  .format {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

.format--inactive {
  opacity: 0.35;
}

.format__title {
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #FF5A59;
  margin-bottom: 1.5rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

.format__title--secondary {
  color: #4A90E2;
}

@media all and (min-width: 768px) {
  .format__title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

@media all and (min-width: 1200px) {
  .format__title {
    font-size: 3.2rem;
    line-height: 4.4rem;
  }
}

@media all and (min-width: 768px) {
  .format__title {
    position: relative;
    -webkit-transform: none;
    transform: none;
    left: auto;
    top: auto;
    margin-bottom: 1rem;
  }
}

@media all and (min-width: 1200px) {
  .format__title {
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 768px) {
  .format__content {
    width: 50%;
    text-align: left;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 1rem;
  }
}

@media all and (min-width: 1200px) {
  .format__content {
    width: 60.5rem;
  }
}

.format__img {
  width: 14.2rem;
  height: 12rem;
  margin-bottom: 1rem;
  margin-top: 3.2rem;
}

@media all and (min-width: 768px) {
  .format__img {
    width: 50%;
    height: auto;
    min-height: 30.2rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media all and (min-width: 1200px) {
  .format__img {
    width: 44.5rem;
    height: 38.5rem;
  }
}

.format__text {
  color: #4B4B4B;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  line-height: 2.1rem;
}

@media all and (min-width: 768px) {
  .format__text {
    font-size: 1.6rem;
    line-height: 2.7rem;
  }
}

@media all and (min-width: 1200px) {
  .format__text {
    font-size: 2.4rem;
    line-height: 3.1rem;
  }
}

.format__desc {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #4B4B4B;
  margin-bottom: 0.5rem;
}

@media all and (min-width: 1200px) {
  .format__desc {
    font-size: 2.1rem;
    line-height: 2.6rem;
  }
}

.format__comment {
  font-size: 0.9rem;
  line-height: 1.1rem;
}

@media all and (min-width: 768px) {
  .format__comment {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}

@media all and (min-width: 1200px) {
  .format__comment {
    font-size: 2.2rem;
    line-height: 4rem;
  }
}

.targeting {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

@media all and (max-width: 767px) {
  .targeting {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .targeting {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .targeting {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .targeting {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .targeting {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .targeting {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .targeting {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .targeting {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media all and (min-width: 1200px) {
  .targeting {
    padding-top: 5.5rem;
    padding-bottom: 5rem;
    max-width: 1280px;
    padding-top: 0;
  }
}

.targeting__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .targeting__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.targeting__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .targeting__title {
    margin-bottom: 1rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting__title {
    margin-bottom: 8rem;
  }
}

.targeting__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: normal;
  align-items: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  display: flex;
  margin: 0 auto;
  max-width: 660px;
  width: 100%;
}

@media all and (max-width: 767px) {
  .targeting__list {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
  }
}

@media all and (min-width: 768px) {
  .targeting__list {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting__list {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

@media all and (min-width: 1600px) {
  .targeting__list {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting__list {
    max-width: 1280px;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.targeting__item {
  width: 50%;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: flex;
}

@media all and (max-width: 767px) {
  .targeting__item {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
}

@media all and (min-width: 768px) {
  .targeting__item {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting__item {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 1600px) {
  .targeting__item {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) {
  .targeting__item {
    width: 33.333%;
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting__item {
    width: 25%;
  }
}

.targeting-content {
  border-radius: 4px;
  padding-top: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex: 1;
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}

@media all and (min-width: 768px) {
  .targeting-content {
    padding-top: 2rem;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    padding-bottom: 1rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  }
}

.targeting-content__title {
  font-size: 1.4rem;
  line-height: 3.2rem;
}

@media all and (min-width: 768px) {
  .targeting-content__title {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting-content__title {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

.targeting-content__icon {
  width: auto;
  height: 4.4rem;
  max-width: 6.6rem;
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .targeting-content__icon {
    height: 6.2rem;
    max-width: 9rem;
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .targeting-content__icon {
    height: 8.8rem;
    max-width: 13.6rem;
    margin-bottom: 3rem;
  }
}

.team {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-bottom: 6rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding-top: 0.5rem;
}

@media all and (max-width: 767px) {
  .team {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .team {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .team {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .team {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .team {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .team {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .team {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .team {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .team {
    padding-bottom: 9rem;
    padding-top: 3rem;
  }
}

.team__title {
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #4B4B4B;
  text-align: center;
  text-transform: none;
  font-weight: bold;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .team__title {
    font-size: 3.6rem;
    line-height: 5.5rem;
    letter-spacing: -1.38461px;
    margin-bottom: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .team__title {
    font-size: 5.8rem;
    line-height: 6rem;
    letter-spacing: -2.23077px;
    margin-bottom: 4rem;
  }
}

.team__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  -webkit-box-align: normal;
  align-items: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  overflow: hidden;
  padding-top: 1rem;
  justify-content: center;
}

.team__item {
  width: 100%;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: flex;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media all and (min-width: 768px) {
  .team__item {
    margin-bottom: 1rem;
  }

  .team__item:nth-child(1), .team__item:nth-child(2), .team__item:nth-child(3), .team__item:nth-child(4) {
    min-height: 40.5rem;
  }
}

@media all and (min-width: 1200px) {
  .team__item {
    min-height: 40.5rem;
    margin-bottom: 2rem;
  }
}

.team__item--active {
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}

@media all and (min-width: 768px) {
  .team__item--active {
    width: 50%;
  }
}

@media all and (min-width: 1200px) {
  .team__item--active {
    width: 50%;
  }
}

.team__content {
  width: 100%;
  display: -webkit-box;
  display: flex;
}

@media all and (max-width: 767px) {
  .team__content {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) {
  .team__content {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .team__content {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 1600px) {
  .team__content {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.team__tags {
  display: none;
}

@media all and (min-width: 1200px) {
  .team__tags {
    display: -webkit-box;
    display: flex;
    margin-bottom: 5rem;
  }
}

.team__menu {
  width: 100%;
  max-width: 35rem;
  margin-bottom: 1rem;
  position: relative;
}

@media all and (min-width: 768px) {
  .team__menu {
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .team__menu {
    display: none;
  }
}

.teammate {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14221);
  border-radius: 5px;
  padding: 2rem;
  color: #4B4B4B;
  min-height: 25rem;
  -webkit-box-flex: 1;
  flex: 1;
}

@media all and (min-width: 1200px) {
  .teammate {
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.14221);
  }
}

.teammate--female .teammate__position {
  color: #FF5A59;
}

.teammate--join .teammate__desc {
  color: #656B6F;
  margin-bottom: 1rem;
}

.teammate--join .teammate__title {
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 2.54545px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.teammate--join a {
  color: #FF5A59;
  display: block;
}

.teammate__item {
  margin-bottom: 1.5rem;
}

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

.teammate__avatar {
  align-items: center;
  justify-content: center;
  display: flex;
  margin-bottom: 2rem;
}

.teammate__avatar .avatar {
  border-radius: 50%;
  box-shadow: rgba(74, 144, 226, 0.45) 0 25px 20px -20px;
  width: 160px;
  height: 160px;
}

.teammate__title {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.teammate__position {
  font-size: 1.4rem;
  line-height: 1.7rem;
  margin-bottom: 1.7rem;
  color: #4A90E2;
  text-align: center;
}

.teammate__subtitle {
  font-size: 1.4rem;
  line-height: 1.8rem;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: .5rem;
}

.teammate__desc {
  display: block;
  font-size: 1.4rem;
  line-height: 1.7rem;
}

.team-select {
  position: relative;
  z-index: 1;
}

.team-select:before {
  content: '';
  position: absolute;
  top: calc(50% - .7rem);
  right: 1.3rem;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #C5D0DE;
  border-top: 2px solid #C5D0DE;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .team-select:before {
    right: 2rem;
  }
}

.team-select select {
  font-size: 1.2rem;
  line-height: 2rem;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  letter-spacing: 0.0327273px;
  color: #9B9B9B;
  padding: 1rem;
  width: 100%;
  outline: none;
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .team-select select {
    padding: 1rem 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .team-select select {
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: 0.0381818px;
  }
}

.team-dropdown {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  width: 100%;
  bottom: 3px;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  max-height: 0;
}

.team-dropdown--active {
  max-height: 1000px;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.team-dropdown__item:first-child .team-dropdown__link {
  border-top: none;
}

.team-dropdown__link {
  color: #354052;
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 1rem;
  border-top: 1px solid #E2E7EE;
  display: block;
  letter-spacing: 0.0327273px;
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .team-dropdown__link {
    padding: 1rem 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .team-dropdown__link {
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: 0.0381818px;
  }
}

.team-dropdown__link:active {
  background: rgba(255, 90, 89, 0.0690013);
}

.tags {
  display: -webkit-box;
  display: flex;
}

.tags__link {
  border-radius: 14.5px;
  color: #656B6F;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;
  padding: 0.2rem 2rem;
  letter-spacing: 1.4px;
  min-width: 10.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
}

.tags__link:active {
  color: #fff;
  background-color: #FF5A59;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.tags__link--active {
  background-color: #FF5A59;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media all and (min-width: 1200px) {
  .tags__link--active:hover {
    color: #fff;
    background-color: #DD2B2B;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}

.tags__link--start {
  text-transform: uppercase;
}

.faq {
  color: #4A4A4A;
  width: 100%;
}

.faq__wrap {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media all and (max-width: 767px) {
  .faq__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .faq__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .faq__wrap {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .faq__wrap {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .faq__wrap {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .faq__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .faq__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .faq__wrap {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .faq__wrap {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .faq__wrap {
    padding-top: 7rem;
    padding-bottom: 7rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.faq__content {
  max-width: 100%;
}

@media all and (min-width: 1200px) {
  .faq__content {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    align-items: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    display: flex;
    flex-wrap: nowrap;
  }
}

@media all and (min-width: 1200px) and (max-width: 767px) {
  .faq__content {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 768px) {
  .faq__content {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 1200px) {
  .faq__content {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 1600px) {
  .faq__content {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .faq__aside {
    width: 32rem;
  }
}

@media all and (min-width: 1200px) and (max-width: 767px) {
  .faq__aside {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 768px) {
  .faq__aside {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 1200px) {
  .faq__aside {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 1600px) {
  .faq__aside {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .faq__main {
    width: calc(100% - 32rem);
  }
}

@media all and (min-width: 1200px) and (max-width: 767px) {
  .faq__main {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 768px) {
  .faq__main {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 1200px) {
  .faq__main {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 1200px) and (min-width: 1600px) {
  .faq__main {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.faq__item {
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .faq__item {
    margin-bottom: 3rem;
  }
}

.faq-aside {
  margin-bottom: 3rem;
}

.faq-aside__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

@media all and (min-width: 768px) {
  .faq-aside__title {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .faq-aside__title {
    font-size: 1.6rem;
    line-height: 3rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
}

.faq-aside__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 21.6rem;
  background-color: #4A4A4A;
}

@media all and (min-width: 768px) {
  .faq-aside__title:after {
    width: 29rem;
  }
}

@media all and (min-width: 1200px) {
  .faq-aside__title:after {
    width: 100%;
  }
}

.faq-aside p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .faq-aside p {
    font-size: 1.4rem;
    line-height: 1.9rem;
  }
}

@media all and (min-width: 1200px) {
  .faq-aside p {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}

.faq-item__title {
  font-size: 1.4rem;
  line-height: 1.7rem;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

@media all and (min-width: 768px) {
  .faq-item__title {
    font-size: 2.1rem;
    line-height: 2.6rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: none;
  }
}

@media all and (min-width: 1200px) {
  .faq-item__title {
    font-size: 2.4rem;
    line-height: 3rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
}

.faq-item__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #4A4A4A;
}

.faq-item__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.faq-item__num-list {
  list-style-type: decimal;
  padding: 0 0 0 1em;
  margin: 1em 0;
}

.faq-item__num-list li {
  margin: 1em 0;
}

.faq-item__paragraph {
  margin-bottom: 1em;
}

@media all and (min-width: 768px) {
  .faq-item__subtitle {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
}

@media all and (min-width: 1200px) {
  .faq-item__subtitle {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }
}

.faq-item__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: normal;
  align-items: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
}

@media all and (max-width: 767px) {
  .faq-item__content {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 768px) {
  .faq-item__content {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .faq-item__content {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

@media all and (min-width: 1600px) {
  .faq-item__content {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}

.faq-item__column {
  width: 100%;
}

@media all and (max-width: 767px) {
  .faq-item__column {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) {
  .faq-item__column {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 1200px) {
  .faq-item__column {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 1600px) {
  .faq-item__column {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .faq-item__column {
    width: 50%;
  }
}

.faq-item__column--block {
  width: 100%;
}

.faq-item__img {
  max-width: 100%;
  margin-bottom: 2rem;
  border: solid 4px #E3E6ED;
  border-radius: 16px
}

@media all and (min-width: 768px) {
  .faq-item__column--block {
    width: 100%;
  }
}

@media all and (min-width: 768px) {
  .faq-item__img {
    margin-bottom: 3rem;
  }
}

.faq-item__text {
  margin-bottom: 1.7rem;
}

@media all and (min-width: 768px) {
  .faq-item__text {
    margin-bottom: 2rem;
  }
}

.faq-item__text--important {
  font-weight: bold;
}

.faq-item p, .faq-item ul, .faq-item pre, .faq-item__num-list li {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

@media all and (min-width: 768px) {
  .faq-item p, .faq-item ul, .faq-item pre, .faq-item__num-list li {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
}

@media all and (min-width: 1200px) {
  .faq-item p, .faq-item ul, .faq-item pre, .faq-item__num-list li {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }
}

.faq-item a {
  font-weight: normal;
}

.faq-text-secondary {
  color: #9B9B9B;
}

.faq-link {
  color: #FF5A59;
}

code[class*="language-"],
pre[class*="language-"] {
  color: #ccc;
  background: none;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  text-align: left;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  white-space: pre;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
  padding: 1rem;
  margin: .5rem 0;
  overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #2d2d2d;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: .1rem;
  border-radius: .3rem;
  white-space: normal;
}

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #999;
}

.token.punctuation {
  color: #ccc;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
  color: #e2777a;
}

.token.function-name {
  color: #6196cc;
}

.token.boolean,
.token.number,
.token.function {
  color: #f08d49;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
  color: #f8c555;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
  color: #cc99cd;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
  color: #7ec699;
}

.token.operator,
.token.entity,
.token.url {
  color: #67cdcc;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.inserted {
  color: green;
}

div.code-toolbar {
  position: relative;
  margin-bottom: 2rem;
}

div.code-toolbar > .toolbar {
  position: absolute;
  top: .3rem;
  right: .2rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

div.code-toolbar:hover > .toolbar {
  opacity: 1;
}

div.code-toolbar > .toolbar .toolbar-item {
  display: inline-block;
}

div.code-toolbar > .toolbar a {
  cursor: pointer;
}

div.code-toolbar > .toolbar button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
}

div.code-toolbar > .toolbar a,
div.code-toolbar > .toolbar button,
div.code-toolbar > .toolbar span {
  color: #bbb;
  font-size: .8rem;
  padding: 0 .5rem;
  background: #f5f2f0;
  background: rgba(224, 224, 224, 0.2);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: .5rem;
}

div.code-toolbar > .toolbar a:hover,
div.code-toolbar > .toolbar a:focus,
div.code-toolbar > .toolbar button:hover,
div.code-toolbar > .toolbar button:focus,
div.code-toolbar > .toolbar span:hover,
div.code-toolbar > .toolbar span:focus {
  color: inherit;
  text-decoration: none;
}

.login {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .login {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .login {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .login {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .login {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .login {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .login {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .login {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .login {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .login {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media all and (min-width: 1200px) {
  .login {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
}

.login--register {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media all and (min-width: 768px) {
  .login--register {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}

@media all and (min-width: 1200px) {
  .login--register {
    padding-top: 9.5rem;
    padding-bottom: 10rem;
  }
}

.login--register .login__title {
  margin-bottom: 1.5rem;
}

@media all and (min-width: 768px) {
  .login--register .login__title {
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .login--register .login__title {
    margin-bottom: 3.5rem;
  }
}

.login__wrap {
  width: 100%;
  max-width: 35rem;
}

@media all and (min-width: 1200px) {
  .login__wrap {
    max-width: 40rem;
  }
}

.login__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 3rem;
}

@media all and (min-width: 768px) {
  .login__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .login__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.login__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .login__title {
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .login__title {
    font-size: 3.8rem;
    line-height: 4.6rem;
    letter-spacing: 0.285px;
    margin-bottom: 3.5rem;
  }
}

.login__forgot {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  letter-spacing: 0.105px;
  text-align: center;
  padding: 0.5rem;
}

@media all and (min-width: 1200px) {
  .login__forgot {
    padding: 1rem;
  }
}

.login__forgot a {
  color: rgba(155, 155, 155, 0.5);
}

.login__forgot a:active {
  color: #9b9b9b;
}

@media all and (min-width: 1200px) {
  .login__forgot a:hover {
    color: #9b9b9b;
  }
}

.login-form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .login-form--register .login-form__input {
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 768px) {
  .login-form--register .login-form__input {
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 768px) {
  .login-form--register .login-form__label {
    margin-bottom: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .login-form--register .login-form__label {
    margin-bottom: 3.5rem;
  }
}

.login-form__input {
  margin-bottom: 1.5rem;
  position: relative;
}

.login-form__input input {
  width: 100%;
}

@media all and (min-width: 1200px) {
  .login-form__input {
    margin-bottom: 4rem;
  }
}

.login-form__btn {
  margin-bottom: 1.5rem;
}

@media all and (min-width: 768px) {
  .login-form__btn {
    width: 23rem;
    padding: 0.75rem 1rem;
    margin: 1.5rem auto;
    font-size: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .login-form__btn {
    width: 29rem;
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 1.5rem 1rem;
  }
}

.login-form__label {
  margin: 0 auto;
  margin-bottom: 2rem;
}

.login-form__label a {
  text-decoration: underline;
  padding: 0 0.5rem;
}

.login-form__label a:active {
  text-decoration: none;
}

@media all and (min-width: 1200px) {
  .login-form__label a:hover {
    text-decoration: none;
  }
}

.login-form-type {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .login-form-type {
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .login-form-type {
    margin-bottom: 4rem;
  }
}

.register__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
}

@media all and (min-width: 768px) {
  .register__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .register__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.register__title-important {
  font-weight: 600;
}

.register-form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.contacts {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 5.5rem;
  text-align: center;
}

@media all and (max-width: 767px) {
  .contacts {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .contacts {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .contacts {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .contacts {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .contacts {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .contacts {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .contacts {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    text-align: left;
    padding-top: 15rem;
    padding-bottom: 17rem;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

.contacts__title {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #2C2C2C;
  text-transform: none;
}

@media all and (min-width: 768px) {
  .contacts__title {
    font-size: 2.4rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }
}

.contacts__desc {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #9B9B9B;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .contacts__desc {
    font-size: 1.8rem;
    line-height: 2.3rem;
    margin-bottom: 3rem;
  }
}

.contacts__sub-title {
  display: block;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #2C2C2C;
  margin-bottom: 1rem;
  letter-spacing: 0.401333px;
  text-transform: uppercase;
}

.contacts__sub-title.--link {
  cursor: pointer;
  color: #FF5A59;
  margin-bottom: 2rem;
}


@media all and (min-width: 768px) {
  .contacts__sub-title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.516px;
    margin-bottom: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts__sub-title {
    margin-bottom: 1rem;
  }
}

.contacts__text {
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #9B9B9B;
  margin-bottom: 2.2rem;
}

@media all and (min-width: 768px) {
  .contacts__text {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts__text {
    font-size: 1.7rem;
    line-height: 2.1rem;
  }
}

.contacts__text a {
  color: #9B9B9B;
}

.contacts__content {
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 59rem;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .contacts__content {
    padding-bottom: 7rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts__content {
    width: 37.5%;
    max-width: none;
    padding-top: 0;
    margin: 0;
    padding-bottom: 0;
  }
}

.contacts__form {
  width: 100%;
  max-width: 59rem;
  margin: 0 auto;
}

@media all and (min-width: 1200px) {
  .contacts__form {
    max-width: none;
    width: 41%;
    margin: 0;
  }
}

.contacts-form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .contacts-form {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: normal;
    align-items: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}

.contacts-form__title {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #2C2C2C;
  text-transform: none;
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .contacts-form__title {
    font-size: 2.4rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 768px) {
  .contacts-form__title {
    margin-bottom: 1rem;
    width: 100%;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form__title {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form__title {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form__title {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form__title {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts-form__title {
    margin-bottom: 2rem;
  }
}

.contacts-form__desc {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #9B9B9B;
  margin-bottom: 2rem;
  margin-bottom: 1.5rem;
}

@media all and (min-width: 768px) {
  .contacts-form__desc {
    font-size: 1.8rem;
    line-height: 2.3rem;
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 768px) {
  .contacts-form__desc {
    width: 100%;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form__desc {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form__desc {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form__desc {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form__desc {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts-form__desc {
    margin-bottom: 1.5rem;
  }
}

.contacts-form__btn {
  text-transform: uppercase;
}

.contacts-form__input {
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .contacts-form__input {
    width: 100%;
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form__input {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form__input {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form__input {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form__input {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .contacts-form__input--name, .contacts-form__input--email {
    width: 50%;
  }
}

.contacts-form__input input {
  width: 100%;
}

.contacts-form__textarea {
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .contacts-form__textarea {
    width: 100%;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form__textarea {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form__textarea {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form__textarea {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form__textarea {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts-form__textarea {
    margin-bottom: 3rem;
  }
}

.contacts-form__textarea textarea {
  width: 100%;
}

@media all and (min-width: 1200px) {
  .contacts-form__textarea textarea {
    height: 10.2rem;
  }
}

@media all and (min-width: 768px) {
  .contacts-form__checkbox {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form__checkbox {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form__checkbox {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form__checkbox {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form__checkbox {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts-form__checkbox {
    width: 50%;
  }
}

.contacts-form__captcha {
  display: block;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .contacts-form__captcha {
    width: 100%;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form__captcha {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form__captcha {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form__captcha {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form__captcha {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .contacts-form__captcha img {
    display: block;
    width: 100%;
    max-width: 302px;
    margin: 0 auto;
    height: auto;
  }
}

@media all and (min-width: 1200px) {
  .contacts-form__captcha {
    width: 50%;
  }
}

@media all and (min-width: 768px) {
  .contacts-form__btns {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form__btns {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form__btns {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form__btns {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form__btns {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .contacts-form__btns {
    margin-bottom: 1rem;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
}

.contacts-form__btn {
  padding: 1.5rem 1rem;
  display: block;
  width: 100%;
  max-width: 35rem;
}

@media all and (min-width: 1200px) {
  .contacts-form__btn {
    max-width: 29rem;
  }
}

.contacts-form .login-form-type {
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .contacts-form .login-form-type {
    width: 100%;
  }
}

@media all and (min-width: 768px) {
  .contacts-form .login-form-type__wrap {
    width: 50%;
  }
}

@media all and (min-width: 768px) and (max-width: 767px) {
  .contacts-form .login-form-type__wrap {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .contacts-form .login-form-type__wrap {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1200px) {
  .contacts-form .login-form-type__wrap {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media all and (min-width: 768px) and (min-width: 1600px) {
  .contacts-form .login-form-type__wrap {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.recovery {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .recovery {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .recovery {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .recovery {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .recovery {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .recovery {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .recovery {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .recovery {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .recovery {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 768px) {
  .recovery {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media all and (min-width: 1200px) {
  .recovery {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
}

.recovery__wrap {
  width: 100%;
  max-width: 35rem;
}

@media all and (min-width: 1200px) {
  .recovery__wrap {
    max-width: 40rem;
  }
}

.recovery__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 3rem;
}

@media all and (min-width: 768px) {
  .recovery__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .recovery__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.recovery__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .recovery__title {
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .recovery__title {
    font-size: 3.8rem;
    line-height: 4.6rem;
    letter-spacing: 0.285px;
    margin-bottom: 3.5rem;
  }
}

.recovery__forgot {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  letter-spacing: 0.105px;
  text-align: center;
  padding: 0.5rem;
}

@media all and (min-width: 1200px) {
  .recovery__forgot {
    padding: 1rem;
  }
}

.recovery__forgot a {
  color: rgba(155, 155, 155, 0.5);
}

.recovery__forgot a:active {
  color: #9b9b9b;
}

@media all and (min-width: 1200px) {
  .recovery__forgot a:hover {
    color: #9b9b9b;
  }
}

.recovery-form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

@media all and (min-width: 768px) {
  .recovery-form--register .recovery-form__input {
    margin-bottom: 2rem;
  }
}

@media all and (min-width: 768px) {
  .recovery-form--register .recovery-form__input {
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 768px) {
  .recovery-form--register .recovery-form__label {
    margin-bottom: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  .recovery-form--register .recovery-form__label {
    margin-bottom: 3.5rem;
  }
}

.recovery-form__input {
  margin-bottom: 1.5rem;
  position: relative;
}

.recovery-form__input input {
  width: 100%;
}

@media all and (min-width: 1200px) {
  .recovery-form__input {
    margin-bottom: 4rem;
  }
}

.recovery-form__btn {
  margin-bottom: 1.5rem;
}

@media all and (min-width: 768px) {
  .recovery-form__btn {
    width: 23rem;
    padding: 0.75rem 1rem;
    margin: 1.5rem auto;
    font-size: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .recovery-form__btn {
    width: 29rem;
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 1.5rem 1rem;
  }
}

.recovery-form__label {
  margin: 0 auto;
  margin-bottom: 2rem;
}

.recovery-form__label a {
  text-decoration: underline;
  padding: 0 0.5rem;
}

.recovery-form__label a:active {
  text-decoration: none;
}

@media all and (min-width: 1200px) {
  .recovery-form__label a:hover {
    text-decoration: none;
  }
}

.login-form-type {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .login-form-type {
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .login-form-type {
    margin-bottom: 4rem;
  }
}

.advertisers {
  padding-bottom: 3rem;
}

@media all and (min-width: 768px) {
  .advertisers {
    padding-bottom: 7rem;
  }
}

@media all and (min-width: 1200px) {
  .advertisers {
    padding-bottom: 17.5rem;
  }
}

.publishers-steps {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-bottom: 2.5rem;
}

.publishers-steps__wrap {
  width: 100%;
}

@media all and (max-width: 767px) {
  .publishers-steps {
    max-width: 100%;
  }
}

@media all and (min-width: 768px) {
  .publishers-steps {
    max-width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .publishers-steps {
    max-width: 100%;
  }
}

@media all and (min-width: 1600px) {
  .publishers-steps {
    max-width: 1600px;
  }
}

@media all and (max-width: 767px) {
  .publishers-steps {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media all and (min-width: 768px) {
  .publishers-steps {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .publishers-steps {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1600px) {
  .publishers-steps {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .publishers-steps {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media all and (min-width: 768px) {
  .publishers-steps--advertisers {
    padding-top: 2rem;
  }

  .publishers-steps--advertisers .publishers-steps__title {
    margin-bottom: 5.5rem;
  }
}

.publishers-steps__title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  margin-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .publishers-steps__title {
    font-size: 3.6rem;
    line-height: 6.5rem;
  }
}

@media all and (min-width: 1200px) {
  .publishers-steps__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
  }
}

.publishers-steps__title-important {
  font-weight: 600;
}

@media all and (min-width: 768px) {
  .publishers-steps__title {
    font-size: 3.4rem;
    line-height: 6rem;
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 1200px) {
  .publishers-steps__title {
    font-size: 5.8rem;
    line-height: 6.5rem;
    margin-bottom: 6rem;
  }
}

.publishers-steps__scheme {
  display: none;
  margin: 0 auto;
}

@media all and (min-width: 1600px) {
  .publishers-steps__scheme {
    display: block;
  }
}

@media all and (max-width: 767px) {
  .publishers-steps__scheme--sm {
    display: block;
  }
}

@media all and (min-width: 768px) {
  .publishers-steps__scheme--sm {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .publishers-steps__scheme--md {
    display: block;
  }
}

@media all and (min-width: 1600px) {
  .publishers-steps__scheme--md {
    display: none;
  }
}

.publishers-steps__steps {
  margin-bottom: 2rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .publishers-steps__steps {
    margin-bottom: 5rem;
  }
}

.publishers-steps__btn {
  display: block;
  margin: 0 auto;
  width: 19.2rem;
}

@media all and (min-width: 768px) {
  .publishers-steps__btn {
    width: 23rem;
  }
}

@media all and (min-width: 1200px) {
  .publishers-steps__btn {
    width: 29rem;
  }
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 100%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-container-horizontal > .swiper-scrollbar {
  bottom: auto;
  top: 0;
}

.swiper-scrollbar-drag {
  background: rgba(155, 155, 155, 0.22);
  border-radius: 5px;
}

.swiper-scrollbar {
  background: rgba(155, 155, 155, 0.12);
  border-radius: 5px;
}

.swiper-container-horizontal > .swiper-scrollbar {
  height: 5px;
}

@media all and (min-width: 768px) {
  .swiper-container-horizontal > .swiper-scrollbar {
    height: 7px;
  }
}

@media all and (min-width: 1200px) {
  .swiper-container-horizontal > .swiper-scrollbar {
    height: 9px;
  }
}

.partners__slider {
  padding-bottom: 2rem;
}

@media all and (min-width: 768px) {
  .partners__slider {
    padding-bottom: 3.5rem;
  }
}

@media all and (min-width: 1200px) {
  .partners__slider {
    padding-bottom: 5.5rem;
  }
}

.partners__slider .swiper-scrollbar {
  bottom: 0;
  top: auto;
}

.partners__slider .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
}

.no-js .header-locales:hover .header-locales__item {
  max-width: 8rem;
}

.no-js .header-locales:hover .header-locales__desc {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.no-js .header-locales:hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: -60px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #fff;
}

.no-js .advice-spiral__wrap {
  display: none;
}

.no-js .advice-spiral__img {
  opacity: 0;
  background-color: white;
  /*background-image: url("/img/bg.png");*/
  /*background-size: 100% 100%;*/
  /*background-position: center;*/
  /*background-repeat: no-repeat;*/
  /*-webkit-animation: 0.3s no-js-bg 3s linear forwards;*/
  /*animation: 0.3s no-js-bg 3s linear forwards;*/
}

@-webkit-keyframes no-js-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes no-js-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.no-js .network-diagram .network-diagram__line path {
  -webkit-animation: 0.5s show-scheme 3s ease-out forwards;
  animation: 0.5s show-scheme 3s ease-out forwards;
}

.no-js .network-diagram .network__item {
  -webkit-animation: 0.5s show-scheme-text 3.49s ease-out forwards;
  animation: 0.5s show-scheme-text 3.49s ease-out forwards;
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .no-js .network-diagram .network__item:first-child {
    -webkit-animation: 0.5s show-scheme-text-1 3.49s ease-out forwards;
    animation: 0.5s show-scheme-text-1 3.49s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .no-js .network-diagram .network__item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-animation: 0.5s show-scheme-text-2 3.69s ease-out forwards;
    animation: 0.5s show-scheme-text-2 3.69s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .no-js .network-diagram .network__item:nth-child(3) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-animation: 0.5s show-scheme-text-3 3.89s ease-out forwards;
    animation: 0.5s show-scheme-text-3 3.89s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .no-js .network-diagram .network__item:nth-child(4) {
    -webkit-animation: 0.5s show-scheme-text-4 3.49s ease-out forwards;
    animation: 0.5s show-scheme-text-4 3.49s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .no-js .network-diagram .network__item:nth-child(5) {
    -webkit-animation: 0.5s show-scheme-text-5 3.69s ease-out forwards;
    animation: 0.5s show-scheme-text-5 3.69s ease-out forwards;
  }
}

@media all and (min-width: 1600px) and (min-width: 1600px) {
  .no-js .network-diagram .network__item:nth-child(6) {
    -webkit-animation: 0.5s show-scheme-text-6 3.89s ease-out forwards;
    animation: 0.5s show-scheme-text-6 3.89s ease-out forwards;
  }
}

.no-js .map__map {
  -webkit-animation: 1.5s show-map 3s ease-out forwards;
  animation: 1.5s show-map 3s ease-out forwards;
}

.no-js .map__map__no_gray {
  -webkit-animation: 1.5s show-map 3s ease-out forwards;
  animation: 1.5s show-map 3s ease-out forwards;
}

@media all and (min-width: 768px) {
  .no-js .articles .swiper-slide {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    width: 50%;
  }
}

@media all and (min-width: 1200px) {
  .no-js .articles .swiper-slide {
    width: 33.33%;
  }
}

.no-js .partners__slider .swiper-slide {
  width: auto;
}

@-webkit-keyframes no-js-bg {
  0% {
    opacity: 0;
  }
  80% {
    background-image: url("/img/bg.png");
  }
  100% {
    opacity: 1;
    background-image: url("/img/bg.png");
  }
}

@keyframes no-js-bg {
  0% {
    opacity: 0;
  }
  80% {
    background-image: url("/img/bg.png");
  }
  100% {
    opacity: 1;
    background-image: url("/img/bg.png");
  }
}

.online-support {
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 10;
}

.online-support .online-support__icon {
  width: 64px;
  height: 64px;
}
