@import "null.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Montserrat:wght@600;700&display=swap");
img {
  max-width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
}
@media (max-width: 1440px) {
  body {
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1440 - 320)));
  }
}

body._lock {
  overflow: hidden;
}

.content {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container {
  max-width: 1440px;
  margin: 0px auto;
  padding: 0px 40px;
}
@media (max-width: 768px) {
  .container {
    max-width: none;
  }
}

.title {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  color: #192252;
}
@media (max-width: 1440px) {
  .title {
    font-size: calc(24px + (36 - 24) * ((100vw - 320px) / (1440 - 320)));
  }
}

.subtitle {
  line-height: 150%;
  color: #848fac;
}

.button {
  max-width: 157px;
  background: #0e1734;
  border-radius: 4px;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
}
.button:hover {
  -webkit-box-shadow: 0px 0px 7px #0e1734;
          box-shadow: 0px 0px 7px #0e1734;
}
@media (max-width: 768px) {
  .button {
    margin: 0px auto 15px auto;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 70px;
  z-index: 10;
  background: #ffffff;
}

.nav__row {
  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: 46px 0 46px 0;
  min-height: 70px;
}
@media (max-width: 1440px) {
  .nav__row {
    padding-bottom: calc(35px + (46 - 35) * ((100vw - 320px) / (1440 - 320)));
    padding-top: calc(35px + (46 - 35) * ((100vw - 320px) / (1440 - 320)));
  }
}

.nav__logo {
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 600;
  text-align: left;
  color: #192252;
  z-index: 3;
}

.nav__icon {
  display: none;
}

.nav__navigation {
  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;
}
@media (max-width: 768px) {
  .nav__navigation {
    display: block;
    position: fixed;
    text-align: center;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(224, 224, 224, 0.9);
    padding: 100px 30px 30px 30px;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    margin: 0;
    z-index: 1;
  }
}
.nav__navigation .nav__secion {
  padding: 0px 16px;
}
.nav__navigation .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .nav__navigation .nav__list {
    display: block;
  }
  .nav__navigation .nav__list > li {
    margin: 50px 0;
  }
}

.nav__section {
  font-weight: 500;
  font-size: 16px;
  color: #192252;
}
.nav__section:hover {
  text-shadow: 0px 0px 1px #192252;
  -webkit-transition: text-shadow 0.3s ease-in-out;
  transition: text-shadow 0.3s ease-in-out;
}
.nav__section::after {
  content: "";
  background-color: #192252;
  display: block;
  height: 3px;
  width: 0%;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.nav__section:hover::after {
  content: "";
  width: 100%;
}
@media (max-width: 768px) {
  .nav__section {
    font-size: 28px;
    padding: 0;
  }
  .nav__section::after {
    content: "";
    background-color: none;
    -webkit-transition: width 0s ease-in-out;
    transition: width 0s ease-in-out;
  }
  .nav__section:hover::after {
    content: "";
    width: 20%;
    margin: 0px auto;
  }
}

.nav__navigation._active {
  left: 0;
}

@media (max-width: 768px) {
  .nav__starter {
    display: block;
    position: fixed;
    text-align: center;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 10%;
    padding: 0px 30px 30px 30px;
    z-index: 1;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
  }
}
.nav__starter .nav__link {
  background: #0e1734;
  padding: 14px 16px;
  border-radius: 4px;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  font-family: Inter;
  font-size: 16px;
  color: #ffffff;
}
.nav__starter .nav__link:hover {
  -webkit-box-shadow: 0px 0px 5px #0e1734;
          box-shadow: 0px 0px 5px #0e1734;
}

.nav__starter._active {
  left: 0;
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15% 0 15% 0;
}
@media (max-width: 768px) {
  .about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 150px 0 15% 0;
  }
}

.about__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  padding: 0 10px 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
  opacity: 0;
}
@media (max-width: 768px) {
  .about__description {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 0;
  }
}

.about__description._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.about__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  color: #192252;
}
@media (max-width: 1440px) {
  .about__title {
    font-size: calc(30px + (48 - 30) * ((100vw - 320px) / (1440 - 320)));
  }
}

.about__subtitle {
  padding: 5% 25% 5% 0px;
}
@media (max-width: 768px) {
  .about__subtitle {
    padding: 5% 0% 5% 0px;
  }
}

.about__reservation {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.about__image {
  max-width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: all 2s ease 0.5s;
  transition: all 2s ease 0.5s;
  opacity: 0;
}

.about__image > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.about__image > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.about__image > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.about__image._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.about__second-slice {
  padding: 48% 0 0 0;
}

.image {
  -webkit-box-shadow: 0px 5px 5px #cfcdcd;
          box-shadow: 0px 5px 5px #cfcdcd;
}

.cootege__row {
  padding: 10% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .cootege__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.cootege__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  padding: 0 0 0 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translate(0, 20%);
          transform: translate(0, 20%);
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  opacity: 0;
}
@media (max-width: 768px) {
  .cootege__description {
    width: 100%;
  }
}
.cootege__description .cootege__subtitle {
  padding: 5% 10% 5% 0;
}
@media (max-width: 768px) {
  .cootege__description .cootege__subtitle {
    padding: 5% 0% 5% 0;
  }
}
.cootege__description .cootege__parag:nth-child(1) {
  padding-bottom: 16px;
}

.cootege__description._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.cootege__image {
  width: 45%;
  -webkit-transform: translate(0, 20%);
          transform: translate(0, 20%);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
  opacity: 0;
}
@media (max-width: 768px) {
  .cootege__image {
    width: 100%;
  }
}

.cootege__image._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.service__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service__activities {
  padding: 16px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translate(0, 20%);
          transform: translate(0, 20%);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
  opacity: 0;
}
@media (max-width: 768px) {
  .service__activities {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.service__activities._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.service__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5% 0 0;
  width: 50%;
}
@media (max-width: 768px) {
  .service__description {
    width: 100%;
  }
}

.service__subtitle {
  padding: 10px 0 10px 0;
}

.service__food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0px 0px 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translate(0, 20%);
          transform: translate(0, 20%);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
  opacity: 0;
}
@media (max-width: 768px) {
  .service__food {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.service__food._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.suggestions__row {
  padding: 10% 0;
}

.suggestions__about {
  text-align: center;
  -webkit-transform: translate(0, 20%);
          transform: translate(0, 20%);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
  opacity: 0;
}
.suggestions__about .suggestions__subtitle {
  padding: 2% 25%;
}
@media (max-width: 768px) {
  .suggestions__about .suggestions__subtitle {
    padding: 2% 0;
  }
}
.suggestions__about .suggestions__button {
  max-width: 165px;
  margin: 0px auto;
}
.suggestions__about .suggestions__button .button_suggest {
  padding: 16px 28px;
}

.suggestions__about._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.suggestions__rooms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  padding: 5% 0 0 0;
  margin: 0 -12px;
}

.column {
  margin: 0 12px;
  max-width: 384px;
  -webkit-transform: translate(0, 20%);
          transform: translate(0, 20%);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
  opacity: 0;
}

.column._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.column__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.suggestions__naming {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #000000;
  padding: 5% 0 0 0;
}

.suggestions__descripton {
  padding: 2% 0;
}

.suggestions__more {
  color: #424f7b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0 0 5px 0;
  cursor: pointer;
}

.faq__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .faq__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.faq__contact {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 415px;
  margin: 50px 10px 0 0;
  -webkit-transform: translate(0, 20%);
          transform: translate(0, 20%);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
  opacity: 0;
}
@media (max-width: 768px) {
  .faq__contact {
    margin: 0px auto;
  }
}
.faq__contact .faq__slogan {
  color: #424f7b;
  font-weight: 500;
  font-size: 16px;
}
.faq__contact .faq__title {
  padding: 12px 0;
}
.faq__contact .faq__subtitle {
  max-width: 384px;
}
.faq__contact .faq__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0 0 0;
}
@media (max-width: 768px) {
  .faq__contact .faq__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq__contact .faq__links .faq__rooms {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0 0 0 5%;
}
@media (max-width: 768px) {
  .faq__contact .faq__links .faq__rooms {
    padding: 0;
  }
}
.faq__contact .faq__links .faq__rooms .faq__section {
  font-weight: 500;
  font-size: 16px;
  color: #0e1734;
}
.faq__contact .faq__links .faq__rooms .faq__section:hover {
  text-shadow: 0px 0px 1px #192252;
  -webkit-transition: text-shadow 0.3s ease-in-out;
  transition: text-shadow 0.3s ease-in-out;
}
.faq__contact .faq__links .faq__rooms .faq__section::after {
  content: "";
  background-color: #192252;
  display: block;
  height: 3px;
  width: 0%;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.faq__contact .faq__links .faq__rooms .faq__section:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .faq__contact .faq__links .faq__rooms .faq__section {
    padding: 0;
  }
}

.faq__contact._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.faq__quastions {
  -webkit-transform: translate(0, 20%);
          transform: translate(0, 20%);
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
  opacity: 0;
}

.faq__quastions._active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.faq__spoilerbody {
  -webkit-box-shadow: 1px 1px 10px #f0eeee;
          box-shadow: 1px 1px 10px #f0eeee;
  padding: 0 32px;
  max-width: 588px;
  margin: 12px auto 12px auto;
}
.faq__spoilerbody .spoiler {
  background: #ffffff;
  display: block;
  font-family: Montserrat;
  text-align: left;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  border-radius: 4px;
  padding: 32px 0;
  color: #424f7b;
  margin: 3% 0;
}
@media (max-width: 1440px) {
  .faq__spoilerbody .spoiler {
    font-size: calc(15px + (24 - 15) * ((100vw - 320px) / (1440 - 320)));
  }
}
.faq__spoilerbody .faq__spoilerheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.faq__spoilerbody .faq__spoilerimg {
  margin: auto auto;
  font-size: 40px;
  color: #FF620A;
  background: rgba(255, 98, 10, 0.12);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.faq__spoilerbody .faq__spoilerimg._active {
  background: #FF620A;
  color: #ffffff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__spoilerbody .faq__description {
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  max-height: 0;
}
.faq__spoilerbody .faq__description._active {
  max-height: 150px;
  padding: 0 0 32px 0;
}

.feedback__body {
  max-width: 794px;
  text-align: center;
  margin: 0px auto;
  padding: 10% 0;
}

.feedback__icon {
  padding: 10% 0 5% 0;
}

.feedback__text {
  padding: 0 0 5% 0;
}

.feedback__slider {
  position: relative;
}
.feedback__slider .slick-arrow {
  position: absolute;
  top: 25%;
  z-index: 2;
  font-size: 0;
  height: 50px;
  width: 30px;
}
@media (max-width: 768px) {
  .feedback__slider .slick-arrow {
    top: 25%;
  }
}
.feedback__slider .slick-arrow.slick-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url("../img/icons/Vector (Stroke).svg") 0 0/100% no-repeat;
  top: 20%;
}
@media (max-width: 768px) {
  .feedback__slider .slick-arrow.slick-prev {
    top: 18%;
  }
}
.feedback__slider .slick-arrow.slick-next {
  right: 0;
  background: url("../img/icons/Vector (Stroke).svg") 0 0/100% no-repeat;
}
.feedback__slider .slick-dots {
  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;
}
.feedback__slider .slick-dots li {
  list-style: none;
}
.feedback__slider .slick-dots li button {
  font-size: 0;
  height: 8px;
  width: 8px;
  opacity: 0.6;
  background: #FAB047;
  border-radius: 50%;
  margin: 0 6px;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
.feedback__slider .slick-dots li.slick-active button {
  height: 12px;
  width: 12px;
  opacity: 1;
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.name {
  font-size: 20px;
  font-weight: 500;
  color: #192252;
}

.footer {
  background: #0b265a;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10% 0;
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__title {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .footer__title {
    font-size: calc(25px + (32 - 25) * ((100vw - 320px) / (1440 - 320)));
  }
}

.footer__text {
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  max-width: 186px;
  padding: 10% 0;
}
@media (max-width: 1440px) {
  .footer__text {
    font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1440 - 320)));
    line-height: calc(22px + (28 - 22) * ((100vw - 320px) / (1440 - 320)));
  }
}

.footer__networks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-size: 32px;
}
@media (max-width: 1440px) {
  .footer__networks {
    font-size: calc(25px + (32 - 25) * ((100vw - 320px) / (1440 - 320)));
  }
}

.footer__inst {
  padding: 0 24px;
}

.footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__lists .footer__spoiler {
  cursor: default;
}
.footer__lists .footer__arrow {
  display: none;
}
@media (max-width: 768px) {
  .footer__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__lists .footer__arrow {
    display: block;
    margin: auto auto;
    color: #ffffff;
    font-size: 20px;
  }
}
.footer__lists .footer__sliderhead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
}
.footer__lists .footer__spoiler {
  color: #FFFFFF;
  background: #0B265A;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  text-align: left;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 50px;
}

.list {
  width: 100%;
  font-size: 16px;
  color: #D9DBDE;
}
.list .footer__point {
  color: #D9DBDE;
}
@media (max-width: 768px) {
  .list {
    overflow: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    max-height: 0;
  }
  .list li {
    padding: 0;
  }
}
.list li {
  padding: 12px 0;
}
@media (max-width: 1440px) {
  .list {
    font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1440 - 320)));
  }
}

@media (max-width: 768px) {
  .list._active {
    max-height: 150px;
    padding: 0 0 12px 0;
  }
}

@media (max-width: 767px) {
  .nav__icon {
    z-index: 2;
    display: block;
    position: relative;
    width: 38px;
    height: 30px;
    cursor: pointer;
  }
  .nav__icon span, .nav__icon::after, .nav__icon::before {
    left: 0;
    position: absolute;
    height: 20%;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #0e1734;
    border-radius: 5px;
  }
  .nav__icon::after, .nav__icon::before {
    content: "";
  }
  .nav__icon::after {
    bottom: 0;
  }
  .nav__icon::before {
    top: 0;
  }
  .nav__icon span {
    top: 50%;
    -webkit-transform: scale(1) translate(0px, -50%);
            transform: scale(1) translate(0px, -50%);
  }

  .nav__icon._active span {
    -webkit-transform: scale(0) translate(0px, -50%);
            transform: scale(0) translate(0px, -50%);
  }

  .nav__icon._active::before {
    top: 50%;
    -webkit-transform: rotate(-45deg) translate(0px, -50%);
            transform: rotate(-45deg) translate(0px, -50%);
  }

  .nav__icon._active::after {
    bottom: 45%;
    -webkit-transform: rotate(45deg) translate(0px, 50%);
            transform: rotate(45deg) translate(0px, 50%);
  }
}
.pop-up {
  background: rgba(201, 201, 201, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.pop-up._active {
  opacity: 1;
  visibility: visible;
}

.pop-up__body {
  min-height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pop-up__wrapper {
  padding: 40px 40px;
  background: #ffffff;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 5px #b3b4b4;
          box-shadow: 0px 0px 5px #b3b4b4;
}
.pop-up__wrapper .pop-up__close {
  cursor: pointer;
  position: relative;
}
.pop-up__wrapper .pop-up__close::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 5px;
  height: 4px;
  width: 30px;
  background-color: #0b265a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pop-up__wrapper .pop-up__close::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 4px;
  border-radius: 5px;
  width: 30px;
  background-color: #0b265a;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.pop-up__title {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 150%;
  color: #192252;
  text-align: center;
  font-size: calc(20px + (40 - 20) * ((100vw - 320px) / (1440 - 320)));
}

.section {
  padding: 0px 0px 0px 5px;
}

.pop-up__subtitle {
  font-family: Montserrat;
  font-style: normal;
  font-size: 36px;
  font-weight: 600;
  line-height: 150%;
  color: #192252;
}
@media (max-width: 1440px) {
  .pop-up__subtitle {
    font-size: calc(18px + (36 - 18) * ((100vw - 320px) / (1440 - 320)));
  }
}

.pop-up__text {
  color: #848fac;
}
@media (max-width: 1440px) {
  .pop-up__text {
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1440 - 320)));
  }
}

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

.pop-up__networks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 36px;
  color: #192252;
}
@media (max-width: 1440px) {
  .pop-up__networks {
    font-size: calc(20px + (36 - 20) * ((100vw - 320px) / (1440 - 320)));
  }
}

.pop-up__media {
  line-height: 150%;
}

.pop-up__submit {
  background: #0e1734;
  border-radius: 4px;
  min-width: 100%;
  font-size: 16px;
  padding: 20px 40px;
  margin: 10px 0 0 0;
  -ms-grid-column-align: center;
      justify-self: center;
  color: #ffffff;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
}
.pop-up__submit:hover {
  -webkit-box-shadow: 0px 0px 7px #0e1734;
          box-shadow: 0px 0px 7px #0e1734;
}

.pop-up__wrapper_second {
  margin: 10px 0px;
}

.close:nth-child(1) {
  margin: 0 0 10px 0;
}

input {
  border: 2px solid #b3b4b4;
  height: 40px;
  width: 100%;
  color: #b3b4b4;
  font-size: 18px;
  padding: 0 10px;
  border-radius: 5px;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea {
  border: 2px solid #b3b4b4;
  height: 100px;
  width: 100%;
  color: #b3b4b4;
  font-size: 18px;
  padding: 0 10px;
  border-radius: 5px;
}