:root {

    --page-gap: 1%;
    --section-gap: 20px;

    --font-family: 'Cormorant Garamond', serif;
    --secondary-font-family: 'Cormorant Garamond', serif;
    --extra-font-family: 'Cormorant Garamond', serif;
    --body-font-family: 'Cormorant Garamond', serif;
    --cursive-font-family: 'Parisienne', cursive;

    --main-color: #70835c;
    --secondary-color: #5e6e4c;
    --third-color: #a4b98e;
    --fourth-color: #939090;
    --fifth-color: #ffffff;
    --dark-color: #303030;
    --light-color: #818181;
    --light-bg-color: #f7f7f7;
    --light-border-color: rgba(0,0,0,0.1);

    --body-font-color: #000;
    --body-font-size: 16px;
    --body-line-height: 2em;

    --navlink-bg-color: rgba(255,255,255,0.8);
    --navlink-hover-bg-color: rgba(0,0,0,0.05);
    --navlink-box-shadow: 0px 0px 10px 2px #e3e3e387;

    --btn-border-width: 2px;
    --btn-border-style: solid;
    --btn-dark-background-color: rgb(205, 188, 162);
    --btn-dark-hover-background-color: #5e6e4c;
    --btn-light-background-color: rgba(0,0,0,0);
    --btn-light-hover-background-color: rgba(255,255,255,0.2);
    --btn-dark-border-color: rgba(0,0,0,0.1);
    --btn-light-border-color: rgba(255,255,255,0.2);

    --round-btn-tabs-border: 1000px;

    --titles-bg-color: rgba(255,255,255,0);
    --titles-border-color: rgba(0,0,0,0.1);
    --titles-border-width: 0px;
    --titles-font-color: #5e6e4c;
    --titles-font-size: 38px;
    --titles-font-rem-size: 2rem;

    --light-box-shadow: 0px 0px 10px 2px #eaeaea67;
    --dark-box-shadow: 0px 0px 10px 2px #888888;

    --location-border-width: 2px 0;
    --location-border-style: solid;

    --nav-bg-color: #5e6e4c;
    --nav-top-border-color: #c6bea9;
    --nav-top-border-width: 5px;
    --nav-bottom-border-color: #c6bea9;
    --nav-bottom-border-width: 5px;
    --nav-font-color: #fff;
    --nav-font-hover-color: #fff;
}

/*------------------ General ---------------------*/

body {
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: var(--third-color);
}

.padding-0 {
  padding: 0%;
}

@media (min-width: 1025px){
  .mobile-only {
      display: none;
  }
  .tablet-only {
      display: none;
  }
  .desktop-hidden {
      display: none;
  }
}

@media (max-width: 480px) {
  .desktop-only {
      display: none;
  }
  .tablet-only {
      display: none;
  }
  .mobile-hidden {
      display: none;
  }
}

@media (max-width: 1024px) and (min-width: 767px) {
  .mobile-only {
      display: none;
  }
  .desktop-only {
      display: none;
  }
  .tablet-hidden {
      display: none;
  }
}

@media (max-width: 991px) {
  html, body {
    overflow: hidden;
    height: 100%;
    position: relative;
  }
}

.sticky-header {
  z-index: 500;
}

#rotuloapi h1 {
  font-size: 1.2rem;
  font-weight: 600;
}

.fancybox-wrap {
  z-index: 199999 !important;
}

.site-header {
  border-bottom: 0px solid var(--light-border-color);
  background-color:rgb(94 110 76 / 90%);
}

.navbar {
  border-width: 0px;
  box-shadow: 0px 6px 8px 0px #4c4c4c33;
}

.navbar-toggler {
  color: var(--fifth-color);
}

.site-header svg {
  width: auto;
  height: 60px;
  margin: 10px;
  fill: var(--third-color);
}

.site-header .navbar .navbar-nav .nav-item .nav-link {
  /* background-color: var(--navlink-bg-color); */
  padding: 7px 17px;
  margin: 0 5px;
  border-radius: 0px;
}


.site-header .navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--nav-font-hover-color) !important;
  padding: 7px 20px;
  
  /*border: 1px solid var(--light-border-color);*/
}

@media (max-width: 991px) {
  .site-header .container {
    justify-content: center;
    display: flex;
    flex-wrap: nowrap;
}
.site-header.sticky-header .navbar .navbar-nav .nav-item .nav-link {
  border-width: 0px;
}
}

p, body {
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  font-size: 18px;
  line-height: 1.5em;
}

h3 {
  font-size: 1rem !important;
}

.white-text {
    color: #fff !important;
}
.dark-text {
    color: #000 !important;
}
.bold-text {
    font-weight: 600 !important;
}

.centered-text {
    text-align: center;
}

.justified-center-flex-content {
    justify-content: center;
}

.mw-btn  {
    text-transform: uppercase;
    font-family: var(--font-family);
    letter-spacing: 2px;
    padding: 12px 20px;
    border-radius: var(--round-btn-tabs-border);
    cursor: pointer;
}

.mw-btn:hover  {
    letter-spacing: 3px;
    padding: 14px 22px;
}

.mw-btn.dark-btn {
    background-color: var(--third-color);
    color: #fff !important;
    border: var(--btn-border-width) var(--btn-border-style) var(--btn-dark-border-color);
}

.mw-btn.dark-btn:hover {
    box-shadow: var(--dark-box-shadow);
    background-color: var(--btn-dark-hover-background-color);
    color: #fff !important;
    border: var(--btn-border-width) var(--btn-border-style) var(--btn-dark-border-color);
}

.mw-btn.light-btn {
    background-color: var(--btn-light-background-color);
    color: #fff !important;
    border: var(--btn-border-width) var(--btn-border-style) var(--btn-light-border-color);
}

.mw-btn.light-btn:hover {
    box-shadow: var(--light-box-shadow);
    background-color: var(--btn-light-hover-background-color);
    color: #fff !important;
    border: var(--btn-border-width) var(--btn-border-style) var(--btn-light-border-color);
}

.section-title h2, .section-title.white-title h2 {
    font-family: var(--cursive-font-family);
    background-color: var(--titles-bg-color);
    font-size: var(--titles-font-size);
    font-size: var(--titles-font-rem-size);
    color: var(--titles-font-color);
    margin: 20px 0 0;
    padding: 10px 25px 5px;
    border-top: var(--titles-border-width) solid var(--titles-border-color);
    border-bottom: var(--titles-border-width) solid var(--titles-border-color);
    display: inline-block;
    text-transform: none;
    letter-spacing: 0px;
}

.section-title.white-title h2 {
    background-color: rgba(0,0,0,0.2);
    color: #fff;
}

.section-title svg {
    text-align: center;
    height: 30px;
    width: auto;
    display: block;
    justify-content: center;
    margin: auto;
    fill: var(--secondary-color);
    opacity: 1;
}

.section-title1 svg {
  text-align: center;
  height: 30px;
  width: auto;
  justify-content: center;
  margin: auto;
  fill: var(--third-color);
  opacity: 1;
  display: block;
}

.section-title1 h2, .section-title.white-title h2 {
  font-family: var(--cursive-font-family);
  background-color: var(--titles-bg-color);
  font-size: var(--titles-font-size);
  font-size: var(--titles-font-rem-size);
  color: var(--titles-font-color);
  padding: 22px 25px 5px;
  text-transform: none;
  letter-spacing: 0px;
}

.section-title1 p {
  font-size: 30px;
}

.white-title svg {
    fill: #fff;
}

.section-title .fi::before {
    display: none;
}

.vertical-line {
    margin-top: 32px;
    margin-bottom: 20px;
}

.vertical-line:before, .vertical-line span {
    background: var(--third-color) !important;
    opacity: 0.2;
}

.section-title .vertical-line:before, .section-title-white .vertical-line:before {
    display: none;
}

.social-links a {
    background-color: var(--secondary-color) !important;
}

a {
    color: var(--fifth-color) !important;
}

.dark-section a {
    color: var(--main-color) !important;
    font-weight: 600;
}

.italic-highlighted-text {
    font-family: var(--extra-font-family) !important;
    color: var(--main-color);
    font-style: italic;
}

.centered-content-column {
    display: flex;
    padding: 4%;
}

.music-box {
  height: 0px;
  width: 0px;
}

.music-box button {
  color: var(--third-color);
}

.preloader .icon {
  padding: 20%;
}

.preloader .icon:before {
  border: 3px solid #f1f1f1;
  border-top: 3px solid var(--third-color);
}

.preloader .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--third-color);
}

.tablist {
    max-height: unset !important;
}

.tablist ul {
    overflow: visible !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (max-width: 786px) {
    .tablist ul li {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    .tablist .nav-pills .nav-link {
        width: 100%;
    }
    .tab-content .grid {
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    
    .tablist .nav-pills .nav-link.active {
        padding: calc(var(--bs-nav-link-padding-y) + 5px) calc(var(--bs-nav-link-padding-x) + 15px);
    }
    
    .tablist .nav-pills .nav-link:hover {
        background-color: var(--main-color);
        color: #fff;
        box-shadow: var(--dark-box-shadow);
        overflow: visible;
        padding: calc(var(--bs-nav-link-padding-y) + 5px) calc(var(--bs-nav-link-padding-x) + 15px);
    }
}

/*------------------ Efectos ---------------------*/

.animate-grow {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -webkit-animation-name: grow;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: grow;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    
    transition-property: -moz-transform;
    transition-duration: 1s;
    animation-name: grow;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.animate-zoom-in-out {
    animation: zoom-in-zoom-out 2s ease infinite;
}

@-webkit-keyframes grow {
    from {
        -webkit-transform:scale(1);
    }
    to {
        -webkit-transform:scale(0.5);
    }
}
@-moz-keyframes grow {
    from {
        -moz-transform:scale(1);
    }
    to {
        -moz-transform:scale(0.5);
    }
}
@keyframes grow {
    from {
        transform:scale(1);
    }
    to {
        transform:scale(0.5);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
}

/*--------*/

.typewriter {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: 2px solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: 0em; /* Adjust as needed */
    animation: 
      typing 3.5s steps(40, end),
      blink-caret .75s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
  }

/*--------*/

  .waviy {
    position: relative;
  }
  .waviy span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    animation: flip 2s infinite;
    animation-delay: calc(.2s * var(--i))
  }
  @keyframes flip {
    0%,80% {
      transform: rotateY(360deg) 
    }
  }

/*--------*/

  .animate-gradient-text {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #c1b38e, #cdbca2, #dfd0a5);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: gradient 2.5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 243, 213, 0.5);
  }

  .animate-gradient-gray-text {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #818181, #cfcfcf, #818181);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: gradientGray 2.5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(129, 129, 129,0.5);
  }
  
  @keyframes gradient {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
  }


  @keyframes gradientGray {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
  }

/*--------*/

  .animate-appear {
    animation-duration: 0.5s;
    animation-name: animate-fade;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
  }
      
  @keyframes animate-fade {
      0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  .animate-appear.pop {
    animation-name: animate-pop;
    animation-timing-function: cubic-bezier(.26,.53,.74,1.48);
  }
  
  @keyframes animate-pop {
    0% {
      opacity: 0;
      transform: scale(0.5, 0.5);
    }
          
    100% {
      opacity: 1;
      transform: scale(1, 1);
    }
  }
  
  .delay-1 {
    animation-delay: 0.6s;
  }
      
  .delay-2 {
    animation-delay: 0.7s;
  }
      
  .delay-3 {
    animation-delay: 0.8s;
  }

/*--------*/

.animate-text-color {
    animation:change-text-color 2s infinite;
    -webkit-animation:change-text-color 2s infinite;
}

@-webkit-keyframes change-text-color {
    0%, 100% {
        color: var(--main-color);
    }
    50% {
        color: var(--secondary-color);
    }
}

/*--------*/

.animate-icon-color {
    animation:change-color 2s infinite;
    -webkit-animation:change-color 2s infinite;
}

@-webkit-keyframes change-color {
    0%, 100% {
        fill: var(--main-color);
    }
    33% {
        fill: var(--secondary-color);
    }
    66% {
        fill: var(--fourth-color);
    }
}

/*--------*/

.animate-icon-rotate {
    animation:rotate 5s infinite;
    -webkit-animation:rotate 10s infinite;
}

@-webkit-keyframes rotate {
    0%, 100% {
        -webkit-transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(90deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(270deg);
    }
}

/*--------*/

.animate-fadein {
    animation:fadeIn 1.2s;
    -webkit-animation:fadeIn 1.2s;
}

@keyframes fadeIn {
    0% {
       opacity: 0;
    }
    100% {
       opacity: 1;
    }
 } 

/*--------*/

 .animate-rotate {
    animation: aniRotate 10s linear infinite;
  }
  
  @keyframes aniRotate {
   0%{
      transform: rotate(0deg);
     }
  100%{
      transform: rotate(360deg);
     }
  }

/*------------------ Slider ---------------------*/

.hero .wedding-announcement .save-the-date:after {
    background-color: rgba(78,75,52,0.7);
}

.hero .wedding-announcement .save-the-date:before {
    background-color: rgba(78,75,52,0.3);
}

.hero .wedding-announcement .couple-name-merried-text {
    display: table-cell;
    vertical-align: top;
    padding-top:30px;
}

.hero .wedding-announcement .couple-name-merried-text h2 {
  font-family: var(--cursive-font-family);
}

.hero .slick-prev, .hero .slick-next {
  background-color: rgba(0,0,0,0.1);
  box-shadow: none;
}

.hero .slick-prev:hover, .hero .slick-next:hover {
  background-color: rgba(0,0,0,0.2);
  box-shadow: none;
}

@media (min-width: 992px){
    .hero, .hero .slide-item {
        /*height: calc(100vh + 120px);*/
        height: 50vh;
    }
}

@media (min-width: 1200px) {
    .hero .wedding-announcement .popup-save-the-date {
        bottom: -200px;
    }
}

.wedding-announcement .married-text h4 {
    font-family: var(--secondary-font-family);
}

.slide-item {
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width:1025px){

  .hero--slide1 {
      background-position: center bottom !important;
  }
  
  .hero--slide2 {
      background-position:  center bottom;
  }
}

@media (max-width:480px){
  
  .hero--slide1 {
    width: 100vw !important;
    background-position:  center bottom !important;
  }
  
  .hero--slide2 {
      background-position:  center;
  }

  .hero .wedding-announcement .couple-name-merried-text h2 {
    font-size: 2.4rem;
}
}

@media (max-width: 1024px) and (min-width: 767px){

  .hero--slide1 {
      width: 100vw !important;
    background-position:  center  !important;
  }
  
  .hero--slide2 {
      background-position:  center;
  }
  
}


/*------------------ Intro ---------------------*/

.intro-block .first-half {
  padding: 5%;
  display: table-cell;
  background-color: rgba(255, 255, 255, 0.8);
}

.intro-block .last-half {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5%;
  display: table-cell;
}

/*------------------ Countdown ---------------------*/


.count-down-section {
    align-items: center;
    background-color: #fff;
}

.count-down-clock .dias {
    color: var(--fifth-color);
    background: #5e6e4c !important;
}
.count-down-clock .hrs {
  color: var(--fifth-color);
  background: #586747 !important;
}
.count-down-clock .min {
  color: var(--fifth-color);
  background: #516041 !important;
}
.count-down-clock .seg {
  color: var(--fifth-color);
  background: #48563a !important;
}

.count-down-section h2 span {
    font-size: 4rem;
    margin-bottom: 0px;
    color: var(--main-color);
}

.count-down-section #clock > div {
    border-radius: 0px;
    border-style: hidden;
    font-family: var(--extra-font-family);
    width: 25%;
}

.count-down-section .std-date {
    font-family: var(--font-family);
    font-size: 2rem;
    color: var(--main-color);
}

.add-to-calendar {
  position: relative;
  z-index: 2;
  text-align: center;
}

.add-to-calendar h4 {
  opacity: 0.5;
}

.calendar-buttons {
  display: flex;
  justify-content: center;
}

.calendar-buttons a {
  margin: 0 5px;
  width: 260px;
  opacity: 0.5;
}

.calendar-buttons a.mw-btn:hover  {
  letter-spacing: 3px;
  padding: 14px 22px;
  width: 360px;
  opacity: 1;
}

@media (max-width: 480px) {
  .calendar-buttons {
    flex-wrap: wrap;
  }
  .calendar-buttons a {
    width: 100%;
    margin-bottom: 14px;
  }
}

/*============== 6. Locations ==============*/

.location-info-box h1 {
  font-family: var(--cursive-font-family) !important;
}


.location-info-box {
  padding: 40px 25px;
  z-index: 9;
  position: relative;
}

.location-info-box.left-box {
  background-color: var(--main-color);
}

.location-info-box.right-box {
  background-color: var(--secondary-color);
}

#events h1 {
  font-family: var(--cursive-font-family) !important;
  text-transform: none;
  font-size: 3em;
}

#events .first-half, #events .last-half {
  overflow: hidden;
}

.city-block {
  background-color: var(--secondary-color);
  padding: 5%;
}

.location-info-box .centered-content-block {
  text-align: left;
}

@media (min-width: 992px) {
.intro-content__col {
  width: 100%;
  margin: 0px;
}

.intro-content__text {
  background-color: rgba(0,0,0,0.7);
  padding: 10%;
  text-align: center;
  display: grid;
}

.intro-content__img {
  min-height: 460px;
}


.intro-content__col {
  transition: transform .8s;
  overflow: hidden;
}

.intro-content__col {
  transition: transform .8s;
}

#events .first-half:hover .intro-content__col, #events .last-half:hover .intro-content__col {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}

#events .first-half:hover .intro-content__col .content-text, #events .last-half:hover .intro-content__col .content-text {
  -ms-transform: scale(0.75); /* IE 9 */
  -webkit-transform: scale(0.75); /* Safari 3-8 */
  transform: scale(0.75); 
}

#events .first-half:hover .intro-content__text {
  opacity: 1;
}

#events .last-half:hover .intro-content__text {
  opacity: 1;
}
}

@media (max-width: 480px){
  .intro-content__text {
      text-align: center;
  }
  .intro-content__col {
      margin: 0px;
  }
}

@media (max-width: 1024px) and (min-width: 767px){
  .city-block .col-md-3 {
      width: 50%;
      max-width: 50%;
      flex: 0 0 50%;
  }
  .intro-content__text {
      text-align: center;
              background-color: #4e5e42;
  }
  .intro-content__col {
      margin: 0px;
  }
  .location-info-box {
      padding: 8%;
  }
}


/*------------------ Locations ---------------------*/

.events-section .event .details h3 {
    font-family: var(--font-family);
    color: var(--secondary-color);
}

.events-section .event {
    background: var(--light-bg-color);
    border-width: var(--location-border-width);
    border-style: var(--location-border-style);
    border-color: var(--light-border-color);
    padding: 20px;
}

.events-section .event ul li i {
    color: var(--third-color);
}

.events-section .event ul li {
    color: var(--light-color);
}

.see-location-btn {
  margin-right: 10px;
  padding: 5px 10px;
  border: 1px solid var(--light-bg-color);
  border-radius: 1000px;
}

.see-location-btn:hover {
  background-color: rgba(0,0,0,0.07);
  padding: 5px 20px;
}

.see-location-btn svg {
  width: auto;
  margin-right: 5px;
  height: 20px;
}

/*------------------ Itinerario ---------------------*/

@media (max-width: 991px) {
  .story-section .story-timeline .text-holder .heart {
      display: inline;
  }
}
.svg-itinerario{
      width: 6em;
    max-height: 96px;
}
.story-section .story-timeline:after {
  content: "";
  background: rgba(255, 255, 255, 0.1);
  width: 2px;
}

.story-section .story-timeline .text-holder {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 45px !important;
}

.cta.parallax {
    padding-bottom: 8%;
}

.cta.no-overlay::before {
    background-color: rgba(0,0,0,0);
}

.cta.no-overlay {
    margin-top: -20%;
    margin-bottom: 8%;
}

@media (max-width: 991px) {
    .story-section .story-timeline > .row {
        display: flex;
        flex-wrap: nowrap;
    }
    .story-section .story-timeline > .row > .col {
        margin: auto;
    }
    .story-section .story-timeline > .row > .col.icon {
        text-align: center;
    }
    .story-section .story-timeline .story-text {
      background: rgba(94, 154, 142, 0);
      padding: 0px 5px;
  }
  .story-section .story-timeline .story-text.right-align-text {
    text-align: right;
}
}

.story-section .story-timeline h3 {
    font-family: var(--font-family);
    color: var(--secondary-color);
}

.story-section .story-timeline .date {
    font-family: var(--secondary-font-family);
    font-size: 1em;
}

.story-section .story-timeline p {
    font-family: var(--secondary-font-family);
    font-weight: 200;
}

.story-timeline .img-holder svg {
    fill: var(--main-color);
    max-height: 80px;
}

.story-section .story-timeline .text-holder .heart {
    background: none;
    border: none;
}

.story-section .story-timeline .text-holder .fa {
    color: var(--secondary-color);
}

.story-section .story-timeline .text-holder .fa:hover {
    color: var(--secondary-color);
}

section.cta p {
    position: relative;
    z-index: 1;
}

section.cta h2 {
    margin-bottom: 16px;
}

section.cta .city-locations {
    position: relative;
    z-index: 1;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}

section.cta .grid {
    float: left;
    padding: 0 15px 0;
    background-color: var(--light-bg-color);
    padding-top: 20px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    section.cta .grid {
        width: 24%;
    }
}

@media (max-width: 991px) {
    section.cta .grid {
        width: 49%;
    }
}

section.cta .grid .img-holder {
    overflow: hidden;
}

section.cta .grid .img-holder img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-filter: grayscale(50%);
    -moz-filter: grayscale(50%);
    -o-filter: grayscale(50%);
    -ms-filter: grayscale(50%);
    filter: grayscale(50%);
}

section.cta .grid .details {
    background: rgba(0,0,0,0);
    border: 1px solid rgba(255,255,255,0);
    padding: 30px 15px 25px;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

section.cta .grid .details h3 {
    font-family: var(--font-family);
    line-height: 1.2em;
    font-weight: 600;
    color: #3e3e3e;
    margin: 0 0 0.5em;
    text-transform: uppercase;
}

section.cta .grid .details > span {
    font-size: 16px;
    font-size: 0.88889rem;
    color: #969494;
    text-transform: capitalize;
    display: block;
}

section.cta .grid .details > span a {
    font-family: var(--extra-font-family);
    color: var(--third-color) !important;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

section.cta .grid .social-links {
    display: flex;
    margin-top: 15px;
    justify-content: center;
}

section.cta .grid .social-links li {
    margin: 5px;
}

section.cta .grid .social-links li a {
    background-color: rgba(0,0,0,0.2) !important;
    border: 2px solid #fff;
    color: #fff !important;
    border-radius: 10000px;
    width: 30px;
    height: 30px;
}

section.cta .grid .social-links li a:hover {
    background-color: rgba(0,0,0,0) !important;
    border: 2px solid var(--third-color);
}

section.cta .grid .social-links li a:hover .fa {
    color: var(--third-color) !important;
}

section.cta .grid .img-holder img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-filter: grayscale(50%);
    -moz-filter: grayscale(50%);
    -o-filter: grayscale(50%);
    -ms-filter: grayscale(50%);
    filter: grayscale(50%);
}

section.cta .grid:hover img {
    -webkit-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);
    filter: grayscale(0);
}

/*------------------ Hoteles ---------------------*/

#accomodations {
    background-color: var(--secondary-color);
}

#accomodations img {
    border: 5px solid var(--light-border-color);
}

#accomodations .img-holder.align-right {
    text-align: right;
}

@media screen and (min-width: 992px){
    .getting-there-section .content > .col:first-child {
        padding-right: 75px;
        text-align: right;
        border-right: 1px solid rgba(0,0,0,0.3);
    }
    #accomodations img {
        max-width: 340px;
        border: 5px solid var(--light-border-color);
    }
}

/*------------------ Personas ---------------------*/

.nav-pills .nav-link {
    border-radius: var(--round-btn-tabs-border);
}

#people .tablist .nav-pills .nav-link.active:hover {
    background-color: var(--third-color) !important;
    box-shadow: none !important;
}

.inportant-people-section .grid .details > span {
  font-size: inherit !important;
}

.inportant-people-section .tablist .nav-pills .nav-link.active {
    background-color: var(--third-color);
}

@media screen and (min-width: 992px) {
    .inportant-people-section .tab-content .grid {
        width: 50%;
    }
    .inportant-people-section .tab-content .grid-wrapper > .grid:nth-child(4), .inportant-people-section .tab-content .grid-wrapper > .grid:nth-child(5), .inportant-people-section .tab-content .grid-wrapper > .grid:nth-child(6) {
        margin-top: 0px;
    }
}

/*------------------ Galeria ---------------------*/

.gallery-section .video-play-btn i {
    background: var(--third-color);
    border: 3px solid var(--third-color);
    opacity: 0.7;
}

.gallery-section .video-play-btn:hover i {
    background: var(--third-color);
    opacity: 1;
}

/*------------------ Directorio ---------------------*/

#directory .tablist .nav-pills .nav-link.active {
    background-color: var(--secondary-color);
}

#directory .tablist .nav-pills .nav-link.active:hover {
    background-color: var(--secondary-color) !important;
    box-shadow: none !important;
}

#directory .img-holder {
    border: 2px solid var(--titles-border-color)
}

.grid .social-links li a {
    background-color: rgba(0,0,0,0.2) !important;
    width: 30px;
    height: 30px;
    font-size: 18px !important;
}

/*------------------ Timeline ---------------------*/

html #timeline {
    font-size: 14px;
  }
  
body #timeline {
    background: #fff;
  }

  #timeline .section-title, #timeline .section-title-white {
    margin-bottom: 0px;
  }
  
#timeline h2 {
    margin: 5%;
    text-align: center;
    font-size: 2rem;
    font-weight: 100;
}
  
.timeline {
    display: flex;
    flex-direction: column;
    margin: auto;
    position: relative;
    padding: 5%;
  }

  .timeline__event {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    margin: 14px 0;
    border-radius: 6px;
    align-self: center;
    width: 50vw;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: row-reverse;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0 6px 6px 0;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__content {
    border-radius: 6px 0 0 6px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #f6a4ec;
    position: absolute;
    top: 0%;
    left: 50%;
    right: auto;
    z-index: -1;
    transform: translateX(-50%);
    animation: fillTop 2s forwards 4s ease-in-out;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    animation: fillLeft 2s forwards 4s ease-in-out;
  }
  .timeline__event__title {
    font-size: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: #9251ac;
    letter-spacing: 1.5px;
  }
  .timeline__event__content {
    padding: 20px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    background: #fff;
    width: calc(40vw - 84px);
    border-radius: 0 6px 6px 0;
  }
  .timeline__event__date {
    color: #f6a4ec;
    font-size: 1.5rem;
    font-weight: 600;
    background: #9251ac;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    border-radius: 6px 0 0 6px;
  }
  .timeline__event__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9251ac;
    padding: 20px;
    align-self: center;
    margin: 0 20px;
    background: #f6a4ec;
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    padding: 40px;
    height: 40px;
    position: relative;
  }
  .timeline__event__icon i {
    font-size: 32px;
  }
  .timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #f6a4ec;
    position: absolute;
    top: 0%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    animation: fillTop 2s forwards 4s ease-in-out;
  }
  .timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    left: 0%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    animation: fillLeftOdd 2s forwards 4s ease-in-out;
  }
  .timeline__event__description {
    flex-basis: 60%;
  }
  .timeline__event--type2:after {
    background: #555ac0;
  }
  .timeline__event--type2 .timeline__event__date {
    color: #87bbfe;
    background: #555ac0;
  }
  .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
    background: #87bbfe;
  }
  .timeline__event--type2 .timeline__event__icon {
    background: #87bbfe;
    color: #555ac0;
  }
  .timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
    background: #87bbfe;
  }
  .timeline__event--type2 .timeline__event__title {
    color: #555ac0;
  }
  .timeline__event--type3:after {
    background: #24b47e;
  }
  .timeline__event--type3 .timeline__event__date {
    color: #aff1b6;
    background-color: #24b47e;
  }
  .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
    background: #aff1b6;
  }
  .timeline__event--type3 .timeline__event__icon {
    background: #aff1b6;
    color: #24b47e;
  }
  .timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
    background: #aff1b6;
  }
  .timeline__event--type3 .timeline__event__title {
    color: #24b47e;
  }
  .timeline__event:last-child .timeline__event__icon:before {
    content: none;
  }
  
  @media (max-width: 480px) {
    .timeline__event {
      flex-direction: column;
      align-self: center;
    }
    .timeline__event__content {
      width: 100%;
    }
    .timeline__event__icon {
      border-radius: 6px 6px 0 0;
      width: 100%;
      margin: 0;
      box-shadow: none;
    }
    .timeline__event__icon:before, .timeline__event__icon:after {
      display: none;
    }
    .timeline__event__date {
      border-radius: 0;
      padding: 20px;
    }
    .timeline__event:nth-child(2n+1) {
      flex-direction: column;
      align-self: center;
    }
    .timeline__event:nth-child(2n+1) .timeline__event__date {
      border-radius: 0;
      padding: 20px;
    }
    .timeline__event:nth-child(2n+1) .timeline__event__icon {
      border-radius: 6px 6px 0 0;
      margin: 0;
    }
  }
  @keyframes fillLeft {
    100% {
      right: 100%;
    }
  }
  @keyframes fillTop {
    100% {
      top: 100%;
    }
  }
  @keyframes fillLeftOdd {
    100% {
      left: 100%;
    }
  }

  .timeline__event__icon {
    background: #fff !important;
    border: 2px solid var(--main-color);
  }

  .timeline__event__icon svg {
    vertical-align: middle;
    width: 140%;
    fill: var(--main-color);
    position: absolute;
    z-index: 1;
  }

  @media (max-width: 1024px) and (min-width: 768px) {
    .timeline__event__icon svg {
      width: 74%;
    }
  }

  .timeline__event__title {
    color: var(--main-color) !important;
  }

  .timeline__event__icon:before, .timeline__event__icon:after {
    background: var(--main-color) !important;
  }
  
  .timeline__event .timeline__event__date {
    background: var(--light-bg-color) !important;
    color: var(--light-color) !important;
    border: solid var(--main-color);
    border-width: 2px 0px 2px 2px;
  }

  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-width: 2px 2px 2px 0px;
  }

  .timeline__event .timeline__event__content {
    border: solid var(--main-color);
    border-width: 2px 2px 2px 0px;
  }

  .timeline__event:nth-child(2n+1) .timeline__event__content {
    border: solid var(--main-color);
    border-width: 2px 0px 2px 2px;
  }

  @media (max-width: 480px) {
    .timeline__event__icon {
        border-width: 0px !important;
    }
    .timeline__event__icon {
        background: rgba(0,0,0,0) !important;
        width: 70% !important;
    }
    .timeline__event .timeline__event__date {
        background: rgba(0,0,0,0) !important;
        color: var(--light-color) !important;
        border-width: 0px !important;
    }
    .timeline__event .timeline__event__content, .timeline__event:nth-child(2n+1) .timeline__event__content {
        background: rgba(0,0,0,0);
        text-align: center;
        border-width: 0px;
        box-shadow: none !important;
        padding: 0px;
    }
    .animate-rotate {
        animation: none !important;
    }
}

/*------------------ Registry ---------------------*/


.gift {
    margin-right: 0px;
    padding: 5px 10px;
    border: 2px solid rgba(48, 48, 48,0.1);
    box-shadow: none;
  }
  
  .gift  {
    padding: 5px 20px;
    border-color: var(--main-color);
    font-size: 21px;
  }
  
  
  .gift-registration-section {
    border-top: 5px solid var(--third-color);
  }
  
  .gift-registration-section .gif-registration-slider .register {
    border: 1px solid rgba(255,255,255,0.6);
    padding: 20px 30px;
    background: var(--third-color);
    margin: 14px;
    border-radius: 10px;
  }
  
  
  .gift-registration-section .gif-registration-slider {
    margin-top: 0px;
  }
  
  .gift-registration-section .gif-registration-slider .register p  {
    margin-bottom: 0px;
  }
  
  .gift-registration-section .gif-registration-slider .register:hover {
    background: var(--secondary-color);
    cursor: pointer;
  }
  
  .gift-registration-section .gif-registration-slider .register:hover {
    box-shadow: var(--dark-box-shadow);
  }
  
  .gift-registration-section .gif-registration-slider .register img {
    width: auto;
    height: auto;
    margin: auto;
  }
  .no-phone-number a[href^="tel"]{
    color: #000 !important;
    text-decoration:none;
    pointer-events: none;
}
  
/*------------------ Dress Code ---------------------*/

@media (min-width: 1024px) {
.dress-code {
  background-size: cover;
  min-height: 400px !important;
  display: flex;
}
.dress-code .container {
  margin: auto;
}
}

@media (min-width: 992px) {
#dress-code-items .grid {
  width: 32% !important;
  margin: 0 10px;
  
}
}

#dress-code-items .dress-items {
  position: relative;
    z-index: 1;
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

#dress-code-items {
  margin-bottom: 20px;
}

#dress-code-items .img-holder a {
  pointer-events: none;
  cursor:default;
}

/*------------------ MW Features ---------------------*/

.mw-feature-img {
  padding: 3% 2%;
  text-align: center;
}

.mw-feature-img.filter {
  background: url("../images/ig-filter-frame-plain.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.mw-feature-img img {
  height: 40vh;
  opacity: 0.6;
}

.mw-feature-img.filter img {
  box-shadow: var(--dark-box-shadow);
  opacity: 1;
}

#features .gb.bride, #features .gb.groom {
  border-width: 0px !important;
}

#features .gb {
  text-align: center;
}

#features .gb.bride a {
  color: var(--main-color) !important;
}

#features .gb.groom a {
  color: var(--third-color);
}

#features .gb.bride {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--secondary-color) !important;
  background-image: url(../images/ig-filter-bg-5.png) !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-width: 5px 0 !important;
  border-color: var(--main-color);
  border-style: solid;
  padding: 5%;
}

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

#features .gb.bride > div.details {
  width: 68%;
}

@media (max-width: 480px) {
  #features .gb.bride > div.mw-feature-img {
    width: 100%;
  }
  #features .gb.bride > div.details {
    width: 100%;
  }
}

#features .gb.groom .details {
  width: 100%;
  background-color: #fff;
  display: block;
}

.download-app .buttons {
  display: flex;
  justify-content: center;
}

.download-app .buttons a.mw-btn {
  color: #fff !important;
  margin: 0 5px;
  width: 260px;
  opacity: 1;
}

.download-app .buttons a.mw-btn:hover  {
  color: #fff !important;
  letter-spacing: 3px;
  padding: 14px 22px;
  width: 360px;
  opacity: 1;
}

@media (min-width: 992px) {
  #features.wedding-couple-section .details > .details-inner {
    display: block;
  }
}

@media (max-width:991px){
  .download-app .buttons a.mw-btn {
    width: 100%;
    margin-bottom: 14px;
  }
  .download-app .buttons {
    flex-wrap: wrap;
  }
}

#features .gb > div.details svg {
  height: 30px;
  fill: var(--third-color);
  margin-bottom: 20px;
}

/*------------------ RSVP ---------------------*/

#rsvp {
  padding: 5% 2%;
}

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

#rsvp .section-title svg {
  fill: var(--main-color);
}

#rsvp h2 {
  color: var(--third-color);
}

iframe {
  width: 100%;
  height: 490px;
  border: 0px;
  margin-top: 20px;
}

@media only screen and (max-width: 480px){
iframe {
  width: 100%;
  height: 700px;
}
#rsvp {
  padding: 10% 2%;
  background-image: url(images/rsvp-bg.jpg);
  background-position:center !important; 
  background-size: cover;
}
}

/*------------------ Footer ---------------------*/

.site-footer {
 /* background: url("../images/hashtag-pattern-1.png") center center/contain repeat local;*/
  background-color: var(--secondary-color);
}
.site-footer .back-to-top a {
  display: inline-block;
  background: #fbf9f7;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.site-footer .back-to-top .fi:before {
  font-size: 27px;
  color: #000;
  text-shadow: 1px 1px 2px #000;
}
.site-footer h2 {
  font-family: var(--font-family);
  font-size: 2.72222rem;
  padding: 0 27px;
  letter-spacing: 0px;
}

.site-footer h3 {
  color: var(--main-color);
  position: relative;
  z-index: 2;
}

.site-footer img {
  position: relative;
  z-index: 2;
  width: 40px;
}


/*------------------ Autoplay ---------------------*/

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

.welcome-text {
  font-family: var(--cursive-font-family);
    font-size: 2.2em;
}

.welcome-text-p {
  font-family: var(--body-font-family);
}

.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: 0.5;
    overflow: visible;
}

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

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

@media (max-width: 991px){
.pre-page-content {
    padding: 0 8%;
  }

  .pre-page {
    display: flex;
    justify-content: center;
  }
   .pre-page .right-graph {
    content: url(../images/mw-welcome-graph-right.svg);
    height: 50vh;
  }
  .pre-page .left-graph {
    content: url(../images/mw-welcome-graph-left.svg);
    height: 50vh;
  }
  #env_top, #env_bottom {
    height: 35vh;
    width: 100%;
    margin: auto;
    object-fit: cover;
  }
  #env_middle {
   display: none;
  }
}

@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.2rem;
  }
  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(79, 76, 51,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: rgb(108 124 95);
    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: 1.7rem;
  }
  .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:rgb(108 124 95);
    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);
  }
  .music-box {
    display: none;
  }
}

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