@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Black.eot');
  src: url('../fonts/Inter-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Black.woff2') format('woff2'), url('../fonts/Inter-Black.woff') format('woff'), url('../fonts/Inter-Black.ttf') format('truetype'), url('../fonts/Inter-Black.svg#Inter-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.eot');
  src: url('../fonts/Inter-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff'), url('../fonts/Inter-Bold.ttf') format('truetype'), url('../fonts/Inter-Bold.svg#Inter-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.eot');
  src: url('../fonts/Inter-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Inter-SemiBold.woff2') format('woff2'), url('../fonts/Inter-SemiBold.woff') format('woff'), url('../fonts/Inter-SemiBold.ttf') format('truetype'), url('../fonts/Inter-SemiBold.svg#Inter-Bold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  background-color: transparent;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  resize: none;
}

body {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 400;
  color: #000;
  position: relative;
}

.body-block {
  overflow: hidden;
}

.hidden {
  display: none;
}

.wrapper {
  max-width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
}

.primary-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background-color: #32A7D9;
  cursor: pointer;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.primary-btn:hover {
  background-color: #5db9e1;
}

.primary-btn:active {
  background-color: #32A7D9;
}

.field__label {
  display: block;
  margin-bottom: 0.7em;
  color: #667085;
}

.field__err {
  color: #ef4444;
  font-size: 13px;
  display: inline-block;
  margin-top: 0.4em;
}

.field__inp {
  display: block;
  width: 100%;
  height: 44px;
  padding-left: 14px;
  padding-right: 14px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.field__inp:hover {
  border-color: #95a0b2;
}

.field__inp:focus {
  border-color: #32A7D9;
  box-shadow: 0 0 0 4px rgba(50, 167, 217, 0.2);
}

.field-errored .field__inp {
  border-color: #ef4444;
  color: #ef4444;
}

.field-errored .field__inp:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.check {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.check:has(input:checked) span {
  background-color: #32A7D9;
}

.check span {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  border: 1px solid #32A7D9;
  border-radius: 5px;
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-right: 12px;
}

.check span svg {
  display: block;
  -webkit-transform: translateX(1px);
      -ms-transform: translateX(1px);
          transform: translateX(1px);
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 11;
  color: #fff;
  padding: 24px 0;
}

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

.header__contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.header__logo {
  font-size: 36px;
  font-weight: 200;
}

.header__logo img {
  display: block;
}

.header__soc {
  margin-left: 24px;
}

.header__soc li:not(:last-child) {
  margin-right: 8px;
}

.header__soc li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__soc li a:hover {
  color: #32A7D9;
}

.header__soc li a svg {
  display: block;
}

.header__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-left: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__phone:hover {
  color: #32A7D9;
}

.header__phone svg {
  display: block;
  margin-right: 8px;
}

.header__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  color: #fff;
  margin-left: 12px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-animation: beat 0.5s infinite alternate;
          animation: beat 0.5s infinite alternate;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.header__btn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #32A7D9;
  z-index: -2;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.header__btn::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 0;
  height: calc(100% + 20px);
  width: 40px;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
  -webkit-transform: skew(-15deg);
      -ms-transform: skew(-15deg);
          transform: skew(-15deg);
  z-index: -1;
  opacity: 0.7;
  -webkit-animation: tg_btn_bg  2s infinite;
          animation: tg_btn_bg  2s infinite;
}

.header__btn:hover::after {
  background-color: #4cb2de;
}

.header__btn svg {
  display: block;
  margin-right: 8px;
}

.hero {
  position: relative;
  z-index: 2;
  color: #000;
  background-color: #fff;
  height: 100svh;
}

.hero__slides {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1), #ffffff);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1), #ffffff);
}

.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}

.hero__title {
  font-size: 28px;
  font-weight: 700;
}

.hero__title a {
  font-weight: 900;
  color: #32A7D9;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hero__title a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: 0.85s cubic-bezier(0.22, 0.68, 0, 1.45);
  transition: 0.85s cubic-bezier(0.22, 0.68, 0, 1.45);
  height: 3px;
  background-color: #32A7D9;
}

.hero__title a:hover {
  color: #50b4df;
}

.hero__title a:hover::after {
  width: 100%;
  background-color: #50b4df;
}

.hero__descr {
  margin-top: 1em;
  color: #000;
  line-height: 1.4;
}

.hero__text {
  position: absolute;
  left: 50%;
  bottom: 30px;
  text-align: center;
  width: calc(100% - 30px);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, 20px);
      -ms-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: 1.5s;
  transition: 1.5s;
  z-index: 3;
}

.hero__text-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.hero__btn {
  margin-top: 20px;
}

.hero__alert {
  position: absolute;
  left: 50%;
  top: calc(50% + 80px);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  z-index: 11;
  font-size: 40px;
  text-align: center;
  max-width: 600px;
  font-weight: 700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0px 0px 12px #000;
}

.hero__alert.active {
  top: 50%;
  opacity: 1;
  pointer-events: auto;
}

.hero__alert.slide-out {
  top: calc(50% - 80px);
  opacity: 0;
  pointer-events: auto;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.order {
  padding: 80px 0;
}

.order__title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 1.2em;
}

.order__form {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.order .field {
  margin-bottom: 20px;
  width: 100%;
}

.order .check {
  -webkit-align-self: flex-start;
          align-self: flex-start;
  margin-bottom: 20px;
}

.footer {
  background-color: #121212;
  color: #ccc;
  font-size: 14px;
  padding: 28px 0;
  position: relative;
  z-index: 3;
  text-align: center;
}

.footer__text {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.tg {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #D0D5DD;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 12px 0;
  z-index: 111;
  -webkit-transition: none;
  transition: none;
}

.tg__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.tg__txt {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.tg__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  color: #fff;
  margin-left: 12px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-animation: beat 0.5s infinite alternate;
          animation: beat 0.5s infinite alternate;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.tg__btn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #32A8E2;
  z-index: -2;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.tg__btn::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 0;
  height: calc(100% + 20px);
  width: 40px;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
  -webkit-transform: skew(-15deg);
      -ms-transform: skew(-15deg);
          transform: skew(-15deg);
  z-index: -1;
  opacity: 0.7;
  -webkit-animation: tg_btn_bg  2s infinite;
          animation: tg_btn_bg  2s infinite;
}

.tg__btn:hover::after {
  background-color: #5fbbe8;
}

.tg__btn svg {
  display: block;
  margin-right: 8px;
}

@-webkit-keyframes beat {
  to {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}

@keyframes beat {
  to {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}

@-webkit-keyframes tg_btn_bg {
  from {
    left: -30px;
  }

  to {
    left: calc(100% + 30px);
  }
}

@keyframes tg_btn_bg {
  from {
    left: -30px;
  }

  to {
    left: calc(100% + 30px);
  }
}

@media screen and (max-width: 1500px) {
  .wrapper {
    max-width: 1170px;
  }

  .hero__alert {
    font-size: 36px;
  }

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

@media screen and (max-width: 1024px) {
  .hero-btn-prev {
    margin-right: 20px;
  }

  .hero-btn-prev:hover {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .hero-btn-next {
    margin-left: 20px;
  }

  .hero-btn-next:hover {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

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

  .field__label {
    margin-bottom: 0.5em;
    font-size: 14px;
  }

  .check {
    font-size: 12px;
  }

  .header__logo {
    max-width: 100px;
  }

  .header__phone {
    border-radius: 50px;
    position: relative;
  }

  .header__phone svg {
    margin-right: 0;
  }

  .header__phone span {
    display: none;
  }

  .header__soc {
    margin-left: 12px;
  }

  body {
    font-size: 13px;
  }

  .hero__text {
    bottom: 20px;
  }

  .hero__title {
    font-size: 18px;
  }

  .hero__alert {
    font-size: 28px;
    width: calc(100% - 20px);
  }

  .order {
    padding: 45px 0;
  }

  .order__title {
    font-size: 22px;
  }

  .order .field {
    margin-bottom: 16px;
  }

  .footer {
    font-size: 12px;
    padding: 20px 0;
  }

  .tg__txt {
    font-size: 12px;
  }

  .tg__btn {
    font-size: 11px;
    padding: 10px 16px;
  }

  .tg__btn svg {
    width: 16px;
    margin-right: 6px;
  }
}