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

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

:root {
  --red: #f7f7f7;
  --white: #60635c;
  --pearl: #333530;
  --prox: #513131;
  --font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: #898989;
  font-family: "Poppins", sans-serif;
  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: #b8a07e;
  border: medium none;
  border-radius: 0;
  color: #ffffff;
  font-size: 1.2em;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}

.btn:hover,
.btn:focus {
  color: #ffffff;
  background: var(--pearl);
}

.padDiv {
  padding: 30px 20px;
}

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

.section-title h2 {
  font-size: 4em;
  color: var(--white);
  font-family: "Tangerine", cursive;
  border-top: #0000001a solid;
  border-bottom: #0000001a solid;
  text-transform: none;
  letter-spacing: 3px;
  padding: 10px 25px 5px;
}

.section-title h5 {
  font-size: 3rem;
  color: var(--white);
  font-family: "Tangerine", cursive;
}

.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;
}

/*--------------------------------------------------------------
# Music button
--------------------------------------------------------------*/
.music-botton {
  position: fixed;
  right: 15px;
  bottom: 60px;
  z-index: 996;
  background: #b8a07e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.music-botton i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.music-botton:hover {
  background: #c6b398;
  color: #fff;
}

.music-botton.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-size: 2em;
  font-weight: 500;
  color: var(--pearl);
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Tangerine", cursive;
}

.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: var(--white);
  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: #a2998a;
  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: 10px 20px;
  font-size: 3em;
  color: #ffffff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--white);
  font-size: 3em;
}

.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 {
  height: calc(120vh - 120px);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  background-color: #282019;
  opacity: 0.5;
}

.swiper-slide p {
  z-index: 2;
  color: #ffffff;
  font-size: 3em;
  letter-spacing: -1px;
  transform: translateY(-5%) scale(0.8);
  transition: 1s ease;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.01);
}

.swiper-slide h2 {
  z-index: 2;
  pointer-events: none;
  color: #ffffff;
  font-size: 5em;
  letter-spacing: -1px;
  transform: translateY(-5%) scale(0.8);
  transition: 1s ease;
  font-weight: 400;
  font-style: normal;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.01);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0px !important;
  font-family: "Tangerine", cursive;
}

.swiper-slide-active h2 {
  opacity: 1;
  transform: translateY(0%) scale(1);
  transition: 1s ease;
}

.swiper-slide {
  min-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000003d;
  opacity: 0.4;
}

.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-2.jpeg) no-repeat center center;
  background-size: cover;
}

.swiper-3 {
  background: url(../../assets/img/swiper/swiper-3.jpeg) 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-2-m.jpeg) no-repeat center
      center !important;
  }

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

/*-----------------------------------------------------------------------------------*/
/*  About
/*-----------------------------------------------------------------------------------*/
#about {
  width: 100%;
  height: auto;
  background: #f7f7f7;
  padding-top: 100px;
  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-size: 2em;
  color: var(--white);
  font-family: var(--font-family);
  border-top: #0000001a solid;
  border-bottom: #0000001a solid;
  text-transform: none;
  letter-spacing: 3px;
  padding: 20px;
  line-height: 1.2;
}

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

#about svg {
  width: 5rem;
  fill: #a2998a;
}

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

.titulo {
  font-family: "Tangerine", cursive;
  font-size: 3em;
}

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

/*-----------------------------------------------------------------------------------*/
/*  itinerary
/*-----------------------------------------------------------------------------------*/
#itinerary {
  padding-top: 80px;
  padding-bottom: 80px;
}

/*-----------------------------------------------------------------------------------*/
/*  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;
  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;
  background-image: url(../../assets/img/divider-page-1.jpg);
  background-size: cover;
  color: #fff;
  background-attachment: fixed;
  background-position: 50% 61.1406px;
}

.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: "Tangerine", cursive;
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -1px;
}

.desc {
  margin-bottom: 15px;
  font-family: "Tangerine", cursive;
  font-size: 28px;
}

.remaining-time .time-sec {
  position: relative;
  display: inline-block;
  margin: 0 20px 30px;
  height: 120px;
  width: 120px;
  padding-top: 25px;
  border-radius: 100px;
  border: 1px solid #fff;
  color: #ffffff;
}

.remaining-time .time-sec .title {
  font-size: 3em;
  line-height: 1;
  display: block;
}

@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-image: url(../../assets/img/divider-page-1-m.jpg);
    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;
  }

  .remaining-time .time-sec {
    margin: 0 5px 30px;
    height: 60px;
    width: 60px;
    padding-top: 17px;
  }

  .remaining-time .time-sec .title {
    font-size: 2em;
    padding-bottom: 17px;
  }
}

/*--------------------------------------------------------------
# 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: #000000;
}

.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-bottom: 50px;
}

/** 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 .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;
  }
}

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

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

#footer .about-descr .separator {
  max-width: 100%;
  margin-bottom: 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 ---------------------*/

.btn-pre-page {
  margin: auto;
  margin-top: 60px;
  display: block;
  color: #303030 !important;
  width: 232px;
  padding: 15px 20px;
  border: 2px solid #303030;
  z-index: 12;
  position: relative;
  text-align: center;
  border-radius: 1000px;
  text-transform: uppercase;
}

@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: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

.logo-text {
  font-size: 3em;
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}

@media (max-width: 991px) {
  #header .logo-text {
    zoom: 0.9;
  }
}

.proximamente {
  background-color: var(--prox);
  padding: 5%;
}

.proximamente svg {
  width: 5rem;
  fill: #a2998a;
  margin: 20px;
}

.gallery-block {
  background-color: var(--prox);
  padding: 5%;
}

body.no-scroll {
  height: 100%;
  overflow-y: hidden;
}

* {
  box-sizing: border-box;
}

.gallery-block .row > .column {
  padding: 8px 8px;
}

.gallery-block .row:after {
  content: "";
  display: table;
  clear: both;
}

.gallery-block .column {
  float: left;
  width: 25%;
}

.icon--primary {
  color: #ffffff;
}
