/**
* Template Name:
* Template URL:
* Author: Dora Nely Vega
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Playball&display=swap");

:root {
  --red: #872332;
  --white: #f8f0ec;
  --pearl: #d0adad;
  --font-family: "Cormorant Garamond", serif;
}

body {
  background: #ffffff;
  color: #898989;
  font-family: "Poppins", helvetica;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h2 {
  color: #292929;
  font-weight: 600;
}

h4 {
  color: #292929;
  font-size: 14px;
  font-weight: 600;
}

a {
  color: #292929;
  text-decoration: none !important;
  transition: all 0.5s ease-in-out 0s;
}

a:hover {
  transition: all 0.5s ease-in-out 0s;
}

p {
  margin: 25px 0;
  padding: 0;
  font-size: 15px;
  color: #2e2c2c;
  line-height: 28px;
}

::-moz-selection {
  background: #b8a07e;
  color: #fff;
}

::selection {
  background: #b8a07e;
  color: #fff;
}

.btn {
  background: #fff;
  border: medium none;
  border-radius: 0;
  color: #000;
  font-size: 1.2em;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
}

.btn:hover,
.btn:focus {
  color: #fff;
}

.padDiv {
  padding: 30px 20px;
}

.section-title {
  margin-bottom: 50px;
  margin-top: 50px;
}

.section-title h2 {
  font-size: 2.2em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.form-control {
  background-color: transparent;
  border: 1px solid #999;
  border-radius: 0;
  color: #999999;
  font-size: 12px;
  font-weight: 500;
  height: 50px;
  letter-spacing: 0.1em;
  padding-left: 10px;
  margin: 0 0 25px 0;
  line-height: 14px;
  text-transform: uppercase;
}

.form-control:focus {
  box-shadow: none;
  outline: 0 none;
}

.paddsection {
  padding-top: 90px;
  padding-bottom: 90px;
}

.paddsections {
  padding-top: 90px;
  padding-bottom: 90px !important;
}

.hvr-shutter-in-horizontal::before {
  background: #333;
}

.hvr-shutter-in-horizontal:hover {
  background: #b8a07e;
}

.mb-30 {
  margin-bottom: 30px;
}

.main-content {
  padding-top: 140px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #b8a07e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #c6b398;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  left: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 8000;
  padding: 15px 0;
  background-color: var(--red);
  top: -100%; /* Oculto al iniciar en desktop */
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
}

/* Cuando hace scroll, sube */
#header {
  top: 0;
  position: fixed !important;
}

/* ---- MOBILE FIX ---- */
@media (max-width: 991px) {
  #header {
    top: 0 !important; /* Siempre visible */
    position: fixed !important;
  }
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Playfair Display", sans-serif;
  font-style: italic;
}

#header .logo a {
  color: #898989;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 10px 30px;
  font-family: var(--font-family);
  font-size: 1.2em;
  font-weight: 500;
  color: var(--pearl);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--white);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #b8a07e;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #f7f7f7;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(73, 7, 7, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  margin-top: 100px;
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile li {
  padding: 10px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 5px 20px;
  font-size: 1.5em;
  color: #ffffff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #b8a07e;
  font-size: 2em;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #b8a07e;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.hero-invitacion {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("../../assets/img/swiper/swiper-1.jpeg") center/cover
    no-repeat;
}

.hero-invitacion-top {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("../../assets/img/swiper/swiper-1.jpeg") center/cover
    no-repeat;
}

body .wrapper,
html .wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3em 0;
}

.swiper-hero {
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
  margin: 0;
}
.swiper-hero .swiper-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0;
  position: relative;
}
.swiper-hero .swiper-wrapper .swiper-slide {
  margin: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .swiper-hero .swiper-wrapper .swiper-slide {
    display: grid;
    justify-items: center;
    align-items: center;
  }
}
.swiper-hero .swiper-wrapper .swiper-slide .overlay {
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  opacity: 0.2;
  margin: 0;
}
@media (min-width: 992px) {
  .swiper-hero .swiper-wrapper .swiper-slide .overlay {
    display: block;
    margin: 0;
  }
}
.swiper-hero .swiper-wrapper .swiper-slide .swiper-image {
  position: relative;
  width: 100%;
  height: 50vh;
}
@media (min-width: 992px) {
  .swiper-hero .swiper-wrapper .swiper-slide .swiper-image {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
  }
}
.swiper-hero .swiper-wrapper .swiper-slide .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ".";
  width: 100%;
  justify-items: start;
  align-items: center;
}
@media (min-width: 992px) {
  .swiper-hero .swiper-wrapper .swiper-slide .content-wrapper.content-right {
    justify-items: end;
  }
}
.swiper-hero .swiper-wrapper .swiper-slide .content-wrapper .content {
  padding: 1.5em;
  text-align: left;
  max-width: 500px;
  color: #222;
}
.swiper-hero
  .swiper-wrapper
  .swiper-slide
  .content-wrapper
  .content
  :first-child {
  margin: 0;
}

@media (min-width: 992px) {
  .swiper-hero .swiper-wrapper .swiper-slide .content-wrapper .content {
    color: #fff;
    background: #801f3082;
  }
  .swiper-hero .swiper-wrapper .swiper-slide .content-wrapper .content p {
    display: block;
    color: #fff;
    font-size: 1.3em;
  }
}
.swiper-nav-wrapper {
  position: absolute;
  bottom: 4.5em;
  right: 6em;
}
.swiper-nav-wrapper .swiper-button-next {
  right: 0;
  left: 0;
}
.swiper-nav-wrapper .swiper-button-prev {
  right: 15px;
  left: auto;
}
.swiper-nav-wrapper .swiper-button-next,
.swiper-nav-wrapper .swiper-button-prev {
  background: rgba(128, 31, 48, 0.81);
  width: 60px;
  height: 60px;
}
.swiper-nav-wrapper .swiper-button-next:hover,
.swiper-nav-wrapper .swiper-button-prev:hover {
  background: rgba(128, 31, 48, 0.81);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  left: 10px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  right: auto;
  width: 60px !important;
  height: 60px !important;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' transform='translate(4.508789, 7.870605) rotate(-180.000000) translate(-4.508789, -7.870605) translate(-0.000000, -0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  auto: 10px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  right: auto;
  width: 60px !important;
  height: 60px !important;
}

.swiper-1 {
  background: url(../../assets/img/swiper/swiper-1.jpeg) no-repeat center center;
  background-size: cover;
}

.swiper-2 {
  background: url(../../assets/img/swiper/swiper-3.jpg) no-repeat center center;
  background-size: cover;
}

.swiper-3 {
  background: url(../../assets/img/swiper/swiper-2.jpeg) no-repeat center center;
  background-size: cover;
}

.swiper-4 {
  background: url(../../assets/img/swiper/swiper-5.jpg) no-repeat center center;
  background-size: cover;
}

@media (max-width: 480px) {
  .swiper-1 {
    background: url(../../assets/img/swiper/swiper-1-m.jpeg) no-repeat center
      center !important;
  }

  .swiper-2 {
    background: url(../../assets/img/swiper/swiper-3-m.jpg) no-repeat center
      center !important;
  }

  .swiper-3 {
    background: url(../../assets/img/swiper/swiper-2-m.jpeg) no-repeat center
      center !important;
  }

  .swiper-4 {
    background: url(../../assets/img/swiper/swiper-5-m.jpg) no-repeat center
      center !important;
  }
}

/*-----------------------------------------------------------------------------------*/
/*  About
/*-----------------------------------------------------------------------------------*/
#about {
  width: 100%;
  height: auto;
  background: #f7f7f7;
  padding-bottom: 80px;
}

#about .div-img-bg {
  padding-bottom: 30px;
  border: 20px solid #b8a07e;
}

#about .div-img-bg .about-img img {
  width: 100%;
  box-shadow: 0px 0px 85px 0px rgba(0, 0, 0, 0.14);
  margin-top: -60px;
  margin-left: 40px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

#about .about-descr .p-heading {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  text-align: left;
}

#about .about-descr .separator {
  max-width: 80%;
  margin-bottom: 0;
  text-align: left;
}

/*-----------------------------------------------------------------------------------*/
/*  Where
/*-----------------------------------------------------------------------------------*/
.location-info-box {
  background-color: var(--red);
  padding: 5%;
}

.location-info-box p {
  font-size: 1.2em;
}

/*-----------------------------------------------------------------------------------*/
/*  itinerary
/*-----------------------------------------------------------------------------------*/
#itinerary {
  padding-top: 80px;
  padding-bottom: 80px;
}
/*------------------ Itinerario ---------------------*/
.itinerario-section {
  padding: 70px 20px;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

/* que el itinerario-section quede arriba */
.itinerario-section .container {
  position: relative;
  z-index: 2;
}

.titulo-itinerario {
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
  color: #000;
  text-align: center;
  margin-bottom: 70px;
  font-weight: 400;
}

.timeline-item .icon img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.timeline-item {
  text-align: center;
}

.timeline-desktop {
  display: block;
  max-width: 1050px;
  margin: 0 auto;
}

.timeline-mobile {
  display: none;
  max-width: 340px;
  margin: 0 auto;
}

.timeline-line {
  position: relative;
  border-top: 1.5px solid #7a716c;
  margin: 45px 40px 0;
}

.timeline-point {
  position: absolute;
  top: -6px;
  width: 11px;
  height: 11px;
  background: #5f5a57;
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-item .icon {
  font-size: 3.1rem;
  line-height: 1;
  color: #7b746f;
  margin-bottom: 28px;
  display: block;
}

.timeline-time {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #000000;
}

.timeline-label {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.35;
  min-height: 52px;
  color: var(--verde-principal);
  font-family: var(--font-family);
  font-weight: 600;
}

/* MOBILE */
.mobile-wrap {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: flex-start;
}

.mobile-icons,
.mobile-content {
  display: flex;
  flex-direction: column;
}

.mobile-icons {
  align-items: center;
  position: relative;
  padding-top: 12px;
}

.mobile-icons::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: -22px;
  width: 1.5px;
  background: #7a716c;
}

.mobile-icon-item {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  color: #7b746f;
  width: 52px;
  margin-bottom: 15px;
}

.mobile-content {
  gap: 0;
  padding-left: 20px;
}

.mobile-event {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5px;
}

.mobile-time {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: #000000;
}

.mobile-label {
  font-size: 0.98rem;
  line-height: 1.35;
  letter-spacing: 0.4px;
  color: var(--red);
  font-family: var(--font-family);
  font-weight: 600;
}

.mobile-desc {
  font-size: 12px;
}

@media (max-width: 767.98px) {
  .titulo-itinerario {
    font-size: 3.4rem;
    margin-bottom: 40px;
  }

  .timeline-desktop {
    display: none;
  }

  .timeline-mobile {
    display: block;
  }

  .itinerario-section {
    padding: 45px 15px;
  }
}

/*-----------------------------------------------------------------------------------*/
/*  gift Table
/*-----------------------------------------------------------------------------------*/
#gift-table {
  padding-top: 50px;
  padding-bottom: 80px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
  background: #f7f7f7;
  position: relative;
  padding-bottom: 80px;
}

.services-block span {
  margin: 10px 0;
  position: relative;
  font-size: 13px;
  color: #292929;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}

.services-block .separator {
  margin: 0;
  font-size: 13px;
  line-height: 22px;
}

.services-block i {
  font-size: 44px;
  color: #b8a07e;
  line-height: 44px;
}

.services-slider .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.services-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b8a07e;
}

.services-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b8a07e;
}

/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/
#gallery {
  position: relative;
  padding-bottom: 50px;
  padding-top: 50px;
}

#gallery #portfolio-flters {
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

#gallery #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#gallery #portfolio-flters li:hover,
#gallery #portfolio-flters li.filter-active {
  color: #b8a07e;
}

#gallery #portfolio-flters li:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------
# Divider Area
--------------------------------------------------------------*/
.divider-area {
  padding: 30px 0;
  position: relative;
  z-index: 1;
  background-image: url(../../assets/img/divider-page.jpg);
  background-size: cover;
  color: #fff;
  background-attachment: fixed;
  background-position: 50% 61.1406px;
}

.divider-area:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
}

.divider-area-1 {
  padding: 130px 0;
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: var(--red);
}

.divider-area-1:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
}

.divider-area-2 {
  padding: 130px 0;
  position: relative;
  z-index: 1;
  background-image: url(../../assets/img/divider-page-2.jpg);
  background-size: cover;
  color: #fff;
  background-attachment: fixed;
  background-position: 50% 61.1406px;
}

.divider-area-2:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
}
.divider-area-3 {
  padding: 130px 0;
  position: relative;
  z-index: 1;
  background-image: url(../../assets/img/divider-page-3.jpg);
  background-size: cover;
  color: #fff;
  background-attachment: fixed;
  background-position: 50% 61.1406px;
}

.divider-area-3:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
}

.heading {
  font-family: "Playball", cursive;
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 500;
  line-height: 1.2;
}

.desc {
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

@media (max-width: 480px) {
  .divider-area {
    background-image: url(../../assets/img/divider-page-m.jpg);
    background-attachment: initial;
    background-position: 0;
    padding: 30px 0;
  }

  .divider-area-1 {
    background-attachment: initial;
    background-position: 0;
    padding: 60px 0;
  }

  .divider-area-2 {
    background-image: url(../../assets/img/divider-page-2-m.jpg);
    background-attachment: initial;
    background-position: 0;
    padding: 60px 0;
  }
  .divider-area-3 {
    background-image: url(../../assets/img/divider-page-3-m.jpg);
    background-attachment: initial;
    background-position: 0;
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b8a07e;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #b8a07e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(75, 74, 74, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  color: var(--red);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 1.2em;
  color: rgba(0, 0, 0, 0.91);
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

hr.dashed {
  border-top: 4px dashed #b8a07e;
}

.box-container {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-top: 1.4em;
  width: 100%;
}

.box {
  list-style-type: none;
  float: left;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 0.2s,
    transform 0.35s;
}

.box.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.4s,
    transform 0.35s;
}

.box .inner {
  padding: 10px;
  position: relative;
}

.box a {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.box img {
  width: calc(100% + 50px);
  max-width: calc(100% + 50px);
  transition:
    opacity 0.35s,
    transform 0.35s;
  transform: translate3d(-40px, 0, 0);
}

.box a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.4s;
}

.three-cols .box {
  width: 100%;
}

.four-cols .box {
  width: 23.1%;
}

.four-cols .box:nth-child(4n + 0) {
  margin-right: 0;
}

.four-cols .box:nth-child(4n + 1) {
  clear: both;
  margin-left: 0;
}

/*--------------------------------------------------------------
# Wedding Details
--------------------------------------------------------------*/
.wedding-details {
  overflow: hidden;
  position: relative;
}

.wedding-details:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  background: #ccc;
}

.w-detail {
  width: 50%;
  padding: 0 50px;
  margin-bottom: 30px;
  position: relative;
  clear: both;
  margin-top: -40px;
}

.w-detail:first-child {
  margin-top: 0;
}

.w-detail:last-child {
  margin-bottom: 0;
}

.w-detail:after {
  content: "";
  position: absolute;
  top: 0;
  height: 18px;
  width: 18px;
  border-radius: 20px;
  z-index: 1;
  border: 1px solid #aaa;
  background: #fff;
}

.w-detail.right {
  text-align: left;
  float: right;
}

.w-detail.right:after {
  left: 0;
  margin-left: -9px;
}

.w-detail.left {
  text-align: right;
  float: left;
}

.w-detail.left:after {
  right: 0;
  margin-right: -9px;
}

.w-detail .title {
  margin: 10px 0;
  font-size: 1.6em;
}

.w-detail p {
  font-size: 1.6em;
}

.w-detail .icon {
  font-size: 3.5em;
  line-height: 1;
  color: #e45f74;
}

@media (min-width: 390px) {
  .three-cols .box {
    width: 50%;
  }
}

@media (min-width: 576px) {
  .three-cols .box {
    width: 33.3%;
  }

  .three-cols .box:nth-child(3n + 0) {
    margin-right: 0;
  }

  .three-cols .box:nth-child(3n + 1) {
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .box:hover img {
    transform: translate3d(0, 0, 0);
    transition:
      opacity 0.35s,
      transform 0.35s;
  }

  .box:hover a::before {
    opacity: 0.3;
    transition: opacity 0.5s;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--red);
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-invitacion {
  background: #fff;
  text-align: center;
  padding: 25px 10px;
}

/* Texto tipo marca */
.footer-invitacion a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  color: #333;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  transition: 0.3s;
}

.footer-invitacion a:hover {
  color: var(--red);
}

/* FOOTER */
#footer-bottom {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* flecha */
.back-to-top {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #b1771d;
  border-radius: 50%;
  transition: all 0.3s ease;
  padding: 0;
  width: 50px;
  height: 50px;
}

.back-to-top i {
  font-size: 30px;
  color: #fff;
  line-height: 1;
}

/* música */
#custom-audio-player {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#audio-element {
  display: none;
}

#play-pause-button {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 3;
}

/* notas */
#notes-container {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 140px;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}

.note-block {
  position: absolute;
  bottom: 0;
  font-size: 1rem;
  color: #494949;
  animation: rise 2s ease-out forwards;
}

@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-140px);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pulsing {
  animation: pulse 2s ease-in-out infinite;
}
.rotating {
  animation: rotate 6s linear infinite;
}

#custom-audio-player {
  order: 1; /* música arriba */
}

.back-to-top {
  order: 2; /* flecha abajo */
}
/** Width between 1200x to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
/** Width between 992px to 1199px
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
/** Width between 768px to 991px
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@media (min-width: 768px) and (max-width: 991px) {
  /* Navbar */
  nav {
    padding: 10px 15px;
  }

  .nav-menu {
    margin-top: 40px;
    display: none;
    float: none;
    width: 100%;
  }

  .nav-menu li {
    float: none;
    width: 100%;
    text-align: center;
    border-top: 1px solid #f7f7f7;
    line-height: 45px;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .responsive {
    float: right;
    padding-top: 15px;
    display: block;
  }

  /* About */
  .head-info .header-content .cmaster h1 {
    font-size: 32px;
  }

  #about .div-img-bg {
    padding: 0;
  }

  #about .div-img-bg .about-img img {
    margin-top: 0%;
    margin-left: calc(0% - 0px);
  }

  #about .about-descr .p-heading {
    font-size: 20px;
  }

  #about .about-descr .separator {
    max-width: 100%;
    margin-bottom: 0;
  }

  /* portfolio */
  #portfolio .portfolio-list .nav li {
    float: none;
    margin: 20px;
    display: inline-block;
  }

  /* journal */
  #journal .journal-block .journal-info {
    margin-bottom: 30px;
  }

  /* Contact */
  .contact-contact {
    margin-bottom: 30px;
  }

  /* Footer */
  #footer .socials-media ul li {
    margin-right: 0;
    margin-left: 0;
    float: none;
    display: inline-block;
  }
}

/* Screens Resolution : 767px
-------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  /*--------------------------------------------------------------
  # Wedding Details
  --------------------------------------------------------------*/
  .wedding-details {
    margin-left: 15px;
    overflow: visible;
  }
  .wedding-details:after {
    left: 0;
    margin-left: 0px;
  }
  .w-detail {
    width: 100%;
    padding: 0 0 0 30px;
    margin: 0 0 30px;
  }
  .w-detail.left,
  .w-detail.right {
    text-align: left;
    float: none;
  }
  .w-detail.right:after,
  .w-detail.left:after {
    left: 0;
    margin-left: -9px;
  }

  /* Navbar */
  nav {
    padding: 20px 15px;
  }

  .nav-menu {
    margin-top: 40px;
    display: none;
    float: none;
    width: 100%;
  }

  .nav-menu li {
    float: none;
    width: 100%;
    text-align: center;
    border-top: 1px solid #f7f7f7;
    line-height: 45px;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .responsive {
    float: right;
    padding-top: 15px;
    display: block;
  }

  /* About */
  .head-info .header-content h1 {
    font-size: 32px;
  }

  #about .div-img-bg {
    padding: 0;
  }

  #about .div-img-bg .about-img img {
    margin-top: 0%;
    margin-left: calc(0% - 0px);
  }

  #about .about-descr .p-heading {
    font-size: 20px;
  }

  #about .about-descr .separator {
    max-width: 100%;
    margin-bottom: 0;
  }

  /* portfolio */
  #portfolio .portfolio-list .nav li {
    float: none;
    margin: 20px;
    display: inline-block;
  }

  /* journal */
  #journal .journal-block .journal-info {
    margin-bottom: 30px;
  }

  /* Contact */
  .contact-contact {
    margin-bottom: 30px;
  }

  /* Footer */
  #footer .socials-media ul li {
    margin-right: 0;
    margin-left: 0;
    float: none;
    display: inline-block;
  }
}

/** Width between 600px to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@media (max-width: 600px) {
  /* Navbar */
  nav {
    padding: 20px 15px;
  }

  .nav-menu {
    margin-top: 40px;
    display: none;
    float: none;
    width: 100%;
  }

  .nav-menu li {
    float: none;
    width: 100%;
    text-align: center;
    border-top: 1px solid #f7f7f7;
    line-height: 45px;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .responsive {
    float: right;
    padding-top: 15px;
    display: block;
  }

  /* About */
  .head-info .header-content h1 {
    font-size: 32px;
  }

  #about .div-img-bg {
    padding: 0;
  }

  #about .div-img-bg .about-img img {
    margin-top: 0%;
    margin-left: calc(0% - 0px);
  }

  #about .about-descr .p-heading {
    font-size: 20px;
  }

  #about .about-descr .separator {
    max-width: 100%;
    margin-bottom: 0;
  }

  /* portfolio */
  #portfolio .portfolio-list .nav li {
    float: none;
    margin: 10px;
    display: inline-block;
  }

  /* journal */
  #journal .journal-block .journal-info {
    margin-bottom: 30px;
  }

  /* Contact */
  .contact-contact {
    margin-bottom: 30px;
  }

  /* Footer */
  #footer .socials-media ul li {
    margin-right: 0;
    margin-left: 0;
    float: none;
    display: inline-block;
  }
}

/** Width between 480px to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@media (max-width: 480px) {
  /* Navbar */
  nav {
    padding: 20px 15px;
  }

  .nav-menu {
    margin-top: 40px;
    display: none;
    float: none;
    width: 100%;
  }

  .nav-menu li {
    float: none;
    width: 100%;
    text-align: center;
    border-top: 1px solid #f7f7f7;
    line-height: 45px;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .responsive {
    float: right;
    padding-top: 15px;
    display: block;
  }

  /* About */
  .head-info .header-content h1 {
    font-size: 32px;
  }

  #about .div-img-bg {
    padding: 0;
  }

  #about .div-img-bg .about-img img {
    margin-top: 0%;
    margin-left: calc(0% - 0px);
  }

  #about .about-descr .p-heading {
    font-size: 20px;
  }

  #about .about-descr .separator {
    max-width: 100%;
    margin-bottom: 0;
  }

  /* portfolio */
  #portfolio .portfolio-list .nav li {
    float: none;
    margin: 20px;
  }

  /* journal */
  #journal .journal-block .journal-info {
    margin-bottom: 30px;
  }

  /* Contact */
  .contact-contact {
    margin-bottom: 30px;
  }

  /* Footer */
  #footer .socials-media ul li {
    margin-right: 0;
    margin-left: 0;
    float: none;
    display: inline-block;
  }
}

/** Width between 320px to 0
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@media (max-width: 320px) {
  /* Navbar */
  nav {
    padding: 20px 15px;
  }

  .nav-menu {
    margin-top: 40px;
    display: none;
    float: none;
    width: 100%;
  }

  .nav-menu li {
    float: none;
    width: 100%;
    text-align: center;
    border-top: 1px solid #f7f7f7;
    line-height: 45px;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .responsive {
    float: right;
    padding-top: 15px;
    display: block;
  }

  /* About */
  .head-info .header-content h1 {
    font-size: 32px;
  }

  #about .div-img-bg {
    padding: 0;
  }

  #about .div-img-bg .about-img img {
    margin-top: 0%;
    margin-left: calc(0% - 0px);
  }

  #about .about-descr .p-heading {
    font-size: 20px;
  }

  #about .about-descr .separator {
    max-width: 100%;
    margin-bottom: 0;
  }

  /* portfolio */
  #portfolio .portfolio-list .nav li {
    float: none;
    margin: 20px;
  }

  /* journal */
  #journal .journal-block .journal-info {
    margin-bottom: 30px;
  }

  /* Contact */
  .contact-contact {
    margin-bottom: 30px;
  }

  /* Single page */
  .entry-comments-body span {
    display: inline-block;
    margin-right: 0;
  }
}

/*------------------ Pre ---------------------*/
#env_top,
#env_bottom,
#inner_elements {
  transition: all 1.2s ease-in-out;
}

#hero,
#main,
#header,
#footer,
#footer-bottom {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.page-wrapper {
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  html,
  body {
    position: relative;
  }
}

@media (max-width: 480px) {
  .swiper-slide h2 {
    font-size: 3em !important;
  }

  .swiper-slide p.hero__date {
    font-size: 2em;
  }
}

@media (max-width: 991px) {
  .pre-page {
    display: flex;
    justify-content: center;
  }

  .welcome-text {
    font-size: 3em !important;
  }
  .pre-page-content {
    padding: 0 8%;
  }

  .pre-page .left-graph {
    height: 30vw;
    width: 30vw;
  }
  .pre-page .right-graph {
    height: 30vw;
    width: 30vw;
  }
  #env_top,
  #env_bottom {
    height: 58vh;
    width: 100%;
    margin: auto;
    object-fit: cover;
  }

  .stamp {
    width: 100px;
  }
}

#pre_page {
  position: fixed;
  z-index: 9999; /* mientras está visible */
}

#pre_page.hidden-pre {
  opacity: 0 !important;
  z-index: -1 !important; /* lo manda ATRÁS del menú */
  pointer-events: none !important;
}

.pre-page {
  background-color: rgba(255, 255, 255, 1);
  /* background-image: url(../images/ig-filter-bg-5.png);*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.pre-page .inner {
  display: flex;
  height: 100vh;
}

.pre-page .icon {
  display: block;
  margin: auto;
}

.pre-page svg {
  width: 160px;
  height: auto;
  margin: auto;
  display: flex;
  fill: var(--main-color);
}

.pre-page-content {
  text-align: center;
  padding: 0 0%;
  position: relative;
  z-index: 16;
}

.pre-page .left-graph {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 11;
  height: 100vh;
}

.pre-page .right-graph {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 11;
  height: 100vh;
}

.stamp {
  position: relative;
  width: 120px;
  margin: auto;
  display: flex;
  z-index: 11;
}

.stamp:hover {
  cursor: pointer;
}

#env_top {
  width: 100%;
  vertical-align: top;
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 1;
  overflow: visible;
  height: 58vh;
}

#env_bottom {
  vertical-align: bottom;
  width: 100%;
  bottom: 0%;
  position: absolute;
  right: 0px;
  opacity: 1;
  overflow: visible;
}

#env_middle {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 1;
  object-fit: fill;
}

@media (max-width: 1024px) {
  .pre-page {
    display: flex;
    justify-content: center;
  }

  .pre-page .right-graph {
    height: 35vh;
  }

  .pre-page .left-graph {
    height: 35vh;
  }

  #env_top,
  #env_bottom {
    height: 58vh;
    width: 100%;
    margin: auto;
    object-fit: cover;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fade-out {
  animation: fade-out 2s ease;
}

/*------------------ Responsive ---------------------*/

@media (max-width: 991px) {
  h2 {
    font-size: 1.8rem;
  }

  h5 {
    font-size: 1rem;
  }

  .__web-inspector-hide-shortcut__,
  .__web-inspector-hide-shortcut__ *,
  .__web-inspector-hidebefore-shortcut__::before,
  .__web-inspector-hideafter-shortcut__::after {
    visibility: visible;
  }

  .site-header .navbar .navbar-nav .nav-item .nav-link {
    border-width: 0px;
    border-radius: 0px;
    padding: 20px 0;
  }

  .navbar-collapse {
    box-shadow: 0px 6px 8px 0px #4c4c4c33;
    z-index: 3;
  }

  .site-header svg {
    margin: 0px;
  }

  .hero .wedding-announcement .couple-name-merried-text {
    vertical-align: top;
    padding-top: 32px;
  }

  .music-box button {
    z-index: 200000;
    width: 60px;
    height: 60px;
  }

  #features .gb.bride {
    background-attachment: unset !important;
  }

  .stamp {
    width: 100px;
  }

  .welcome-text {
    font-size: 2em;
  }

  .getting-there-section .content > .col:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }

  .fancybox-overlay {
    z-index: 600 !important;
  }
}

@media (max-width: 767px) and (min-width: 480px) {
  body,
  p {
    font-size: 0.8em;
  }

  .site-header {
    height: 60px;
  }

  .site-header .navbar,
  .site-header .container {
    height: 100%;
  }

  .site-header svg {
    height: 100%;
    width: 80%;
  }

  .navbar-collapse {
    top: 40px;
    padding: 2%;
    position: fixed;
    background-color: rgba(148, 106, 90, 0.9);
    width: 100%;
    text-align: center;
    z-index: 3;
  }

  .hero {
    min-height: 100vh;
    height: 100vh;
  }

  .hero .wedding-announcement .couple-name-merried-text {
    padding-bottom: 50vh !important;
  }

  .hero .wedding-announcement .married-text h4 {
    opacity: 0;
  }

  .hero .wedding-announcement .popup-save-the-date {
    opacity: 0;
  }

  .wedding-couple-section .gb > div {
    width: 50%;
  }

  .wedding-couple-section .gb.groom,
  .wedding-couple-section .gb.bride {
    display: flex;
  }

  .couple-intro-text .first-column,
  .couple-intro-text .second-column {
    width: 50%;
  }

  .couple-intro-text .first-column {
    background-image: url(../images/lb-intro-m-bg.png);
    background-size: 100% auto;
    background-position: 30% bottom;
    background-repeat: no-repeat;
  }

  .count-down-section h2 span {
    font-size: 3rem;
  }

  .count-down-section .std-date {
    font-size: 1.5rem;
  }

  .count-down-clock .box {
    width: 22% !important;
    margin: 0 1% !important;
  }

  .story-section .col,
  .getting-there-section .col {
    flex: 0px;
  }

  .story-timeline .img-holder svg {
    max-height: 80px;
  }

  .getting-there-section .content > .col:first-child {
    border-bottom: 0px;
  }

  .getting-there-section .content p {
    font-size: 12px !important;
  }

  .getting-there-section .content h3 {
    font-size: 1.2em;
  }

  .timeline__event__icon svg {
    width: 90%;
  }

  .timeline__event__title {
    font-size: 0.7rem;
  }

  .timeline__event__date {
    font-size: 1.2em;
  }

  .timeline__event {
    width: 74vw;
  }

  .timeline__event p {
    margin-bottom: 0px;
  }

  .mw-feature-img img {
    width: 100%;
    height: unset;
  }

  .download-app .buttons {
    flex-wrap: nowrap;
  }
}

@media (max-width: 480px) {
  .site-header svg {
    width: 80%;
  }

  .navbar-collapse {
    top: 76px;
    position: absolute;
    background: rgba(148, 106, 90, 0.9);
    width: 100%;
    text-align: center;
    padding: 2%;
    z-index: 3;
  }

  .count-down-section h2 span {
    font-size: 3rem;
  }

  .count-down-section .std-date {
    font-size: 1.5rem;
  }

  #timeline h2 {
    font-size: 1.2rem;
    margin-top: 46px;
  }

  .animate-gradient-gray-text {
    overflow: visible;
  }

  .site-footer h2 {
    font-size: 2rem;
  }

  .gift-registration-section .gif-registration-slider .register img {
    width: 70%;
    display: flex;
    margin: auto;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .site-header svg {
    width: 80%;
  }

  .navbar-collapse {
    top: 76px;
    position: absolute;
    background: rgba(79, 76, 51, 0.9);
    width: 100%;
    text-align: center;
    padding: 2%;
    z-index: 3;
  }

  .story-section .col,
  .getting-there-section .col {
    flex: 0px;
  }

  .getting-there-section .content > .col:first-child {
    border-width: 0px;
  }

  #features .gb.bride > div.mw-feature-img,
  #features .gb.bride > div.details {
    width: 100%;
  }

  .download-app .buttons {
    flex-wrap: nowrap;
  }
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  audio:not([controls]) {
    display: block !important;
  }

  audio {
    position: fixed;
    z-index: 100000000;
    vertical-align: bottom;
    bottom: 20px;
    left: 20px;
  }

  audio::-webkit-media-controls-panel {
    background-color: #dfdfdf;
    border: 5px solid #fff;
    box-shadow: var(--dark-box-shadow);
  }
}

@supports not (-webkit-touch-callout: none) {
  /* CSS for other than iOS devices */
  audio:not([controls]),
  #my_audio {
    display: none !important;
  }
}

#my_audio {
  opacity: 0;
  pointer-events: none;
}

#my_audio.visible {
  opacity: 1;
  pointer-events: all;
}

/*------------------ BotÃ³n Sobre ---------------------*/

/* botón debajo del sello */
#cerrarCarta,
.btn-pre-page {
  width: 250px;
  position: absolute;
  left: 50%;
  top: calc(64vh + 100px); /* ajustado con el sello */
  transform: translateX(-50%);
  z-index: 31;
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
}

/* hover elegante */
.btn-invitacion:hover {
  background: #085c3f; /* más oscuro */
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10, 113, 78, 0.5);
}

@media (max-width: 919px) and (min-width: 768px) {
  .btn-pre-page {
    margin-top: 30px;
  }
}

.btn-pre-page:hover {
  width: 250px;
  padding: 17px 20px;
  font-size: 1rem;
  background-color: rgba(131, 131, 131, 0.5);
  cursor: pointer;
}

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

.welcome-text {
  font-size: 5em;
  font-family: var(--font-family);
  font-weight: 700;
  font-style: normal;
}

.location-info-box {
  background-color: var(--red);
  padding: 5%;
}

.location-info-box p {
  font-size: 1.2em;
}

.btn {
  background: #fff;
  border: medium none;
  border-radius: 0;
  color: #000;
  font-size: 1.2em;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
}

/*--------------- HERO -----------------*/
#hero {
  height: 100dvh;
}

.seccion-elegante {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.frase {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.nombre {
  font-family: "Playfair Display", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}

/* & elegante */
.amp {
  font-family: var(--font-family);
  font-size: 2rem;
  margin: 10px 0;
  color: var(--red);
}

.amp-white {
  font-family: var(--font-family);
  font-size: 2rem;
  margin: 10px 0;
  color: var(--white);
}

.contenido-hero {
  position: absolute;
  bottom: 31px;
  left: 50%;
  transform: translateX(-50%);

  text-align: center;
  z-index: 2;
}

/* Texto */
.nombres-principales {
  font-family: var(--font-family);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.subtitulo-boda {
  font-family: var(--font-family);
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 10px;
  font-weight: 600;
}

/* & */
.ampersand {
  font-family: var(--font-family);
  font-size: 3rem;
  display: inline-block;
  margin: 5px 0;
}

/* Fade blanco */
.overlay-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, #872332, rgba(255, 255, 255, 0));
  z-index: 1;
}

/* que el contenido quede arriba */
.proximamente .container {
  position: relative;
  z-index: 2;
}

.proximamente {
  background: linear-gradient(180deg, #872332 0%, #872332 100%);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.contador-header {
  margin-bottom: 35px;
}

.contador-icono {
  width: 70px;
  fill: #d8c1a0;
  margin-bottom: 15px;
}

.contador-subtitulo {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
}

.contador-titulo {
  margin-top: 10px;
  font-family: "Playfair Display", serif;
  font-size: 2em;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.remaining-time .clock-dynamic {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.remaining-time .time-sec {
  min-width: 140px;
  min-height: 150px;
  padding: 25px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.remaining-time .time-sec .title {
  display: block;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 600;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
}

.remaining-time .time-sec .label {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 768px) {
  .contador-titulo {
    font-size: 1.5rem;
  }

  .remaining-time .clock-dynamic {
    gap: 14px;
  }

  .remaining-time .time-sec {
    min-width: 110px;
    min-height: 120px;
    padding: 20px 14px;
    border-radius: 22px;
  }

  .remaining-time .time-sec .title {
    font-size: 2.8rem;
  }

  .remaining-time .time-sec .label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .remaining-time .clock-dynamic {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* 👈 IMPORTANTE */
    gap: 8px;
  }

  .remaining-time .time-sec {
    min-width: auto;
    width: 33.33%; /* 👈 3 en fila */
    padding: 12px 6px;
    border-radius: 16px;
  }

  .remaining-time .time-sec .title {
    font-size: 2rem;
  }

  .remaining-time .time-sec .label {
    font-size: 1rem;
    padding-top: 2px;
    letter-spacing: 1px;
  }
}
