@font-face {
  font-family: "My Font";
  src: url("../fonts/MyFontRegular.woff2") format("woff2"), url("../fonts//MyFontRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Tsars A";
  src: url("../fonts/TTTsarsA-Regular.woff2") format("woff2"), url("../fonts/TTTsarsA-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
.color-gray {
  color: #8b8b8b;
}

.color-primary {
  color: #bf945a;
}

h1 {
  font-family: "My Font", sans-serif;
}

.subtitle {
  color: #bf945a;
  font-size: 35px;
  font-family: "My Font", sans-serif;
  margin: 0;
}

.title {
  color: #121212;
  font-size: 40px;
  font-family: "TT Tsars A", sans-serif;
  margin: 0;
}

.button {
  padding: 10px 20px;
  border: none;
}

.button-light {
  background-color: #faf8f7;
  color: #8b8b8b;
}

.button-primary {
  background-color: #bf945a;
  color: #fff;
}

.circle-button {
  display: none;
  z-index: 11;
  border-radius: 50%;
  background-color: #bf945a;
  border: 0;
  color: #fff;
  width: 60px;
  height: 60px;
  position: fixed;
  top: 20px;
  left: 20px;
}

.invitation {
  min-height: 100vh;
  display: flex;
}
.invitation__content {
  flex: 75%;
}
.invitation__content .item {
  height: 50vh;
}
.invitation__menu {
  z-index: 5;
  transition: right 300ms ease;
  display: grid;
  grid-template-rows: 300px 1fr 100px;
  position: sticky;
  top: 0;
  flex: 25%;
  height: 100vh;
  background-color: #fff;
}
.invitation__menu--top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.invitation__menu--top img {
  width: 25%;
  margin: 15px;
}
.invitation__menu--top h3 {
  color: #bf945a;
  font-family: "My Font", sans-serif;
  font-size: 40px;
}
.invitation__menu--top p {
  font-family: "TT Tsars A", sans-serif;
  color: #121212;
  font-size: 24px;
}
.invitation__menu__links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.invitation__menu__links__list {
  position: relative;
  top: -50px;
  padding: 0;
  list-style-type: none;
  margin: 0;
  text-align: center;
}
.invitation__menu__links__list .active {
  font-weight: bold;
}
.invitation__menu__links__list--item {
  font-family: "TT Tsars A", sans-serif;
  color: #121212;
  text-decoration: none;
  padding: 10px;
  font-size: 20px;
  display: block;
  font-weight: 500;
}
.invitation__menu__links__list--item:hover {
  color: #121212;
  font-weight: 600;
}
.invitation__menu__footer {
  text-align: center;
  width: 100%;
  color: #8b8b8b;
}
.invitation__menu__footer p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.invitation__menu__footer--divisor {
  display: block;
  width: 50%;
  height: 1px;
  background-color: #bf945a;
  margin: 0 auto;
}
.invitation__menu__footer--title {
  margin-top: 10px !important;
}

.menu-toggled {
  right: 0 !important;
  transition: right 300ms ease;
}

.welcome {
  width: 100%;
  height: 100vh;
  background: url("../img/main.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.welcome h1 {
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  color: #bf945a;
  font-size: 100px;
  margin-bottom: 32px;
}
.welcome p {
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
  font-family: "TT Tsars A", sans-serif;
  color: #fff;
  font-size: 24px;
}

.getting-married {
  background-color: #faf8f7;
  text-align: center;
  padding: 36px 0;
}
.getting-married h1 {
  color: #bf945a;
  font-size: 80px;
}
.getting-married p {
  font-family: "TT Tsars A", sans-serif;
  color: #121212;
  font-size: 24px;
}

.countdown {
  min-height: 442px;
  background-image: url("../img/ring.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.countdown h1 {
  color: #fff;
  font-size: 60px;
}
.countdown__item {
  font-family: "TT Tsars A", sans-serif;
  color: #fff;
}
.countdown__item--number {
  font-size: 80px;
}
.countdown__item--text {
  font-size: 20px;
}

.gallery {
  background-color: #fff;
}
.gallery__card {
  cursor: pointer;
  position: relative;
  width: 100%;
  min-height: 100px;
  height: 250px;
  max-height: 250px;
  overflow: hidden;
}
.gallery__card img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.gallery__card:hover::before {
  opacity: 0.2;
}
.gallery__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  z-index: 6;
  opacity: 0;
  transition: opacity 300ms ease;
}

.places {
  background-color: #fbf8f7;
}
.places__card {
  overflow: hidden;
  border: 0 !important;
}
.places__card--title {
  color: #121212;
  font-family: "TT Tsars A", sans-serif;
  margin: 0;
}
.places__card--img {
  position: relative;
  overflow: hidden;
}
.places__card--img--link {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  color: #121212;
  opacity: 0;
}
.places__card--img--link:hover {
  color: #121212;
}
.places__card--img--link span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
}
.places__card--img img {
  transition: 300ms ease transform;
}
.places__card--img::before {
  content: "";
  z-index: 2;
  transition: 300ms ease opacity;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.places__card--img:hover img {
  transform: scale(1.2);
}
.places__card--img:hover .places__card--img--link {
  opacity: 1;
}
.places__card--img:hover::before {
  opacity: 0.5;
}
.places__card--icon {
  color: #bf945a;
  margin-right: 4px;
}
.places__card--text {
  color: #8b8b8b;
}

.gifts {
  background-color: #fff;
}
.gifts__img {
  overflow: hidden;
}
.gifts__img img {
  filter: grayscale(100%);
  width: 80%;
  transition: 300ms ease transform;
}
.gifts__img img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.rsvp {
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/ring.jpg");
  background-position: center;
  background-size: cover;
  background-position: fixed;
}
.rsvp__subtitle {
  color: #bf945a;
}
.rsvp__title {
  color: #121212;
  font-size: 40px;
  font-family: "TT Tsars A", sans-serif;
}
.rsvp__card {
  margin: 0 auto;
  width: 50%;
  background-color: #fff;
}

.organization {
  background-color: #fbf8f7;
}
.organization__background {
  background-image: url("../img/beach-3.jpg");
  background-size: cover;
  background-position: center;
}
.organization__card {
  height: 100%;
  cursor: default;
  border-left: 1px solid #faf8f7;
  position: relative;
}
.organization__card--number, .organization__card--title, .organization__card--description {
  position: relative;
  z-index: 2;
}
.organization__card--number {
  color: #bf945a;
  margin: 0;
  font-size: 60px;
  font-family: "TT Tsars A", sans-serif;
}
.organization__card--title {
  font-family: "TT Tsars A", sans-serif;
  color: #121212;
  font-size: 30px;
}
.organization__card--description {
  font-family: "Montserrat";
  color: #8b8b8b;
  font-weight: 600;
  font-size: 14px;
}
.organization__card::before {
  transition: 300ms ease opacity;
  opacity: 100;
  content: "";
  position: absolute;
  background-color: #fff;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.organization__card:hover::before {
  opacity: 0;
}
.organization__card:hover .organization__card--description {
  color: #121212;
}

.our-history {
  background-color: #faf8f7;
}
.our-history__content--text {
  margin: 25px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #8b8b8b;
}
.our-history__content--text--bold {
  font-family: "TT Tsars A", sans-serif;
  color: #121212;
  font-size: 20px;
}

.footer {
  background-color: #fbf8f7;
}
.footer img {
  width: 150px;
}
.footer h3 {
  margin: 16px 0;
  color: #bf945a;
  font-family: "My Font", sans-serif;
  font-size: 40px;
}
.footer p {
  font-family: "TT Tsars A", sans-serif;
  color: #121212;
  font-size: 24px;
  margin: 0;
}

.modal-body p {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #121212;
}

.modal-title-custom {
  font-family: "TT Tsars A", sans-serif;
  color: #121212;
  font-size: 24px;
}

.modal-image {
  display: none;
  z-index: 7;
  position: fixed;
  padding: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.modal-image img {
  z-index: 9;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
}
.modal-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-toggled {
  display: flex !important;
  align-items: center;
  justify-content: center;
  animation: modal 300ms ease-in-out forwards;
}

@keyframes modal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 850px) {
  .circle-button {
    display: block;
  }
  .invitation__menu {
    transition: right 300ms ease;
    position: fixed;
    width: 100%;
    right: 100%;
  }
  .invitation__content {
    flex: 100%;
  }
  .rsvp__card {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .welcome h1, .getting-married h1 {
    font-size: 60px !important;
  }
  .countdown__item--number {
    font-size: 40px !important;
  }
  .countdown h1 {
    font-size: 40px !important;
  }
}
.blocked-page {
  background-color: #fff;
  position: fixed;
  height: 100vh;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 12;
}
.blocked-page--card {
  width: 50%;
}

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