html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
@font-face {
  font-display: swap;
  font-family: "mbank";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/mbank-light.woff) format("woff"),
    url(../fonts/mbank-light.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "mbank";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/mbank-regular.woff) format("woff"),
    url(../fonts/mbank-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "mbank";
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/mbank-semibold.woff) format("woff"),
    url(../fonts/mbank-semibold.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "mbank";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/mbank-bold.woff) format("woff"),
    url(../fonts/mbank-bold.woff2) format("woff2");
}
body,
html {
  overflow-x: hidden;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
[hidden] {
  display: none;
}
body {
  line-height: 1;
}
menu,
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  cursor: pointer;
}
body {
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  image-rendering: -webkit-optimize-contrast;
  text-rendering: optimizeLegibility;
}
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "mbank", "Helvetica", "Arial", sans-serif;
  line-height: 1.2;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
a {
  color: #000;
  text-decoration: none;
  word-break: break-word;
}
a:hover {
  text-decoration: underline;
}
.container {
  margin: 0 auto;
  max-width: 1500px;
  padding: 0 15px;
}
@media screen and (max-width: 1600px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}
.wrapper {
  margin: 0 auto;
  max-width: 1920px;
}

.link__recommend {
 text-decoration: underline;
}

.border {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #ac060f),
    color-stop(28%, #ac060f),
    color-stop(28%, #fab001),
    color-stop(32%, #fab001),
    color-stop(32%, #575a69),
    color-stop(60%, #575a69),
    color-stop(60%, #cf0d0e),
    color-stop(80%, #cf0d0e),
    color-stop(80%, #99047c),
    color-stop(84%, #99047c),
    color-stop(84%, #eb6703),
    to(#eb6703)
  );
  background: linear-gradient(
    90deg,
    #ac060f 0,
    #ac060f 28%,
    #fab001 0,
    #fab001 32%,
    #575a69 0,
    #575a69 60%,
    #cf0d0e 0,
    #cf0d0e 80%,
    #99047c 0,
    #99047c 84%,
    #eb6703 0,
    #eb6703
  );
  display: block;
  height: 10px;
}
.box {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 26px;
  height: 305px;
  position: relative;
  width: 430px;
}

@media screen and (max-width: 1200px) {
  .box {
    height: 270px;
    width: 280px;
  }
}
@media screen and (max-width: 992px) {
  .box {
    height: 270px;
    width: 280px;
  }
}
@media screen and (max-width: 576px) {
  .box {
    height: 270px;
    width: 265px;
  }
}

.box:before {
  background: url(../images/arrow_white.svg) 50%/16px 16px no-repeat #000;
  border-radius: 50%;
  content: "";
  height: 42px;
  left: 50%;
  position: absolute;
  top: -21px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 42px;
}
.box:hover .box__before {
  opacity: 0;
}
.box:hover .box__after {
  opacity: 1;
}
.box__after,
.box__before {
  height: 100%;
  width: 100%;
}
.box__before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  left: 0;
  position: absolute;
  top: 0;
}
.box__after {
  opacity: 0;
  padding: 30px 15px 0;
}
.box__amount,
.box__title {
  letter-spacing: -0.04em;
}
.box__title {
  font-size: 22px;
}
@media screen and (max-width: 1200px) {
  .box__title {
    font-size: 20px;
  }
}
.box__amount {
  font-size: 53px;
}
@media screen and (max-width: 1200px) {
  .box__amount {
    font-size: 50px;
  }
  .box__text {
    font-size: 14px;
  }
}
.btn {
  background-color: #ac060f;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-family: "mbank", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.04em;
  padding: 11px 25px 16px;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.btn:hover {
  background-color: #cf0d0e;
  text-decoration: none;
}
@media screen and (max-width: 1600px) {
  .btn {
    font-size: 20px;
    padding: 12px 26px 16px;
  }
}
@media screen and (max-width: 1200px) {
  .btn {
    font-size: 18px;
    padding: 12px 24px 14px;
  }
}
@media screen and (max-width: 576px) {
  .btn {
    font-size: 16px;
  }
}

.rest {
  padding: 65px 0 0;
}

@media screen and (max-width: 992px) {
  .rest {
    padding: 35px 0 0;
  }
}
@media screen and (max-width: 576px) {
  .rest {
    padding: 25px 0 0;
  }
}
.rest__title {
  margin: 0 auto 20px;
  max-width: 1000px;
}
@media screen and (max-width: 576px) {
  .rest__title {
    margin: 0 auto 15px;
  }
}
.rest__boxes {
  margin: 0 0 52px;
}
@media screen and (max-width: 1600px) {
  .rest__boxes {
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 992px) {
  .rest__boxes {
    margin: 0 0 100px;
  }
}
@media screen and (max-width: 576px) {
  .rest__boxes {
    margin: 0 0 30px;
  }
}
.rest__boxes,
.rest__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .rest__boxes,
  .rest__items {
    display: block;
  }
}
.rest__box {
  background-color: #fff;
  margin: 0 40px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  width: 550px;
}
@media screen and (max-width: 1600px) {
  .rest__box {
    margin: 0 20px;
    width: 515px;
  }
}

@media screen and (max-width: 1200px) {
  .rest__box {
    padding-top: 1px;
  }
}

@media screen and (max-width: 992px) {
  .rest__box {
    height: auto;
    margin: 60px auto;
    max-width: 400px;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }
}

.rest__hand__div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 355px;
}

.rest__subtitle {
  margin: 50px 0 0;
  max-width: 550px;
  font-size: 28px;
}
.rest__text {
  margin: 15px 0 0;
}
.rest__row:not(:last-of-type) {
  margin: 0 0 15px;
}
@media screen and (max-width: 1200px) {
  .rest__subtitle {
    font-size: 25px;
  }
}
@media screen and (max-width: 992px) {
  .rest__note {
    margin: 0 auto;
    max-width: 655px;
  }
}
@media screen and (max-width: 576px) {
  .rest__note {
    max-width: 655px;
  }
}

@media screen and (max-width: 1600px) {
  .rest__btn__left {
    padding-top: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .rest__btn__left {
    padding-top: 1px;
  }
}
@media screen and (max-width: 992px) {
  .rest__btn__left {
    padding-top: -30px;
  }
}


.card {
  padding: 80px 0 0;
}
@media screen and (max-width: 1600px) {
  .card {
    padding: 65px 0 0;
  }
}
@media screen and (max-width: 576px) {
  .card {
    padding: 60px 0 0;
  }
}
.card__title {
  margin: 0 auto 24px;
  max-width: 1100px;
}
.card__subtitle {
  margin: 0 0 32px;
}
@media screen and (max-width: 992px) {
  .card__subtitle {
    max-width: 540px;
  }
}
.card__content {
  margin: 0 0 0px;
}
@media screen and (max-width: 1600px) {
  .card__content {
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 992px) {
  .card__content {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .card__content {
    margin: 0 0 15px;
  }
}
.card__list {
  margin-left: 20px;
  padding-top: 40px;
  max-width: 750px;
}
@media screen and (max-width: 1600px) {
  .card__list {
    margin-left: 15px;
    max-width: 650px;
  }
}
@media screen and (max-width: 1200px) {
  .card__list {
    margin-left: 10px;
    max-width: 600px;
  }
}
@media screen and (max-width: 992px) {
  .card__list {
    margin: 0;
    max-width: none;
  }
}
@media screen and (max-width: 1600px) {
  .card__img {
    width: 500px;
  }
}
@media screen and (max-width: 1200px) {
  .card__img {
    width: 400px;
  }
}
@media screen and (max-width: 992px) {
  .card__img {
    margin: 0 0 40px;
    max-width: 400px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .card__img {
    max-width: 300px;
  }
}
.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column-reverse;
  }
}
.documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.documents__item {
  padding: 15px;
  width: 33.33333%;
}
@media screen and (max-width: 992px) {
  .documents__item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .documents {
    margin: 0 -10px;
  }
  .documents__item {
    padding: 10px;
    width: 100%;
  }
}
.edge {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.extra {
  padding: 35px 0 50px;
}
.extra {
  background-color: #f2f2f2;
}

@media screen and (max-width: 992px) {
  .extra {
    padding: 35px 0 40px;
  }
}
@media screen and (max-width: 576px) {
  .extra {
    padding: 25px 0 30px;
  }
}

.travel__title {
  margin: 60px auto 60px;
  max-width: 1000px;
}
@media screen and (max-width: 576px) {
  .travel__title {
    margin: 60px auto 15px;
  }
}
.travel__boxes {
  margin: 0 0 52px;
}
@media screen and (max-width: 1600px) {
  .travel__boxes {
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 992px) {
  .travel__boxes {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 576px) {
  .travel__boxes {
    margin: 0 0 30px;
  }
}
.travel__boxes,
.travel__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .travel__boxes,
  .travel__items {
    display: block;
  }
}
.travel__box {
  background-color: #fff;
  border: 2px solid #99047c;
  border-radius: 8px;
  margin: 0 40px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  width: 580px;
  font-size: 10px;
}
@media screen and (max-width: 1600px) {
  .travel__box {
    margin: 0 20px;
    width: 515px;
  }
}
@media screen and (max-width: 992px) {
  .travel__box {
    height: auto;
    margin: 60px auto;
    max-width: 400px;
    width: 100%;
  }
}

.travel__subtitle {
  margin: 0 auto;
  max-width: 550px;
  font-size: 30px;
}
.travel__text {
  margin: 15px 0 0;
}
.travel__row {
  margin-top: 50px;
  margin-bottom: 50px;
}

.travel__link {
  color: #ab1a20;
  text-decoration: underline;
}

.travel__note {
  margin: 15px;
}

@media screen and (max-width: 1200px) {
  .travel__subtitle {
    font-size: 25px;
  }
}
@media screen and (max-width: 992px) {
  .travel__note {
    max-width: 655px;
  }
}
@media screen and (max-width: 576px) {
  .travel__note {
    max-width: 655px;
  }
}

.travel__list {
  margin-left: 20px;
  padding-top: 40px;
  max-width: 550px;
}
@media screen and (max-width: 1600px) {
  .travel__list {
    margin-left: 15px;
    max-width: 650px;
  }
}
@media screen and (max-width: 1200px) {
  .travel__list {
    margin-left: 10px;
    max-width: 600px;
  }
}
@media screen and (max-width: 992px) {
  .travel__list {
    margin: 0;
    max-width: none;
  }
}


.extra__title {
  margin: 0 auto 60px;
  max-width: 1000px;
}
@media screen and (max-width: 576px) {
  .extra__title {
    margin: 0 auto 15px;
  }
}
.extra__boxes {
  margin: 0 0 52px;
}
@media screen and (max-width: 1600px) {
  .extra__boxes {
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 992px) {
  .extra__boxes {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 576px) {
  .extra__boxes {
    margin: 0 0 30px;
  }
}
.extra__boxes,
.extra__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .extra__boxes,
  .extra__items {
    display: block;
  }
}
.extra__box {
  background-color: #fff;
  border: 2px solid #99047c;
  border-radius: 44px;
  margin: 0 40px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  width: 636px;
}
@media screen and (max-width: 1600px) {
  .extra__box {
    margin: 0 20px;
    width: 515px;
  }
}
@media screen and (max-width: 992px) {
  .extra__box {
    height: auto;
    margin: 60px auto;
    max-width: 400px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .extra__box {
    height: auto;
    /* margin: 60px auto; */
    /* max-width: 400px; */
    /* width: 100%; */
  }
}

.extra__subtitle {
  margin: 0 auto;
  max-width: 550px;
  font-size: 30px;
}
.extra__text {
  margin: 15px 0 0;
  font-size: 20px;
}

@media screen and (max-width: 1600px) {
  .extra__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .extra__text {
    font-size: 16px;
  }
}

.extra__row:not(:last-of-type) {
  margin: 0 0 15px;
}
@media screen and (max-width: 1200px) {
  .extra__subtitle {
    font-size: 25px;
  }
}
@media screen and (max-width: 992px) {
  .extra__note {
    margin: 0 auto;
    max-width: 655px;
  }

  .extra__subtitle {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .extra__note {
    margin: 0 auto;
    max-width: 655px;
  }

  .extra__subtitle {
    font-size: 19px;
  }
}

@media screen and (max-width: 576px) {
  .extra__note {
    max-width: 655px;
  }
}

.extra__btn__right {
  padding-top: 15px;
}

@media screen and (max-width: 1600px) {
  .extra__btn__left {
    padding-top: 25px;
  }

  .extra__btn__right {
    padding-top: 1px;
  }
}
@media screen and (max-width: 1200px) {
  .extra__btn__left {
    padding-top: 1px;
  }
}
@media screen and (max-width: 992px) {
  .extra__btn__left {
    padding-top: -30px;
  }
}

.footer {
  padding: 0 0 30px;
}
.footer__documents {
  padding: 25px 0;
}
.footer__row:not(:last-of-type) {
  margin: 0 0 20px;
}

.header {
  height: 610px;
  padding: 40px 0 0;
  position: relative
}

@media screen and (max-width:1600px) {
  .header {
      height: 500px
  }
}

@media screen and (max-width:992px) {
  .header {
      height: 400px;
      padding: 30px 0 0;
      /* width: 110%; */
  }
}

@media screen and (max-width:768px) {
  .header {
      height: 850px;
      padding: 30px 0 0;
      width: 100%;
  }
}

@media screen and (max-width:576px) {
  .header {
      height: 700px;
      padding: 30px 0 0;
      width: 100%;
  }
}

.header__bg {
  background: url(../images/ski.png) 50% 50%/cover no-repeat;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1
}

@media screen and (max-width:992px) {
  .header__bg {
      background-position: calc(50% - 25px) 50%
  }
}

@media screen and (max-width:768px) {
  .header__bg {
    background: url(../images/skimobile.png) 25% 75%/ cover ;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}

.header__logo {
  margin: 65px 0 65px;
  width: 120%;
  height: 120%;
}

@media screen and (max-width:992px) {
  .header__logo {
      margin: 50px 0 50px;
  }
}

@media screen and (max-width:992px) {
  .header__logo {
      margin: 50px 0 50px;
  }
}

@media screen and (max-width:768px) {
  .header__logo {
      margin: 20px 0 20px;
  }
}

@media screen and (max-width:768px) {
  .header__logo {
      margin: 15px 0 25px;
  }
}

.header__subtitle,
.header__title {
  color: #fff;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 1);
}

@media screen and (max-width:992px) {

  .header__subtitle,
  .header__title {
      text-shadow:#000;
  }
}

.header__title {
  font-size: 60px;
  letter-spacing: -.04em;
  margin: 0 0 22px
}

@media screen and (max-width:1600px) {
  .header__title {
      font-size: 50px;
      margin: 0 0 22px
  }
}

@media screen and (max-width:992px) {
  .header__title {
      font-size: 40px;
      margin: 0 0 10px
  }
}

@media screen and (max-width:576px) {
  .header__title {
      font-size: 37px
  }
}

.header__subtitle {
  font-size: 37px;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  max-width: 900px;
  text-shadow: #000;
}

@media screen and (max-width:1600px) {
  .header__subtitle {
      font-size: 30px;
      margin: 0 0 20px;
      max-width: 750px
  }
}

@media screen and (max-width:1200px) {
  .header__subtitle {
      font-size: 30px;
      max-width: 500px;
  }
}

@media screen and (max-width:992px) {
  .header__subtitle {
      font-size: 25px;
      max-width: 400px;
  }
}

@media screen and (max-width:768px) {
  .header__subtitle {
      font-size: 28px;
      max-width: 450px;
      text-shadow: #000;
  }
}

@media screen and (max-width:576px) {
  .header__subtitle {
      font-size: 26px;
      max-width: 600px
  }
}

.header__important {
  font-size: 34px
}

@media screen and (max-width:1600px) {
  .header__important {
      font-size: 30px
  }
}

@media screen and (max-width:992px) {
  .header__important {
      font-size: 25px
  }
}

@media screen and (max-width:576px) {
  .header__important {
      font-size: 22px
  }
}

.btn-arrow {
  background-color: #ab1a20;
  border: 2px solid #ab1a20;
  border-radius: 50%;
  color: transparent;
  display: block;
  font-size: 0;
  height: 45px;
  position: relative;
  width: 45px
}

@media (hover:hover) {
  .btn-arrow:hover:before {
    -webkit-transform: translateY(5px);
    transform: translateY(5px)
  }
}

.btn-arrow:before {
  background: url(../images/clickarrow.png) 50% 50% no-repeat;
  content: "";
  display: block;
  height: 16px;
  left: 50%;
  margin: -7px 0 0 -6px;
  position: absolute;
  top: 50%;
  -webkit-transition: -webkit-transform .25s ease;
  transition: -webkit-transform .25s ease;
  transition: transform .25s ease;
  transition: transform .25s ease, -webkit-transform .25s ease;
  width: 13px
}

@media screen and (max-width:992px) {
  .btn-arrow {
    height: 50px;
    width: 50px
  }
}

.header__btn-arrow,
.header__img {
  left: 50%;
  margin-bottom: 50px;
  position: absolute
}

.header__btn-arrow {
  bottom: -20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

@media screen and (max-width:992px) {
  .header__btn-arrow {
    bottom: -25px;
  }
}

@media screen and (min-width:768px) {
  .header__btn-arrow {
    display: none;
  }
}

.list--2 .list__item:before {
  background-image: url(../images/arrow_yellow.svg);
}
.list--3 .list__item:before {
  background-image: url(../images/arrow_red.svg);
}
.list__item {
  padding: 0 0 0 28px;
  margin-bottom: 50px;
  position: relative;
}
.list__item:not(:last-of-type) {
  margin: 0 0 14px;
}
.list__item:before {
  background: url(../images/arrow_purple.svg) 50% / contain no-repeat;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 14px;
}
@media screen and (max-width: 1600px) {
  .list__item:before {
    height: 18px;
    width: 12px;
  }
}

.list__title {
  color: #ab1a20;
  font-size: 30px;
}

.list__subtitle {
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 25px;
}

@media screen and (max-width: 1600px) {
  .list__title {
    font-size: 24px;
  }

  .list__subtitle {
    font-size: 24px;
  }
}

@media screen and (max-width: 1200px) {
  .list__title {
    font-size: 21px;
  }

  .list__subtitle {
    font-size: 21px;
  }
}

@media screen and (max-width: 992px) {
  .list__title {
    font-size: 22px;
  }

  .list__subtitle {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .list__title {
    font-size: 21px;
  }

  .list__subtitle {
    font-size: 21px;
  }
}


.list__text {
  display: block;
  margin: 14px 0 0;
}
.logo {
  background: url(../images/logo.png) 0 0 / contain no-repeat;
  color: transparent;
  display: block;
  font-size: 0;
  height: 70px;
  width: 186px;
}
@media screen and (max-width: 1600px) {
  .logo {
    height: 60px;
    width: 160px;
  }
}
@media screen and (max-width: 576px) {
  .logo {
    height: 50px;
    width: 134px;
  }
}

.section--secondary {
  background-color: #f2f2f2;
}

.step {
  width: 395px;
}
@media screen and (max-width: 1600px) {
  .step {
    width: 325px;
  }
}
@media screen and (max-width: 992px) {
  .step {
    max-width: 325px;
    width: 100%;
  }
}

.subtitle {
  /* display: inline-block; */
  font-size: 29px;
  font-weight: 400;
  /* position: relative; */
}
@media screen and (max-width: 1600px) {
  .subtitle {
    font-size: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .subtitle {
    font-size: 25px;
  }
}
@media screen and (max-width: 576px) {
  .subtitle {
    font-size: 22px;
  }
}


.subtitle__percent {
  margin: 25px auto -25px auto;
}
@media screen and (max-width: 1600px) {
  .subtitle__percent {
    margin: 20px auto -25px auto;
    width: 250px;
  }
}
@media screen and (max-width: 1200px) {
  .subtitle__percent {
    margin: 15px auto -25px auto;
    width: 185px;
  }
}
@media screen and (max-width: 576px) {
  .subtitle__percent {
    margin: 15px auto -15px auto;
  }
}

.subtitle--2:after,
.subtitle--2:before {
  background-color: #fab001;
}
.subtitle--3:after,
.subtitle--3:before {
  background-color: #ae0000;
}
.subtitle--reverse:before {
  left: -9999px;
  right: auto;
}
.text {
  font-size: 21px;
}

@media screen and (max-width: 1600px) {
  .text {
    font-size: 17px;
  }
}

@media screen and (max-width: 1200px) {
  .text {
    font-size: 17px;
  }
}

@media screen and (max-width: 768px) {
  .text {
    font-size: 20px;
  }
}

.title {
  font-size: 40px;
}
@media screen and (max-width: 1600px) {
  .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .title {
    font-size: 32px;
  }
}
.travel-package {
  padding: 80px 0 40px;
}
@media screen and (max-width: 1600px) {
  .travel-package {
    padding: 70px 0 40px;
  }
}
@media screen and (max-width: 992px) {
  .travel-package {
    padding: 70px 0 0;
  }
}
@media screen and (max-width: 576px) {
  .travel-package {
    padding: 60px 0 0;
  }
}
.travel-package__title {
  margin: 0 0 58px;
}
@media screen and (max-width: 1600px) {
  .travel-package__title {
    margin: 0 0 55px;
  }
}
@media screen and (max-width: 992px) {
  .travel-package__title br {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .travel-package__title {
    margin: 0 0 30px;
  }
}
.travel-package__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .travel-package__items {
    display: block;
  }
}
.travel-package__item {
  margin: 0 62px;
  width: 150px;
}
@media screen and (max-width: 1600px) {
  .travel-package__item {
    margin: 0 60px;
  }
}
@media screen and (max-width: 992px) {
  .travel-package__item {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 576px) {
  .travel-package__item {
    margin: 0 auto 30px;
  }
}
.travel-package__item:before {
  background: url(../images/arrow_purple.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 22px;
  margin: 0 auto 38px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 14px;
}
@media screen and (max-width: 1600px) {
  .travel-package__item:before {
    margin: 0 auto 35px;
  }
}
@media screen and (max-width: 576px) {
  .travel-package__item:before {
    margin: 0 auto 30px;
  }
}
.travel-package__img {
  height: 144px;
  margin: 0 auto 34px;
}
@media screen and (max-width: 1600px) {
  .travel-package__img {
    height: 120px;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 1200px) {
  .travel-package__img {
    height: 100px;
  }
}
.travel-package__text {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 1600px) {
  .travel-package__text {
    font-size: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .travel-package__text {
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  .travel-package__text {
    font-size: 20px;
  }
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.font-weight-thin {
  font-weight: 100;
}
.font-weight-extralight {
  font-weight: 200;
}
.font-weight-light {
  font-weight: 300;
}
.font-weight-normal {
  font-weight: 400;
}
.font-weight-medium {
  font-weight: 500;
}
.font-weight-semibold {
  font-weight: 600;
}
.font-weight-bold {
  font-weight: 700;
}
.font-weight-extrabold {
  font-weight: 800;
}
.font-weight-black {
  font-weight: 900;
}
.letter-spacing {
  letter-spacing: -0.04em;
}
.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.section__img {
  display: inline;
}