/* === STYLE === */

@import url("https://fonts.googleapis.com/css?family=Poppins:regular,500,600,700&display=swap");

html {
  font-size: 100%;
}

/* COLORS */

/* === GLOBAL STYLES === */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Poppins", helvetica, sans-serif;
  line-height: 1.5;
  color: #fff;
  background: #2f8791;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
}

a {
  font-family: "Poppins", helvetica, sans-serif;
  color: inherit;
  text-decoration: none;
}

ol > li {
  counter-increment: step;
}

.content {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 100px 15px 20px;
}

.content > *:not(:last-child) {
  margin-bottom: 20px;
}

/* === page === */

/* === BURGER === */

#burger {
  display: none;
}

/* === BUTTONS === */

.button {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: #ec622b;
  text-align: center;
  text-transform: uppercase;
}

.button:active {
  position: relative;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}

.button.green {
  background-color: #0fa810;
}

.button.blue {
  background-color: #186072;
}

.button._fw {
  width: 100%;
}

.button > div:first-of-type {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 24px;
  -moz-box-flex: 0;
  flex: 0 0 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin-right: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

/* === TITLE === */

h1,
h2,
h3,
h4,
h5,
h6 .title {
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

h1,
.title.xxl {
  font-size: 52px;
}

h2,
.title.xl {
  font-size: 48px;
}

h3,
.title.l {
  font-size: 40px;
}

h4,
.title.m {
  font-size: 24px;
}

/* LOGO */

.logo {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  display: inline-block;
  overflow: hidden;
  max-width: 128px;
  max-height: 64px;
}

.logo img {
  -o-object-fit: cover;
  object-fit: cover;
}

/* BACKGROUND */

.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #666666;
}

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

/* APP */

.app {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
  padding: 12px 24px 12px 93px;
  background: #186072;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.app::before,
.app::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  left: 23px;
}

.app::before {
  background: url("../img/icons/original/apple-light.svg") center center/cover no-repeat;
}

.app::after {
  left: 59px;
  background: url("../img/icons/original/android-light.svg") center center/cover no-repeat;
}

/* TABLE */

.table {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  width: 100%;
  background-color: #0a636b;
}

.table * {
  text-align: left;
  vertical-align: middle;
}

.table th,
.table td {
  padding: 8px 20px;
}

.table th {
  background-color: #1a2c34;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.table th th {
  max-width: 322px;
}

.table th > p:first-of-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.table th img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 18px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 18px;
  -moz-box-flex: 0;
  flex: 0 0 18px;
  height: 18px;
  margin-right: 10px;
}

.table td {
  padding-left: 38px;
}

.table ul li {
  position: relative;
  padding-left: 25px;
}

.table ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
}

.table.col thead tr th {
  text-transform: uppercase;
}

.table.col thead tr th:first-child {
  -webkit-border-radius: 16px 0 0 16px;
  -moz-border-radius: 16px 0 0 16px;
  border-radius: 16px 0 0 16px;
}

.table.col thead tr th:last-child {
  -webkit-border-radius: 0 16px 16px 0;
  -moz-border-radius: 0 16px 16px 0;
  border-radius: 0 16px 16px 0;
}

.table.col tbody * {
  vertical-align: baseline;
}

.table.col tbody > tr:first-child td {
  padding-top: 18px;
}

.table.col tbody > tr:last-child td {
  padding-bottom: 18px;
}

.table.col tbody th,
.table.col tbody td {
  padding: 18px 20px;
}

.table.center th,
.table.center td {
  text-align: center;
}

.table__title:not(:last-child) {
  margin-bottom: 16px;
}

/* CARDS */

.cards__bonus-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.cards > *:not(:last-child) {
  margin-bottom: 20px;
}

/* BONUS_CARD */

.bonus-card__image {
  max-width: 323px;
  margin: 0 auto;
}

.bonus-card__article h1,
.bonus-card__article h2,
.bonus-card__article h3,
.bonus-card__article h4,
.bonus-card__article h5,
.bonus-card__article h6 {
  text-transform: none;
}

.bonus-card__article li > ul > li {
  padding-left: 0;
}

.bonus-card__article li > ul > li::before {
  content: none;
}

/* DUMMY */

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

/* SECTION */

.section {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  padding: 32px 20px;
  overflow: hidden;
  background: #0a636b;
}

.section > *:not(:last-child) {
  margin-bottom: 20px;
}

.section.np {
  padding: 0;
}

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

.section__title:not(:last-child) {
  margin-bottom: 16px;
}

.pros__section > div:first-of-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  font-weight: 500;
  line-height: 1.2;
  font-size: 32px;
}

.pros__section > div:first-of-type:not(:last-child) {
  margin-bottom: 20px;
}

.pros__section > div:first-of-type > div:first-of-type {
  width: 64px;
  height: 64px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 64px;
  -moz-box-flex: 0;
  flex: 0 0 64px;
  background-color: #ec622b;
  padding: 18px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-right: 27px;
}

.pros__section > div:first-of-type > div:first-of-type img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pros__section > div:first-of-type > span {
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.pros__section ul li {
  position: relative;
  padding-left: 39px;
}

.pros__section ul li:not(:last-child) {
  margin-bottom: 10px;
}

.pros__section ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 18px;
  content: "";
  background: url("../img/icons/advantage/advantage-01.svg") center center/cover no-repeat;
}

.pros__section.minus > div:first-of-type > div:first-of-type {
  background-color: #154d5b;
}

.pros__section.minus ul li::before {
  background: url("../img/icons/advantage/advantage-02.svg") center center/cover no-repeat;
}

/* IMAGE */

.image {
  padding: 0;
}

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

/* HEADER */

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

.header__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__content > *:not(:last-child) {
  margin-bottom: 0;
}

.header__logo:not(:last-child) {
  margin-right: 24px;
}

.header__menu {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
}

.header__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.header__buttons > *:not(:first-child) {
  margin-left: 10px;
}

.header-menu__button {
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  font-size: 20px;
}

.header-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
}

.header-menu__list a {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding: 12px 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.7;
}

.header-menu__list a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-right: 10px;
}

.header-menu__sub {
  position: relative;
}

.header-menu-sub__button {
  position: relative;
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-menu-sub__button::before,
.header-menu-sub__button::after,
.header-menu-sub__button span {
  display: inline-block;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin: 4px;
}

.header-menu-sub__button::before,
.header-menu-sub__button::after {
  content: "";
}

.header-menu-sub__button.hidden {
  display: none;
}

.header-menu-sub__button.hidden ~ div:first-of-type {
  display: none;
}

.header-menu-sub__dropdown {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #0d1d34;
  padding: 10px;
  z-index: 2;
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -o-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  border: 1px solid #2e364a;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-menu-sub__dropdown a {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4285714286;
  opacity: 0.7;
}

.header-menu-sub__dropdown a > svg {
  -webkit-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  -moz-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 18px;
  -moz-box-flex: 0;
  flex: 0 0 18px;
  margin-right: 10px;
  fill: #fff;
}

.header-menu-sub__dropdown.hidden {
  -webkit-transform: translate(-50%, 20px);
  -moz-transform: translate(-50%, 20px);
  -o-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-buttons__button {
  white-space: nowrap;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
}

.header-buttons__button.lang {
  padding: 12px 16px;
}

/* COVER */

.cover__section {
  color: #fff;
  position: relative;
  background: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  overflow: hidden;
}

.cover__section > *:not(:last-child) {
  margin-bottom: 20px;
}

.cover__title {
  color: #fff;
}

.cover__title,
.cover__button {
  max-width: 710px;
}

.cover__image {
  position: absolute;
  right: 15px;
  bottom: 0;
  max-width: 479px;
  max-height: 456px;
  z-index: -1;
}

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

.cover__image:not(:last-child) {
  margin-bottom: 0;
}

/* ARTICLE */

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

article li,
.article li {
  position: relative;
  padding-left: 24px;
  line-height: 2;
}

article li::before,
.article li::before {
  position: absolute;
  top: 0;
  left: 8px;
}

article ol li:not(:last-child),
article ul li:not(:last-child),
.article ol li:not(:last-child),
.article ul li:not(:last-child) {
  margin-bottom: 0;
}

article ul li::before,
.article ul li::before {
  top: 14px;
  width: 4px;
  height: 4px;
  content: "";
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

article ol li::before,
.article ol li::before {
  content: counter(step) ".";
}

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

/* FAQ */

.faq__title:not(:last-child) {
  margin-bottom: 20px;
}

.faq__list li {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #1a2c34;
  color: #fff;
}

.faq__list li:not(:last-child) {
  margin-bottom: 20px;
}

.faq__list li > button {
  position: relative;
  width: 100%;
  padding: 20px 76px 16px 20px;
  overflow: hidden;
  font-weight: 700;
  color: inherit;
  text-align: left;
  white-space: unset;
}

.faq__list li > button span {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background-color: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.faq__list li > button span::before,
.faq__list li > button span::after {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 49%;
  width: 10px;
  height: 2px;
  content: "";
  background-color: #1a2c34;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  -o-transition: -o-transform 0.5s ease 0s;
  -moz-transition: transform 0.5s ease 0s, -moz-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s, -moz-transform 0.5s ease 0s, -o-transform 0.5s ease 0s;
}

.faq__list li > button span::before {
  -webkit-transform: translate(-75%, -50%) rotate(40deg);
  -moz-transform: translate(-75%, -50%) rotate(40deg);
  -o-transform: translate(-75%, -50%) rotate(40deg);
  transform: translate(-75%, -50%) rotate(40deg);
}

.faq__list li > button span::after {
  -webkit-transform: translate(0, -50%) rotate(-40deg);
  -moz-transform: translate(0, -50%) rotate(-40deg);
  -o-transform: translate(0, -50%) rotate(-40deg);
  transform: translate(0, -50%) rotate(-40deg);
}

.faq__list li > button.spoller-active {
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}

.faq__list li > button.spoller-active span::before {
  -webkit-transform: translateX(-75%) rotate(-40deg);
  -moz-transform: translateX(-75%) rotate(-40deg);
  -o-transform: translateX(-75%) rotate(-40deg);
  transform: translateX(-75%) rotate(-40deg);
}

.faq__list li > button.spoller-active span::after {
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}

.faq__list li > div {
  position: relative;
  padding: 20px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

.faq__list li > div:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  content: "";
  height: 1px;
  background-color: #fff;
}

/* REVIEWS */

.reviews__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.reviews__wrap:not(:last-child) {
  margin-bottom: 20px;
}

.reviews__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.reviews__slider:not(:last-child) {
  margin-bottom: 16px;
}

.reviews-buttons__button {
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #edf1f3;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.reviews-buttons__button svg {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: 17px;
  max-height: 7px;
  fill: #fff;
}

.reviews-buttons__button:nth-child(1) {
  margin-right: 16px;
}

.reviews-buttons__button:nth-child(2) svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* SLIDE */

.slide {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px 10px;
  background-color: #2e364a;
  color: #fff;
  height: auto;
}

.slide__author {
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.slide__author > div:first-of-type {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.slide__author > div:first-of-type img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slide__author > span:first-of-type {
  margin-right: auto;
  margin-left: 12px;
}

.slide__author:not(:last-child) {
  margin-bottom: 28px;
}

/* === FOOTER === */

.footer__content.content {
  padding-top: 0;
}

.footer__section > *:not(:last-child) {
  margin-bottom: 8px;
}

.footer__logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;
}

.footer__logos li {
  max-width: 326px;
  min-width: 80px;
  max-height: 80px;
  overflow: hidden;
  padding: 10px;
}

.footer__article {
  position: relative;
  padding-right: 117px;
}

.footer__article:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: url("../img/pictures/logos/18+.png") center center/cover no-repeat;
  width: 91px;
  height: 91px;
}

.footer__article:not(:last-child) {
  margin-bottom: 16px;
}

.footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
