@font-face {
  font-family: Danger;
  src: url('/assets/fonts/danger/danger-webfont.woff');
}
@font-face {
  font-family: Digit;
  src: url('/assets/fonts/digital-7 (mono italic).ttf');
}

@media (max-width: 600px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.center {
  width: 100%;
  min-height: 100vh;
  padding-top: 5rem;
  background: url('/img/bg-image.jpg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
}
section {
  width: 100%;
  min-height: 100vh;
  padding-top: 5rem;
}
section.flex {
  display: flex;
  align-items: center;
}

@media (max-width: 985px) {
  .center {
    background-position: 50% 100%;
    background-size: 120%;
  }
}
@media (max-width: 600px) {
  .center {
    background-position: 50% 100%;
    background-size: 180%;
  }
}
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}

.title {
  color: red;
  font-family: Danger;
  font-size: 5rem;
  letter-spacing: 10px;
  line-height: 1;
  margin-bottom: 1.6rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .title {
    /* font-size: 4.6rem; */
  }
}

.subtitle {
  color: #ff0000;
  font-family: Danger;
  font-size: 2.8rem;
  letter-spacing: 5px;
  margin: 0 0 1.6rem;
  line-height: 1;
}

.phone {
  color: #ff0000;
  font-family: Danger;
  font-size: 6rem;
  letter-spacing: 10px;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 3rem;
  display: block;
}
@media (max-width: 900px) {
  .phone {
    font-size: 4rem;
  }
}

.price__wrap {
  background: linear-gradient(#222, #000);
  width: fit-content;
  width: -moz-fit-content;
  color: #fff;
  border-radius: 1.2rem;
  padding: 0.4rem 1.4rem 0;
  margin: 0 auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
  .price__wrap {
    max-width: 30rem;
    padding: 0.8rem 1.4rem 0.4rem;
  }
}
.price__text {
  font-size: 3rem;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.price {
  font-family: Digit;
  color: #ff3c00;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
  filter: drop-shadow(0px 2px 10px #ff0000);
  margin: 0 0.6rem;
}

.currency {
  line-height: 1;
  margin-top: 1rem;
  font-family: Digit;
  font-size: 3rem;
  color: #ff3c00;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(255, 0, 0, 0.5);
  filter: drop-shadow(0px 2px 5px #ff0000);
}

.title__admin {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.form__row {
  margin-bottom: 1rem;
  text-align: center;
}

.form__row label {
  display: block;
}

.form__row input {
  border-radius: 3px;
  padding: 0.4rem;
  border: 1px solid #ccc;
  text-align: center;
}

.btn_submit {
  cursor: pointer;
  background: #ff0000;
  color: #fff;
  border: none !important;
  padding: 0.5rem 1 rem;
  width: 10rem;
}
