@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
html,
body {
  scroll-behavior: smooth;
}

img {
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
}

section {
  overflow: hidden;
}

body {
  background-color: #1f1f1f;
  font-family: 'Montserrat';
  font-weight: 400;
  line-height: 150%;
  font-style: normal;
  color: #fff;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  body {
    font-size: calc(14px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  body {
    font-size: calc(14px + 2 * (100vw / 1440));
  }
}

.wrapper {
  width: 85%;
  margin: 0 auto;
}

/* HEADER */
.header {
  background-color: #393939;
  width: 100%;
  line-height: 1;
  height: 70px;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  display: block;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .header__logo {
    font-size: calc(18px + 17 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .header__logo {
    font-size: calc(18px + 10 * (100vw / 1440));
  }
}

.header__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__wrapper > div,
.header__wrapper > a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header__burger-input {
  display: none;
}

.header__burger-input:checked ~ .header__burger-menu {
  -webkit-transition: opacity 0.3s, -webkit-transform 0s 0s;
  transition: opacity 0.3s, -webkit-transform 0s 0s;
  transition: opacity 0.3s, transform 0s 0s;
  transition: opacity 0.3s, transform 0s 0s, -webkit-transform 0s 0s;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.header__burger-label {
  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;
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header__burger-label:hover {
  opacity: 0.8;
}

.header__burger-label:active {
  opacity: 0.7;
}

.header__burger-icon,
.header__burger-icon::before,
.header__burger-icon::after {
  content: '';
  display: block;
  position: relative;
  left: 0;
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.header__burger-icon::before {
  top: -8px;
}

.header__burger-icon::after {
  top: 5px;
}

.header__burger-menu {
  -webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s, -webkit-transform 0s 0.3s;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 70px;
  bottom: 0;
  width: 250px;
  padding: 30px 0px;
}

.header__burger-menu .header__socials {
  padding-left: 15px;
}

.header__burger-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
}

.header__burger-nav a:last-child {
  border-bottom: none;
}

.header__burger-link {
  padding: 10px 15px;
  border-bottom: 1px solid gray;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .header__burger-link {
    font-size: calc(14px + 6.8 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .header__burger-link {
    font-size: calc(14px + 4 * (100vw / 1440));
  }
}

.header__burger-link:hover {
  opacity: 0.8;
}

.header__burger-link:active {
  opacity: 0.7;
}

.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}

.header__socials a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header__socials a:hover {
  opacity: 0.8;
}

.header__socials a:active {
  opacity: 0.7;
}

.header__navigation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__list {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 48px;
  column-gap: 48px;
  text-transform: uppercase;
}

.header__link-active {
  font-weight: 700;
}

.header__logo {
  text-align: center;
  margin: 0 auto;
}

/*   HERO  */
.hero {
  border-radius: 24px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#1f1f1f),
    to(#3d3d3d)
  );
  background: linear-gradient(0deg, #1f1f1f, #3d3d3d);
  color: #fff;
  padding: 90px 0 60px;
}

.hero__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 50px;
  column-gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 30px;
  column-gap: 30px;
  row-gap: 15px;
  margin-bottom: 20px;
}

.hero__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5px;
  column-gap: 5px;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.hero__contact:hover {
  opacity: 0.8;
}

.hero__contact:active {
  opacity: 0.7;
}

.hero__order {
  margin-top: 30px;
  display: inline-block;
  color: #fff;
  border: 2px solid gray;
  line-height: 1;
  padding: 10px 25px;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .hero__order {
    font-size: calc(14px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .hero__order {
    font-size: calc(14px + 2 * (100vw / 1440));
  }
}

.hero__order:hover {
  background: rgba(126, 126, 126, 0.2);
}

.hero__order:active {
  background: rgba(126, 126, 126, 0.3);
}

.hero__right {
  -ms-grid-column-align: center;
  justify-self: center;
}

.hero__image {
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px 0 #000;
  box-shadow: 0px 0px 20px 0 #000;
}

.hero__subtitle {
  font-weight: 300;
  max-width: 700px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .hero__subtitle {
    font-size: calc(28px + 34 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .hero__subtitle {
    font-size: calc(28px + 20 * (100vw / 1440));
  }
}

.hero__percent {
  display: inline-block;
  background-color: #cc2944;
  padding: 6px 10px;
}

.hero__title {
  font-weight: 300;
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .hero__title {
    font-size: calc(28px + 34 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .hero__title {
    font-size: calc(28px + 20 * (100vw / 1440));
  }
}

.title {
  text-align: center;
  margin: 0 auto 50px;
  font-weight: 300;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .title {
    font-size: calc(18px + 30.6 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .title {
    font-size: calc(18px + 18 * (100vw / 1440));
  }
}

/* ABOUT */
.about {
  position: relative;
  background: #0c131b url('../images/main-bg-1.jpg') no-repeat center 80%;
  background-size: cover;
  padding: 100px;
}

.about::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: grayscale(60%);
  backdrop-filter: grayscale(60%);
}

.about__wrapper {
  position: relative;
  z-index: 3;
  width: 75%;
  margin: 0 auto;
  -webkit-column-gap: 50px;
  column-gap: 50px;
}

.about__text {
  text-align: center;
  max-width: 700px;
  line-height: 24px;
  font-weight: 300;
  margin: 0 auto 20px;
}

.about__bold {
  font-weight: 700;
}

.gallery {
  padding: 50px 0 60px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#1f1f1f),
    to(#3d3d3d)
  );
  background: linear-gradient(90deg, #1f1f1f, #3d3d3d);
}

.gallery__container {
  position: relative;
}

.gallery__slide {
  z-index: 3;
}

.gallery__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gallery__button-prev {
  left: 10px;
}

.gallery__buttons {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  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;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(126, 126, 126, 0.8);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gallery__buttons:hover {
  background: #7e7e7e;
}

.gallery__buttons:active {
  background: rgba(126, 126, 126, 0.6);
}

.gallery__button-next {
  right: 10px;
}

/* FEATURES */
.features {
  padding: 90px 0;
  background: linear-gradient(-75deg, #1f1f1f, #3d3d3d);
  position: relative;
  overflow: hidden;
}

.features__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.features__left {
  width: 100%;
  height: 100%;
  text-align: center;
}

.features__right {
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  -webkit-column-gap: 32px;
  column-gap: 32px;
}

.features__title {
  text-align: left;
  line-height: 1.3;
  margin-bottom: 40px;
}

.features__list {
  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: 30px;
}

.features__link {
  position: relative;
}

.features__link::before {
  content: '';
  position: absolute;
  z-index: 2;
  display: block;
  background-color: gray;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: -5px;
  left: -10px;
}

.features__text {
  position: relative;
  font-weight: 400;
  z-index: 3;
}

.features__image {
  -webkit-box-shadow: 0px 0px 20px 0 #000;
  box-shadow: 0px 0px 20px 0 #000;
  border-radius: 10px;
}

/*  INFORMATION */
.information {
  background: radial-gradient(#1f1f1f, #363636);
  background-size: cover;
  padding: 90px 0;
}

.information__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr 2fr;
  grid-template-columns: 2fr 1fr 2fr;
  -webkit-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 50px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.information_grid_2 {
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}

.information_grid_1 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.information__text-block {
  margin-bottom: 50px;
}

.information__text {
  margin-bottom: 30px;
}

.information__title {
  text-align: left;
  line-height: 1;
  margin-bottom: 30px;
}

.information__subtitle {
  line-height: 1.3;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .information__subtitle {
    font-size: calc(20px + 6.8 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .information__subtitle {
    font-size: calc(20px + 4 * (100vw / 1440));
  }
}

.information__description {
  font-weight: 300;
}

.information__description p {
  margin-bottom: 30px;
}

.information__block-list .information__block:first-child {
  padding-top: 0;
}

.information__block-list .information__block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 35px;
}

.information__block {
  border-bottom: 2px solid #fff;
  padding-top: 35px;
  padding-bottom: 35px;
}

.information__price {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .information__price {
    font-size: calc(18px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .information__price {
    font-size: calc(18px + 2 * (100vw / 1440));
  }
}

.information__for {
  line-height: 1.3;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .information__for {
    font-size: calc(16px + 10.2 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .information__for {
    font-size: calc(16px + 6 * (100vw / 1440));
  }
}

.information__list li {
  margin-bottom: 15px;
  line-height: 1.3;
}

.information__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.order {
  background: radial-gradient(#3d3d3d, #1f1f1f);
  padding: 50px 0 60px;
}

.order__wrapper {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.order__title {
  margin-bottom: 20px;
}

.order__subtitle {
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .order__subtitle {
    font-size: calc(12px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .order__subtitle {
    font-size: calc(12px + 2 * (100vw / 1440));
  }
}

.order__btn {
  margin: 0 auto 40px;
}

.order__block {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px 40px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.order__price {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .order__price {
    font-size: calc(16px + 13.6 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .order__price {
    font-size: calc(16px + 8 * (100vw / 1440));
  }
}

.order__price-subtitle {
  padding-bottom: 30px;
  border-bottom: 1px solid gray;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .order__price-subtitle {
    font-size: calc(14px + 6.8 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .order__price-subtitle {
    font-size: calc(14px + 4 * (100vw / 1440));
  }
}

.order__link {
  color: #308fb4;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.order__link:hover {
  opacity: 0.8;
}

.order__text {
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .order__text {
    font-size: calc(12px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .order__text {
    font-size: calc(12px + 2 * (100vw / 1440));
  }
}

.order__text a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.order__text a:hover {
  color: #fff;
}

.order__return {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .order__return {
    font-size: calc(16px + 13.6 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .order__return {
    font-size: calc(16px + 8 * (100vw / 1440));
  }
}

.price {
  padding: 50px 0 60px;
  background: radial-gradient(#464646, #282828);
}

.price__list {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 30px;
  column-gap: 30px;
  row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
}

.price__list-title {
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .price__list-title {
    font-size: calc(16px + 10.2 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .price__list-title {
    font-size: calc(16px + 6 * (100vw / 1440));
  }
}

.price__list-text {
  text-align: center;
  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;
  row-gap: 5px;
}

@media screen and (max-width: 767px) {
  .price__list-text {
    font-size: calc(14px + 5.1 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .price__list-text {
    font-size: calc(14px + 3 * (100vw / 1440));
  }
}

.date {
  padding: 50px 0 60px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1f1f1f),
    to(#2d2d2d)
  );
  background: linear-gradient(180deg, #1f1f1f, #2d2d2d);
}

.date__block {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .date__block-title {
    font-size: calc(16px + 13.6 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .date__block-title {
    font-size: calc(16px + 8 * (100vw / 1440));
  }
}

.date__block-subtitle {
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .date__block-subtitle {
    font-size: calc(14px + 6.8 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .date__block-subtitle {
    font-size: calc(14px + 4 * (100vw / 1440));
  }
}

.date__price-title {
  margin-top: 16px;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .date__price-title {
    font-size: calc(14px + 6.8 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .date__price-title {
    font-size: calc(14px + 4 * (100vw / 1440));
  }
}

.date__prices-text {
  position: relative;
  padding-left: 16px;
}

.date__prices-text::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.date__group-block {
  margin-bottom: 12px;
}

.date__group-title {
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .date__group-title {
    font-size: calc(14px + 6.8 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .date__group-title {
    font-size: calc(14px + 4 * (100vw / 1440));
  }
}

.date__group-item {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.date__group-item::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  left: 4px;
  top: 18%;
  transform: translateY(-50%);
}

.date__info {
  margin-bottom: 40px;
}

.date__how-title {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .date__how-title {
    font-size: calc(16px + 13.6 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .date__how-title {
    font-size: calc(16px + 8 * (100vw / 1440));
  }
}

.date__how-text {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.date__how-text::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.pays {
  padding: 30px 0 10px;
  background: #000;
}

.pays__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 15px;
  column-gap: 15px;
  row-gap: 20px;
}

.pays__img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 50px;
  min-width: 100px;
  max-width: 200px;
}

.modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s, -webkit-transform 0s 0.3s;
  overflow-y: auto;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.modal-active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.3s, -webkit-transform 0s 0s;
  transition: opacity 0.3s, -webkit-transform 0s 0s;
  transition: opacity 0.3s, transform 0s 0s;
  transition: opacity 0.3s, transform 0s 0s, -webkit-transform 0s 0s;
}

.modal-active .modal__form {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.modal__form {
  opacity: 0;
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  position: relative;
  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;
  background: #252525;
  padding: 40px 20px 50px;
  border-radius: 10px;
  min-width: 600px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal__close {
  position: absolute;
  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;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (max-width: 767px) {
  .modal__close {
    font-size: calc(18px + 10.2 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .modal__close {
    font-size: calc(18px + 6 * (100vw / 1440));
  }
}

.modal__close:hover {
  color: white;
}

.modal__close:active {
  color: rgba(255, 255, 255, 0.8);
}

.modal__title {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .modal__title {
    font-size: calc(18px + 10.2 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .modal__title {
    font-size: calc(18px + 6 * (100vw / 1440));
  }
}

.modal__first-form {
  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;
  width: 100%;
}

.modal__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.modal__tab {
  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;
  padding: 5px;
  width: calc(50% - 5px);
  min-height: 50px;
  border: 1px solid gray;
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .modal__tab {
    font-size: calc(12px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .modal__tab {
    font-size: calc(12px + 2 * (100vw / 1440));
  }
}

.modal__tab:not(.modal__tab-active):hover {
  background-color: rgba(126, 126, 126, 0.1);
}

.modal__tab-active {
  background-color: rgba(126, 126, 126, 0.3);
}

.modal__inputs {
  width: 100%;
  display: -ms-grid;
  display: grid;
  row-gap: 15px;
  margin-bottom: 30px;
}

.modal__input-block {
  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: 5px;
}

.modal__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  border-radius: 5px;
  color: #000;
  line-height: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .modal__input {
    font-size: calc(14px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .modal__input {
    font-size: calc(14px + 2 * (100vw / 1440));
  }
}

.modal__input:active,
.modal__input:focus {
  background: rgba(255, 255, 255, 0.8);
}

.modal__btn {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .modal__btn {
    font-size: calc(14px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .modal__btn {
    font-size: calc(14px + 2 * (100vw / 1440));
  }
}

.modal__btn#btnSubmit {
  display: none;
}

.modal__btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

.modal__btn:active {
  background: rgba(255, 255, 255, 0.9);
}

.payment {
  padding: 100px 0;
}

.payment__title {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .payment__title {
    font-size: calc(24px + 20.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .payment__title {
    font-size: calc(24px + 12 * (100vw / 1440));
  }
}

.payment__text {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .payment__text {
    font-size: calc(14px + 6.8 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .payment__text {
    font-size: calc(14px + 4 * (100vw / 1440));
  }
}

/*  FOOTER  */
.footer {
  background-color: #000000;
  padding: 50px 0;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 2px solid #4c4c4c;
}

.footer__logo {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    font-size: calc(18px + 10.2 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .footer__logo {
    font-size: calc(18px + 6 * (100vw / 1440));
  }
}

.footer__link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__link:active {
  opacity: 0.7;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}

.footer__bottom {
  margin-top: 45px;
  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;
  row-gap: 10px;
}

.footer__copyright p {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer__copyright p {
    font-size: calc(10px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .footer__copyright p {
    font-size: calc(10px + 2 * (100vw / 1440));
  }
}

input::-webkit-input-placeholder {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 14px;
  color: #111111;
}

input::-moz-placeholder {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 14px;
  color: #111111;
}

input:-ms-input-placeholder {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 14px;
  color: #111111;
}

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/*  RESPONSIVE  */
@media screen and (max-width: 1280px) {
  .header {
    height: 50px;
  }
  .header__socials {
    display: none;
  }
  .header__burger-menu {
    top: 50px;
  }
  .header__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header__wrapper > a {
    margin: 0 auto;
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    display: inline-block;
    white-space: nowrap;
  }
  .header__burger {
    position: absolute;
    right: 0;
    top: -5px;
  }
  .header__burger-menu {
    width: 200px;
  }
  .header__burger-menu .header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__burger-menu .header__socials svg {
    width: 17px;
    height: auto;
  }
  .hero {
    padding: 80px 0 40px;
  }
  .hero__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .hero__image {
    width: 100%;
    height: auto;
    max-width: 500px;
  }
  .hero__title {
    max-width: none;
  }
  .about {
    padding: 30px 0 40px;
  }
  .about__title {
    margin-bottom: 20px;
  }
  .gallery {
    padding: 30px 0 40px;
  }
  .gallery__title {
    margin-bottom: 25px;
  }
  .gallery__buttons {
    width: 30px;
    height: 30px;
  }
  .gallery__buttons svg {
    width: 15px;
    height: 15px;
  }
  .features {
    padding: 30px 0 40px;
  }
  .features__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .features__title {
    margin-bottom: 20px;
  }
  .features__image {
    width: 100%;
    max-width: 400px;
  }
  .features__image {
    width: 100%;
    max-width: 400px;
  }
  .information {
    padding: 30px 0 40px;
  }
  .information__title {
    margin-bottom: 20px;
  }
  .information__subtitle {
    margin-bottom: 7px;
  }
  .information__price {
    margin-bottom: 30px;
  }
  .information__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .order {
    padding: 30px 0 40px;
  }
  .order__price {
    margin-bottom: 15px;
  }
  .order__price-subtitle {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .order__block {
    padding: 15px 20px;
  }
  .price {
    padding: 30px 0 40px;
  }
  .price__title {
    margin-bottom: 20px;
  }
  .price__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .price__list li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
  }
  .date {
    padding: 30px 0 40px;
  }
  .date__title {
    margin-bottom: 20px;
  }
  .pays__img {
    height: 30px;
    min-width: 70px;
    max-width: 150px;
  }
  .modal {
    overflow: hidden;
  }
  .modal__wrapper {
    width: 100%;
    padding: 20px;
    height: 100%;
    overflow-y: auto;
  }
  .modal__form {
    min-width: auto;
    width: 100%;
  }
  .modal__tab {
    width: 100%;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
  }
  .footer__copyright {
    text-align: right;
  }
}
