/*
[Master Stylesheet]
Theme Name:     EverLove - Multipurpose Wedding Planner Template HTML
Version:        1.0
Author:         cmBThemes
*/
/*
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#1.0 - Landing page

*/
/* Utilities for text colors */
.text-cus-primary {
  color: var(--primary-color) !important;
}

.text-cus-white {
  color: var(--white-color) !important;
}

.text-cus-text {
  color: var(--text-color) !important;
}

.text-cus-cta {
  color: var(--cta-color) !important;
}

/* Utilities for background colors */
.bg-cus-primary {
  background-color: var(--primary-color) !important;
}

.bg-cus-white {
  background-color: var(--white-color) !important;
}

.bg-cus-text {
  background-color: var(--text-color) !important;
}

.bg-cus-cta {
  background-color: var(--cta-color) !important;
}

/* Utilities for border colors */
.border-cus-primary {
  border-color: var(--primary-color) !important;
}

.border-cus-secondary {
  border-color: var(--secondary-color) !important;
}

.border-cus-white {
  border-color: var(--white-color) !important;
}

.border-cus-text {
  border-color: var(--text-color) !important;
}

.border-cus-cta {
  border-color: var(--cta-color) !important;
}

/* iframe */
.ifCus {
  width: 100%;
  height: 100%;
}

/* Social */
.social {
  font-size: 1.3rem;
}
.social a {
  display: inline-block;
  margin: 5px;
  transition: color 0.3s;
}
.social a:hover {
  color: var(--primary-color);
}

/* Main Color & Font */
:root {
  --primary-color: #4B6A88;
  --white-color: #F3F7FB;
  --text-color: #303030;
  --cta-color: #6d8ca8;
  --primary-color-rgb: 75, 106, 136;
  --white-color-rgb: 243, 247, 251;
  --text-color-rgb: 48, 48, 48;
  --cta-color-rgb: 109, 140, 168;
  --mask-color: rgba(0, 0, 0, 0.35);
  --font-head: Playfair Display, serif;
  --font-text: Poppins, sans-serif;
  --font-logo: Italiana, sans-serif;
}

/* Scrollbar Format */
*::-webkit-scrollbar {
  width: 0.5rem;
}

*::-webkit-scrollbar-track {
  background: var(--white-color);
}

*::-webkit-scrollbar-thumb {
  background: var(--cta-color);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--cta-color) var(--white-color);
}

/* Reset Style */
body {
  font-family: var(--font-text);
  background-color: var(--white-color);
}

a {
  text-decoration: none;
  color: var(--cta-color);
  transition: color 0.3s;
}
a:hover {
  color: var(--primary-color);
}

/* Title */
h1.title,
h2.title,
h3.title,
h4.title,
h5.title,
h6.title {
  color: var(--cta-color);
  font-family: var(--font-head);
}

h2.title {
  font-size: 2rem;
}
@media (min-width: 576px) {
  h2.title {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  h2.title {
    font-size: 2.4rem;
  }
}
@media (min-width: 992px) {
  h2.title {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) {
  h2.title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1400px) {
  h2.title {
    font-size: 3rem;
  }
}

/* Bootstrap pagination */
.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.pagination .page-item.active .page-link:hover {
  background-color: var(--cta-color);
  border-color: var(--cta-color);
}
.pagination .page-item .page-link {
  color: var(--primary-color);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  line-height: 1.6rem;
  text-align: center;
  display: inline-block;
  margin: 5px 10px;
}
.pagination .page-item .page-link:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Nav Main */
.nav-main {
  transition: top 0.3s;
  z-index: 999;
}
.nav-main.hide {
  top: -6rem;
}
.nav-main .nav-link {
  position: relative;
  color: var(--cta-color);
  transition: color 0.3s;
  font-weight: 300;
}
.nav-main .nav-link:hover {
  color: var(--primary-color);
}
.nav-main .nav-link:active {
  color: var(--primary-color);
}
.nav-main .nav-link.active {
  color: #b37d2a;
}
.nav-main .title {
  font-size: 2em;
  color: var(--cta-color);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: bold;
}
.nav-main .title img {
  height: 80px;
}
.nav-main .navbar-toggler {
  color: var(--cta-color);
  border: 3px solid var(--primary-color);
}
.nav-main .offcanvas {
  width: 90%;
}
.nav-main .navBtn {
  position: relative;
  width: 5rem;
  text-align: center;
}
.nav-main .navBtn::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 2.5rem solid transparent;
  border-right: 2.5rem solid transparent;
  border-top: 0px solid var(--cta-color);
  transition: all 0.3s;
}
.nav-main .navBtn:hover::after {
  border-top: 1rem solid var(--cta-color);
  bottom: -1rem;
  border-top-color: var(--primary-color);
}
@media (max-width: 991px) {
  .nav-main .offcanvas {
    background-color: rgba(var(--cta-color-rgb), 0.75);
  }
  .nav-main .offcanvas .offcanvas-title {
    color: var(--white-color);
  }
  .nav-main .offcanvas .nav-item .nav-link {
    color: var(--white-color);
  }
  .nav-main .offcanvas .nav-item .nav-link.dropdown-toggle::after {
    font-family: "bootstrap-icons";
    content: "\f27b";
    right: 10px;
    top: 0.5rem;
    position: absolute;
    border: none;
    transition: transform 0.3s;
  }
  .nav-main .offcanvas .nav-item .nav-link.dropdown-toggle.show::after {
    transform: rotate(90deg);
  }
  .nav-main .offcanvas .nav-item .dropdown-menu {
    border-color: var(--primary-color);
    border-radius: 0px;
    background-color: var(--cta-color);
    transition: height 0.3s;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .nav-main .offcanvas .nav-item .dropdown-menu .dropdown-item {
    color: #fff;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: background-color 0.3s;
  }
  .nav-main .offcanvas .nav-item .dropdown-menu .dropdown-item.active {
    background-color: var(--cta-color);
    color: #fff;
  }
  .nav-main .offcanvas .nav-item .dropdown-menu .dropdown-item:hover, .nav-main .offcanvas .nav-item .dropdown-menu .dropdown-item:active, .nav-main .offcanvas .nav-item .dropdown-menu .dropdown-item:focus {
    background-color: var(--cta-color);
  }
}
@media (min-width: 992px) {
  .nav-main .nav-link {
    padding: 1.5rem 0.5rem !important;
    font-size: 1.1rem;
    color: var(--cta-color);
  }
  .nav-main .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    transition: width 0.3s;
  }
  .nav-main .nav-link:hover::after {
    width: 100%;
    border: 2px solid var(--cta-color);
  }
  .nav-main .nav-link.dropdown-toggle::after {
    border: none;
  }
  .nav-main .dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.25s ease;
    border-radius: 0px;
    border: none;
    background-color: var(--white-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .nav-main .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .nav-main .dropdown-item {
    padding: 1rem 1.3rem;
    color: var(--cta-color);
    position: relative;
  }
  .nav-main .dropdown-item.active {
    background-color: var(--cta-color);
    color: #fff;
  }
  .nav-main .dropdown-item::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    transition: width 0.3s;
  }
  .nav-main .dropdown-item:hover::after {
    width: 100%;
    border: 1px solid var(--cta-color);
  }
  .nav-main .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
  }
  .nav-main .dropdown-menu-center {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
@media (min-width: 1200px) {
  .nav-main .nav-link {
    padding: 1.5rem 1rem !important;
    font-size: 1.2rem;
  }
}
@media (min-width: 1400px) {
  .nav-main .nav-link {
    padding: 1.5rem 1.2rem !important;
    font-size: 1.3rem;
  }
}

/* Go To Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--cta-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9998;
}
.scroll-top svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.scroll-top .progress-ring__background {
  fill: none;
  stroke: var(--cta-color);
  stroke-width: 2;
}
.scroll-top .progress-ring__progress {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 188.4;
  stroke-dashoffset: 188.4;
  transition: stroke-dashoffset 0.2s ease;
}
.scroll-top .scroll-percent {
  font-size: 0.5rem;
  z-index: 2;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  background-color: var(--primary-color);
}

/* Preloader */
.preloader {
  background-color: #f1f2f3;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}
.preloader .infinity-wrapper {
  transform-style: preserve-3d;
  animation: spinPause 5s ease-in-out infinite;
  animation-delay: 3s;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.preloader .infinity-wrapper svg {
  width: 100px;
  height: 50px;
}
.preloader .infinity-wrapper .infinity-path {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
  animation: draw 3s ease-in-out forwards, fadein 1s ease-in-out forwards;
}
.preloader .infinity-wrapper .pen-light {
  fill: none;
  stroke: var(--white-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: blur(6px);
  opacity: 0.8;
  animation: draw 3s ease-in-out forwards, fadeout 1s ease-in-out forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spinPause {
  0% {
    transform: translate(-50%, -50%) rotateX(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(0deg);
  }
}
/* Hero */
.hero {
  position: relative;
  /* Scroll for more */
  /* End scroll for more */
}
.hero .swiper .swiper-slide {
  position: relative;
}
.hero .swiper .swiper-slide img.slide {
  width: 100%;
}
.hero .swiper .swiper-slide .content-left,
.hero .swiper .swiper-slide .content-right {
  background-image: url("../images/data/bg-hero01.png"), url("../images/data/bg-hero02.png"), url("../images/data/bg-hero03.png"), url("../images/data/bg-hero04.png");
  background-position: left 5px top 5px, right 5px top 5px, right 5px bottom 5px, left 5px bottom 5px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 70px, 70px, 70px, 70px;
  background-color: var(--cta-color);
  position: relative;
  color: var(--white-color);
  height: 500px;
}
.hero .swiper .swiper-slide .content-left .line-name,
.hero .swiper .swiper-slide .content-right .line-name {
  display: none;
}
.hero .swiper .swiper-slide .content-left .box,
.hero .swiper .swiper-slide .content-right .box {
  border: 3px solid rgba(var(--white-color-rgb), 0.35);
  height: 80%;
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  align-content: space-between;
  font-size: 0.8rem;
}
.hero .swiper .swiper-slide .content-left .box::before, .hero .swiper .swiper-slide .content-left .box::after,
.hero .swiper .swiper-slide .content-right .box::before,
.hero .swiper .swiper-slide .content-right .box::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
}
.hero .swiper .swiper-slide .content-left .box::before,
.hero .swiper .swiper-slide .content-right .box::before {
  top: -1.25rem;
  left: -1.25rem;
}
.hero .swiper .swiper-slide .content-left .box::after,
.hero .swiper .swiper-slide .content-right .box::after {
  top: -0.75rem;
  left: -0.75rem;
}
.hero .swiper .swiper-slide .content-left .box:hover::before, .hero .swiper .swiper-slide .content-left .box:hover::after,
.hero .swiper .swiper-slide .content-right .box:hover::before,
.hero .swiper .swiper-slide .content-right .box:hover::after {
  top: -1rem;
  left: -1rem;
}
.hero .swiper .swiper-slide .content-left .box .iconName,
.hero .swiper .swiper-slide .content-right .box .iconName {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
}
.hero .swiper .swiper-slide .content-left .box .iconName .f1,
.hero .swiper .swiper-slide .content-left .box .iconName .f2,
.hero .swiper .swiper-slide .content-right .box .iconName .f1,
.hero .swiper .swiper-slide .content-right .box .iconName .f2 {
  width: 50%;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-family: var(--font-head);
  font-weight: bold;
}
.hero .swiper .swiper-slide .content-left .box .iconName .f1,
.hero .swiper .swiper-slide .content-right .box .iconName .f1 {
  text-align: left;
}
.hero .swiper .swiper-slide .content-left .box .iconName .f2,
.hero .swiper .swiper-slide .content-right .box .iconName .f2 {
  text-align: right;
}
.hero .swiper .swiper-slide .content-left .box .iconName::before,
.hero .swiper .swiper-slide .content-right .box .iconName::before {
  content: "";
  position: absolute;
  height: 130%;
  width: 3px;
  background-color: var(--primary-color);
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
  box-shadow: 0 0 0 5px var(--cta-color);
}
.hero .swiper .swiper-slide .content-left .box .sDate,
.hero .swiper .swiper-slide .content-right .box .sDate {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}
.hero .swiper .swiper-slide .content-left .box .sDate h2,
.hero .swiper .swiper-slide .content-right .box .sDate h2 {
  font-family: var(--font-text);
}
.hero .swiper .swiper-slide .content-left .box .sDate h2 span,
.hero .swiper .swiper-slide .content-right .box .sDate h2 span {
  font-size: 1.1em;
}
.hero .swiper .swiper-slide .content-left .box img.qr,
.hero .swiper .swiper-slide .content-right .box img.qr {
  height: 150px;
}
.hero .swiper .swiper-slide .content-left h1,
.hero .swiper .swiper-slide .content-left h2,
.hero .swiper .swiper-slide .content-right h1,
.hero .swiper .swiper-slide .content-right h2 {
  font-family: var(--font-head);
}
.hero .swiper .swiper-slide .content-left img.line,
.hero .swiper .swiper-slide .content-right img.line {
  width: 50px;
}
.hero .swiper .swiper-pagination {
  bottom: 520px;
}
.hero .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-color);
  opacity: 0.6;
  padding: 0.35rem;
  margin: 0.5rem;
}
.hero .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(var(--cta-color-rgb), 0.55);
  opacity: 1;
}
@media (min-width: 576px) {
  .hero .swiper .swiper-slide .content-left .box,
  .hero .swiper .swiper-slide .content-right .box {
    width: 86%;
  }
  .hero .swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.6;
    padding: 0.75rem;
    margin: 0.5rem;
  }
  .hero .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(var(--cta-color-rgb), 0.55);
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .hero .swiper .swiper-slide .content-left,
  .hero .swiper .swiper-slide .content-right {
    background-repeat: no-repeat, no-repeat;
    background-size: 70px;
    background-color: var(--cta-color);
    height: 100%;
    position: relative;
    color: var(--white-color);
  }
  .hero .swiper .swiper-slide .content-left .line-name,
  .hero .swiper .swiper-slide .content-right .line-name {
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    writing-mode: vertical-lr;
    font-size: 0.6rem;
  }
  .hero .swiper .swiper-slide .content-left .box,
  .hero .swiper .swiper-slide .content-right .box {
    border: 3px solid rgba(var(--white-color-rgb), 0.35);
    height: 80%;
    width: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    align-content: space-between;
    font-size: 0.8rem;
  }
  .hero .swiper .swiper-slide .content-left .box::before, .hero .swiper .swiper-slide .content-left .box::after,
  .hero .swiper .swiper-slide .content-right .box::before,
  .hero .swiper .swiper-slide .content-right .box::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(var(--primary-color-rgb), 0.55);
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    transition: all 0.3s;
  }
  .hero .swiper .swiper-slide .content-left .box::before,
  .hero .swiper .swiper-slide .content-right .box::before {
    top: -1.25rem;
    left: -1.25rem;
  }
  .hero .swiper .swiper-slide .content-left .box::after,
  .hero .swiper .swiper-slide .content-right .box::after {
    top: -0.75rem;
    left: -0.75rem;
  }
  .hero .swiper .swiper-slide .content-left .box:hover::before, .hero .swiper .swiper-slide .content-left .box:hover::after,
  .hero .swiper .swiper-slide .content-right .box:hover::before,
  .hero .swiper .swiper-slide .content-right .box:hover::after {
    top: -1rem;
    left: -1rem;
  }
  .hero .swiper .swiper-slide .content-left .box h1,
  .hero .swiper .swiper-slide .content-right .box h1 {
    font-size: 1.6rem;
  }
  .hero .swiper .swiper-slide .content-left .box h2,
  .hero .swiper .swiper-slide .content-right .box h2 {
    font-size: 1.1rem;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName,
  .hero .swiper .swiper-slide .content-right .box .iconName {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName .f1,
  .hero .swiper .swiper-slide .content-left .box .iconName .f2,
  .hero .swiper .swiper-slide .content-right .box .iconName .f1,
  .hero .swiper .swiper-slide .content-right .box .iconName .f2 {
    width: 50%;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-family: var(--font-head);
    font-weight: bold;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName .f1,
  .hero .swiper .swiper-slide .content-right .box .iconName .f1 {
    text-align: left;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName .f2,
  .hero .swiper .swiper-slide .content-right .box .iconName .f2 {
    text-align: right;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName::before,
  .hero .swiper .swiper-slide .content-right .box .iconName::before {
    content: "";
    position: absolute;
    height: 130%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
    box-shadow: 0 0 0 5px var(--cta-color);
  }
  .hero .swiper .swiper-slide .content-left .box .sDate,
  .hero .swiper .swiper-slide .content-right .box .sDate {
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
  }
  .hero .swiper .swiper-slide .content-left .box .sDate h2,
  .hero .swiper .swiper-slide .content-right .box .sDate h2 {
    font-family: var(--font-text);
  }
  .hero .swiper .swiper-slide .content-left .box .sDate h2 span,
  .hero .swiper .swiper-slide .content-right .box .sDate h2 span {
    font-size: 1.1em;
  }
  .hero .swiper .swiper-slide .content-left .box img.qr,
  .hero .swiper .swiper-slide .content-right .box img.qr {
    height: 150px;
  }
  .hero .swiper .swiper-slide .content-left img.line,
  .hero .swiper .swiper-slide .content-right img.line {
    width: 60px;
  }
  .hero .swiper .swiper-slide .content-left::before,
  .hero .swiper .swiper-slide .content-right::before {
    content: "";
    position: absolute;
    top: 0;
    width: 30%;
    height: 101%;
    background-color: var(--cta-color);
    transition: all 0.3s;
    z-index: 1;
  }
  .hero .swiper .swiper-slide .content-left::after,
  .hero .swiper .swiper-slide .content-right::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 101%;
    background-color: rgba(var(--primary-color-rgb), 0.55);
    transition: all 0.3s;
    z-index: 0;
  }
  .hero .swiper .swiper-slide .content-left {
    background-image: url("../images/data/bg-hero01.png"), url("../images/data/bg-hero04.png");
    background-position: left 5px top 5px, left 5px bottom 5px;
  }
  .hero .swiper .swiper-slide .content-left .line-name {
    left: 10px;
  }
  .hero .swiper .swiper-slide .content-left::before {
    right: -29.8%;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  .hero .swiper .swiper-slide .content-left::after {
    right: -39.9%;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  .hero .swiper .swiper-slide .content-left:hover::before {
    width: 35%;
    right: -34.8%;
  }
  .hero .swiper .swiper-slide .content-right {
    background-image: url("../images/data/bg-hero02.png"), url("../images/data/bg-hero03.png");
    background-position: right 5px top 5px, right 5px bottom 5px;
  }
  .hero .swiper .swiper-slide .content-right .line-name {
    right: 10px;
  }
  .hero .swiper .swiper-slide .content-right::before {
    left: -29.8%;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
  }
  .hero .swiper .swiper-slide .content-right::after {
    left: -39.9%;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
  }
  .hero .swiper .swiper-slide .content-right:hover::before {
    width: 35%;
    left: -34.8%;
  }
  .hero .swiper .swiper-pagination {
    top: 20px;
  }
  .hero .swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.6;
    padding: 0.75rem;
    margin: 0.5rem;
  }
  .hero .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(var(--cta-color-rgb), 0.55);
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .hero .swiper .swiper-slide .content-left,
  .hero .swiper .swiper-slide .content-right {
    background-size: 80px;
  }
  .hero .swiper .swiper-slide .content-left .box,
  .hero .swiper .swiper-slide .content-right .box {
    font-size: 0.9rem;
  }
  .hero .swiper .swiper-slide .content-left .box h1,
  .hero .swiper .swiper-slide .content-right .box h1 {
    font-size: 1.8rem;
  }
  .hero .swiper .swiper-slide .content-left .box h2,
  .hero .swiper .swiper-slide .content-right .box h2 {
    font-size: 1.2rem;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName,
  .hero .swiper .swiper-slide .content-right .box .iconName {
    width: 70px;
    height: 70px;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName .f1,
  .hero .swiper .swiper-slide .content-left .box .iconName .f2,
  .hero .swiper .swiper-slide .content-right .box .iconName .f1,
  .hero .swiper .swiper-slide .content-right .box .iconName .f2 {
    font-size: 1.2rem;
  }
  .hero .swiper .swiper-slide .content-left .box .sDate,
  .hero .swiper .swiper-slide .content-right .box .sDate {
    width: 180px;
    height: 180px;
    font-size: 0.8rem;
  }
  .hero .swiper .swiper-slide .content-left .box .sDate h2 span,
  .hero .swiper .swiper-slide .content-right .box .sDate h2 span {
    font-size: 1.5em;
  }
  .hero .swiper .swiper-slide .content-left .box img.line,
  .hero .swiper .swiper-slide .content-right .box img.line {
    width: 80px;
  }
}
@media (min-width: 1400px) {
  .hero .swiper .swiper-slide .content-left,
  .hero .swiper .swiper-slide .content-right {
    background-size: 100px;
  }
  .hero .swiper .swiper-slide .content-left .box,
  .hero .swiper .swiper-slide .content-right .box {
    font-size: 1rem;
  }
  .hero .swiper .swiper-slide .content-left .box h1,
  .hero .swiper .swiper-slide .content-right .box h1 {
    font-size: 2.3rem;
  }
  .hero .swiper .swiper-slide .content-left .box h2,
  .hero .swiper .swiper-slide .content-right .box h2 {
    font-size: 1.5rem;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName,
  .hero .swiper .swiper-slide .content-right .box .iconName {
    width: 80px;
    height: 80px;
  }
  .hero .swiper .swiper-slide .content-left .box .iconName .f1,
  .hero .swiper .swiper-slide .content-left .box .iconName .f2,
  .hero .swiper .swiper-slide .content-right .box .iconName .f1,
  .hero .swiper .swiper-slide .content-right .box .iconName .f2 {
    font-size: 1.4rem;
  }
  .hero .swiper .swiper-slide .content-left .box .sDate,
  .hero .swiper .swiper-slide .content-right .box .sDate {
    width: 230px;
    height: 230px;
    font-size: 1rem;
  }
  .hero .swiper .swiper-slide .content-left .box .sDate h2 span,
  .hero .swiper .swiper-slide .content-right .box .sDate h2 span {
    font-size: 2em;
  }
  .hero .swiper .swiper-slide .content-left .box img.line,
  .hero .swiper .swiper-slide .content-right .box img.line {
    width: 100px;
  }
}
.hero .scroll-cta {
  position: absolute;
  bottom: 530px;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
.hero .scroll-cta p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.hero .scroll-cta .mouse {
  width: 28px;
  height: 45px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
  background-color: rgba(var(--cta-color-rgb), 0.55);
  transition: background-color 0.3s ease;
}
.hero .scroll-cta .mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}
.hero .scroll-cta .scroll-arrow {
  font-size: 1.5rem;
  margin-top: 10px;
  animation: bounce 1.5s infinite;
  color: #fff;
}
.hero .scroll-cta:hover .mouse {
  background-color: rgba(var(--primary-color-rgb), 0.55);
}
@media (min-width: 992px) {
  .hero .scroll-cta {
    display: block;
    bottom: 20px;
  }
}
@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Couple */
.couple {
  padding-top: 100px;
  padding-bottom: 100px;
}
.couple .row {
  box-shadow: 0 0 20px 10px rgba(30, 30, 30, 0.35);
}
.couple .couple-thumb {
  position: relative;
}
.couple .couple-thumb .heart {
  width: 90%;
  height: 90%;
  overflow: hidden;
  /* mask heart 
  -webkit-mask: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 33.8 30'> <path d='M23.6,0c-2.6,0-5,1.2-6.6,3.2C15.4,1.2,13,0,10.4,0C4.7,0,0,4.7,0,10.4 c0,11.1,16.9,19.2,16.9,19.2s16.9-8.1,16.9-19.2C33.8,4.7,29.1,0,23.6,0z' fill='white'/> </svg>") no-repeat center/contain;
  mask: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 33.8 30'> <path d='M23.6,0c-2.6,0-5,1.2-6.6,3.2C15.4,1.2,13,0,10.4,0C4.7,0,0,4.7,0,10.4 c0,11.1,16.9,19.2,16.9,19.2s16.9-8.1,16.9-19.2C33.8,4.7,29.1,0,23.6,0z' fill='white'/> </svg>") no-repeat center/contain;*/
 /* mask circle */
-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='50' fill='white'/></svg>") no-repeat center/cover;
mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='50' fill='white'/></svg>") no-repeat center/cover;
}
.couple .couple-thumb .heart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.couple .couple-thumb .heart:hover img {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .couple {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .couple .couple-thumb {
    position: absolute;
    z-index: 10;
  }
  .couple .couple-thumb .heart {
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1200px) {
  .couple {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (min-width: 1400px) {
  .couple {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}

/* Countdown */
.countdown {
  min-height: 300px;
  background-image: url("../images/data/bg-countdown.jpg");
  background-position: center;
  position: relative;
}
.countdown h2 {
  font-family: var(--font-head);
}
.countdown .mask {
  background-color: var(--mask-color);
  width: 100%;
  height: 100%;
  padding: 2rem;
}
.countdown .mask .clock .time-box {
  display: inline-block;
  position: relative;
  border: 3px solid var(--primary-color);
  padding: 1rem;
  aspect-ratio: 1/1;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.countdown .mask .clock .time-box::before, .countdown .mask .clock .time-box::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
}
.countdown .mask .clock .time-box::before {
  top: -1.25rem;
  left: -1.25rem;
}
.countdown .mask .clock .time-box::after {
  top: -0.75rem;
  left: -0.75rem;
}
.countdown .mask .clock .time-box:hover::before, .countdown .mask .clock .time-box:hover::after {
  top: -1rem;
  left: -1rem;
}
.countdown .mask .clock .number {
  font-size: 2rem;
  display: block;
}
.countdown .mask .clock .text {
  font-size: 1.1rem;
}
@media (min-width: 576px) {
  .countdown .mask {
    padding: 2.2rem;
  }
  .countdown .mask .clock .number {
    font-size: 2.4rem;
  }
  .countdown .mask .clock .text {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .countdown .mask {
    padding: 2.4rem;
  }
  .countdown .mask .clock .time-box {
    width: 70%;
  }
  .countdown .mask .clock .number {
    font-size: 2.8rem;
  }
  .countdown .mask .clock .text {
    font-size: 1.3rem;
  }
}
@media (min-width: 992px) {
  .countdown .mask {
    padding: 2.6rem;
  }
  .countdown .mask .clock .time-box {
    width: 60%;
  }
  .countdown .mask .clock .number {
    font-size: 3.2rem;
  }
  .countdown .mask .clock .text {
    font-size: 1.4rem;
  }
}
@media (min-width: 1200px) {
  .countdown .mask {
    padding: 2.8rem;
  }
  .countdown .mask .clock .number {
    font-size: 3.6rem;
  }
  .countdown .mask .clock .text {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .countdown .mask {
    padding: 3rem;
  }
  .countdown .mask .clock .number {
    font-size: 4rem;
  }
  .countdown .mask .clock .text {
    font-size: 1.6rem;
  }
}

/* Story */
.story {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-image: url("../images/data/bg-story01.png");
  background-position: left bottom;
  background-size: 200px;
  background-repeat: no-repeat;
}
.story h2 {
  position: relative;
}
.story h2::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5rem;
  background-color: var(--primary-color);
  z-index: 1;
}
.story h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 40px;
  margin: 10px auto 0;
  background: url("../images/data/icon-title.png") no-repeat center/contain;
  opacity: 0.8;
  filter: invert(49%) sepia(8%) saturate(1578%) hue-rotate(284deg) brightness(92%) contrast(83%);
}
@media (min-width: 992px) {
  .story h2::before {
    top: -80%;
  }
}
.story .horizontal-wrapper {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  will-change: transform;
}
.story .horizontal-wrapper .item {
  flex: 0 0 50vw;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story .horizontal-wrapper .item.intro {
  flex: 0 0 90vw;
}
.story .horizontal-wrapper .item .odd,
.story .horizontal-wrapper .item .even {
  position: relative;
  width: 50vh;
  height: 100vh;
}
.story .horizontal-wrapper .item .odd figure,
.story .horizontal-wrapper .item .even figure {
  margin: 0;
  position: absolute;
  border: 6px solid var(--primary-color);
  z-index: 99;
  top: 13%;
}
.story .horizontal-wrapper .item .odd figure img,
.story .horizontal-wrapper .item .even figure img {
  height: 50vh;
}
.story .horizontal-wrapper .item .odd figure p,
.story .horizontal-wrapper .item .even figure p {
  font-size: 0.9rem;
}
.story .horizontal-wrapper .item .odd figure::before, .story .horizontal-wrapper .item .odd figure::after,
.story .horizontal-wrapper .item .even figure::before,
.story .horizontal-wrapper .item .even figure::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 45%;
  height: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.story .horizontal-wrapper .item .odd figure::before,
.story .horizontal-wrapper .item .even figure::before {
  left: 15px;
  transform: skew(-5deg) rotate(-5deg);
}
.story .horizontal-wrapper .item .odd figure::after,
.story .horizontal-wrapper .item .even figure::after {
  right: 15px;
  transform: skew(5deg) rotate(5deg);
}
.story .horizontal-wrapper .item .odd figure:hover::before, .story .horizontal-wrapper .item .odd figure:hover::after,
.story .horizontal-wrapper .item .even figure:hover::before,
.story .horizontal-wrapper .item .even figure:hover::after {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.story .horizontal-wrapper .item .odd figure:hover::before,
.story .horizontal-wrapper .item .even figure:hover::before {
  left: 5px;
}
.story .horizontal-wrapper .item .odd figure:hover::after,
.story .horizontal-wrapper .item .even figure:hover::after {
  right: 5px;
}
.story .horizontal-wrapper .item .odd figure {
  transform: rotate(5deg);
}
.story .horizontal-wrapper .item .even figure {
  transform: rotate(-5deg);
}
.story .horizontal-wrapper .line {
  height: 100%;
  position: relative;
}
.story .horizontal-wrapper .line .timeline {
  width: 100px;
  height: 100vh;
}
.story .horizontal-wrapper .line .timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vh;
  height: 5px;
  background-color: var(--primary-color);
  z-index: 1;
}
.story .horizontal-wrapper .line .icon {
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--primary-color);
}
@media (min-width: 992px) {
  .story .horizontal-wrapper .item {
    flex: 0 0 70vh;
  }
  .story .horizontal-wrapper .item.intro {
    flex: 0 0 50vw;
  }
}

/* Friends */
.friends h2 {
  position: relative;
}
.friends h2::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5rem;
  background-color: var(--primary-color);
  z-index: 1;
}
.friends h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 40px;
  margin: 10px auto 0;
  background: url("../images/data/icon-title.png") no-repeat center/contain;
  opacity: 0.8;
  filter: invert(49%) sepia(8%) saturate(1578%) hue-rotate(284deg) brightness(92%) contrast(83%);
}
@media (min-width: 992px) {
  .friends h2::before {
    top: -80%;
  }
}
.friends .friend {
  position: relative;
  border: 3px solid var(--primary-color);
}
.friends .friend::before, .friends .friend::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
}
.friends .friend::before {
  top: -1.25rem;
  left: -1.25rem;
}
.friends .friend::after {
  top: -0.75rem;
  left: -0.75rem;
}
.friends .friend:hover::before, .friends .friend:hover::after {
  top: -1rem;
  left: -1rem;
}
.friends .friend::before, .friends .friend::after {
  pointer-events: none;
}

/* Schedule */
.schedule {
  background-color: var(--cta-color);
  background-image: url("../images/data/bg-schedule01.png"), url("../images/data/bg-schedule02.png"), url("../images/data/bg-schedule03.png"), url("../images/data/bg-schedule04.png");
  background-position: left 5px top 5px, right 5px top 5px, right 5px bottom 5px, left 5px bottom 5px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 100px, 100px, 100px, 100px;
}
.schedule h2 {
  position: relative;
}
.schedule h2::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5rem;
  background-color: var(--primary-color);
  z-index: 1;
}
.schedule h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 40px;
  margin: 10px auto 0;
  background: url("../images/data/icon-title.png") no-repeat center/contain;
  opacity: 0.8;
  filter: invert(49%) sepia(8%) saturate(1578%) hue-rotate(284deg) brightness(92%) contrast(83%);
}
@media (min-width: 992px) {
  .schedule h2::before {
    top: -80%;
  }
}
.schedule h2::after {
  filter: brightness(0) invert(1) !important;
}
.schedule .card {
  background-color: rgba(var(--white-color-rgb), 0.15);
  border: 5px solid rgba(var(--white-color-rgb), 0.35);
  transition: border 0.3s;
}
.schedule .card:hover {
  border: 5px solid var(--white-color);
}
@media (min-width: 576px) {
  .schedule {
    background-size: 110px, 110px, 110px, 110px;
  }
}
@media (min-width: 768px) {
  .schedule {
    background-size: 110px, 110px, 120px, 120px;
  }
}
@media (min-width: 992px) {
  .schedule {
    background-size: 130px, 130px, 130px, 130px;
  }
}
@media (min-width: 1200px) {
  .schedule {
    background-size: 140px, 140px, 140px, 140px;
  }
}
@media (min-width: 1400px) {
  .schedule {
    background-size: 150px, 150px, 150px, 150px;
  }
}

/* Gallery */
.gallery h2 {
  position: relative;
}
.gallery h2::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5rem;
  background-color: var(--primary-color);
  z-index: 1;
}
.gallery h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 40px;
  margin: 10px auto 0;
  background: url("../images/data/icon-title.png") no-repeat center/contain;
  opacity: 0.8;
  filter: invert(49%) sepia(8%) saturate(1578%) hue-rotate(284deg) brightness(92%) contrast(83%);
}
@media (min-width: 992px) {
  .gallery h2::before {
    top: -80%;
  }
}
.gallery .gallery-content {
  column-count: 2;
  column-gap: 0.3rem;
}
.gallery .gallery-content .gallery-item {
  margin-bottom: 0.3rem;
  padding: 0.3rem;
  border-radius: 0.5rem;
  break-inside: avoid;
  position: relative;
}
.gallery .gallery-content .gallery-item a {
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.gallery .gallery-content .gallery-item a img {
  transition: transform 0.3s;
  object-fit: cover;
}
.gallery .gallery-content .gallery-item::before {
  font-family: "bootstrap-icons";
  content: "\f62c";
  position: absolute;
  inset: 0;
  background: rgba(var(--cta-color-rgb), 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 3rem;
  color: var(--white-color);
  pointer-events: none;
  z-index: 99;
}
.gallery .gallery-content .gallery-item:hover img {
  transform: scale(1.1);
}
.gallery .gallery-content .gallery-item:hover::before {
  opacity: 1;
}
@media (min-width: 576px) {
  .gallery .gallery-content {
    column-count: 2;
    column-gap: 0.6rem;
  }
  .gallery .gallery-content .gallery-item {
    margin-bottom: 0.6rem;
    padding: 0.6rem;
  }
}
@media (min-width: 768px) {
  .gallery .gallery-content {
    column-count: 2;
    column-gap: 0.7rem;
  }
  .gallery .gallery-content .gallery-item {
    margin-bottom: 0.7rem;
    padding: 0.7rem;
  }
}
@media (min-width: 992px) {
  .gallery .gallery-content {
    column-count: 3;
    column-gap: 0.8rem;
  }
  .gallery .gallery-content .gallery-item {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
  }
}
@media (min-width: 1200px) {
  .gallery .gallery-content {
    column-count: 3;
    column-gap: 0.9rem;
  }
  .gallery .gallery-content .gallery-item {
    margin-bottom: 0.9rem;
    padding: 0.9rem;
  }
}
@media (min-width: 1400px) {
  .gallery .gallery-content {
    column-count: 3;
    column-gap: 1rem;
  }
  .gallery .gallery-content .gallery-item {
    margin-bottom: 1rem;
    padding: 1rem;
  }
}

/* Video */
.video {
  background-image: url("../images/data/bg-video.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
}
.video .mask {
  background-color: var(--mask-color);
  width: 100%;
  height: 100%;
}
.video .mask .content .btnPlay {
  background-color: rgba(var(--white-color-rgb), 0.55);
  backdrop-filter: blur(20px);
  color: var(--cta-color);
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: color 0.3s, backdrop-filter 0.3s;
}
.video .mask .content .btnPlay:hover {
  backdrop-filter: blur(10px);
  color: var(--primary-color);
}
.video .mask .content .btnPlay::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 0px solid rgba(var(--white-color-rgb), 0.75);
  animation: ripple 3s ease-out infinite;
  pointer-events: none;
  top: 0;
  left: 0;
}

/* Button Effect */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.75;
    border-width: 5px;
  }
  60% {
    transform: scale(1.6);
    opacity: 0.6;
    border-width: 3px;
  }
  100% {
    transform: scale(3.6);
    opacity: 0;
    border-width: 0.8px;
  }
}
/* Gifts */
.gifts h2 {
  position: relative;
}
.gifts h2::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5rem;
  background-color: var(--primary-color);
  z-index: 1;
}
.gifts h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 40px;
  margin: 10px auto 0;
  background: url("../images/data/icon-title.png") no-repeat center/contain;
  opacity: 0.8;
  filter: invert(49%) sepia(8%) saturate(1578%) hue-rotate(284deg) brightness(92%) contrast(83%);
}
@media (min-width: 992px) {
  .gifts h2::before {
    top: -80%;
  }
}
.gifts .stack {
  height: 300vh;
  position: relative;
}
.gifts .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.gifts .panel {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
  color: var(--dark-color);
  will-change: transform, opacity;
}
.gifts .panel .content {
  position: absolute;
  width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.gifts .panel .content .gift {
  background-color: rgba(var(--cta-color-rgb), 0.55);
  position: relative;
  color: #fff;
}
.gifts .panel .content .gift::before, .gifts .panel .content .gift::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
}
.gifts .panel .content .gift::before {
  top: -1.25rem;
  left: -1.25rem;
}
.gifts .panel .content .gift::after {
  top: -0.75rem;
  left: -0.75rem;
}
.gifts .panel .content .gift:hover::before, .gifts .panel .content .gift:hover::after {
  top: -1rem;
  left: -1rem;
}
.gifts .panel .content .gift::before, .gifts .panel .content .gift::after {
  pointer-events: none;
  border-width: 2px;
}
.gifts .panel.panel-1 {
  background-color: var(--cta-color);
  background-image: url("../images/gifts/panel-01.jpg");
  z-index: 1;
}
.gifts .panel.panel-2 {
  background-color: var(--cta-color);
  background-image: url("../images/gifts/panel-02.jpg");
  z-index: 2;
}
.gifts .panel.panel-3 {
  background-color: var(--cta-color);
  background-image: url("../images/gifts/panel-03.jpg");
  z-index: 3;
}
.gifts .below {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .gifts .panel .content {
    top: 50%;
    left: auto;
    transform: translateY(-50%);
  }
  .gifts .panel:nth-child(odd) .content {
    right: 50px;
  }
  .gifts .panel:nth-child(even) .content {
    left: 50px;
  }
}
@media (min-width: 1200px) {
  .gifts .panel .content {
    width: 400px;
  }
}
@media (min-width: 1400px) {
  .gifts .panel .content {
    width: 450px;
  }
}

/* Rsvp Form */
.rsvp {
  background-image: url("../images/data/bg-rsvp01.png"), url("../images/data/bg-rsvp02.png"), url("../images/data/bg-rsvp03.png"), url("../images/data/bg-rsvp04.png");
  background-position: left 7% top 7%, right 3% top 3%, right 3% bottom 3%, left 7% bottom 7%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 140px, 210px, 140px, 210px;
}
.rsvp .box {
  background-color: rgba(var(--cta-color-rgb), 0.55);
  position: relative;
  color: #fff;
}
.rsvp .box::before, .rsvp .box::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
}
.rsvp .box::before {
  top: -1.25rem;
  left: -1.25rem;
}
.rsvp .box::after {
  top: -0.75rem;
  left: -0.75rem;
}
.rsvp .box:hover::before, .rsvp .box:hover::after {
  top: -1rem;
  left: -1rem;
}
.rsvp .box::before, .rsvp .box::after {
  pointer-events: none;
  border-width: 2px;
}
.rsvp .rsvp-form input,
.rsvp .rsvp-form select,
.rsvp .rsvp-form textarea {
  border: 1px solid var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  width: 100%;
  transition: all 0.3s;
}
.rsvp .rsvp-form input:focus,
.rsvp .rsvp-form select:focus,
.rsvp .rsvp-form textarea:focus {
  border: 1px solid var(--cta-color) !important;
  box-shadow: 0 0 0 0.35rem rgba(var(--cta-color-rgb), 0.25);
}
.rsvp .rsvp-form input:focus-visible,
.rsvp .rsvp-form select:focus-visible,
.rsvp .rsvp-form textarea:focus-visible {
  outline: none;
}
.rsvp .rsvp-form .select-wrapper {
  position: relative;
}
.rsvp .rsvp-form .select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  /* Safari */
  -moz-appearance: none;
  /* Firefox */
}
.rsvp .rsvp-form .select-wrapper::after {
  font-family: "bootstrap-icons";
  content: "\f282";
  position: absolute;
  font-size: 15px;
  right: 1rem;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .rsvp {
    background-position: left 7% top 7%, right 3% top 3%, right 3% bottom 3%, left 7% bottom 7%;
    background-size: 160px, 210px, 160px, 210px;
  }
}
@media (min-width: 1200px) {
  .rsvp {
    background-position: left 8% top 8%, right 4% top 4%, right 4% bottom 4%, left 8% bottom 8%;
    background-size: 180px, 230px, 180px, 230px;
  }
}
@media (min-width: 1400px) {
  .rsvp {
    background-position: left 10% top 10%, right 5% top 5%, right 5% bottom 5%, left 10% bottom 10%;
    background-size: 200px, 250px, 200px, 250px;
  }
}

/* Blog Title */
.blog-title {
  background-image: url("../images/data/bg-blog-title01.png"), url("../images/data/bg-blog-title02.png"), url("../images/data/bg-blog-title03.png"), url("../images/data/bg-blog-title04.png");
  background-position: right top, left bottom, right 20% bottom 0, left 15% top 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 300px, 300px, 300px, 300px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.blog-title .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-color-rgb), 0.25);
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.blog-title .mask .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.5;
  max-width: 90%;
  z-index: 99;
}
.blog-title .mask .content .title {
  color: #fff;
}
.blog-title .mask .content .breadcrumb a,
.blog-title .mask .content .breadcrumb .active {
  color: #eee;
}
.blog-title .mask .content .breadcrumb li + li::before {
  color: #fff;
}
.blog-title::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(var(--primary-color-rgb), 0.75);
}
@media (max-width: 575px) {
  .blog-title img {
    height: 200px;
    object-fit: cover;
  }
  .blog-title .content {
    top: 60%;
  }
}
@media (min-width: 576px) {
  .blog-title img {
    height: 250px;
    object-fit: cover;
  }
}
@media (min-width: 768px) {
  .blog-title img {
    height: 300px;
    object-fit: cover;
  }
}
@media (min-width: 992px) {
  .blog-title img {
    height: 350px;
    object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .blog-title img {
    height: 400px;
    object-fit: cover;
  }
}
/* Blog Post */
.blog-post figure {
  overflow: hidden;
  position: relative;
}
.blog-post figure img {
  transition: all 0.3s ease;
  margin-bottom: 0px !important;
}
.blog-post figure figcaption {
  color: var(--white-color);
  background: rgba(var(--cta-color-rgb), 0.55);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
}
.blog-post figure:hover img {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .blog-post figcaption {
    position: absolute;
    width: 80%;
    bottom: 30px;
    left: 50%;
    color: var(--white-color);
    background: rgba(var(--cta-color-rgb), 0.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
  }
  .blog-post figcaption::before, .blog-post figcaption::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(var(--primary-color-rgb), 0.55);
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    transition: all 0.3s;
  }
  .blog-post figcaption::before {
    top: -1.25rem;
    left: -1.25rem;
  }
  .blog-post figcaption::after {
    top: -0.75rem;
    left: -0.75rem;
  }
  .blog-post figcaption:hover::before, .blog-post figcaption:hover::after {
    top: -1rem;
    left: -1rem;
  }
  .blog-post figcaption::before, .blog-post figcaption::after {
    pointer-events: none;
  }
}

/* Blog Categories */
.categories {
  border: none;
}
.categories .list-group li {
  padding: 15px 20px;
}
.categories .list-group li::before {
  font-family: "bootstrap-icons";
  content: "\f280";
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.6em;
  transition: margin-left 0.3s ease-in-out;
}
.categories .list-group li:hover::before {
  margin-left: 1rem;
}

/* Popular Postes */
.popular-postes {
  border: none;
}
.popular-postes .list-group li {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.popular-postes .list-group li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.popular-postes .list-group li a {
  font-size: 0.95rem;
}

/* Tags */
.tags {
  border: none;
}
.tags .badge {
  font-size: 0.9rem;
  margin: 5px 5px 0px 0px;
  padding: 10px 15px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.tags .badge:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  text-decoration: none;
}

/* Input Form */
input,
textarea,
select {
  border: 1px solid var(--primary-color) !important;
  width: 100%;
  transition: all 0.3s;
}
input:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--cta-color) !important;
  box-shadow: 0 0 0 0.35rem rgba(var(--cta-color-rgb), 0.25) !important;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
}

/* Post detail page styles */
.post-detail figure.thumb {
  border: 10px solid var(--primary-color);
}

/* Comments */
.comments .comment-list {
  border-top: 1px solid #ddd;
  padding-top: 15px;
}
.comments .comment-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.comments .comment-item .avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.comments .comment-item .avatar-reply {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.comments .comment-item:last-child {
  border-bottom: none;
}
.comments .reply-item {
  border-left: 2px solid #ddd;
  padding-left: 10px;
}
.comments .reply-link {
  font-size: 0.9em;
  cursor: pointer;
}

/* Share */
.social-icon a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 50%;
  color: #666;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}
.social-icon a:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  text-decoration: none;
}

/* Footer */
footer {
  background-image: url("../images/data/bg-hero04.png"), url("../images/data/bg-hero03.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right bottom;
  background-size: 80px, 80px;
  min-height: 300px;
  background-color: var(--cta-color);
  color: var(--white-color);
}
footer .content {
  position: relative;
  width: 60%;
}
footer .content::before, footer .content::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
}
footer .content::before {
  top: -1.25rem;
  left: -1.25rem;
}
footer .content::after {
  top: -0.75rem;
  left: -0.75rem;
}
footer .content:hover::before, footer .content:hover::after {
  top: -1rem;
  left: -1rem;
}
footer h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
}
footer .logo {
  height: 100px;
}
@media (min-width: 768px) {
  footer {
    background-size: 100px, 100px;
  }
  footer h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  footer {
    background-size: 150px, 150px;
  }
  footer h3 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  footer {
    background-size: 200px, 200px;
  }
  footer h3 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1400px) {
  footer {
    background-size: 250px, 250px;
  }
  footer h3 {
    font-size: 3rem;
  }
}

/* Custom Button */
.btn-cus-primary {
  background-color: var(--cta-color);
  border: 1px solid var(--cta-color);
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: 0px;
  display: inline-block;
  text-align: center;
}
.btn-cus-primary.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-cus-primary:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}
.btn-cus-primary:active {
  color: #fff !important;
  border: 1px solid var(--cta-color) !important;
}

.btn-cus-outline-primary {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-color);
  color: #E7B2A5;
  border-radius: 0px;
  display: inline-block;
  text-align: center;
}
.btn-cus-outline-primary:hover {
  background-color: #fff;
  border: 1px solid var(--cta-color);
  color: var(--cta-color);
}/*# sourceMappingURL=style.css.map */