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

@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url("./../fonts/BebasNeueCyrillic/BebasNeueCyrillic.woff2") format("woff2"), url("./../fonts/BebasNeueCyrillic/BebasNeueCyrillic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("./../fonts/RobotoConsensed/RobotoCondensed-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  background-color: #0e0e0e;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  font-size: 2rem;
}

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

.main__content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.main__content-left {
  padding: 15rem 0;
  max-width: 74rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.main__content-right {
  max-width: 74rem;
  width: 100%;
}

.left__heading {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 4.4rem;
}
.left__title {
  font-family: "Bebas Neue Cyrillic";
  font-weight: 400;
  font-size: 5.8rem;
  line-height: 1;
  margin-bottom: 2rem;
}
.left__text {
  font-size: 3.2rem;
  font-weight: 500;
}
.left__label {
  display: inline-flex;
  border-radius: 8px;
  column-gap: 0.8rem;
  padding: 0.4rem 0.8rem;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  top: 0.5rem;
}
.left__label svg {
  width: 2.5rem;
  flex-shrink: 0;
}
.left__info {
  display: flex;
  border-radius: 8px;
  column-gap: 0.8rem;
  padding: 0.8rem 0.8rem;
  align-items: center;
  font-size: 3rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.left__info svg {
  width: 2.5rem;
  flex-shrink: 0;
}
.left__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.left__box-item {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 2.1rem;
  box-shadow: 2px 2px 20px 0px rgba(255, 237, 194, 0.3), 1px 1px 12px 0px rgba(255, 212, 111, 0.3);
  padding: 0.8rem 2rem;
  border-radius: 10rem;
  border: 1px solid #fff;
  background-color: #000;
}
.left__form {
  padding: 1.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.right {
  max-width: 74rem;
  width: 100%;
  height: 108rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
  position: relative;
}
.right__img {
  max-width: 74rem;
  width: 100%;
  height: 108rem;
  position: relative;
}
.right__img img {
  position: absolute;
  opacity: 0;
  transition: all 1s ease 0s;
}
.right__img img.active {
  opacity: 1;
  transition: all 1s ease 0s;
}
.right__img-bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: absolute;
  bottom: 11.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}
.right__img-bullets div {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #efefef;
  border-radius: 50%;
  display: block;
  transition: all 0.5s ease 0s;
}
.right__img-bullets div.active {
  background-color: #ceb477;
}

.right__img.mobile {
  display: none;
}

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

.form-bg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.2rem;
}

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

.form-input {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
  width: 100%;
  padding: 1.95rem 1.2rem;
  background-color: #fffefc;
  border-radius: 0.8rem;
  color: #000;
}
.form-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.error {
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  font-size: 1.4rem;
  top: 0rem;
  right: 1rem;
  color: red;
  display: none;
}

.form-btn {
  background: radial-gradient(circle at 48.59% 58.56%, #ecce88 0%, #86754d 100%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 100%;
  text-transform: uppercase;
  padding: 2.6rem 0;
  color: #80611b;
  box-shadow: 0px 4.52px 0px 0px #735b24, 0px 24px 74px -11px rgba(208, 182, 120, 0.4392156863);
  border-radius: 1.2rem;
}

.form__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.agreement {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
}
.agreement input {
  appearance: none;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.2rem;
  cursor: pointer;
  padding: 0.4rem;
}
.agreement input:checked {
  background-image: url("./../img/check.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.agreement label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
}

.present {
  width: 23.8rem;
  height: 23.8rem;
  z-index: 10;
  cursor: pointer;
  position: relative;
}
.present__gift {
  position: absolute;
  width: 11rem;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation: gift 6s linear infinite;
}

@keyframes gift {
  0% {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  1% {
    transform: translateX(-50%) translateY(-50%) rotate(5deg);
  }
  2% {
    transform: translateX(-50%) translateY(-50%) rotate(-5deg);
  }
  4% {
    transform: translateX(-50%) translateY(-50%) rotate(5deg);
  }
  6% {
    transform: translateX(-50%) translateY(-50%) rotate(-5deg);
  }
  8% {
    transform: translateX(-50%) translateY(-50%) rotate(5deg);
  }
  10% {
    transform: translateX(-50%) translateY(-50%) rotate(-5deg);
  }
  11% {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
}
.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 6rem 4rem 4rem;
  background: #1a1a1a;
  position: relative;
  width: 75rem;
  max-height: 100vh;
  overflow-y: auto;
  border-radius: 2rem;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .modal__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #000;
    border-radius: 0;
  }
  .modal__content .form-control {
    max-width: inherit;
  }
}
.modal__content .form__title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modal__content .form__title {
    text-align: left;
  }
}
.modal__content .form-bg {
  gap: 0.6rem;
}
@media screen and (max-width: 768px) {
  .modal__content .form-bg {
    flex-direction: column;
    align-items: stretch;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

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

.footer {
  font-size: 2rem;
  font-family: "Rubik", sans-serif;
  line-height: 1.1;
  background: #070707;
  color: #fff;
  border-top: 1px solid #454545;
  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: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}

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

.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;
  }
}
.footer .container {
  padding: 0;
}

@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 white;
  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: 968px) {
  .footer__block.for-mobile {
    display: block;
  }
  .footer__block.for-desktop {
    display: none;
  }
  .form-separator-mobile {
    width: 100%;
    height: 1px;
    background-color: #d6c7c7;
  }
}
@media (max-width: 968px) {
  .main__content {
    flex-direction: column;
    gap: 0;
  }
  .main__content-left {
    padding: 4rem;
    gap: 2rem;
  }
  .left__heading {
    font-size: 2.4rem;
  }
  .left__title {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .left__text {
    font-size: 2.4rem;
  }
  .hide-br {
    display: none;
  }
  .left__box {
    justify-content: start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .left__box-item {
    font-size: 1.65rem;
    padding: 0.5rem 1rem;
  }
  .left__info {
    font-size: 2.2rem;
  }
  .form__title {
    font-size: 2.2rem;
  }
  .form-bg {
    gap: 0.4rem;
  }
  .right,
  .right__img {
    height: 61.6rem;
  }
  .right__img img {
    max-width: 74rem;
    width: 100%;
    height: auto;
  }
  .right__img {
    display: none;
  }
  .right__img.mobile {
    max-width: 74rem;
    width: 100%;
    display: block;
  }
  .right {
    justify-content: start;
    align-items: start;
    height: 31rem;
    margin: 0 4rem 8rem;
    width: calc(100% - 8rem);
  }
  .present {
    top: 0;
    right: 0;
    position: absolute;
    width: 20.6rem;
    height: 20.6rem;
  }
  .right__img-bullets {
    bottom: 2rem;
  }
}
.language {
  position: fixed;
  z-index: 100;
  top: 1rem;
  right: 1rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #2e2e2e;
  overflow: hidden;
  padding: 0.5rem;
}

@media screen and (max-width: 767px) {
  .language {
    top: 2rem;
    right: 2rem;
    padding: 1rem;
    width: 8.8rem;
    height: 5rem;
    cursor: pointer;
  }
}
.language:hover {
  height: auto;
}

.language:hover .language__arrow {
  transform: rotate(0deg);
}

.language__item {
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  cursor: pointer;
}

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

@media screen and (max-width: 767px) {
  .language__item {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.language__arrow {
  width: 1.7rem;
  transition: all 0.3s ease-out;
  transform: rotate(-180deg);
}

@media screen and (max-width: 767px) {
  .language__arrow {
    width: 2rem;
  }
}

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