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;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #474747;
  background-color: #f8f8f8;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@keyframes running-line {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.running-line {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #8e0104 4.38%, #b30004 28.85%, #e00b09 50.48%, #d21210 71.15%, #900104 92.01%);
}
.running-line__content {
  display: flex;
  align-items: center;
  padding: 2.25rem 0;
  animation: running-line 15s linear infinite;
}
.running-line__item {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 100%;
  text-transform: uppercase;
  position: relative;
  gap: 3.2rem;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  margin-left: 3.2rem;
  color: #fff;
}
.running-line__item::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}

.container {
  max-width: 168rem;
  width: 100%;
  margin: 0 auto;
}

.content {
  display: flex;
  gap: 2rem;
  padding-bottom: 6.4rem;
}
.content__gift {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.content__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 110rem;
  width: 100%;
}
.content__video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.content__video iframe,
.content__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.content__info-block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  position: relative;
  border: 1px solid #e46262;
  background-color: #ffffff;
}
.content__info-block img {
  position: absolute;
  top: -3.7rem;
  right: -4.3rem;
  width: 15.8rem;
  height: 15.2rem;
}
.content__info-title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 150%;
  color: #474747;
}
.content__info-list {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
}
.content__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 55rem;
}
@media (max-width: 1024px) {
  .content__right {
    max-width: inherit;
  }
}

.bold {
  font-weight: 700;
}

.form-box {
  background-color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border: 1px solid #e4e4e4;
}
.form-box__list {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
}
.form-box__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 150%;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-input {
  width: 100%;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  padding: 1.6rem 2rem;
  border: 1px solid #dbdbdb;
}

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

.btn {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 120%;
  background: radial-gradient(44.87% 73.43% at 33.54% 0%, #545454 0%, #0f0f0f 100%);
  color: #fff;
  padding: 2rem 0;
}

.form-checkbox {
  font-size: 1.4rem;
  text-align: center;
}

.side {
  width: 100%;
}

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

.modal.active {
  display: flex;
}

.modal__content {
  max-width: 80rem;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.modal__heading {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 120%;
  text-align: center;
}

.modal__text-close {
  padding: 2rem 0;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  width: 100%;
  text-align: center;
}

.modal__icon {
  width: 16rem;
  height: 16rem;
}

.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
}

.form-btn.modal__close {
  position: static;
  background: none;
  border: 1px solid #000;
  color: #000;
  max-width: inherit;
  transition: all 0.3s ease-out;
  margin-top: 1.6rem;
}

.form-btn.modal__close:hover {
  background: #000;
  color: white;
}

.footer {
  border-top: 1px solid #464646;
}

.footer__content {
  display: flex;
  flex-direction: column;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  padding: 9.5rem 0;
}

.footer__top-wrapper {
  border-bottom: 1px solid #464646;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer__lable {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 100%;
}

.footer__social-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer__social-link {
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease 0s;
}

/* .footer__social-link img {
  filter: brightness(0) invert(1);
} */
.footer__social-link:hover {
  opacity: 0.7;
}

.footer__social-link.last {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  width: auto;
  padding: 2rem 7rem 2rem 1rem;
  gap: 1rem;
  border-radius: 1rem;
  max-width: 31.7rem;
  width: 100%;
  color: #000000;
}

.footer__support {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 75rem;
  width: 100%;
  flex-shrink: 0;
}

.footer__support-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.footer__support-item {
  width: 100%;
  max-width: 36.8rem;
}

.footer__support-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.2rem;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 100%;
  color: #000000;
  width: 100%;
  border: 1px solid #909090;
  border-radius: 1.2rem;
  transition: opacity 0.3s ease 0s;
}

/* .footer__support-link img {
  filter: brightness(0) invert(1);
} */
.footer__support-link:hover {
  opacity: 0.7;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 3.8rem 0 5.4rem;
}

.footer__offer {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  color: #000000;
}

.footer__copyright {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  text-align: right;
}

@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 4rem;
    padding: 0;
    border-bottom: 0;
  }
  .footer {
    padding: 4rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 3rem;
  }
  .footer__copyright {
    text-align: left;
  }
  .footer__offer {
    text-decoration: underline !important;
  }
  .footer__lable {
    font-size: 2.8rem;
  }
  .footer__social-list {
    gap: 2.4rem;
  }
  .footer__social-link.last,
  .footer__social-link {
    width: 7.4rem;
    height: 7.4rem;
  }
  .footer__social-link.last {
    padding: 0;
  }
  .footer__top-wrapper {
    border-bottom: 0;
  }
  .footer__bottom {
    padding-bottom: 0;
    font-size: 2.8rem;
  }
  .footer__support-link {
    font-size: 2.4rem;
  }
  .content {
    flex-direction: column;
  }
  .content__right, .content__gift {
    padding: 0 2rem;
  }
  .footer__support-list {
    flex-direction: column;
    width: 100%;
  }
  .footer__support-item {
    max-width: 100%;
  }
  .form-box__title,
  .content__info-title {
    font-size: 3rem;
  }
  .form-box__list,
  .content__info-list {
    font-size: 2.4rem;
  }
  .btn,
  .form-input {
    font-size: 2.4rem;
  }
}

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