html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

.container {
  width: 100%;
  padding: 0 12rem;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f8f8f8;
  color: #474747;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.main__content {
  padding: 6rem 0;
  display: flex;
  gap: 4rem;
}
.main__heading {
  font-weight: 300;
  font-size: 2rem;
  line-height: 100%;
  margin-bottom: 1.2rem;
}
.main__label {
  padding: 1.2rem 3.2rem;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  text-transform: uppercase;
  max-width: fit-content;
  border-radius: 20rem;
}
.main__title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 100%;
  color: #2a2a2a;
  margin-bottom: 2rem;
}
.main__pulse {
  padding: 1.6rem 4rem;
  font-weight: 600;
  font-size: 2rem;
  line-height: 100%;
  color: #ffffff;
  background-color: #E90000;
  border-radius: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.main__pulse svg {
  width: 2.4rem;
}
.main__pulse:before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 400%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  animation: pulse 3.5s infinite ease-in-out;
}
.main__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main__item {
  padding: 2.4rem;
  border: 1px solid #dbdbdb;
  background-color: #ffffff;
  border-radius: 1.2rem;
  font-size: 2rem;
  color: #474747;
}
.main__item-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main__item-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
}
.main__item-subtitle {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 100%;
}
.main__item-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.main__item-text {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
}
.main__item-text::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("./../images/Frame.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.main__preform {
  margin-top: 2rem;
}
.main__preform-text {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 100%;
  max-width: 45rem;
  width: 100%;
}
.main__preform-text span {
  font-weight: 500;
}
.main__video {
  width: 82rem;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.main__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}

@keyframes pulse {
  0% {
    top: 400%;
  }
  100% {
    top: -400%;
  }
}
.header__play {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.header__play svg {
  width: 1.4rem;
}

.header__play .play {
  display: none;
}

.header__play.off {
  opacity: 1;
}

.header__play.off .pause {
  display: none;
}

.header__play.off .play {
  display: block;
}

.button {
  background: #000;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 2rem;
  padding: 2.8rem 8rem;
  width: 100%;
  color: #fff;
  border-radius: 2rem;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #E90000;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.4274509804);
  backdrop-filter: blur(10px);
}
.modal.active {
  display: flex;
}

.form {
  max-width: 65rem;
  width: 100%;
  background-color: #ffffff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  position: relative;
}
.form__title {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 100%;
  text-align: center;
  margin-bottom: 2rem;
  color: #2a2a2a;
}
.form__text {
  font-family: Montserrat;
  font-weight: 300;
  font-size: 2rem;
  line-height: 100%;
  text-align: center;
  color: #141414;
  opacity: 0.6;
}
.form__inputs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 4rem;
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 0rem;
  right: -5rem;
  width: 4.6rem;
  height: 4.6rem;
  cursor: pointer;
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.6rem;
  height: 0.4rem;
  background-color: #fff;
  transform-origin: center;
  transition: background-color 0.3s;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.form-control {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 2rem 1.2rem;
  font-size: 1.6rem;
  color: #000;
  border-bottom: 1px solid #aeaeae;
}
.form-input::placeholder {
  color: #aeaeae;
}
.form-input.err + .error {
  display: block;
}

.error {
  position: absolute;
  top: 0;
  right: 0;
  color: red;
  font-size: 1.2rem;
  display: none;
}

.form-btn {
  width: 100%;
  padding: 2.8rem 0;
  background: linear-gradient(90deg, #0f0f0f 0%, #434343 50.01%, #0f0f0f 100%);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  border-radius: 2rem;
  margin-top: 4rem;
}

.form-info {
  margin-top: 2rem;
  text-align: center;
  color: #474747;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
}

.footer__block.for-mobile {
  display: none;
}

.footer {
  font-size: 2rem;
  font-family: "Rubik", sans-serif;
  line-height: 1.1;
  background: #f8f8f8;
  color: #474747;
  border-top: 1px solid #C9C9C9;
  padding: 4.3rem 0 5.5rem;
}

.footer__dogovor {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: end;
}

.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: #474747;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}

.footer a:hover {
  color: #E90000;
  border-color: #E90000;
}

.footer a svg {
  width: 2rem;
  fill: currentColor;
}

@media screen and (max-width: 1024px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6rem;
  margin-bottom: 2rem;
}

.footer__row:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .footer__row {
    min-height: 5rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  column-gap: 6rem;
  min-width: 19rem;
}

.footer__phone > div {
  min-width: 19rem;
}

.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #a3a3a3;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 1024px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}

.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid #474747;
  border-radius: 5px;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}

@media screen and (max-width: 1024px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  column-gap: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .footer__block.for-mobile {
    display: block;
  }
  .footer__block.for-desktop {
    display: none;
  }
  .form-separator-mobile {
    width: 100%;
    height: 1px;
    background-color: #d6c7c7;
  }
}
@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.tape-wrap {
  width: 100%;
  overflow: hidden;
  height: 6.6rem;
  display: flex;
  align-items: center;
  background: #434343;
  color: white;
  margin-top: 2.6rem;
}

.tape-wrap .tape-text {
  display: inline-block;
  width: auto;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  animation: tape 36s linear infinite;
}

.tape-wrap .tape-text span {
  position: relative;
  display: inline-block;
  margin-right: 7rem;
}

.tape-wrap .tape-text span:after {
  content: "";
  position: absolute;
  right: -4rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.for-mob {
  display: none;
}

@media (max-width: 1024px) {
  .for-pc {
    display: none;
  }
  .for-mob {
    display: flex;
  }
  .main__content {
    flex-direction: column;
    padding: 3rem 0;
    gap: 2rem;
  }
  .main__heading {
    font-size: 1.6rem;
  }
  .main__title {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }
  .main__label {
    font-size: 1.4rem;
  }
  .main__pulse {
    font-size: 2.4rem;
  }
  .main__list {
    margin-top: 2.4rem;
  }
  .main__item {
    padding: 3.2rem;
    font-size: 2.4rem;
  }
  .main__preform {
    flex-direction: column;
    margin-top: 2.4rem;
  }
  .main__preform-text {
    text-align: left;
    align-self: start;
    max-width: 100%;
  }
  .form__title {
    font-size: 2.8rem;
  }
  .form__text {
    font-size: 2.4rem;
  }
  .modal-close {
    right: 2rem;
    top: 2rem;
  }
  .modal-close::after, .modal-close::before {
    content: "";
    background-color: #000;
  }
  .container {
    padding: 0 2rem;
  }
  .main__video {
    width: 100%;
  }
  .tape-wrap {
    margin-top: 0;
    height: 9rem;
  }
  .tape-wrap .tape-text {
    font-size: 2.8rem;
  }
  .form {
    padding: 8rem 2rem 4rem;
  }
}

/*# sourceMappingURL=style.css.map */
