* {
  outline: none;
  box-sizing: border-box;
}

:root {
  --main-primary-color1: #ff0935;
  --main-primary-color2: #c81c98;
  --main-primary-color3: #202fb9;
  --main-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.7);
  --main-black-color: #0a0a0a;
  --main-light-gray-color: #4b4b4b;
}

body,
input {
  font-family: "Acrom", sans-serif;
  font-size: 16px;
}

body {
  margin: 0;
  line-height: normal;
}

body {
  background-color: var(--main-black-color);
  color: white;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

#header {
  padding: 30px 0;
  width: 100%;
  z-index: 999;
  background-color: black;
}

#header.absolute {
  position: absolute;
  background-color: transparent;
}

.header__content {
  display: flex;
  align-items: center;
}

.header__nav-btn {
  display: none;
}

.header__nav {
  margin-left: auto;
}

.header__link {
  text-transform: uppercase;
  color: white;
  font-size: 13px;
}

.header__link:not(:last-child) {
  margin-right: 25px;
}

.header__link.active {
  color: var(--main-primary-color1);
}

.header__works {
  color: var(--main-light-gray-color);
  margin-left: 70px;
  position: relative;
}

.header__works::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--main-primary-color1);
  border-radius: 100px;
  left: -10px;
  top: 0px;
}

.header__grafik {
  font-size: 15px;
}

.header__days {
  font-size: 12px;
  margin-top: 6px;
}

.header__btn {
  margin: 0 50px;
}

.header__contacts {
  text-align: right;
}

.header__phone {
  color: white;
  font-size: 25px;
  font-weight: 700;
  position: relative;
}

.header__phone::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: lime;
  border-radius: 100px;
  left: -10px;
  top: 0px;
}

.header__city {
  color: var(--main-light-gray-color);
  font-size: 15px;
  margin-top: 5px;
}

.nav__mobile {
  display: none;
}

.btn-min {
  color: var(--main-primary-color1);
  cursor: pointer;
  border: 1px solid var(--main-primary-color1);
  border-radius: 100px;
  padding: 15px 20px;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.btn-min:hover {
  background-color: var(--main-primary-color1);
  color: white;
}

.btn-max {
  background: linear-gradient(
    96.83deg,
    var(--main-primary-color1) 0%,
    var(--main-primary-color3) 100%
  );
  box-shadow: 0px 0px 25px rgba(200, 28, 152, 0.39);
  border-radius: 100px;
  padding: 15px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  color: white;
}

.btn-max img {
  margin-left: 10px;
  width: 8px;
}

.btn-max:hover {
  box-shadow: 0px 0px 30px 10px rgba(200, 28, 152, 0.39);
}

.page-header {
  padding: 150px 0;
  position: relative;
  background-color: #000000;
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: "";
  background-color: #000000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.7;
}

.page-header__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__title {
  text-transform: uppercase;
  background: -webkit-linear-gradient(#eee, var(--main-light-gray-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-weight: 900;
}

.page-header__text {
  max-width: 550px;
  margin-top: 30px;
  font-size: 18px;
}

.section-subtitle {
  color: var(--main-primary-color1);
  letter-spacing: 4px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 13px;
}

.section-title {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 50px;
}

.section-title span {
  position: relative;
}

.section-title span::before {
  content: "";
  width: 100%;
  height: 20px;
  background-color: var(--main-primary-color1);
  position: absolute;
  bottom: 12px;
  z-index: -1;
}

.section-text {
  color: var(--main-light-gray-color);
}

#footer {
  padding: 100px 0;
  background-color: #000000;
}

.footer__content {
  display: flex;
}

.footer__title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer__block:nth-child(2) {
  margin-left: auto;
  margin-right: 100px;
}

.footer__polytics {
  margin-top: 28px;
  max-width: 350px;
}

.footer__copyright {
  margin-top: 35px;
  color: var(--main-light-gray-color);
}

.footer__polytics a {
  color: var(--main-primary-color1);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.footer__nav__link {
  color: white;
}

.footer__nav__link:not(:last-child) {
  margin-bottom: 10px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.footer__contacts__item {
  display: inline-flex;
  align-items: center;
  color: white;
}

.footer__contacts__item img {
  width: 20px;
  margin-right: 12px;
}

.footer__contacts__item:not(:last-child) {
  margin-bottom: 10px;
}

.modal {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal__overlay {
  background-color: #00000061;
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 450px;
  overflow: hidden;
}

.modal__image__wrap {
  padding: 40px;
  padding-bottom: 0;
  background-color: var(--main-black-color);
}

.modal__image {
  position: relative;
}

.modal__image img {
  width: 100%;
}

.modal__image img:nth-child(2),
.modal__image img:nth-child(3) {
  position: absolute;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}

.modal__image.avariyka img:nth-child(3) {
  opacity: 1;
}

.modal__image.stop img:nth-child(2) {
  opacity: 1;
}

.modal__wrap {
  background-color: #0e0e0e;
  padding: 40px;
}

#form-callback {
}

#form-callback input {
  width: 100%;
  padding: 15px 20px;
  background-color: var(--main-black-color);
  color: white;
  border: 1px solid transparent;
}

#form-callback input:not(:last-child) {
  margin-bottom: 10px;
}

#form-callback input::placeholder {
  color: var(--main-light-gray-color);
}

#form-callback input.error {
  border: 1px solid var(--main-primary-color1);
}

.form-callback-btn {
  margin-top: 20px;
}

.form-callback-ok {
  display: none;
  margin-top: 30px;
  text-align: center;
}
