@charset "UTF-8";
@font-face {
  font-family: "Magnificent";
  src: url("../fonts/MagnificentRegular.woff2") format("woff2"), url("../fonts/MagnificentRegular.woff") format("woff"), url("../fonts/MagnificentRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Minion Pro";
  src: url("../fonts/MinionPro-Regular.woff2") format("woff2"), url("../fonts/MinionPro-Regular.woff") format("woff"), url("../fonts/MinionPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.woff2") format("woff2"), url("../fonts/Helvetica.woff") format("woff"), url("../fonts/Helvetica.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bingo";
  src: url("../fonts/BingoRegular.woff2") format("woff2"), url("../fonts/BingoRegular.woff") format("woff"), url("../fonts/BingoRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arial";
  src: url("../fonts/ArialMT.woff2") format("woff2"), url("../fonts/ArialMT.woff") format("woff"), url("../fonts/ArialMT.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Bold.woff2") format("woff2"), url("../fonts/Futura-Bold.woff") format("woff"), url("../fonts/Futura-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
html,
body {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: sans-serif, Arial;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: relative;
  width: 100%;
  transition: all 0.5s ease;
}
.site-header .custom-navbar {
  padding: 30px 0;
  transition: all 0.5s ease;
}
.site-header .custom-navbar .custom-animated-toggler {
  border: none;
  background: transparent;
  padding: 0;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.site-header .custom-navbar .custom-animated-toggler:focus {
  outline: none;
  box-shadow: none;
}
.site-header .custom-navbar .custom-animated-toggler .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.5s ease;
  transform-origin: center;
}
.site-header .custom-navbar .custom-animated-toggler:hover .bar {
  background-color: #c5b358;
}
.site-header .custom-navbar .custom-animated-toggler.collapsed .bar:nth-child(1) {
  transform: rotate(0) translate(0, 0);
}
.site-header .custom-navbar .custom-animated-toggler.collapsed .bar:nth-child(2) {
  opacity: 1;
  transform: scaleX(1);
}
.site-header .custom-navbar .custom-animated-toggler.collapsed .bar:nth-child(3) {
  transform: rotate(0) translate(0, 0);
}
.site-header .custom-navbar .custom-animated-toggler:not(.collapsed) .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #c5b358;
}
.site-header .custom-navbar .custom-animated-toggler:not(.collapsed) .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header .custom-navbar .custom-animated-toggler:not(.collapsed) .bar:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
  background-color: #c5b358;
}
.site-header .custom-navbar .custom-animated-toggler.navbar-toggler {
  border: none;
  display: none;
}
@media (max-width: 991px) {
  .site-header .custom-navbar .custom-animated-toggler.navbar-toggler {
    display: flex;
  }
}
.site-header .custom-navbar .custom-animated-toggler.navbar-toggler:focus {
  box-shadow: none;
}
.site-header .main-menu {
  justify-content: center;
  gap: 130px;
}
@media (max-width: 991px) {
  .site-header .main-menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .site-header .main-menu.collapse.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.19);
    padding: 20px;
    gap: 0;
  }
}
@media (max-width: 1200px) {
  .site-header .main-menu {
    gap: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .site-header .main-menu {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
}
@media (max-width: 991px) {
  .site-header .main-menu {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 1rem 0;
  }
}
.site-header .main-menu .navbar-brand {
  padding: 0;
  margin: 0;
}
.site-header .main-menu .group-2 {
  gap: 130px;
}
@media (max-width: 991px) {
  .site-header .main-menu .group-2 {
    flex-direction: column;
    gap: 15px;
  }
}
.site-header .main-menu.show {
  padding: 20px;
}
.site-header .main-menu.show .navbar-nav {
  width: 100%;
  gap: 0;
}
.site-header .main-menu.show .navbar-nav .nav-item .nav-link {
  margin-top: 5px;
  padding: 7px 10px;
  color: #2d2c2a;
  border: 1px solid transparent;
  transition: color 0.3s ease-in-out;
}
.site-header .main-menu.show .navbar-nav .nav-item .nav-link.active, .site-header .main-menu.show .navbar-nav .nav-item .nav-link:hover {
  background: #2d2d2d;
  color: #babba0;
}

.custom-navbar {
  background: transparent;
}
.custom-navbar .nav-link {
  color: #babba0;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease-in-out;
  font-family: "Arial", sans-serif;
}
.custom-navbar .nav-link:hover, .custom-navbar .nav-link.active {
  color: #fff;
}
.custom-navbar .logo {
  width: 70px;
  height: 70px;
  transition: all 0.5s ease-in-out;
  -o-object-fit: contain;
     object-fit: contain;
}

.sticky .site-header .navbar {
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.sticky .site-header .navbar .navbar-toggler .bar {
  background-color: #c5b358;
}
.sticky .site-header .navbar .main-menu {
  background: transparent;
  box-shadow: unset;
  padding: 0;
}
.sticky .site-header .navbar .navbar-nav .nav-link {
  color: #2d2c2a;
  font-weight: 700;
}
.sticky .site-header .navbar .navbar-nav .nav-link.active {
  color: #babba0;
}
.sticky .site-header .logo {
  width: 50px;
  height: 50px;
}

.wrapper-main {
  position: relative;
  overflow: hidden;
}
.wrapper-main:after, .wrapper-main:before {
  content: "";
  width: 50%;
  height: 70%;
  position: absolute;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}
.wrapper-main:before {
  top: 0%;
  left: -8%;
  background: url("../imgs/opening-page-flowers.png") top/contain no-repeat;
  transform: rotate(-90deg);
}
@media only screen and (max-width: 1150px) {
  .wrapper-main:before {
    left: 10%;
    top: -20%;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper-main:before {
    content: none;
  }
}
.wrapper-main:after {
  width: 50%;
  height: 28%;
  bottom: 0;
  left: -12%;
  pointer-events: none;
  background: url("../imgs/opening-banner-shadow.webp") top/contain no-repeat;
}
@media only screen and (max-width: 1150px) {
  .wrapper-main:after {
    height: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper-main:after {
    content: none;
  }
}
.wrapper-main .main-section {
  position: relative;
  width: 100%;
  height: 100vh;
}
.wrapper-main .main-section:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
  right: 20px;
  bottom: 40px;
  border: 1px solid #c5b358;
  pointer-events: none;
  z-index: 2;
}
.wrapper-main .main-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(18, 39, 24, 0.95) 0%, rgba(18, 39, 24, 0.7) 30%, rgba(18, 39, 24, 0.3) 60%, transparent 100%);
}
@media only screen and (max-width: 767px) {
  .wrapper-main .main-section:after {
    width: 100%;
  }
}
.wrapper-main .main-section .main-img {
  position: relative;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media only screen and (max-width: 1200px) {
  .wrapper-main .main-section .main-img {
    -o-object-position: top right;
       object-position: top right;
  }
}
@media (max-width: 576px) {
  .wrapper-main .main-section .main-img {
    -o-object-position: 90% 50%;
       object-position: 90% 50%;
  }
}
.wrapper-main .main-section .patrick-danae {
  position: absolute;
  z-index: 1;
  top: 45%;
  left: 80px;
}
@media only screen and (max-width: 1200px) {
  .wrapper-main .main-section .patrick-danae {
    top: 40%;
    left: 40px;
  }
}
@media only screen and (max-width: 1150px) {
  .wrapper-main .main-section .patrick-danae {
    top: 50%;
    left: 40px;
    right: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .wrapper-main .main-section .patrick-danae {
    top: 40%;
  }
}
.wrapper-main .main-section .patrick-danae .title-main {
  position: relative;
  font-size: 52px;
  line-height: 60px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  z-index: 1;
  font-family: "Bingo", sans-serif;
}
@media only screen and (max-width: 1366px) {
  .wrapper-main .main-section .patrick-danae .title-main {
    font-size: 42px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1150px) {
  .wrapper-main .main-section .patrick-danae .title-main {
    text-align: center;
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 576px) {
  .wrapper-main .main-section .patrick-danae .title-main {
    font-size: 42px;
    line-height: 50px;
  }
}
.wrapper-main .main-section .patrick-danae .title-main .bride {
  margin-right: 5px;
}
@media only screen and (max-width: 576px) {
  .wrapper-main .main-section .patrick-danae .title-main .bride {
    display: block;
    margin: 0;
  }
}
.wrapper-main .main-section .patrick-danae .title-main .pd-logo {
  width: 270px;
  height: 336px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1440px) {
  .wrapper-main .main-section .patrick-danae .title-main .pd-logo {
    width: 180px;
    height: 250px;
  }
}
@media only screen and (max-width: 1366px) {
  .wrapper-main .main-section .patrick-danae .title-main .pd-logo {
    width: 200px;
  }
}
@media only screen and (max-width: 1280px) {
  .wrapper-main .main-section .patrick-danae .title-main .pd-logo {
    height: 220px;
  }
}
@media only screen and (max-width: 576px) {
  .wrapper-main .main-section .patrick-danae .title-main .pd-logo {
    width: 100px;
    height: 100%;
    display: block;
    margin: 20px auto 10px;
  }
}
.wrapper-main .main-section .patrick-danae .flies-icon {
  position: absolute;
  right: -1%;
  opacity: 0.1;
  top: 45%;
}
@media only screen and (max-width: 1440px) {
  .wrapper-main .main-section .patrick-danae .flies-icon {
    right: 7%;
    width: 250px;
  }
}
@media only screen and (max-width: 1150px) {
  .wrapper-main .main-section .patrick-danae .flies-icon {
    right: 30%;
    top: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper-main .main-section .patrick-danae .flies-icon {
    display: none;
  }
}
.wrapper-main .main-section .bottom-right-content {
  position: absolute;
  right: 80px;
  bottom: 70px;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  .wrapper-main .main-section .bottom-right-content {
    right: 130px;
  }
}
@media only screen and (max-width: 1150px) {
  .wrapper-main .main-section .bottom-right-content {
    right: 0;
    left: 0;
  }
}
.wrapper-main .main-section .bottom-right-content img {
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1150px) {
  .wrapper-main .main-section .bottom-right-content img {
    width: 20%;
    margin: 0 auto 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 576px) {
  .wrapper-main .main-section .bottom-right-content img {
    width: 40%;
  }
}
.wrapper-main .main-section .bottom-right-content .click-to-enter {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.wrapper-main .main-section .bottom-right-content .click-to-enter:hover {
  color: #babca1;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../imgs/home-banner.webp") bottom/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-section .arrow-down {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  animation: bounceDown 2s infinite;
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(18, 39, 24, 0.95) 0%, rgba(18, 39, 24, 0.7) 30%, rgba(18, 39, 24, 0.3) 60%, transparent 100%);
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 240px;
}
.hero-section .hero-content .name-plate {
  margin-bottom: 30px;
width: 674px;
height: 146px;
}
.hero-section .hero-content .name-plate img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 991px) {
  .hero-section .hero-content .name-plate {
    width: 80%;
    margin: 0 auto 30px;
  }
}
.hero-section .hero-content .name-plate span {
  color: #c5b358;
  font-size: 72px;
}
.hero-section .hero-content .hero-sub {
  gap: 3rem;
}
@media (max-width: 992px) {
  .hero-section .hero-content .hero-sub {
    flex-direction: column;
    gap: 20px;
  }
}
.hero-section .hero-content .hero-sub .mini-sub-title h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  font-family: "Arial", sans-serif;
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-sub .mini-sub-title h2 {
    font-size: 16px;
    line-height: 24px;
  }
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(15px);
    /* bounce down */
  }
  60% {
    transform: translateY(8px);
    /* smaller bounce */
  }
}
.story-section {
  position: relative;
  z-index: 1;
  padding: 70px 0 0;
  background: #ddded1;
}
.story-section:after {
  content: "";
  position: absolute;
  left: -29%;
  top: 8%;
  width: 100%;
  height: 60%;
  background-image: url("../imgs/bird.png");
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (max-width: 1366px) {
  .story-section:after {
    left: -44%;
  }
}
.story-section .with-a-note {
  width: 550px;
  margin: 0 auto 50px;
}
.story-section .inner-content {
  max-width: 1145px;
  margin: 0 auto;
  font-size: 30px;
  line-height: 48px;
  font-weight: 400;
  color: #383836;
  font-family: "Magnificent", sans-serif;
}
.story-section .inner-content .story-title {
  font-size: 100px;
  line-height: 108px;
  font-weight: 400;
  color: #576957;
  margin-bottom: 50px;
  font-family: "Bingo", sans-serif;
}
@media (max-width: 1200px) {
  .story-section .inner-content .story-title {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .story-section .inner-content .story-title {
    font-size: 52px;
    line-height: 50px;
    margin-bottom: 30px;
  }
}
.story-section .inner-content .story-text {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .story-section .inner-content .story-text {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .story-section .inner-content .story-text {
    margin-bottom: 30px;
  }
}
.story-section .inner-content .story-text:last-child {
  margin-bottom: 0;
}
.story-section .showcase {
  padding-top: 70px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .story-section .showcase {
    padding-top: 60px;
  }
}
@media (max-width: 991px) {
  .story-section .showcase {
    padding-top: 50px;
  }
}
.story-section .showcase img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.photo-gallery {
  padding: 150px 0 70px;
  background: #2d2c2a;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.photo-gallery:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  background: url("../imgs/flowers.png") bottom/cover no-repeat;
}
@media only screen and (max-width: 1920px) {
  .photo-gallery:after {
    width: 94%;
    left: auto;
    right: 0;
  }
}
.photo-gallery .gallery-header {
  position: relative;
  display: inline-block;
  padding: 40px 0;
  margin: 0;
}
@media only screen and (max-width: 359px) {
  .photo-gallery .gallery-header {
    padding: 30px 0;
  }
}
.photo-gallery .gallery-header .gallery-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #babba0;
  margin: 0;
  font-family: "Bingo", sans-serif;
}
@media only screen and (max-width: 991px) {
  .photo-gallery .gallery-header .gallery-title {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .photo-gallery .gallery-header .gallery-title {
    font-size: 24px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 359px) {
  .photo-gallery .gallery-header .gallery-title {
    font-size: 17px;
    line-height: 17px;
  }
}
.photo-gallery .gallery-header .gallery-sub {
  font-size: 14px;
  color: #ddd;
}
.photo-gallery .gallery {
  position: relative;
  z-index: 1;
}
.photo-gallery .gallery:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50px;
  right: 50px;
  bottom: 0px;
  border: 1px solid #fff;
  pointer-events: none;
  z-index: -1;
}
.photo-gallery .gallery .ring-icon {
  position: absolute;
  left: 0;
  right: 0;
	top: -85px;
   width: 70px;
   padding: 12px;
  margin: 0 auto;
  background-color: #2d2c2a;
}
.photo-gallery .gallery .gallery-img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 2px solid transparent;
}
.photo-gallery .gallery .gallery-img:hover {
  transform: scale(1.05);
  border-color: #babba0;
}
.photo-gallery .gallery-footer {
  font-size: 20px;
  line-height: 28px;
  color: #babba0;
  font-family: "Arial", sans-serif;
}
.photo-gallery .gallery-footer p {
  margin: 0;
}

.pd-footer {
  padding: 70px 0;
  background-color: #000000;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .pd-footer {
    padding: 50px 0;
  }
}
.pd-footer .quick-links ul {
  flex-direction: column;
  list-style: none;
}
@media (max-width: 991px) {
  .pd-footer .quick-links ul {
    margin-top: 50px;
    flex-direction: row;
    justify-content: center;
    gap: 0px !important;
  }
}
.pd-footer .quick-links ul .nav-item .nav-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #babba0;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  font-family: "Arial", sans-serif;
  padding: 7px;
}
@media (max-width: 991px) {
  .pd-footer .quick-links ul .nav-item .nav-link {
    padding: 7px 20px;
  }
}
@media (max-width: 767px) {
  .pd-footer .quick-links ul .nav-item .nav-link {
    padding: 7px 10px;
  }
}
.pd-footer .quick-links ul .nav-item .nav-link.active, .pd-footer .quick-links ul .nav-item .nav-link:hover {
  color: #ffffff;
}

.wrapper .wedding-page-hero-section {
  position: relative;
  background: url("../imgs/gallery10.webp") top/cover no-repeat;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.4);
}
.wrapper .wedding-page-hero-section .overlay {
  background: linear-gradient(180deg, rgba(43, 61, 44, 0.85) 0%, rgba(43, 61, 44, 0.65) 35%, rgba(43, 61, 44, 0) 100%);
}
.wrapper .the-wedding {
  padding: 70px 0 70px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .wrapper .the-wedding {
    padding: 50px 0 50px;
  }
}
.wrapper .the-wedding:after {
  content: none;
}
.wrapper .the-wedding:before {
  content: "";
  position: absolute;
  right: -2%;
  top: 80px;
  bottom: 0;
  width: 63%;
  height: 100%;
  background: url("../imgs/flowers.webp") right/contain no-repeat;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  transform: rotate(90deg);
}
.wrapper .the-wedding .inner-content {
  max-width: 932px;
}
.wrapper .the-wedding .inner-content .story-title {
  font-size: 80px;
  line-height: 88px;
}
@media (max-width: 1366px) {
  .wrapper .the-wedding .inner-content .story-title {
    font-size: 70px;
    line-height: 78px;
  }
}
@media (max-width: 1200px) {
  .wrapper .the-wedding .inner-content .story-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 992px) {
  .wrapper .the-wedding .inner-content .story-title .story-title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  .wrapper .the-wedding .inner-content .story-title {
    font-size: 50px;
    line-height: 58px;
  }
}
.wrapper .the-wedding .inner-content .story-title.sub-title {
  font-size: 52px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 1366px) {
  .wrapper .the-wedding .inner-content .story-title.sub-title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .wrapper .the-wedding .inner-content .story-title.sub-title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .wrapper .the-wedding .inner-content .story-title.sub-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.wrapper .the-wedding .inner-content .story-title.sub-title span {
  display: block;
}
.wrapper .the-wedding .inner-content .sup-description {
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .wrapper .the-wedding .inner-content .sup-description .sup-description {
    font-size: 20px;
    line-height: 28px;
  }
}
.wrapper .the-wedding .inner-content .attire .sub-mini-title {
  font-size: 50px;
  line-height: 58px;
  color: #2c2e35;
  margin: 20px 0 10px;
  font-family: "Bingo", sans-serif;
}
@media (max-width: 991px) {
  .wrapper .the-wedding .inner-content .attire .sub-mini-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .wrapper .the-wedding .inner-content .attire .sub-mini-title {
    font-size: 32px;
  }
}
.wrapper .the-wedding .inner-content .attire .attire-type .type {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .the-wedding .inner-content .attire .attire-type .type {
    font-size: 22px;
    line-height: 30px;
  }
}
.wrapper .the-wedding .inner-content .attire .attire-type .type:last-child {
  margin-bottom: 0;
}
.wrapper .the-wedding .inner-content .attire .attire-type .type .semi-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  margin: 0;
  color: #2c2e35;
  font-family: "BINGO", sans-serif;
}
@media (max-width: 991px) {
  .wrapper .the-wedding .inner-content .attire .attire-type .type .semi-title {
    font-size: 26px;
    line-height: 34px;
  }
}
.wrapper .the-wedding .inner-content .attire .attire-type .type.ladies .sub-description {
  font-size: 22px;
  line-height: 30px;
  margin-top: 10px;
}
.wrapper .the-wedding .inner-content .attire .attire-type .type p {
  margin: 0 0 10px;
}
.wrapper .just-married {
  padding: 100px 0;
  background-color: #2d2c2a;
}
@media (max-width: 1366px) {
  .wrapper .just-married {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .wrapper .just-married {
    padding: 50px 0;
  }
}
.wrapper .just-married .an-adults-only {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.wrapper .just-married .an-adults-only .inner-content {
  position: relative;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  padding: 70px 50px;
  text-align: center;
  border: 1px solid #fff;
  font-family: "Magnificent", sans-serif;
}
@media (max-width: 992px) {
  .wrapper .just-married .an-adults-only .inner-content {
    font-size: 22px;
    line-height: 30px;
    padding: 40px 20px;
  }
}
.wrapper .just-married .an-adults-only .inner-content:before {
  content: "";
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  width: 80px;
  height: 60px;
  margin: 0 auto;
  background: url("../imgs/just-married.png") center/contain no-repeat;
  background-color: #2d2c2a;
  pointer-events: none;
}
.wrapper .just-married .an-adults-only .inner-content .section-title {
  font-size: 52px;
  line-height: 60px;
  font-weight: 700;
  color: #bcc2a4;
  margin-bottom: 20px;
  font-family: "Bingo", sans-serif;
}
@media (max-width: 991px) {
  .wrapper .just-married .an-adults-only .inner-content .section-title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .wrapper .just-married .an-adults-only .inner-content .section-title {
    font-size: 36px;
    line-height: 44px;
  }
}
.wrapper .just-married .an-adults-only .inner-content p {
  margin: 0;
}
.wrapper.wedding-page .events-illustration .imgs-gallery:after, .wrapper.venue-page .events-illustration .imgs-gallery:after {
  content: none;
}
.wrapper .venue-page-hero-section {
  background: url("../imgs/wedding-venue.webp") top/cover no-repeat;
}
.wrapper .venue-page-hero-section .overlay {
  background: linear-gradient(to bottom, rgba(18, 39, 24, 0.95) 0%, rgba(18, 39, 24, 0.7) 50%, rgba(18, 39, 24, 0.3) 60%, transparent 100%);
}
.wrapper .the-venue {
  padding: 70px 0 0px;
  position: relative;
}
@media (max-width: 991px) {
  .wrapper .the-venue {
    padding: 50px 0 0;
  }
}
.wrapper .the-venue:after {
  left: -26%;
  top: 4%;
  pointer-events: none;
  background-image: url("../imgs/bird-venue.png");
}
.wrapper .the-venue .venue-img img {
  filter: grayscale(1);
}
.wrapper .the-venue .inner-content {
  padding-bottom: 70px;
}
.wrapper .the-venue .inner-content .story-title {
  font-weight: 400;
  margin-bottom: 30px;
}
.wrapper .the-venue .location-section {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .wrapper .the-venue .location-section .location {
    text-align: center;
  }
}
.wrapper .the-venue .location-section .location .whispering-oaks-img {
  text-align: center;
  margin-bottom: 30px;
}
.wrapper .the-venue .location-section .location .section-title {
  font-size: 52px;
  line-height: 60px;
  font-weight: 500;
  color: #231f20;
  font-family: "Bingo", sans-serif;
}
@media only screen and (max-width: 1366px) {
  .wrapper .the-venue .location-section .location .section-title {
    font-size: 48px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 1366px) {
  .wrapper .the-venue .location-section .location .section-title {
    font-size: 40px;
    line-height: 48px;
  }
}
.wrapper .the-venue .location-section .location address a,
.wrapper .the-venue .location-section .location .website-link a {
  font-size: 26px;
  line-height: 38px;
  color: #231f20;
  text-decoration: none;
  font-family: "Arial", sans-serif;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .wrapper .the-venue .location-section .location address a,
  .wrapper .the-venue .location-section .location .website-link a {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 567px) {
  .wrapper .the-venue .location-section .location address a,
  .wrapper .the-venue .location-section .location .website-link a {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 389px) {
  .wrapper .the-venue .location-section .location address a,
  .wrapper .the-venue .location-section .location .website-link a {
    font-size: 18px;
    line-height: 26px;
  }
}
.wrapper .the-venue .location-section .location address a:hover,
.wrapper .the-venue .location-section .location .website-link a:hover {
  color: #576957;
}
.wrapper .the-venue .location-section .location address .contact-number,
.wrapper .the-venue .location-section .location .website-link .contact-number {
  margin-top: 10px;
  display: inline-block;
}
.wrapper .the-venue .location-section .location .website-link {
  margin-top: 20px;
}
.wrapper .the-venue .location-section .location .website-link a {
  color: #576957;
  font-family: "Magnificent", sans-serif;
  position: relative;
}
.wrapper .the-venue .location-section .location .website-link a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  pointer-events: none;
  border-bottom: 1px solid #576957;
}
.wrapper .the-venue .location-section .map-img {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .wrapper .the-venue .location-section .map-img {
    text-align: center;
  }
}
.wrapper .the-venue .location-section .map-img img {
  width: 80%;
  border: 15px solid #FFF;
}
.wrapper .events-illustration .imgs-gallery {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0.5rem 5rem #a0a19c;
}
@media (max-width: 992px) {
  .wrapper .events-illustration .imgs-gallery {
    flex-direction: column;
  }
}
.wrapper .events-illustration .imgs-gallery:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
  pointer-events: none;
}
.wrapper .events-illustration .imgs-gallery .img {
  width: 100%;
  height: 500px;
}
.wrapper .events-illustration .imgs-gallery .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper .accommodations {
  position: relative;
  padding: 70px 0;
  background-color: #2d2c2a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .wrapper .accommodations {
    padding: 50px 0;
  }
}
.wrapper .accommodations::before {
  content: "";
  position: absolute;
  left: -11%;
  top: -19%;
  width: 50%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
  background: url("../imgs/flowers.webp") center/contain no-repeat;
  pointer-events: none;
  transform: rotate(250deg);
}
@media only screen and (max-width: 1440px) {
  .wrapper .accommodations::before {
    top: -27%;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper .accommodations::before {
    width: 100%;
    left: -22%;
    top: -38%;
  }
}
@media only screen and (max-width: 1150px) {
  .wrapper .accommodations::before {
    top: -34%;
  }
}
@media only screen and (max-width: 991px) {
  .wrapper .accommodations::before {
    top: -38%;
  }
}
.wrapper .accommodations .accommodation-details {
  width: 100%;
  padding: 70px 40px;
  text-align: center;
  border: 1px solid #ffffff;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-family: "Magnificent", sans-serif;
}
@media (max-width: 767px) {
  .wrapper .accommodations .accommodation-details {
    font-size: 22px;
    line-height: 30px;
    padding: 50px 30px;
  }
}
.wrapper .accommodations .accommodation-details .section-title {
  font-size: 80px;
  line-height: 88px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #babba0;
  font-family: "Bingo", sans-serif;
}
@media (max-width: 1366px) {
  .wrapper .accommodations .accommodation-details .section-title {
    font-size: 60px;
    line-height: 68px;
  }
}
@media (max-width: 768px) {
  .wrapper .accommodations .accommodation-details .section-title {
    font-size: 50px;
    line-height: 58px;
  }
}
@media (max-width: 767px) {
  .wrapper .accommodations .accommodation-details .section-title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 479px) {
  .wrapper .accommodations .accommodation-details .section-title {
    font-size: 32px;
    line-height: 40px;
  }
}
.wrapper .accommodations .accommodation-details p {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
.wrapper .accommodations .accommodation-details .acco-venue {
  font-family: "Arial", sans-serif;
}

.wrapper .accommodations .accommodation-details .seprator-icon {
	margin: 20px 0;
}

.wrapper .accommodations .accommodation-details .acco-venue:nth-last-child(-n+3) {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .wrapper .accommodations .accommodation-details .acco-venue:nth-last-child(-n+3) {
    margin-top: 30px;
  }
}
.wrapper .accommodations .accommodation-details .acco-venue h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  font-family: "Arial", sans-serif;
}
@media (max-width: 991px) {
  .wrapper .accommodations .accommodation-details .acco-venue h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .wrapper .accommodations .accommodation-details .acco-venue h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 567px) {
  .wrapper .accommodations .accommodation-details .acco-venue h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.wrapper .accommodations .accommodation-details .acco-venue .suites {
  margin: 0;
}
.wrapper .accommodations .accommodation-details .acco-venue .suites a {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #b9bca2;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-family: "Helvetica", sans-serif;
}
@media (max-width: 767px) {
  .wrapper .accommodations .accommodation-details .acco-venue .suites a {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 567px) {
  .wrapper .accommodations .accommodation-details .acco-venue .suites a {
    font-size: 18px;
    line-height: 26px;
  }
}
.wrapper .accommodations .accommodation-details .acco-venue .suites a:hover {
  color: #ffffff;
}
.wrapper .accommodations .accommodation-details .acco-venue .contact-number a,
.wrapper .accommodations .accommodation-details .acco-venue .website-url a {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #b9bca2;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-family: "Helvetica", sans-serif;
}
@media (max-width: 767px) {
  .wrapper .accommodations .accommodation-details .acco-venue .contact-number a,
  .wrapper .accommodations .accommodation-details .acco-venue .website-url a {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 567px) {
  .wrapper .accommodations .accommodation-details .acco-venue .contact-number a,
  .wrapper .accommodations .accommodation-details .acco-venue .website-url a {
    font-size: 18px;
    line-height: 26px;
  }
}
.wrapper .accommodations .accommodation-details .acco-venue .contact-number a:hover,
.wrapper .accommodations .accommodation-details .acco-venue .website-url a:hover {
  color: #ffffff;
}
.wrapper .accommodations .accommodation-details .acco-venue .website-url {
  margin-top: 20px;
}
.wrapper .accommodations .accommodation-details .acco-venue .website-url a {
  text-decoration: underline;
  color: #fff;
}
.wrapper .accommodations .accommodation-details .acco-venue .website-url a:hover {
  color: #b9bca2;
}
.wrapper .accommodations .accommodation-details .acco-venue.hotels-list {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  font-family: "Magnificent", sans-serif;
}
@media (max-width: 567px) {
  .wrapper .accommodations .accommodation-details .acco-venue.hotels-list {
    font-size: 18px;
    line-height: 26px;
  }
}
.wrapper .accommodations .accommodation-details .acco-venue.hotels-list a {
  font-size: 24px;
  margin-top: 10px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  text-decoration: underline;
  font-family: "Helvetica", sans-serif;
  transition: all 0.3s ease-in-out;
}
.wrapper .accommodations .accommodation-details .acco-venue.hotels-list a:hover {
  color: #b9bca2;
}
@media (max-width: 767px) {
  .wrapper .accommodations .accommodation-details .acco-venue.hotels-list a {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 567px) {
  .wrapper .accommodations .accommodation-details .acco-venue.hotels-list a {
    font-size: 18px;
    line-height: 26px;
  }
}
.wrapper .registry-page-hero-section {
  background-image: url("../imgs/registry.webp");
}
.wrapper .registry-page-hero-section .overlay {
  background: linear-gradient(to bottom, rgba(18, 39, 24, 0.95) 0%, rgba(18, 39, 24, 0.7) 50%, rgba(18, 39, 24, 0.3) 60%, transparent 100%);
}
.wrapper .registry-page-hero-section .hero-content .registry {
  font-size: 130px;
  line-height: 138px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 100px;
  font-family: "Bingo", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
@media (max-width: 1200px) {
  .wrapper .registry-page-hero-section .hero-content .registry {
    font-size: 90px;
    line-height: 100px;
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .wrapper .registry-page-hero-section .hero-content .registry {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 50px;
  }
}
.wrapper .honeymoon-section {
  position: relative;
  background: url("../imgs/honeymoon-fund.webp") bottom/cover no-repeat;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
@media (max-width: 1366px) {
  .wrapper .honeymoon-section {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .wrapper .honeymoon-section {
    padding: 50px 0;
  }
}
.wrapper .honeymoon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.wrapper .honeymoon-section .honeymoon-content {
  position: relative;
  z-index: 2;
}
.wrapper .honeymoon-section .honeymoon-content .honeymoon-title {
  font-size: 100px;
  line-height: 108px;
  font-family: "Bingo", sans-serif;
  color: #bcc2a4;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-title {
    font-size: 70px;
    line-height: 80px;
  }
}
@media (max-width: 992px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-title {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-title {
    font-size: 50px;
    line-height: 58px;
  }
}
@media (max-width: 576px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-title {
    font-size: 50px;
  }
}
.wrapper .honeymoon-section .honeymoon-content .honeymoon-desc {
  font-size: 36px;
  font-family: "Magnificent", sans-serif;
  line-height: 1.6;
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-desc {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-desc {
    font-size: 22px;
    margin-bottom: 3rem;
  }
}
@media (max-width: 576px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-desc {
    font-size: 18px;
    margin-bottom: 2rem;
  }
}
.wrapper .honeymoon-section .honeymoon-content .honeymoon-names {
  width: 100%;
  height: 100px;
  margin: 0 auto 3rem;
}
@media (max-width: 1366px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-names {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-names {
    width: 80%;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-names {
    margin-bottom: 1rem;
  }
}
.wrapper .honeymoon-section .honeymoon-content .honeymoon-names img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrapper .honeymoon-section .honeymoon-content .honeymoon-link a {
  position: relative;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  font-family: "Arial", sans-serif;
  text-decoration: none;
}
@media (max-width: 768px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-link a {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .wrapper .honeymoon-section .honeymoon-content .honeymoon-link a {
    font-size: 18px;
  }
}
.wrapper .honeymoon-section .honeymoon-content .honeymoon-link a:after {
  width: 100%;
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  border-bottom: 2px solid #fff;
}
.wrapper .honeymoon-section .honeymoon-content .honeymoon-link a:hover {
  color: #bcc2a4;
}
.wrapper .gifts-cards {
  position: relative;
  padding: 70px 0;
  text-align: center;
  background-color: #e4e5db;
}
@media (max-width: 991px) {
  .wrapper .gifts-cards {
    padding: 50px 0;
  }
}
.wrapper .gifts-cards::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -12%;
  width: 50%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
  background: url("../imgs/360_F_600680608_Q9DgIZhBeAZIp0A4lGvTOwt0LJ8WEdoc.webp") center/contain no-repeat;
  pointer-events: none;
}
.wrapper .gifts-cards .title-and-description {
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  color: #2c2e35;
  margin-bottom: 50px;
  font-family: "Magnificent", sans-serif;
}
@media (max-width: 768px) {
  .wrapper .gifts-cards .title-and-description {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .wrapper .gifts-cards .title-and-description {
    font-size: 22px;
    line-height: 30px;
  }
}
.wrapper .gifts-cards .title-and-description .section-title {
  font-size: 114px;
  line-height: 122px;
  font-weight: 400;
  color: #576957;
  margin-bottom: 30px;
  font-family: "Bingo", sans-serif;
}
@media (max-width: 1366px) {
  .wrapper .gifts-cards .title-and-description .section-title {
    font-size: 100px;
    line-height: 108px;
  }
}
@media (max-width: 1200px) {
  .wrapper .gifts-cards .title-and-description .section-title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (max-width: 768px) {
  .wrapper .gifts-cards .title-and-description .section-title {
    font-size: 50px;
    line-height: 58px;
  }
}
@media (max-width: 767px) {
  .wrapper .gifts-cards .title-and-description .section-title {
    font-size: 40px;
    line-height: 48px;
  }
}
.wrapper .gifts-cards .title-and-description p {
  max-width: 980px;
  margin: 0 auto;
}
.wrapper .gifts-cards .gift-registry-link {
  margin-bottom: 50px;
}
.wrapper .gifts-cards .gift-registry-link a {
  position: relative;
  font-size: 34px;
  line-height: 42px;
  color: #6b7d61;
  display: inline-block;
  font-family: "Arial", sans-serif;
  text-decoration: none;
}
@media (max-width: 768px) {
  .wrapper .gifts-cards .gift-registry-link a {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .wrapper .gifts-cards .gift-registry-link a {
    font-size: 18px;
  }
}
.wrapper .gifts-cards .gift-registry-link a:after {
  width: 100%;
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  border-bottom: 2px solid #6b7d61;
}
.wrapper .gifts-cards .cards-delivery-address {
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  color: #2c2e35;
  font-family: "Magnificent", sans-serif;
}
@media (max-width: 768px) {
  .wrapper .gifts-cards .cards-delivery-address {
    font-size: 24px;
    line-height: 32px;
  }
}
.wrapper .gifts-cards .cards-delivery-address .sub-title {
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  color: #2c2e35;
  margin-bottom: 10px;
  font-family: "Magnificent", sans-serif;
}
@media (max-width: 768px) {
  .wrapper .gifts-cards .cards-delivery-address .sub-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.wrapper .gifts-cards .cards-delivery-address .section-title {
  font-size: 80px;
  line-height: 88px;
  font-weight: 400;
  color: #576957;
  margin-bottom: 20px;
  font-family: "Bingo", sans-serif;
}
@media (max-width: 1366px) {
  .wrapper .gifts-cards .cards-delivery-address .section-title {
    font-size: 60px;
    line-height: 68px;
  }
}
@media (max-width: 768px) {
  .wrapper .gifts-cards .cards-delivery-address .section-title {
    font-size: 50px;
    line-height: 58px;
  }
}
.wrapper .gifts-cards .cards-delivery-address p {
  margin: 0;
}

#galleryModal .modal-dialog .bg-transparent {
  background-color: transparent;
}
#galleryModal .modal-dialog .bg-transparent .modal-body .img-fluid {
  max-width: 100%;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#galleryModal .next-previous-btn .btn-transparent {
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

/* =====================
   RESPONSIVE STYLES
===================== */
@media (max-width: 1366px) {
  .patrick-danae .title-main {
    font-size: 42px;
    line-height: 50px;
  }
  .patrick-danae .title-main .pd-logo {
    width: 200px;
    height: 250px;
  }
}
/* Large tablets & below (≤ 1200px) */
@media (max-width: 1200px) {
  .hero-section {
    height: 80vh;
    background-position: center;
  }
  .story-section .inner-content {
    font-size: 22px;
    line-height: 36px;
  }
}
/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .hero-section {
    padding-top: 100px;
  }
  /* Navbar */
  .custom-navbar .navbar-brand img.logo {
    max-width: 160px;
  }
  .story-section .with-a-note {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .story-section .showcase {
    flex-direction: column;
  }
  .photo-gallery .gallery-img {
    height: 220px;
  }
  .pd-footer .group-2 {
    gap: 20px;
    text-align: center;
  }
  .pd-footer .pd-img {
    margin-top: 20px;
  }
}
@media (max-width: 992px) and (max-width: 991px) {
  .pd-footer .pd-img {
    width: 80%;
    margin: 20px auto 0;
  }
}
@media (max-width: 992px) {
  .main-section:before {
    top: 20px;
    left: 15px;
    right: 15px;
    bottom: 20px;
  }
  .main-section .patrick-danae {
    left: 40px;
    top: 40%;
  }
  .main-section .patrick-danae .title-main {
    font-size: 32px;
    line-height: 40px;
  }
  .main-section .patrick-danae .title-main .pd-logo {
    width: 160px;
    height: 200px;
  }
  .honeymoon-section .honeymoon-content .honeymoon-names {
    font-size: 36px;
  }
  .hero-content .hero-sub {
    gap: 1.5rem;
  }
  .hero-content .hero-sub .mini-sub-title h2 {
    font-size: 1.6rem;
  }
  .hero-content .hero-sub .icon img {
    max-width: 60px;
  }
  .imgs-gallery {
    flex-direction: column;
  }
  .imgs-gallery .img {
    height: 250px;
  }
}
/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }
  .hero-section .name-plate img {
    max-width: 90%;
  }
  .story-section {
    padding: 50px 0 0;
  }
  .story-section .inner-content {
    font-size: 18px;
    line-height: 28px;
    padding: 0 15px;
  }
  .photo-gallery .gallery-img {
    height: 180px;
  }
  .gallery-header .gallery-title {
    font-size: 28px;
  }
  .pd-footer {
    padding: 40px 0;
  }
  .honeymoon-section {
    padding: 60px 20px;
  }
  .gifts-cards {
    padding: 50px 20px;
  }
  .location-section {
    flex-direction: column;
  }
  .location-section .map-img {
    text-align: center;
    margin-top: 20px;
  }
  .location-section .map-img img {
    width: 100%;
  }
  .accommodation-details {
    font-size: 18px;
  }
  .accommodation-details .section-title {
    font-size: 2rem;
  }
}
/* Small mobile (≤ 576px) */
@media (max-width: 576px) {
  .hero-section {
    height: auto;
    padding: 130px 15px 80px;
    text-align: center;
  }
  .photo-gallery .gallery-img {
    height: 150px;
  }
  .pd-footer .quick-links ul {
    padding: 0;
    text-align: center;
  }
  .pd-footer .quick-links .nav-link {
    display: inline-block;
    margin: 5px 10px;
  }
  .pd-footer .group-2 {
    flex-direction: column;
  }
  .main-section {
    height: 100vh;
  }
  .main-section:before {
    display: none;
  }
  .main-section:after {
    width: 100%;
    background: linear-gradient(to top, rgba(18, 39, 24, 0.8) 0%, rgba(18, 39, 24, 0.4) 50%, transparent 100%);
    pointer-events: none;
  }
  .main-section .patrick-danae {
    position: absolute;
    top: 25%;
    left: 50%;
  }
  .main-section .patrick-danae .title-main {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  .main-section .patrick-danae .title-main .pd-logo {
    width: 120px;
    height: auto;
    margin: 10px auto;
  }
  .main-section .bottom-right-content {
    position: absolute;
    right: 50%;
    bottom: 30px;
  }
  .main-section .bottom-right-content .click-to-enter {
    font-size: 13px;
  }
  .honeymoon-section .honeymoon-content .honeymoon-names {
    font-size: 28px;
  }
  .hero-content .hero-sub {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .hero-content .hero-sub .mini-sub-title h2 {
    font-size: 1.4rem;
  }
  .accommodation-details {
    padding: 30px 15px;
  }
  .accommodation-details .section-title {
    font-size: 1.8rem;
  }
  .accommodation-details .acco-venue h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .honeymoon-section {
    padding: 40px 15px;
  }
  .gifts-cards {
    padding: 40px 15px;
  }
}/*# sourceMappingURL=style-live.css.map */