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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-family: "Lato", sans-serif;
  color: #000000;
  background-color: #ffffff;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.page {
  min-width: 320px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(16, 16, 29, 0.85);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  text-decoration: none;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__link {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.header__link:hover {
  color: #43abf0;
}
.header__link--active {
  color: #43abf0;
}

.hero {
  margin-top: -80px;
  padding: 200px 0 180px;
  background: url("../img/hero-bg.png") 65% center/cover no-repeat;
}
.hero__container {
  display: flex;
  justify-content: flex-start;
}
.hero__content {
  max-width: 780px;
}
.hero__title {
  margin: 0 0 50px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}
.hero__accent {
  color: #43abf0;
}
.hero__desc {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #000000;
}
.hero__list {
  margin-bottom: 60px;
}
.hero__item {
  position: relative;
  padding-left: 18px;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
}
.hero__item:not(:last-child) {
  margin-bottom: 4px;
}
.hero__item::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.hero__buttons {
  display: flex;
  gap: 30px;
}

.button {
  min-width: 183px;
  height: 43px;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}
.button--primary {
  background: #43abf0;
  border-color: #ffffff;
  color: #ffffff;
  border: 1px solid #fff;
}
.button--primary:hover {
  background: #2d95da;
}
.button--secondary {
  background: #ffffff;
  border-color: #6f6d7b;
  color: #2a2b30;
}
.button--secondary:hover {
  background: #f2f2f2;
}

.order {
  padding: 120px 0 150px;
  background-color: #272733;
  background-image: linear-gradient(rgba(39, 39, 51, 0.9), rgba(39, 39, 51, 0.9)), url("../img/order-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.order__container {
  display: flex;
  flex-direction: column;
}
.order__title {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.order__title-accent {
  color: #43abf0;
}
.order__subtitle {
  margin: 0 0 80px;
  color: #bbbbbb;
  font-size: 18px;
  line-height: 1.2;
}
.order__steps {
  margin-bottom: 80px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.steps__item {
  position: relative;
  flex: 1 1 0;
}
.steps__item:not(:last-child)::after {
  content: ". . . . .";
  position: absolute;
  top: 40px;
  right: -62px;
  color: #c4c4c4;
  font-size: 36px;
  line-height: 0.25;
  letter-spacing: 3px;
}
.steps__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border: 5px solid #286690;
  border-radius: 50%;
  background-color: #43abf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}
.steps__text {
  margin: 0 auto;
  max-width: 190px;
  font-size: 16px;
  line-height: 1.3;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.form__field {
  width: calc(33.333% - 13.333px);
  height: 48px;
  padding: 0 16px;
  border: 1px solid #ffffff;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #272733;
  outline: none;
}
.form__field:focus {
  border-color: #43abf0;
}
.form__range {
  width: calc(66.666% - 10px);
}
.form__file {
  width: calc(33.333% - 13.333px);
}
.form__submit {
  display: block;
  width: 370px;
  margin: 20px auto 0;
}

.range__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.range__label {
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
}
.range__value {
  font-size: 18px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
}

.range__input {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #bfbfbf;
  border-radius: 3px;
  outline: none;
}

.range__input::-webkit-slider-runnable-track {
  height: 6px;
  background: #bfbfbf;
  border-radius: 3px;
}

.range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3e9cdc;
  border: 4px solid #286690;
  cursor: pointer;
  margin-top: -7px;
}

.range__input::-moz-range-track {
  height: 6px;
  background: #bfbfbf;
}

.range__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3e9cdc;
  border: 4px solid #286690;
  cursor: pointer;
}

.file__input {
  display: none;
}
.file__button {
  height: 48px;
  width: 100%;
  border: 2px solid #3e9cdc;
  border-radius: 3px;
  background-color: #ffffff;
  color: #272733;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: 1%;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}
.file__button:hover {
  background-color: #f2f7fb;
}

.footer {
  padding: 30px 15px;
  background-color: #3d4050;
  color: #c3c3c3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}
.footer__container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__vector {
  width: 1px;
  height: 18px;
  background: #c3c3c3;
  flex-shrink: 0;
}
.footer__txt {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}
.footer__img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.footer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 992px) {
  .footer {
    justify-content: center;
    gap: 14px 18px;
    text-align: center;
  }
  .footer__text {
    width: 100%;
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 15px;
  }
  .footer__vector {
    display: none;
  }
  .footer__container {
    justify-content: center;
  }
  .footer__text, .footer__txt {
    font-size: 14px;
    text-align: center;
    white-space: normal;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 20px 12px;
    gap: 12px;
  }
  .footer__img {
    width: 18px;
    height: 18px;
  }
  .footer__text, .footer__txt {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .steps__item:not(:last-child)::after {
    right: -45px;
    font-size: 28px;
  }
}
@media (max-width: 1146px) {
  footer__container {
    flex-direction: column;
  }
}
@media (max-width: 1100px) {
  .steps {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .steps__item {
    flex: 0 0 calc(33.333% - 20px);
  }
  .steps__item::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .header__container {
    flex-direction: column;
    gap: 20px;
  }
  .header__nav {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 2%;
    gap: 18px;
  }
  .header__logo {
    font-size: 24px;
  }
  .hero {
    margin-top: -80px;
    padding: 170px 0 110px;
    background-position: 70% center;
  }
  .hero__content {
    max-width: 620px;
  }
  .hero__title {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .hero__desc {
    font-size: 18px;
  }
  .hero__item {
    font-size: 18px;
  }
  .hero__badge {
    font-size: 28px;
  }
  .steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px 20px;
  }
  .steps__item {
    flex: 0 0 calc(33.333% - 20px);
  }
  .steps__item:not(:last-child)::after {
    display: none;
  }
  .form {
    gap: 20px;
  }
  .form__field {
    width: calc(50% - 10px);
  }
  .form__range {
    width: calc(50% - 10px);
  }
  .form__file {
    width: 100%;
  }
  .form__submit {
    width: 100%;
    min-width: 0;
    margin: 20px auto 0;
  }
  .footer {
    height: auto;
    padding: 20px 0;
  }
  .footer__container {
    justify-content: center;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .header {
    padding: 18px 0;
  }
  .header__logo {
    font-size: 20px;
    text-align: center;
  }
  .header__link {
    font-size: 12px;
  }
  .header__nav {
    gap: 14px;
  }
  .hero {
    margin-top: -72px;
    padding: 140px 0 80px;
    background-position: 75% center;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 28px;
  }
  .hero__badge {
    font-size: 22px;
    padding: 8px 14px;
    margin-bottom: 18px;
  }
  .hero__desc {
    font-size: 16px;
  }
  .hero__item {
    font-size: 16px;
    line-height: 1.45;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .button {
    width: 100%;
    max-width: 260px;
  }
  .order {
    padding: 80px 0 90px;
  }
  .order__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .order__title {
    font-size: 28px;
  }
  .order__subtitle {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .order__steps {
    margin-bottom: 45px;
  }
  .order__submit {
    display: block;
    width: 370px;
    margin: 20px auto 0;
  }
  .steps {
    gap: 30px;
  }
  .steps__item {
    flex: 0 0 calc(50% - 15px);
  }
  .steps__icon {
    width: 82px;
    height: 82px;
    font-size: 28px;
  }
  .steps__text {
    font-size: 14px;
    max-width: 150px;
  }
  .form__field, .form__range, .form__file {
    width: 100%;
  }
  .form__submit {
    width: 100%;
    max-width: 340px;
  }
  .range__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .range__label, .range__value {
    font-size: 15px;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    gap: 12px;
    text-align: center;
  }
  .footer__vector {
    display: none;
  }
  .footer__text, .footer__txt {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .hero {
    margin-top: -68px;
    padding: 130px 0 70px;
    background-position: 78% center;
  }
  .hero__title {
    font-size: 24px;
  }
  .hero__desc {
    font-size: 15px;
  }
  .hero__item {
    font-size: 14px;
    padding-left: 16px;
  }
  .steps__item {
    flex: 0 0 100%;
  }
  .form__submit {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .hero__title {
    font-size: 24px;
  }
  .hero__item {
    font-size: 14px;
    padding-left: 18px;
  }
  .order__title {
    font-size: 24px;
  }
  .button {
    min-width: 0;
  }
}
@media (max-width: 400px) {
  .header__nav {
    gap: 10px;
  }
  .header__link {
    font-size: 11px;
  }
  .hero__title {
    font-size: 21px;
  }
  .order__title {
    font-size: 24px;
  }
}/*# sourceMappingURL=styles.css.map */