@font-face {
  font-family: "Roboto Condensed";
  src: url("./../fonts/RobotoConsensed/RobotoCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("./../fonts/RobotoConsensed/RobotoCondensed-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("./../fonts/RobotoConsensed/RobotoCondensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

* {
  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: "Roboto Condensed", sans-serif;
  background-color: #000000;
  color: #fffefc;
}

.for-mob {
  display: none !important;
}

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

.container-right {
  padding-left: 19rem;
}

input {
  color: #000;
}

#f1 {
  transition: box-shadow 0.3s ease;
}

#f1.blinking {
  box-shadow: 2px 2px 20px 0px rgba(255, 255, 255, 0.5);
}

#f1.no-shadow {
  box-shadow: 2px 2px 20px 0px rgba(255, 255, 255, 0);
}

.header {
  background-image: url("./../images/bg-header.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.header__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 76.8rem;
  width: 100%;
  padding: 13rem 0;
}
.header__heading-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
}
.header__info::after {
  content: "";
  position: absolute;
  bottom: -7rem;
  right: 0;
  width: 22.5rem;
  height: 22.5rem;
  background-image: url("./../images/icons/stiker.svg");
  background-size: cover;
}
.header__title {
  font-size: 8rem;
  font-family: "Bebas Neue Cyrillic";
  text-transform: uppercase;
}
.header__description {
  font-family: "Bebas Neue Cyrillic";
  font-size: 5.6rem;
}

.heading__time, .heading__place, .heading__date {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: 500;
}
.heading__time svg, .heading__place svg, .heading__date svg {
  width: 2.4rem;
  height: 2.4rem;
}

.form {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.form-input {
  background-color: #fffefc;
  border-radius: 1rem;
  padding: 2rem 1.2rem;
  font-size: 1.6rem;
  width: 100%;
}
.form-input::placeholder {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.error {
  position: absolute;
  color: red;
  top: 0.3rem;
  right: 1rem;
  display: none;
}

.btn {
  font-family: "Bebas Neue Cyrillic";
  font-size: 4.8rem;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(90deg, #6d6c6c 0%, #404040 100%);
  padding: 2.4rem 0;
}

.form__heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.form__agreement {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form__checkbox {
  justify-content: center;
  padding: 0.4rem 0.3rem 0.3rem 0.3rem;
  background-color: #fff;
  border-radius: 0.5rem;
}

.form__checkbox-text {
  font-size: 1.6rem;
  font-weight: 600;
}

.topic__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7.5rem 0;
}
.topic__info {
  max-width: 74rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.topic__info-title {
  font-family: "Bebas Neue Cyrillic";
  font-size: 4.8rem;
  margin-bottom: 1rem;
}
.topic__block {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-radius: 1rem;
  background-color: #fff;
  padding: 1.2rem;
}
.topic__block-text {
  display: flex;
  flex-direction: column;
}
.topic__title {
  color: #000;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.topic__text {
  color: #000;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  font-size: 5rem;
  color: #fff !important;
}

.check {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #aeaeae;
  flex-shrink: 0;
}
.check svg {
  width: 2.4rem;
  height: 2.4rem;
}

.swiper {
  max-width: 74rem;
  width: 100%;
  margin: 0 !important;
}

.swiper-slide {
  width: 100%;
  height: 100% !important;
}
.swiper-slide img {
  width: 74rem;
  height: 56.2rem;
  object-fit: cover;
  border-radius: 1.2rem;
}

.swiper-pagination-bullet {
  width: 1.5rem !important;
  height: 1.5rem !important;
  background-color: #fffefc !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: #696868 !important;
}

.meet__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 7.5rem 0;
}
.meet__title {
  font-family: "Bebas Neue Cyrillic";
  font-size: 4.8rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}
.meet__title svg {
  width: 5rem;
  height: 5rem;
}
.meet__blocks {
  display: flex;
  align-items: start;
  gap: 2.4rem;
}
.meet__block {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.alex {
  background-image: url("./../images/bg-alex.png");
  background-size: cover;
}
.alex__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 74.5rem;
  width: 100%;
  margin-left: auto;
  padding: 9rem 0;
}
.alex__title {
  font-family: "Bebas Neue Cyrillic";
  font-size: 6rem;
}
.alex__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.alex__item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  border-radius: 1rem;
  background: #3d3d3d;
  padding: 0.8rem 2.4rem 0.8rem 1.2rem;
}
.alex__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #aeaeae;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.alex__mark svg {
  width: 2.4rem;
  height: 2.4rem;
}
.alex__text {
  font-size: 2.4rem;
  font-weight: 500;
}

.one {
  background-size: cover;
  overflow: hidden !important;
}
.one__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 11rem 0;
}
.one__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 160rem;
  width: 100%;
}
.one__title {
  font-family: "Bebas Neue Cyrillic";
  font-size: 5.4rem;
  line-height: 6.4rem;
}
.one__arrows {
  max-width: 12rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.one__block {
  max-width: 92rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.one__block-content {
  position: relative;
  height: 52rem;
}
.one__block-content img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.one__block-content img.one__gif {
  opacity: 0;
}
.one__block-content:hover .one__block-watch {
  background-color: #fff;
  color: #000;
}
.one__block-content:hover .one__block-watch::before {
  filter: brightness(0);
}
.one__block-content:hover .one__gif {
  opacity: 1;
}
.one__block-watch {
  position: absolute;
  top: 2.8rem;
  right: 2.8rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
  padding: 2.6rem 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(239, 239, 239, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.one__block-watch::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("./../images/icons/watch.svg");
  background-position: center;
  background-size: cover;
  transition: all 0.3s ease 0s;
}
.one__block-info {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  width: 100%;
  padding-top: 15rem;
  background: linear-gradient(0deg, #141414 4.97%, rgba(0, 0, 0, 0) 100%);
}
.one__block-name {
  font-family: "Bebas Neue Cyrillic";
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 3.6rem;
  color: #fff;
}
.one__block-location, .one__block-type {
  font-weight: 400;
  font-size: 2rem;
  line-height: 3.6rem;
  color: #fff;
}
.one__text {
  font-size: 2.4rem;
  line-height: 2.8rem;
}

.btn-one.btn {
  max-width: 74rem;
  width: 100%;
  margin: 0 auto;
}

.one__arrows {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.swiper-button-prev2,
.swiper-button-next2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
}

.swiper-button-prev2 {
  transform: rotate(180deg);
}

.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) {
  .header {
    background-image: url("./../images/bg-header-mobile.png");
    background-position: top center;
    background-size: 100% auto;
  }
  .for-mob {
    display: flex;
    flex-direction: column;
  }
  .for-pc {
    display: none;
  }
  .header__content {
    padding: 4rem;
  }
  .heading__time,
  .heading__place,
  .heading__date {
    font-size: 1.8rem;
  }
  .header__title {
    font-size: 5rem;
    max-width: 30rem;
  }
  .header__description {
    font-size: 3rem;
    margin-bottom: 14rem;
  }
  .header__info::after {
    left: 16rem;
    top: 14rem;
    right: initial;
    width: 20rem;
    height: 20rem;
  }
  .header .form__heading {
    font-size: 1.8rem;
  }
  .topic__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .swiper-slide img {
    height: 40rem;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 5rem !important;
  }
  .meet__title {
    font-size: 3.4rem;
  }
  .meet__content {
    padding: 2rem;
  }
  .meet__blocks {
    flex-direction: column;
  }
  .meet__block {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .meet__block.first img {
    max-width: 29rem;
    height: 22rem;
    width: 100%;
  }
  .meet__block.last img:first-child {
    max-width: 38rem;
    height: 22rem;
    width: 100%;
  }
  .alex__content {
    padding: 2rem;
    padding-bottom: 50rem;
  }
  .alex {
    background-image: url("./../images/bg-alex-mobile.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .container-right {
    padding-left: 2rem;
  }
  .one__arrows {
    display: none;
  }
  .one__title {
    font-size: 4.6rem;
    line-height: 4.4rem;
  }
  .one__block-content img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .one__content {
    padding: 10rem 2rem 10rem 0;
  }
}
.present {
  width: 27.9rem;
  height: 27.9rem;
  z-index: 10;
  cursor: pointer;
  position: fixed;
  bottom: 4rem;
  right: 20rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  box-shadow: 1px 1px 40px 0px rgba(253, 232, 184, 0.4);
  font-size: 2rem;
  font-weight: 500;
  color: white;
  text-align: center;
}
@media screen and (max-width: 968px) {
  .present {
    position: fixed;
    top: 32rem;
    bottom: auto;
    left: 4rem;
    background: #1a1a1a;
    width: 15rem;
    height: 15rem;
    font-size: 1rem;
  }
}
.present span {
  font-size: 2.4rem;
}
@media screen and (max-width: 968px) {
  .present span {
    font-size: 1.6rem;
  }
}
.present__gift {
  width: 20rem;
  margin: 1rem auto 0;
  animation: gift 6s linear infinite;
}
@media screen and (max-width: 968px) {
  .present__gift {
    width: 10rem;
  }
}

@keyframes gift {
  0% {
    transform: rotate(0deg);
  }
  1% {
    transform: rotate(5deg);
  }
  2% {
    transform: rotate(-5deg);
  }
  4% {
    transform: rotate(5deg);
  }
  6% {
    transform: rotate(-5deg);
  }
  8% {
    transform: rotate(5deg);
  }
  10% {
    transform: rotate(-5deg);
  }
  11% {
    transform: 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__form {
  background: #1a1a1a;
}
@media screen and (max-width: 968px) {
  .modal__form {
    background: none;
    padding: 0;
  }
}
.modal__content {
  padding: 6rem 4rem 4rem;
  position: relative;
  width: 82rem;
  max-height: 100vh;
  overflow-y: auto;
}
@media screen and (max-width: 968px) {
  .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: 968px) {
  .modal__content .form__title {
    text-align: left;
  }
}
.modal__content .form-bg {
  gap: 0.6rem;
}
@media screen and (max-width: 968px) {
  .modal__content .form-bg {
    flex-direction: column;
    align-items: stretch;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

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