@charset "UTF-8";
.responsive-image {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.responsive-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.responsive-image._contain img {
  -o-object-fit: contain;
     object-fit: contain;
}

body {
  color: #313131;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: var(--preloader-bg-mobile, none);
  background-size: cover;
  background-position: center;
}
.loading-screen .logo {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 2s;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  filter: blur(6px);
}
.loading-screen .sm-opener_content {
  z-index: 2;
  cursor: pointer;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.loading-screen .sm-opener_content .sm-envelope_back {
  width: 100%;
  height: 563px;
  background: url(../img/envelope_back.webp) 50% 50% no-repeat;
  background-size: cover;
  position: relative;
  transform: rotate(-10deg) translate(-30px, -50px);
  overflow: hidden;
}
.loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_card {
  width: 300px;
  height: 200px;
  position: absolute;
  z-index: 2;
  background-size: contain;
  background: url(../img/envelope_text.webp) 50% 50% no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  transition: top 0.5s;
}
.loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_card .sm-envelope_card-text {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(14px + 16 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_card .sm-envelope_card-text {
    font-size: 30px;
  }
}
.loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_front {
  width: 100%;
  height: 356px;
  background: url(../img/envcover.webp) 50% 50% no-repeat;
  position: absolute;
  z-index: 3;
  bottom: 0;
  background-size: contain;
}
.loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_front .sm-intro_wrapper {
  width: 100%;
  height: 140px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_front .sm-intro_wrapper .sm-intro_string-1 {
  font-size: 20px;
  font-family: "Alegreya", serif;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_front .sm-intro_wrapper .sm-intro_string-2 {
  font-size: 40px;
  line-height: 30px;
  font-family: "Great Vibes", cursive;
  text-align: center;
}
@media (max-width: 500px) {
  .loading-screen .sm-opener_content {
    max-width: 300px;
    transform: translate(-50%, -35%);
  }
  .loading-screen .sm-opener_content .sm-envelope_back {
    transform: rotate(-10deg) translate(0, -50px);
    height: 344px;
  }
  .loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_card {
    width: 190px;
    height: 150px;
  }
  .loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_front {
    height: 218px;
  }
  .loading-screen .sm-opener_content .sm-envelope_back .sm-envelope_front .sm-intro_wrapper {
    bottom: 0;
    height: 125px;
    transform: translateX(-50%) scale(0.7);
  }
}
.loading-screen.active .sm-opener_content .sm-envelope_card {
  top: 30%;
}

.sm-opener_content-bottom {
  font-family: "Cormorant", serif;
  color: #dad4c4;
}

.sm-opener_content-button {
  position: relative;
}
.sm-opener_content-button .icon-icons8-forefinger-50::before {
  font-size: 50px;
  content: "\e928";
  color: #dad4c4;
}
.sm-opener_content-button .pulse-circle {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid #dad4c4;
  border-radius: 50%;
  top: -3px;
  left: 13px;
  animation: circleAnim 1s 0s infinite;
  animation-timing-function: ease-in-out;
}
@keyframes circleAnim {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.7);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.section._flowest {
  background-image: url(../img/flowest111.png);
}
.section._paper {
  background-image: url(../img/paper.jpg);
}
.section._p-bg {
  padding-block: calc(50px + 0 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .section._p-bg {
    padding-block: 50px;
  }
}

.section-hero .section-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(600px + 200 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .section-hero .section-hero__content {
    height: 800px;
  }
}
.section-hero .section-hero__content {
  justify-content: space-between;
}
.section-hero .section-hero__content .section-hero__content-top {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.section-hero .section-hero__content .section-hero__content-top h2 {
  color: #313131;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-size: 40px;
}
.section-hero .section-hero__content .section-hero__content-top .section-hero__content-date {
  display: flex;
  flex-direction: column;
  color: #313131;
  font-family: "Cormorant", serif;
  font-size: 50px;
  line-height: 90%;
  text-align: center;
}
@media (min-width: 992px) {
  .section-hero .section-hero__content .section-hero__content-top .section-hero__content-date {
    font-size: 80px;
    line-height: 111%;
  }
}
@media (min-width: 992px) {
  .section-hero .section-hero__content .section-hero__content-top {
    align-items: center;
    gap: 180px;
  }
}
.section-hero .section-hero__content h1 {
  color: #313131;
  text-transform: uppercase;
  font-family: "Viaoda Libre", serif;
  font-size: 55px;
}
.section-hero__cards {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: absolute;
  width: 100%;
  top: 20%;
}
.section-hero__cards .photo-card {
  display: flex;
  width: calc(300px + 50 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .section-hero__cards .photo-card {
    width: 350px;
  }
}
.section-hero__cards .photo-card {
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: column;
  gap: 10px;
  background-color: #FFFFFF;
  padding-inline: 15px;
  padding-block: 15px;
  transform: rotate(-15deg);
}
.section-hero__cards .photo-card .photo-card__image .photo-card__image-inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.section-hero__cards .photo-card .photo-card__image .photo-card__image-inner img,
.section-hero__cards .photo-card .photo-card__image .photo-card__image-inner picture,
.section-hero__cards .photo-card .photo-card__image .photo-card__image-inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hero__cards .photo-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #313131;
  line-height: 111%;
}
.section-hero__cards .photo-card._rotate {
  transform: rotate(15deg);
  margin-top: 100px;
}
.section-hero__cards .photo-card .heart {
  color: #ff5c9a;
}

.moment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.moment-content .line {
  width: 1px;
  height: 130px;
  background: #313131;
}
.moment-content h2 {
  font-size: 64px;
  font-size: calc(56px + 8 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .moment-content h2 {
    font-size: 64px;
  }
}
.moment-content h2 {
  font-family: "Viaoda Libre", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 111%;
  text-transform: uppercase;
}
.moment-content p {
  font-size: 20px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 111%;
  text-transform: uppercase;
}
.moment-content img {
  width: 50px;
  height: 50px;
}

.wedding-date {
  color: #6c6c6c;
  font-family: "Cormorant", serif;
}
@media (max-width: 991px) {
  .wedding-date {
    padding-block: 70px;
  }
}
@media (max-width: 575px) {
  .wedding-date {
    padding-block: 50px;
  }
}
.wedding-date__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #bdbdbd;
}
.wedding-date__month {
  font-size: clamp(16px, 3vw, 22px);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.wedding-date__text {
  margin-top: 50px;
  font-size: clamp(14px, 2.5vw, 20px);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
  padding-inline: 10px;
}
.wedding-date__date {
  margin-top: 25px;
  font-size: clamp(18px, 4vw, 32px);
  letter-spacing: 4px;
}
.wedding-date .calendar-block {
  background-color: #FFFFFF;
  border-radius: 125px 0 125px 0;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: calc(20px + -10 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .wedding-date .calendar-block {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .wedding-date .calendar-block {
    padding: 40px 25px;
    border-radius: 80px 0 80px 0;
  }
}
@media (max-width: 575px) {
  .wedding-date .calendar-block {
    padding: 30px 20px;
    border-radius: 50px 0 50px 0;
  }
}

.calendar {
  max-width: 420px;
  margin: 0 auto;
  color: #313131;
}
@media (max-width: 575px) {
  .calendar {
    max-width: 100%;
  }
}
.calendar div {
  padding: 5px;
}
.calendar__weekdays, .calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.calendar__weekdays {
  margin-bottom: 15px;
  font-size: clamp(10px, 2vw, 14px);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.calendar__days {
  gap: clamp(8px, 2vw, 18px);
  font-size: clamp(14px, 3vw, 20px);
}
.calendar__day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar__day--active {
  position: relative;
  font-weight: 500;
}
.calendar__day--active::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1.5px solid #6c6c6c;
  border-radius: 50%;
  transform: rotate(-12deg);
  /* незамкнутый круг */
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
}
@media (max-width: 575px) {
  .calendar__day--active::after {
    width: 34px;
    height: 34px;
  }
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Cormorant", serif;
}
.location-content h1 {
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 992px) {
  .location-content h1 {
    text-align: start;
  }
}
.location-content h3 {
  font-size: 36px;
}
.location-content h3 span {
  font-weight: 100;
}
.location-content h2 {
  font-size: 36px;
  text-transform: uppercase;
  opacity: 40%;
}
@media (min-width: 992px) {
  .location-content {
    gap: 10px;
  }
}

.location-marker {
  position: absolute;
  bottom: -50px;
  left: 40%;
  width: calc(100px + 30 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .location-marker {
    width: 130px;
  }
}
.location-marker {
  height: calc(100px + 30 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .location-marker {
    height: 130px;
  }
}
.location-marker {
  color: #313131;
  text-decoration: none;
  border: 1px solid #313131;
  border-radius: 50%;
  font-family: "Cormorant", sans-serif;
  font-size: calc(14px + 4 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .location-marker {
    font-size: 18px;
  }
}
.location-marker {
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.04em;
  text-align: center;
  background: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.location-marker:hover {
  color: #FFFFFF;
  background-color: #313131;
}
@media (min-width: 992px) {
  .location-marker {
    bottom: 30%;
    left: -50px;
  }
}

.timing .section-title {
  font-family: "Cormorant", serif;
  font-size: 70px;
  text-transform: uppercase;
  text-align: center;
  opacity: 75%;
}
.timing .timings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}
.timing .timings .timing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.timing .timings .timing-item img {
  height: 85px;
}
.timing .timings .timing-item .timing-item-title {
  font-size: 32px;
  font-family: "Source Serif 4", serif;
}
.timing .timings .timing-item .timing-item-title h1 {
  font-weight: 300;
}

.timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: calc(30px + 70 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container {
    padding-inline: 100px;
  }
}
.timer-container {
  padding-block: calc(10px + 40 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container {
    padding-block: 50px;
  }
}
.timer-container {
  background-color: #FFFFFF;
  border-radius: 50px 0 50px 0;
  gap: calc(15px + 35 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container {
    gap: 50px;
  }
}
.timer-container h1 {
  font-size: calc(11px + 25 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container h1 {
    font-size: 36px;
  }
}
.timer-container h1 {
  color: #313131;
  text-transform: uppercase;
  font-family: "Viaoda Libre", serif;
  opacity: 30%;
}
.timer-container .timer {
  display: flex;
  flex-direction: row;
  gap: calc(9px + 29 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container .timer {
    gap: 38px;
  }
}
.timer-container .timer .timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(3px + 5 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container .timer .timer-item {
    gap: 8px;
  }
}
.timer-container .timer .timer-item .count {
  display: flex;
  flex-direction: row;
  gap: calc(3px + 4 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container .timer .timer-item .count {
    gap: 7px;
  }
}
.timer-container .timer .timer-item .count div {
  padding-block: 10px;
  padding-inline: 20px;
  padding-inline: calc(6px + 14 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container .timer .timer-item .count div {
    padding-inline: 20px;
  }
}
.timer-container .timer .timer-item .count div {
  padding-block: calc(0px + 10 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container .timer .timer-item .count div {
    padding-block: 10px;
  }
}
.timer-container .timer .timer-item .count div {
  font-size: calc(13px + 27 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .timer-container .timer .timer-item .count div {
    font-size: 40px;
  }
}
.timer-container .timer .timer-item .count div {
  border: 1px solid #C6C4C4;
}
@media (min-width: 992px) {
  .timer-container {
    border-radius: 125px 0 125px 0;
  }
}

.wishe h1 {
  font-family: "Cormorant", serif;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.wishe .swiper-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.wishe .swiper-bottom .slider-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.wishe .swiper-bottom .slider-nav .nav-btn {
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Cormorant", serif;
}
.wishe .swiper-bottom .slider-nav .pagination {
  font-size: 18px;
}
.wishe .swiper-bottom p {
  font-family: "Cormorant", serif;
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  opacity: 50%;
}
.wishe .wishe-card p {
  font-family: "Cormorant", serif;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #313131;
}
.wishe .wishe-date {
  text-align: center;
  margin-top: 50px;
  font-family: "Viaoda Libre", serif;
  opacity: 8%;
  font-size: calc(40px + 110 * (100vw - 390px) / 1010);
}
@media (min-width: 1400px) {
  .wishe .wishe-date {
    font-size: 150px;
  }
}

.rsvp-card {
  max-width: 640px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  padding: 50px;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .rsvp-card {
    padding: 30px;
    border-radius: 25px;
  }
}

.form-title {
  font-size: 20px;
  font-weight: 400;
  color: #2f2f2f;
}

.question {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2f2f2f;
}

.custom-input {
  border-radius: 18px;
  padding: 14px 20px;
  border: 1px solid #6f6f6f;
  font-size: 16px;
}
.custom-input:focus {
  border-color: #bfa88f;
  box-shadow: none;
}

.form-check {
  margin-bottom: 8px;
}
.form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 1px solid #6f6f6f;
}
.form-check .form-check-input:checked {
  background-color: #bfa88f;
  border-color: #bfa88f;
}
.form-check .form-check-input:focus {
  box-shadow: none;
}
.form-check .form-check-label {
  margin-left: 6px;
  font-size: 16px;
}

.btn-submit {
  margin-top: 10px;
  border-radius: 20px;
  padding: 12px 30px;
  background: #bfa88f;
  color: white;
  border: none;
}
.btn-submit:hover {
  background: #a89277;
}

.wedding-footer {
  padding: 70px 0;
}
.wedding-footer .footer-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #8a8a8a;
  line-height: 1.5;
  text-transform: uppercase;
}
.wedding-footer .heart {
  color: #ff5c9a;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .wedding-footer {
    padding: 50px 0;
  }
  .wedding-footer .footer-text {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */