@charset "UTF-8";

@font-face {
  font-family: Pacifico;
  font-display: swap;
  src: url("../fonts/Pacifico-Regular.woff2") format("woff2"), url("../fonts/Pacifico-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 18px;
  font-family: Roboto;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #F8F8F8;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article>*+* {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1632px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 150px 0;
}

.title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

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

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 100px 42px;
  color: #333333;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 30px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.alert--title span {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: #77767C;
  text-transform: unset;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
  animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.hero__container {
  display: flex;
  justify-content: space-between;
  max-height: 978px;
  overflow: hidden;
}

.hero__img {
  position: relative;
  width: 50%;
}

.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.hero__info {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 30px 110px 30px 60px;
  background: #ffffff;
}

.hero__info-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  max-width: 540px;
}

.hero__info-wrap::before,
.hero__info-wrap::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__info-wrap::after {
  background: url("../img/decor-4.png") right 40%/auto no-repeat;
}

.hero__info-wrap::before {
  background: url("../img/decor-3.png") left 40%/auto no-repeat;
}

.hero__info p {
  color: #77767C;
  font-size: 16px;
  line-height: 160%;
}

.hero__subtitle {
  font-weight: 500;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  line-height: 140%;
}

.hero__title {
  font-family: Pacifico;
  color: #EA625C;
  font-size: 54px;
}

.hero__rose {
  max-width: 152px;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero__name {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-bottom: 35px;
  border-bottom: 1px solid #DBDAE0;
}

.hero__name p {
  line-height: 100%;
}

.hero__name-item {
  font-size: 18px;
  font-weight: 500;
}

.hero__date {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.hero__date span {
  font-weight: 500;
}

.hero__timer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (77px)[4];
  grid-template-columns: repeat(4, 77px);
  grid-auto-rows: 77px;
  grid-gap: 10px;
  padding-bottom: 35px;
  border-bottom: 1px solid #DBDAE0;
}

.hero__timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  border: 1px solid #DBDAE0;
  border-radius: 10px;
}

.hero__timer-item div {
  color: #EA625C;
  font-size: 28px;
}

.hero__timer-item span {
  font-size: 16px;
}

.hero__adress {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.hero__adress p {
  flex-shrink: 0;
}

.hero__adress span {
  font-weight: 500;
  line-height: 160%;
}

.hero__link {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  background: #27AE60;
  color: #ffffff;
  font-size: 16px;
  border-radius: 16px;
  transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.hero__link svg {
  flex-shrink: 0;
}

.hero__link:hover {
  background: #EA625C;
}

.hero__link::before,
.hero__link::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
}

.hero__link::before {
  background: url("../img/left-1.png") center/contain no-repeat;
  background-position: right;
}

.hero__link::after {
  background: url("../img/right-1.png") center/contain no-repeat;
  background-position: left;
}

.gallery {
  padding: 100px 0;
}

.gallery__title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.gallery__item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.gallery__item::before {
  display: block;
  content: "";
}

.gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery__item::before {
  padding-top: 100%;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-top: 10px;
}

.gallery__arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #DBDAE0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}

.gallery__arrow svg {
  transition: 0.2s ease-in-out;
}

.gallery__arrow:hover {
  background: #EA625C;
  border-color: #EA625C;
}

.gallery__arrow:hover svg path {
  stroke: #ffffff;
}

.program {
  padding: 10px 0;
  padding-top: 20px;
}

.program__container {
  padding: 28px 24px;
  border-radius: 24px;
  background: url("../img/decor-1.png") right bottom/auto no-repeat;
  background-color: #ffffff;
  overflow: hidden;
}

.program__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.program__list-item {
  display: flex;
  align-items: flex-start;
}

.program__list-img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  margin-right: 10px;
}

.program__list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.program__list-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.program__list-col span:nth-child(1) {
  color: #77767C;
  font-size: 14px;
}

.app {
  padding: 10px 0;
}

.app__container {
  padding: 28px 24px;
  border-radius: 24px;
  background: url("../img/decor-2.png") right 60px/auto no-repeat;
  background-color: #ffffff;
  overflow: hidden;
}

.app__subtitle {
  text-align: center;
  color: #77767C;
  margin-bottom: 32px;
  font-size: 16px;
}

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

.app__label {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.app__label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.app__label input:checked+div {
  border-color: #EA625C;
  background: #EA625C;
}

.app__label div {
  width: 18px;
  height: 18px;
  border: 1px solid #DBDAE0;
  margin-right: 14px;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}

.app__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  padding: 28px 0;
  border-top: 1px solid #DBDAE0;
  border-bottom: 1px solid #DBDAE0;
  margin-bottom: 28px;
  margin-top: 14px;
}

.app__counter-title {
  color: #77767C;
}

.app__counter-box {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.app__counter-box input {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DBDAE0;
  line-height: 120%;
  width: 70px;
  height: 30px;
  text-align: center;
}

.app__counter-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.app__field {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  margin-bottom: 16px;
}

.app__field input,
.app__field textarea {
  border: 1px solid #DBDAE0;
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
}

.app__field input::-moz-placeholder, .app__field textarea::-moz-placeholder {
  color: #77767C;
}

.app__field input:-ms-input-placeholder, .app__field textarea:-ms-input-placeholder {
  color: #77767C;
}

.app__field input::placeholder,
.app__field textarea::placeholder {
  color: #77767C;
}

.app__field textarea {
  height: 86px;
  resize: none;
  outline: none;
}

.app__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #EA625C;
  color: #fff;
  padding: 17px;
  border-radius: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.app__submit:hover {
  background: #27AE60;
}

.app__submit::before,
.app__submit::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
}

.app__submit::before {
  background: url("../img/left-1.png") center/contain no-repeat;
  background-position: right;
}

.app__submit::after {
  background: url("../img/right-1.png") center/contain no-repeat;
  background-position: left;
}

.reviews {
  padding: 10px 0;
  padding-bottom: 85px;
}

.reviews__container {
  padding: 28px 24px;
  border-radius: 24px;
  background-color: #ffffff;
}

.reviews__title {
  line-height: 140%;
  padding-bottom: 24px;
  border-bottom: 1px solid #DBDAE0;
}

.reviews__slide {
  text-align: center;
  background: #ffffff;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviews__slide-name {
  margin-bottom: 20px;
  color: #77767C;
}

.reviews__slide-text {
  line-height: 160%;
  margin-bottom: 20px;
}

.reviews__slide-date {
  color: #77767C;
}

.reviews__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-top: 24px;
}

.reviews__arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #DBDAE0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}

.reviews__arrow svg {
  transition: 0.2s ease-in-out;
}

.reviews__arrow:hover {
  background: #EA625C;
  border-color: #EA625C;
}

.reviews__arrow:hover svg path {
  stroke: #ffffff;
}

.music audio {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.btn-music {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 123px;
  height: 45px;
  border-radius: 50px;
  background: #EA625C;
  transition: 0.2s ease-in-out;
  z-index: 999;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}

.btn-music svg:nth-child(2) {
  opacity: 0;
}

.btn-music.active {
  width: 45px;
  background: #ffffff;
}

.btn-music.active div {
  width: 45px;
  height: 45px;
  background: #EA625C;
  left: 0;
  transform: translateY(-50%) rotate(360deg);
  transition: 0.4s ease-in-out;
}

.btn-music.active svg:nth-child(1) {
  opacity: 0;
}

.btn-music.active svg:nth-child(2) {
  opacity: 1;
}

.btn-music.active span {
  opacity: 0;
}

.btn-music div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffffff;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.btn-music div svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease-in-out;
}

.btn-music span {
  position: absolute;
  opacity: 1;
  transition: 0.2s ease-in-out;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  color: #ffffff;
  font-size: 14px;
  transition: 0.2s ease-in-out;
}


.way.way-right {
  transform: translateX(-100%);
  transition: .4s ease-in-out;
  opacity: 0;
}

.way.way-left {
  transform: translateX(100%);
  transition: .4s ease-in-out;
  opacity: 0;
}

.way.way-opacity {
  opacity: 0;
  transition: .4s ease-in-out;
}

.way.way--active.way-right {
  transform: translateX(0);
  opacity: 1;
}

.way.way--active.way-left {
  transform: translateX(0);
  opacity: 1;
}

.way.way--active.way-opacity {
  opacity: 1;
}

.mobile-version {
  width: 100%;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

.gallery {
  margin: 0 16px;
  padding: 10px 0;
}

.gallery__container {
  padding: 28px 24px;
  padding-bottom: 48px;
  border-radius: 24px;
  background: url("../img/line-1.png") bottom/contain repeat-x;
  background-color: #ffffff;
}

@media (max-width: 1650px) {
  body {
    font-size: 16px;
  }

  .container {
    max-width: 1400px;
  }

  .content {
    padding: 100px 0;
  }
}

@media (max-width: 1450px) {
  .container {
    max-width: 1200px;
  }

  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 980px;
  }

  .content {
    padding: 50px 0;
  }


}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    /* padding: 25px; */
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 30px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 992px) {}

.hero__info {
  padding: 50px;
}

.hero__info-wrap {
  row-gap: 20px;
}

.hero__info p {
  font-size: 14px;
}

.hero__subtitle {
  font-size: 26px;
}

.hero__title {
  font-size: 40px;
}

.hero__name {
  flex-direction: row;
  -moz-column-gap: 16px;
  column-gap: 16px;
  padding-bottom: 20px;
}

.hero__name-item {
  font-size: 14px;
}

.hero__date {
  flex-direction: column;
  row-gap: 10px;
  align-items: flex-start;
}

.hero__timer {
  -ms-grid-columns: (69px)[4];
  grid-template-columns: repeat(4, 69px);
  grid-auto-rows: 64px;
}

.hero__timer {
  padding-bottom: 20px;
}

.hero__timer-item {
  row-gap: 6px;
}

.hero__timer-item div {
  font-size: 24px;
}

.hero__timer-item span {
  font-size: 14px;
}

.hero__adress span {
  font-size: 14px;
}

.hero__container {
  flex-direction: column;
  max-height: unset;
}

.hero__img {
  width: 100%;
  position: relative;
  z-index: -1;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.hero__img::before {
  display: block;
  content: "";
}

.hero__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero__img::before {
  padding-top: 100%;
}

.hero__info {
  position: relative;
  z-index: 1;
  margin-top: -100px;
  width: 100%;
  background: transparent;
  padding: 0;
  padding: 0 16px;
}

.hero__info-wrap {
  padding: 28px 25px;
  background: #ffffff;
  border-radius: 24px;
  max-width: unset;
  width: 100%;
  align-items: center;
  row-gap: 24px;
}

.hero__info p {
  font-size: 16px;
  text-align: center;
  max-width: 450px;
}

.hero__subtitle {
  font-size: 18px;
}

.hero__title {
  font-size: 28px;
}

.hero__name {
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.hero__name-item {
  font-size: 18px;
}

.hero__date span {
  font-size: 18px;
}

.hero__date {
  align-items: center;
}

.hero__timer {
  width: 100%;
  place-content: center;
}

.hero__adress span {
  font-size: 18px;
  max-width: 291px;
  text-align: center;
}

.hero__adress {
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
}

.hero__link {
  padding: 20px;
  width: 100%;
}

.alert--title {
  font-size: 18px;
  line-height: 180%;
}

@media (max-width: 576px) {}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }


}