@charset "UTF-8";
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

ul {
  padding-left: 0;
  list-style: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* aleo-regular - latin */
@font-face {
  font-family: "Aleo";
  font-style: normal;
  font-weight: 400;
  /* IE9 Compat Modes */
  src: url("../../fonts/aleo/aleo-v11-latin-regular.eot");
  src: local(""), url("../../fonts/aleo/aleo-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/aleo/aleo-v11-latin-regular.woff2") format("woff2"), url("../../fonts/aleo/aleo-v11-latin-regular.woff") format("woff"), url("../../fonts/aleo/aleo-v11-latin-regular.ttf") format("truetype"), url("../../fonts/aleo/aleo-v11-latin-regular.svg#Aleo") format("svg");
}

/* aleo-italic - latin */
@font-face {
  font-family: "Aleo";
  font-style: italic;
  font-weight: 400;
  /* IE9 Compat Modes */
  src: url("../../fonts/aleo/aleo-v11-latin-italic.eot");
  src: local(""), url("../../fonts/aleo/aleo-v11-latin-italic.eot?#iefix") format("embedded-opentype"), url("../../fonts/aleo/aleo-v11-latin-italic.woff2") format("woff2"), url("../../fonts/aleo/aleo-v11-latin-italic.woff") format("woff"), url("../../fonts/aleo/aleo-v11-latin-italic.ttf") format("truetype"), url("../../fonts/aleo/aleo-v11-latin-italic.svg#Aleo") format("svg");
}

/* aleo-700 - latin */
@font-face {
  font-family: "Aleo";
  font-style: normal;
  font-weight: 700;
  /* IE9 Compat Modes */
  src: url("../../fonts/aleo/aleo-v11-latin-700.eot");
  src: local(""), url("../../fonts/aleo/aleo-v11-latin-700.eot?#iefix") format("embedded-opentype"), url("../../fonts/aleo/aleo-v11-latin-700.woff2") format("woff2"), url("../../fonts/aleo/aleo-v11-latin-700.woff") format("woff"), url("../../fonts/aleo/aleo-v11-latin-700.ttf") format("truetype"), url("../../fonts/aleo/aleo-v11-latin-700.svg#Aleo") format("svg");
}

/* aleo-700italic - latin */
@font-face {
  font-family: "Aleo";
  font-style: italic;
  font-weight: 700;
  /* IE9 Compat Modes */
  src: url("../../fonts/aleo/aleo-v11-latin-700italic.eot");
  src: local(""), url("../../fonts/aleo/aleo-v11-latin-700italic.eot?#iefix") format("embedded-opentype"), url("../../fonts/aleo/aleo-v11-latin-700italic.woff2") format("woff2"), url("../../fonts/aleo/aleo-v11-latin-700italic.woff") format("woff"), url("../../fonts/aleo/aleo-v11-latin-700italic.ttf") format("truetype"), url("../../fonts/aleo/aleo-v11-latin-700italic.svg#Aleo") format("svg");
}

/* red-hat-text-regular - latin */
@font-face {
  font-family: "Red Hat Text";
  font-style: normal;
  font-weight: 400;
  /* IE9 Compat Modes */
  src: url("../../fonts/red-hat/red-hat-text-v11-latin-regular.eot");
  src: local(""), url("../../fonts/red-hat/red-hat-text-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/red-hat/red-hat-text-v11-latin-regular.woff2") format("woff2"), url("../../fonts/red-hat/red-hat-text-v11-latin-regular.woff") format("woff"), url("../../fonts/red-hat/red-hat-text-v11-latin-regular.ttf") format("truetype"), url("../../fonts/red-hat/red-hat-text-v11-latin-regular.svg#RedHatText") format("svg");
}

/* red-hat-text-500 - latin */
@font-face {
  font-family: "Red Hat Text";
  font-style: normal;
  font-weight: 500;
  /* IE9 Compat Modes */
  src: url("../../fonts/red-hat/red-hat-text-v11-latin-500.eot");
  src: local(""), url("../../fonts/red-hat/red-hat-text-v11-latin-500.eot?#iefix") format("embedded-opentype"), url("../../fonts/red-hat/red-hat-text-v11-latin-500.woff2") format("woff2"), url("../../fonts/red-hat/red-hat-text-v11-latin-500.woff") format("woff"), url("../../fonts/red-hat/red-hat-text-v11-latin-500.ttf") format("truetype"), url("../../fonts/red-hat/red-hat-text-v11-latin-500.svg#RedHatText") format("svg");
}

/* magra-700 - latin */
@font-face {
  font-family: "Magra";
  font-style: normal;
  font-weight: 700;
  /* IE9 Compat Modes */
  src: url("../../fonts/magra/magra-v14-latin-700.eot");
  src: local(""), url("../../fonts/magra/magra-v14-latin-700.eot?#iefix") format("embedded-opentype"), url("../../fonts/magra/magra-v14-latin-700.woff2") format("woff2"), url("../../fonts/magra/magra-v14-latin-700.woff") format("woff"), url("../../fonts/magra/magra-v14-latin-700.ttf") format("truetype"), url("../../fonts/magra/magra-v14-latin-700.svg#Magra") format("svg");
}

.button, .svg:hover .svg-path, .icon:hover svg, .btn-pup-up, .navigation__link, .slider__container, .slider, .sliderButton, .sliderButton.sliderBtnNext:hover .sliderBtnNext__image, .sliderButton.sliderBtnNext:hover path, .readmore__link:hover {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

body {
  font-family: 'Aleo', Georgia, serif;
}

.title2, .button, .input-pop-up, .navigation__link, .image__country-text {
  font-family: 'Red Hat Text', Arial, sans-serif;
}

.wrapper {
  max-width: 1440px;
  margin: auto;
}

.header {
  position: relative;
}

@media (max-width: 768px) {
  .header {
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    background: -webkit-gradient(linear, left top, left bottom, from(#0D606F), color-stop(25.1%, rgba(13, 96, 111, 0)));
    background: linear-gradient(180deg, #0D606F 0%, rgba(13, 96, 111, 0) 25.1%);
  }
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.73611% 8.33333% 1.66667% 8.33333%;
  background-color: rgba(242, 120, 92, 0.7);
  -webkit-box-shadow: 0px 4px 4px rgba(13, 96, 111, 0.5);
          box-shadow: 0px 4px 4px rgba(13, 96, 111, 0.5);
}

@media (max-width: 768px) {
  .header__wrapper {
    padding-top: 11.28205%;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 390px) {
  .header__wrapper {
    padding: 11.28205% 6.15385% 17.4359% 4.10256%;
  }
}

.header__wrapper .header__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 103px;
  height: 41px;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 768px) {
  .header__wrapper .header__button {
    display: none;
  }
}

.top-background-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .top-background-image {
    min-width: 32.68229%;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .top-background-image {
    display: none;
  }
}

.top-background-image-mobile {
  display: none;
}

@media (max-width: 390px) {
  .top-background-image-mobile {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }
}

@media (max-width: 768px) {
  .logo__title {
    display: none;
  }
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8.33333%;
}

@media (max-width: 768px) {
  .footer {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

.footer__text {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .footer__text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.3rem;
    font-weight: 400;
    font-style: normal;
  }
}

@media (max-width: 390px) {
  .footer__text {
    display: none;
  }
}

.footer__social-icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20.6px;
          column-gap: 20.6px;
  margin: 0;
  padding: 0;
  margin-top: 16.5px;
  list-style: none;
}

@media (max-width: 768px) {
  .footer__social-icons {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    margin-right: -10px;
  }
}

.footer__social-icons .icon {
  margin: 0;
  padding: 0;
}

.icon a {
  margin: 0;
  padding: 0;
  font-size: 0;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}

body.scroll-hidden {
  overflow-y: hidden;
}

h1 {
  margin: 0;
  font-family: 'Magra';
  font-size: 3.2rem;
  line-height: 3.9rem;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
}

h2.preview__title {
  font-size: 8rem;
  line-height: 9.6rem;
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 768px) {
  h2.preview__title {
    font-size: 4rem;
    line-height: 5rem;
    font-weight: 400;
    font-style: normal;
  }
}

.title2 {
  font-size: 4rem;
  line-height: 5.3rem;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #F2785C;
}

@media (max-width: 768px) {
  .title2 {
    font-size: 1.4rem;
    line-height: 1.852rem;
    font-weight: 400;
    font-style: normal;
  }
}

h3 {
  font-size: 3.5rem;
  line-height: 4.2rem;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.1rem;
    line-height: 1.3rem;
    font-weight: 400;
    font-style: normal;
  }
}

h4 {
  font-size: 3.2rem;
  line-height: 3.8rem;
  font-weight: 700;
  font-style: normal;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 228px;
  height: 59px;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
  border: none;
  background: #0D606F;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 2px 3px rgba(13, 96, 111, 0.16);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 2px 3px rgba(13, 96, 111, 0.16);
  border-radius: 10px;
  cursor: pointer;
}

.button_arrow {
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

@media (max-width: 768px) {
  .button_arrow .button_arrow-image {
    width: 8.75px;
    height: 5.63px;
  }
}

.button:hover {
  background: #0D606F;
  opacity: 0.85;
}

.button:active {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0), 0px 2px 3px rgba(13, 96, 111, 0);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0), 0px 2px 3px rgba(13, 96, 111, 0);
}

@media (max-width: 768px) {
  .button {
    width: 92px;
    height: 30px;
    font-size: 1.1rem;
    line-height: 1.455rem;
    font-weight: 400;
    font-style: normal;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-right: 8px;
}

.logo-object {
  padding-right: 6px;
}

.svg {
  cursor: pointer;
}

.svg:hover .svg-path {
  fill: rgba(242, 120, 92, 0.5);
}

.logo__title {
  white-space: nowrap;
}

.icon:hover svg {
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.7));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.7));
}

.hamburger:before, .hamburger:after, .hamburger__line {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2.67px;
  background-color: #ffffff;
  border-radius: 5px;
}

.hamburger {
  position: relative;
  display: none;
  width: 26.25px;
  height: 16.5px;
  margin: 6.75px 0;
  z-index: 0;
}

@media (max-width: 390px) {
  .hamburger {
    display: inline-block;
  }
}

.hamburger:before {
  top: 0;
  left: 0;
}

.hamburger:after {
  bottom: 0;
  left: 0;
}

.hamburger.hide {
  display: none;
}

.hamburger__line {
  top: calc(50% - 1.34px);
  left: 0;
}

.icon-square {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #F2785C;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .icon-square {
    width: 70px;
    height: 70px;
  }
}

.ico {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

@media (max-width: 768px) {
  .ico {
    width: 40px;
    height: 40px;
  }
}

.bike {
  background-image: url("../img/icon/bike.svg");
}

@media (max-width: 390px) {
  .bike {
    width: 36px;
    height: 36px;
  }
}

.calendar {
  background-image: url("../img/icon/calendar.svg");
}

@media (max-width: 390px) {
  .calendar {
    width: 36px;
    height: 36px;
  }
}

.plane {
  background-image: url("../img/icon/plane.svg");
}

.icon {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  cursor: pointer;
}

.icon_ig {
  background-image: url("../img/icon/instagram.svg");
  width: 30.85px;
  height: 30.85px;
}

.icon_yt {
  background-image: url("../img/icon/youtube.svg");
  width: 33px;
  height: 26.2px;
}

.icon_tw {
  background-image: url("../img/icon/twitter.svg");
  width: 31.84px;
  height: 25.88px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(80, 80, 80, 0.6);
  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;
  z-index: 5;
}

.modal {
  position: relative;
  width: 650px;
  max-height: 100%;
  padding: 25px 45px 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  background: linear-gradient(177.09deg, #FFFFFF 6.15%, #0D606F 202.69%);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #0D606F;
  overflow: auto;
}

@media (max-width: 768px) {
  .modal {
    width: 90%;
  }
}

.modal-log-in {
  min-height: 660px;
}

.modal-sign-up {
  min-height: 436px;
}

.title {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.title-sing-up {
  margin-bottom: 26px;
}

.form-modal {
  width: 100%;
}

.input-pop-up {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 54px;
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 400;
  font-style: normal;
  border-width: 0;
  outline: none;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 3px rgba(13, 96, 111, 0.08), 0px 2px 3px rgba(13, 96, 111, 0.16);
          box-shadow: 0px 0px 3px rgba(13, 96, 111, 0.08), 0px 2px 3px rgba(13, 96, 111, 0.16);
}

.form__side-sites {
  margin-bottom: 30px;
}

.btn-pup-up:hover {
  opacity: 0.75;
}

.btn-pup-up:active {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0), 0px 2px 3px rgba(13, 96, 111, 0);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0), 0px 2px 3px rgba(13, 96, 111, 0);
}

.button-fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  height: 56px;
  color: #ffffff;
  background: #1877F2;
}

.button-google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
  background-color: #ffffff;
}

.image-google,
.image-fb {
  margin-right: 15px;
}

.or-text {
  margin-bottom: 5px;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 700;
  font-style: normal;
  color: rgba(13, 96, 111, 0.5);
}

.or-text::before {
  content: "";
  position: absolute;
  right: 45px;
  bottom: 59.5%;
  width: 40%;
  height: 1px;
  background-color: rgba(13, 96, 111, 0.5);
}

.or-text::after {
  content: "";
  position: absolute;
  left: 45px;
  bottom: 59.5%;
  width: 40%;
  height: 1px;
  background-color: rgba(13, 96, 111, 0.5);
}

.label-pup-up {
  font-size: 1.6rem;
  line-height: 1.9rem;
  font-weight: 400;
  font-style: normal;
}

.login__input-login {
  padding-left: 15px;
  margin-top: 5px;
  margin-bottom: 15px;
  -webkit-box-shadow: inset 0px 0px 3px rgba(13, 96, 111, 0.08), inset 0px 2px 3px rgba(13, 96, 111, 0.16);
          box-shadow: inset 0px 0px 3px rgba(13, 96, 111, 0.08), inset 0px 2px 3px rgba(13, 96, 111, 0.16);
}

.login__input-password {
  padding-left: 15px;
  margin-top: 5px;
  margin-bottom: 25px;
  -webkit-box-shadow: inset 0px 0px 3px rgba(13, 96, 111, 0.08), inset 0px 2px 3px rgba(13, 96, 111, 0.16);
          box-shadow: inset 0px 0px 3px rgba(13, 96, 111, 0.08), inset 0px 2px 3px rgba(13, 96, 111, 0.16);
}

.login__input-button {
  margin-bottom: 10px;
  color: #ffffff;
  background-color: #0D606F;
}

.forgot-password,
.have-account {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 700;
  font-style: normal;
  text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.16);
}

.forgot-password {
  text-decoration: underline;
}

.have-account {
  color: rgba(13, 96, 111, 0.5);
}

.forgot-password {
  cursor: pointer;
}

.line2 {
  width: 100%;
  height: 1px;
  margin-top: 26px;
  margin-bottom: 20px;
  background-color: rgba(13, 96, 111, 0.5);
}

.line-sing-up {
  margin-top: 15px;
  margin-bottom: 20px;
}

.link-register,
.link-logIn {
  color: #0D606F;
  text-decoration: underline;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}

.navigation > li {
  margin-right: 4.2rem;
}

@media (max-width: 390px) {
  .navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .navigation > li {
    margin-right: 0;
  }
  .navigation > li + li {
    margin-top: 6px;
  }
}

.navigation__link {
  padding: 10px 0;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.022em;
  color: #ffffff;
  white-space: nowrap;
}

.navigation__link:hover {
  color: #fbd7ce;
}

.navigation__link.hamburger-only {
  display: none;
}

@media (max-width: 768px) {
  .navigation__link.hamburger-only {
    display: inline;
  }
}

@media (max-width: 390px) {
  .header_navigation {
    position: fixed;
    top: 0%;
    right: 0;
    z-index: 2;
    width: 165px;
    height: 250px;
    padding: 44px 15px 0 0;
    overflow: auto;
    background-color: #F2785C;
    -webkit-box-shadow: 0px 4px 3px rgba(13, 96, 111, 0.25);
            box-shadow: 0px 4px 3px rgba(13, 96, 111, 0.25);
    border-radius: 10px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: hidden;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
  }
  .header_navigation.active {
    -webkit-transform: none;
            transform: none;
    visibility: visible;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
  }
}

.navigation__close-x {
  position: relative;
  top: -21px;
  left: 3px;
  display: none;
  width: 15px;
  height: 15px;
}

.navigation__close-x.active {
  display: inline-block;
}

.navigation__close-x .close-x {
  position: absolute;
  top: -179px;
  left: 9px;
  width: 21px;
  height: 1.5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.7);
}

.navigation__close-x .close-x_line-up {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navigation__close-x .close-x_line-down {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.overlay-hamburger.active {
  /* Абсолютное позиционирование мобильного меню*/
  position: absolute;
  /* Занимает всё пространство */
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* Полупрозрачный цвет фона */
  background: rgba(80, 80, 80, 0.6);
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.preview {
  padding: 0 8.33333%;
  padding-bottom: 254px;
}

@media (max-width: 768px) {
  .preview {
    padding: 0 3.84615%;
    padding-bottom: 17.4359%;
  }
}

.preview__title {
  max-width: 892px;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: 32px;
  padding-top: 32px;
}

@media (max-width: 390px) {
  .preview__title {
    display: none;
  }
}

.preview__subtitle {
  margin-bottom: 46px;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 768px) {
  .preview__subtitle {
    display: none;
  }
}

.preview__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 892px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
}

.form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 322px;
  padding-left: 41px;
  font-size: 2.4rem;
  line-height: 2.9rem;
  font-weight: 400;
  font-style: italic;
  color: #F2785C;
  border: none;
  outline: none;
  background-color: transparent;
}

.form__input::-webkit-input-placeholder {
  display: inline;
  color: #F2785C;
}

.form__input:-ms-input-placeholder {
  display: inline;
  color: #F2785C;
}

.form__input::-ms-input-placeholder {
  display: inline;
  color: #F2785C;
}

.form__input::placeholder {
  display: inline;
  color: #F2785C;
}

@media (max-width: 768px) {
  .form__input {
    min-width: 190px;
    padding-left: 16.55px;
    font-size: 1.4rem;
    line-height: 1.68rem;
    font-weight: 400;
    font-style: italic;
  }
}

.form__button {
  margin: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 768px) {
  .form__button {
    margin: 9px;
  }
}

.steps__wrapper {
  padding: 81px 9.16667% 96px 9.16667%;
}

@media (max-width: 768px) {
  .steps__wrapper {
    padding: 3.33333% 3.84615% 0 3.84615%;
  }
}

.steps__title {
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .steps__title {
    margin-bottom: 21px;
  }
}

.steps__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}

@media (max-width: 768px) {
  .steps__list {
    margin-bottom: 20px;
  }
}

.steps__item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.steps__item:nth-child(2) {
  padding-left: 70px;
}

@media (max-width: 768px) {
  .steps__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .steps__item:first-child .steps__text {
    width: 94px;
  }
  .steps__item:first-child .icon-square,
  .steps__item:first-child .steps__text {
    -ms-flex-item-align: start;
        align-self: flex-start;
    text-align: left;
  }
  .steps__item:nth-child(2) {
    padding-left: 0;
  }
  .steps__item:nth-child(2) .steps__text {
    padding-bottom: 10px;
  }
  .steps__item:last-child .icon-square,
  .steps__item:last-child .steps__text {
    -ms-flex-item-align: end;
        align-self: flex-end;
    text-align: right;
  }
}

.steps__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 154px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .steps__link {
    height: 113px;
    width: 111px;
  }
}

.steps__text {
  padding: 0;
  margin: 0;
  color: #0D606F;
}

@media (max-width: 768px) {
  .steps__text {
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 400;
    font-style: normal;
  }
}

.destinations {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .destinations {
    padding: 0 3.84615% 0 3.84615%;
  }
}

.destinations__title {
  margin: 0;
  padding-bottom: 46px;
  text-align: center;
}

@media (max-width: 390px) {
  .destinations__title {
    padding-bottom: 21px;
  }
}

.slider__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
  margin: 0 auto;
  margin-bottom: 38px;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .slider__container {
    padding-bottom: 0;
    margin-bottom: 4px;
  }
}

.slider {
  position: relative;
  left: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes move-right {
  from {
    left: 0;
  }
  to {
    left: -860px;
  }
}

@keyframes move-right {
  from {
    left: 0;
  }
  to {
    left: -860px;
  }
}

@-webkit-keyframes move-left {
  from {
    left: 0;
  }
  to {
    left: 860px;
  }
}

@keyframes move-left {
  from {
    left: 0;
  }
  to {
    left: 860px;
  }
}

@-webkit-keyframes move-right-mobile {
  from {
    left: 0%;
  }
  to {
    left: -100%;
  }
}

@keyframes move-right-mobile {
  from {
    left: 0%;
  }
  to {
    left: -100%;
  }
}

@-webkit-keyframes move-left-mobile {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}

@keyframes move-left-mobile {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}

.transition-right {
  -webkit-animation-name: move-right;
          animation-name: move-right;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@media (max-width: 800px) {
  .transition-right {
    -webkit-animation-name: move-right-mobile;
            animation-name: move-right-mobile;
  }
}

.transition-left {
  -webkit-animation-name: move-left;
          animation-name: move-left;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@media (max-width: 800px) {
  .transition-left {
    -webkit-animation-name: move-left-mobile;
            animation-name: move-left-mobile;
  }
}

@-webkit-keyframes move-right2 {
  from {
    left: 0;
  }
  to {
    left: -1720px;
  }
}

@keyframes move-right2 {
  from {
    left: 0;
  }
  to {
    left: -1720px;
  }
}

@-webkit-keyframes move-left2 {
  from {
    left: 0;
  }
  to {
    left: 1720px;
  }
}

@keyframes move-left2 {
  from {
    left: 0;
  }
  to {
    left: 1720px;
  }
}

@-webkit-keyframes move-right-mobile2 {
  from {
    left: 0%;
  }
  to {
    left: -200%;
  }
}

@keyframes move-right-mobile2 {
  from {
    left: 0%;
  }
  to {
    left: -200%;
  }
}

@-webkit-keyframes move-left-mobile2 {
  from {
    left: 0%;
  }
  to {
    left: 200%;
  }
}

@keyframes move-left-mobile2 {
  from {
    left: 0%;
  }
  to {
    left: 200%;
  }
}

.transition-right2 {
  -webkit-animation-name: move-right2;
          animation-name: move-right2;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@media (max-width: 800px) {
  .transition-right2 {
    -webkit-animation-name: move-right-mobile2;
            animation-name: move-right-mobile2;
  }
}

.transition-left2 {
  -webkit-animation-name: move-left2;
          animation-name: move-left2;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@media (max-width: 800px) {
  .transition-left2 {
    -webkit-animation-name: move-left-mobile2;
            animation-name: move-left-mobile2;
  }
}

.slide__wrapper {
  position: relative;
  margin-left: 60px;
  width: 100%;
  height: 100%;
  max-width: 800px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.slide__wrapper:first-child {
  margin-left: 0px;
}

@media (max-width: 800px) {
  .slide__wrapper {
    margin-left: 0;
  }
}

.slider__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 390px) {
  .slider__image {
    border-radius: 16px;
    height: 210px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.image__country-text {
  position: absolute;
  bottom: 45px;
  left: 19px;
  font-size: 3.2rem;
  line-height: 4.2rem;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .image__country-text {
    font-size: 2rem;
    line-height: 2.646rem;
    font-weight: 400;
    font-style: normal;
  }
}

@media (max-width: 390px) {
  .image__country-text {
    top: 9px;
  }
}

.sliderButton {
  position: absolute;
  top: calc(50% - 128px);
  padding: 20px;
  padding-top: 80px;
  padding-bottom: 80px;
  border: none;
  outline: none;
  background: transparent;
  z-index: 2;
}

@media (max-width: 390px) {
  .sliderButton {
    top: calc(50% - 22px);
    padding: 6px;
  }
}

.sliderButton.sliderBtnPrev {
  left: 5px;
  padding-right: 60px;
}

.sliderButton.sliderBtnPrev:hover .sliderBtnPrev__image {
  display: block;
}

.sliderButton.sliderBtnPrev:hover path {
  fill: rgba(242, 120, 92, 0.5);
}

.sliderButton.sliderBtnNext {
  right: 5px;
  padding-left: 60px;
}

.sliderButton.sliderBtnNext:hover .sliderBtnNext__image {
  display: block;
}

.sliderButton.sliderBtnNext:hover path {
  fill: rgba(242, 120, 92, 0.5);
}

@media (max-width: 390px) {
  svg.arrow {
    display: block;
    height: 26px;
  }
}

.sliderBtnPrev__image {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slider__circles-container {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 37px);
  padding: 0;
  margin: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .slider__circles-container {
    bottom: 12px;
    left: calc(50% - 19px);
  }
}

.slider__label-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
  border-radius: 50%;
  background-color: rgba(242, 120, 92, 0.5);
  cursor: pointer;
}

.slider__label-circle.active {
  background-color: #F2785C;
}

@media (max-width: 768px) {
  .slider__label-circle {
    width: 8px;
    height: 8px;
    margin-right: 3px;
  }
}

.slider__input-circle {
  position: absolute;
  opacity: 0;
}

.popular__button {
  margin: auto;
}

@media (max-width: 768px) {
  .popular__button {
    margin-bottom: 20px;
  }
}

.stories__wrapper {
  position: relative;
  padding-left: 8.40278%;
  padding-right: 8.33333%;
  padding-bottom: 41px;
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .stories__wrapper {
    padding: 0 3.71795%;
    padding-bottom: 3.33333%;
  }
}

.story-bg {
  position: absolute;
  top: 93px;
  right: -2px;
  z-index: -2;
  height: 97.5%;
}

@media (max-width: 768px) {
  .story-bg {
    top: 30px;
    right: 0px;
    height: 105%;
  }
}

@media (max-width: 390px) {
  .story-bg {
    display: none;
  }
}

.story-bg-mobil {
  display: none;
}

@media (max-width: 390px) {
  .story-bg-mobil {
    display: block;
    position: absolute;
    top: 29px;
    right: 0px;
    z-index: -2;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

.stories__title {
  margin: 0;
  padding-bottom: 80px;
  text-align: center;
}

@media (max-width: 768px) {
  .stories__title {
    padding-bottom: 20px;
  }
}

.stories__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 31px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .stories__container {
    row-gap: 16px;
    margin-bottom: 11px;
  }
}

@media (max-width: 390px) {
  .stories__container {
    row-gap: 15px;
  }
}

.story {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 38px;
          column-gap: 38px;
  color: #0D606F;
}

@media (max-width: 768px) {
  .story {
    -webkit-column-gap: 11px;
            column-gap: 11px;
  }
}

.story__image {
  -ms-flex-preferred-size: 34%;
      flex-basis: 34%;
  border-radius: 16px;
  -webkit-box-shadow: 0px 4px 4px #0D606F;
          box-shadow: 0px 4px 4px #0D606F;
  overflow: hidden;
}

@media (max-width: 768px) {
  .story__image {
    -ms-flex-preferred-size: 52%;
        flex-basis: 52%;
    height: 129px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

@media (max-width: 390px) {
  .story__image {
    display: none;
  }
}

.story__image-mob {
  display: none;
}

@media (max-width: 390px) {
  .story__image-mob {
    display: block;
    border-radius: 16px;
    -webkit-box-shadow: 0px 4px 4px #0D606F;
            box-shadow: 0px 4px 4px #0D606F;
  }
}

.story__description {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}

.story__title {
  margin: 0;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .story__title {
    margin-top: 5px;
    margin-bottom: 11px;
  }
}

.story__text {
  position: relative;
  height: 142px;
  padding-bottom: 0;
  margin-bottom: 3px;
  /* will make [...] at the end. but it doesn't work*/
  overflow: hidden;
}

@media (max-width: 768px) {
  .story__text {
    height: 85px;
    margin: 0;
    padding: 0;
    margin-bottom: -9px;
    font-size: 0.9rem;
    line-height: 1.08rem;
    font-weight: 400;
    font-style: normal;
  }
}

@media (max-width: 390px) {
  .story__text {
    display: none;
  }
}

.story__text-mobile {
  display: none;
}

@media (max-width: 390px) {
  .story__text-mobile {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.08rem;
    font-weight: 400;
    font-style: normal;
  }
}

@media (max-width: 390px) {
  .stories__read-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.readmore__link {
  font-weight: 700;
  color: #0D606F;
  text-decoration: underline;
}

.readmore__link:hover {
  color: rgba(13, 96, 111, 0.5);
}

@media (max-width: 768px) {
  .readmore__link {
    font-size: 0.9rem;
    line-height: 1.08rem;
    font-weight: 400;
    font-style: normal;
  }
}

.story__button {
  margin: auto;
}
/*# sourceMappingURL=style.css.map */