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

FONTS

font-family: 'Alex Brush', cursive;
font-family: 'Cinzel', serif;
font-family: 'Great Vibes', cursive;
font-family: 'Lateef', cursive;
font-family: 'Lora', serif;
font-family: 'Tangerine', cursive;
font-family: 'Cormorant SC', serif;
font-family: 'Cormorant Unicase', serif;

font-family: 'DM Sans', sans-serif;
font-family: 'Handlee', cursive;
font-family: 'Montserrat', sans-serif;
font-family: 'Parisienne', cursive;
font-family: 'Playball', cursive;
font-family: 'Poppins', sans-serif;
font-family: 'Quicksand', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Raleway Dots', cursive;
font-family: 'Spartan', sans-serif;
font-family: 'Special Elite', cursive;

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

:root {

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

    --primary-font: 'Special Elite', cursive;
    --secondary-font-family: 'Rokkitt', sans-serif;
    --extra-font-family: 'Rokkitt', sans-serif;
    --cursive-font-family: 'Alex Brush', cursive;

    --main-color: #bd7056;
    --secondary-color: #7ea8a6;
    --third-color: #303030;
    --fourth-color: #6e6e6e;
    --fifth-color: #cccccc;
    --dark-color: #0a0a0a;

    --body-font-color: #303030;
    --body-font-size: 20px;
    --body-line-height: 2em;

    --nav-bg-color: rgba(0,0,0,0);
    --nav-top-border-color: #c0dbe0;
    --nav-top-border-width: 0px;
    --nav-bottom-border-color: #c0dbe0;
    --nav-bottom-border-width: 0px;
    --nav-font-color: #fff;
    --nav-font-hover-color: #c0dbe0 ;
}

/*============== 1. General ==============*/

body {
    padding: var(--page-gap);
}

.mw-section {
    margin-top: var(--section-gap);
}

.padding-2 {
    padding: 2%;
}

.padding-5 {
    padding: 5%;
}

.padding-10 {
    padding: 10%;
}

.no-padding-column {
    padding: 0px;
}

.m-auto {
    margin: auto;
}

.m-bottom {
    margin-bottom: 32px;
}

.m-top {
    margin-top: 32px;
}

.js-hero-slider .js-hero-slide.align-items-center-v {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.js-hero-slider .js-hero-slide.align-items-top {
    -ms-flex-align: flex-star !important;
    align-items: flex-start !important;
}

.js-hero-slider .js-hero-slide.align-items-bottom {
    -ms-flex-align: flex-end !important;
    align-items: flex-end !important;
}

.js-hero-slider .js-hero-slide.align-items-center-h {
    justify-content: center !important;
    text-align: center !important;
}

.js-hero-slider .js-hero-slide.align-items-right {
    justify-content: flex-end !important;
    text-align: right !important;
}

.js-hero-slider .js-hero-slide.align-items-left {
    justify-content: flex-start !important;
    text-align: left !important;
}

h2, h3, h4, h5, h6 {
    font-family: var(--primary-font) !important;
    line-height: 1.5em;
    margin-bottom: 32px;
    color: var(--main-color);
    text-transform: uppercase;
}
h1 {
    font-family: var(--primary-font) !important;
    line-height: 1.5em;
    margin-bottom: 32px;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 5px;
}

body, p, a {
    font-family: var(--extra-font-family) !important;
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
}

a {
    cursor: pointer;
    color: var(--main-color);
    font-weight: 500;
}

a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.medium-p {
    font-size: 1.5rem;
}

.large-p {
    font-size: 1.7rem;
}

svg {
    width: 4rem;
}

.mw-section svg {
    fill: var(--main-color);
}

.icon--primary {
    color: var(--main-color);
}

.light-color-text {
    color: #fff !important;
}

.main-color-text {
    color: var(--main-color);
}

.secondary-color-text {
    color: var(--secondary-color);
}

.third-color-text {
    color: var(--third-color);
}

.fourth-color-text {
    color: var(--fourth-color);
}

.fifth-color-text {
    color: var(--fifth-color);
}

.dark-color-text {
    color: var(--dark-color);
}

p {
    margin-bottom: 20px;
}

.light-text {
    font-weight: 200 !important;
}

.regular-text {
    font-weight: 400 !important;
}

.semibold-text {
    font-weight: 600 !important;
}

.bold-text {
    font-weight: 800 !important;
}

.capitalized-text {
    text-transform: capitalize;
}

.uppercase-text {
    text-transform: uppercase;
}

.primary-font-family {
    font-family: var(--primary-font);
}

.secondary-font-family {
    font-family: var(--secondary-font-family) !important;
}

.extra-font-family {
    font-family: var(--extra-font-family) !important;
}

.cursive-font-family {
    font-family: var(--cursive-font-family) !important;
}

.no-margin-bottom {
    margin-bottom: 0px;
}

.sm-line-height {
    line-height: 1em;
}

.light-shadow-text {
    text-shadow: 0px 0px 4px var(--fifth-color);
}

.dark-shadow-text {
    text-shadow: 0px 0px 4px var(--dark-color);
}

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

.centered-content-inline {
    margin: auto;
    display: inline-block;
    text-align: center;
}

.centered-content-block {
    margin: auto;
    display: block;
    text-align: center;
}

.flex-div {
    display: flex;
}

.u-bg-primary {
    background-color: var(--main-color);
}

.section-title-xl {
    font-family: var(--primary-font) !important;
    font-size: 45px;
    text-transform: uppercase;
    text-align: center;
    color: var(--main-color);
    margin-bottom: 0px;
}

@media (max-width: 1024px){
    .section-title-xl {
        font-size: 4em;
        line-height: 1.1em;
    }
}

.btn-mw {
    background-color: var(--main-color);
    color: #fff;
    width: auto;
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-style: normal;
}

.btn-mw:hover {
    background-color: var(--secondary-color);
    color: #fff;
    width: auto;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
    border: 3px solid var(--main-color);
    text-decoration: none;
}

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

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

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


/*============== 2. Slider ==============*/

.hero__title {
    font-weight: 200;
    font-size: 28px !important;
    text-transform: uppercase;
    font-family: var(--primary-font) !important;
    color: #fff;
    text-shadow: 0px 0px 4px #353535;
    margin-bottom: 0px;
    margin: 20px 10px;
}

.hero__date {
    font-family: var(--secondary-font-family) !important;
    text-transform: capitalize;
    font-weight: 200;
    line-height: 25.6px;
    color: #fff;
    text-shadow: 0px 0px 4px #353535;
    margin-bottom: 0px;
    margin: 20px 10px;
}

.js-hero-slider .align-items-center {
    -ms-flex-align: flex-end !important;
    align-items: flex-end !important;
}

@media (max-width:480px){
    .js-hero-slider .slick-slide {
        height: 95vh;
    }
    .hero__title {
        font-size: 2.5em !important;
        line-height: 1em;
        margin: 20px 10px;
    }
    .hero--slide1 {
        background-image: url('../img/slider/s2-cel.jpg'); /* Change to your image here */
        background-position: center;
    }
    
    .hero--slide2 {
        background-image: url('../img/slider/ac-slide-2.jpg'); /* Change to your image here */
        background-position: center;
    }
    
    .hero--slide3 {
        background-image: url('../img/slider/s1-cel.jpg'); /* Change to your image here */
        background-position: center bottom;
    }
}

@media (min-width: 767px){
    .js-hero-slider .slick-slide {
        height: 95vh;
    }
    .hero__title {
        line-height: 1.2em;
        margin: 20px 10px;
    }
    .hero--slide1 {
        background-image: url('../img/slider/s2.jpg'); /* Change to your image here */
        background-position: top center;
    }
    
    .hero--slide2 {
        background-image: url('../img/slider/ac-slide-2.jpg'); /* Change to your image here */
        background-position: center;
    }
    
    .hero--slide3 {
        background-image: url('../img/slider/s1.jpg'); /* Change to your image here */
        background-position: top center;
    }
}

@media (min-width:1025px){
    .js-hero-slider .slick-slide {
        height: 100vh;
    }
    .hero {
        min-height: 100vh;
        padding: 50px 0 120px 0;
    }
    .hero--slide1 {
        background-image: url('../img/slider/s2.jpg'); /* Change to your image here */
        background-position: top center;
    }
    
    .hero--slide2 {
        background-image: url('../img/slider/ac-slide-2.jpg'); /* Change to your image here */
        background-position: center;
    }
    
    .hero--slide3 {
        background-image: url('../img/slider/s1.jpg'); /* Change to your image here */
        background-position: top center;
    }
}

/*============== 3. Navigation ==============*/

.logo-container {
    display: flex;
    margin: auto;
    justify-content: center;
    margin-top: 40px;
}

.logo-container svg {
    filter: drop-shadow(0px 0px 4px var(--dark-color));
    fill: #fff;
}

.nav {
    background-color: var(--nav-bg-color);
    border-top: var(--nav-top-border-width) solid var(--nav-top-border-color);
    border-bottom: var(--nav-bottom-border-width) solid var(--nav-bottom-border-color);
    position: absolute;
    margin: auto;
    width: 100%;
}

#dektop-sticky-nav {
    background-color: #fff;
    top: 0;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.5s linear;
}

#dektop-sticky-nav.visible {
    background-color: #fff;
    position: sticky;
    position: -webkit-sticky;
    display: block;
    opacity: 1;
    color: #303030 !important;
}
#dektop-sticky-nav .nav-list__link {
    color: #303030;
    } 


.nav-list__link {
    padding: 3vh 0;
    border-bottom: 0px;
    color: var(--nav-font-color);
    font-style: normal;
    font-weight: 400;
}

.nav-list__link.active, .nav-list__link:hover, .nav-list__link:focus {
    border-bottom: 0px solid var(--nav-font-hover-color);
    color: var(--nav-font-hover-color);
    text-decoration: none;
}

.mobile-nav {
    background: var(--secondary-color);
}

.mobile-nav .icon {
    background-color: rgba(0,0,0,0.8) !important;
}

@media (max-width: 480px){
    .icon--md {
        width: 35px;
        height: 35px;
    }
}

.mobile-nav-list__link {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    border-bottom: 0px solid #9e9e9e;
}

@media (max-width: 990px){
    .nav-list__link {
        max-width: 88px;
    }
}

@media (max-width: 1024px) and (min-width: 767px){
    .mobile-nav .icon--md {
        width: 50px;
        height: 50px;
    }
}

/*============== 4. Intro section ==============*/

.intro-block {
    /*background-image: url('../img/texture-bg.jpg');*/ /* Change to your image here */
	background-size: cover;
    background-position: right center;
}

.intro-block .first-half {
    padding: 5%;
}

.intro-block .first-half img {
    border: 5px solid var(--main-color);
}

.intro-block .last-half {
    padding: 5%;
}

@media (max-width: 990px){
    .intro-block {
        background-position: center;
    }
}

/*============== 5. Countdown section ==============*/

.countdown-block {
    min-height: 100vh;
    background-image: url('../img/save.jpg'); /* Change to your image here */
	background-size: cover;
    background-position: center;
    padding: 5% 0;
    text-align: center;
    border: 5px solid #7ea8a6;
}

.countdown-date {
    color: #0a0a0a;
    font-size: 25px;
    font-family: var(--primary-font-family) !important;
    text-transform: none;
}

@media (min-width: 992px) {
.counter-list {
    margin-left: 0px;
    display: block;
}
.counter-list .row.first, .counter-list .row.second {
    margin-left: 0px;
    display: flex;
    justify-content: center;
}
.counter-list .row.second {
    margin-top: 40px;
}
}

.counter-list__item {
    width: 160px;
    margin: 0 20px;
    padding: 40px 10px;
    border: 3px solid #7ea8a6;
}

.counter-list__item.days {
    background: rgba(0, 0, 0, 0.5) !important;
}

.counter-list__item.minutes {
    background: rgba(0, 0, 0, 0.5) !important;
}

.counter-list__item.hours {
    background: rgba(0, 0, 0, 0.5) !important;
}

.counter-list__item.seconds {
    background: rgba(0, 0, 0, 0.5) !important;
}

.counter-list__item span, .counter-list__item p {
    color:#fff;
}

.counter-list__item span {
    font-family: var(--primary-font);
    font-size: 50px;
}

.counter-list__item p {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    text-transform: initial;
    font-family: 'Special Elite', cursive !important;
}

@media (max-width: 480px){
    .countdown-block {
        background-image: url('../img/save.jpg');
        background-size: cover;
        background-position: -780px center;
    }

    .counter-list {
        display: grid;
    }
    .counter-list__item {
        margin: 0 auto 20px auto;
    }
    .countdown-block .section-title-xl {
        font-size: 3em;
    }
    .countdown-block h2 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) and (min-width: 767px){
    .countdown-block {
        background-image: url('../img/save.jpg');
        padding: 600px 5% 5% 5%;
        background-position: -600px center;
    }
    .counter-list__item {
        margin: 14px;
        width: 126px;
        padding: 30px 10px;
    }
    .countdown-block .centered-content-inline {
        display: flex;
        margin: 0;
        justify-content: center;
    }
    .counter-list {
        display: flex;
    }
}

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

.location-info-box {
    background-color:#fff;
    padding: 5%;
}

@media (max-width: 480px){
    #cuando-donde {
        padding: 2%;
    }
    #cuando-donde .first-half {
        margin-bottom: 32px;
    }
}

/*============== 7. Dress Code ==============*/

.dresscode-block {
    padding: 5%;
}

.dresscode-block .first-quarter, .dresscode-block .last-quarter {
    padding: 2%;
}

.dresscode-block .first-quarter {
    background-color: var(--secondary-color);
}

.dresscode-block .last-quarter {
    background-color: var(--main-color);
}

.dresscode-block .second-quarter, .dresscode-block .third-quarter {
    padding: 0 2%;
}

.dresscode-block .first-quarter .content {
    background-color: var(--fifth-color);
    padding: 15%;
    width: 100%;
}

.dresscode-block .last-quarter .content {
    background-color: var(--fifth-color);
    padding: 20% 15%;
    width: 100%;
}

.dresscode-block .second-quarter .content, .dresscode-block .third-quarter .content {
    display: flex;
    background-color: #eaeaea;
    width: 100%;
    height: 100%;
}

.dresscode-block .content h1 {
    line-height: 1.5em;
}

@media (max-width: 1024px){
    .dresscode-block .col-sm-6.third-quarter, .dresscode-block .col-sm-6.second-quarter, .dresscode-block .col-md-3.third-quarter, .dresscode-block .col-md-3.second-quarter {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*============== 8. Detailed schedule ==============*/

.story-timeline__col img {
    width: 120px;
    margin: auto;
    display: block;
}

@media (min-width: 768px) {
.story-timeline__text h6:before {
    content: "";
    position: absolute;
    height: 1px;
    background: #dfdfdf;
    left: -33px;
    width: 26px;
    top: 14px;
}
.story-timeline__col--left h6:before {
    left: auto;
    right: -33px;
}
.story-timeline__text {
    padding: 20px 0;
    padding-top: 82px;
    min-height: 260px;
}
.story-timeline__col--right {
    padding-top: 32px;
}
}

@media (min-width: 992px) {
    .story-timeline__text h6, .story-timeline__text p {
        padding-left: 18px;
        padding-right: 18px;
    }
    .story-timeline__col--left p, .story-timeline__col--left h6 {
        padding-right: 18px;
        padding-left: 18px;
    }
    .story-timeline__text h6:before {
        width: 100px;
    }
}

.story-timeline__text h6 {
    font-style: initial;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.story-timeline__col svg {
    width: 120px;
    margin: auto;
    display: block;
    fill: #3e6379;
}

@media (max-width: 480px){
    .mobile-only .story-timeline svg {
        width: 8em;
        fill: #3e6379;
        display: block;
        margin: auto;
    }
    .story-timeline__text {
        text-align: center;
    }
}

/*============== 9. City ==============*/

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

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

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

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

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

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

/*============== 10. Hotels ==============*/

.hotels-block {
    padding: 5%;
}

.hotels-tabs {
    margin-top: 5%;
}

.tabs-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tablink {
    background-color: #fff;
    color: var(--fourth-color);
    text-transform: uppercase;
    font-size: 1.2rem;
    float: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    display: flex;
    width: auto;
  }

  .tablink.active-tab {
      color: var(--third-color);
      font-weight: 900;
      background-color: #fff;
  }
  
  /* Style the tab content */
  .tabcontent {
    color: white;
    display: none;
    padding: 2%;
    text-align: center;
  }

  .tabcontent img {
      margin-bottom: 20px;
      height: 40vh;
  }

@media (max-width: 480px) {
    .tablink {
        display: inline-block;
        background-color: var(--fifth-color) !important;
        margin: 5px 0;
        width: 100%;
        color: #fff;
    }
    .tabs-row {
        display: inline-block;
    }
    .tabcontent img {
        height: auto;
    }
}

@media (max-width: 1024px) and (min-width: 481px) {
    .tablink {
        display: block;
        background-color: var(--fifth-color) !important;
        margin: 5px;
        width: 100%;
        color: #fff;
    }
    .tabs-row {
        display: flex;
        flex-wrap: wrap;
    }
    .tabcontent img {
        height: auto;
    }
}


/*============== 11. Gallery ==============*/


.gallery-block {
  background-color: #fff;
  padding: 0%;
}

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

* {
  box-sizing: border-box;
}

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

.gallery-block .row > .column > img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.gallery-block .row > .column > img:hover {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}

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

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

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: rgba(0,0,0,0);
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.active-slide img {
  height: 80vh;
  display: block;
  margin: auto;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #fff !important;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  font-style: normal;
  background: rgba(0,0,0,0.5);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.gallery-block .numbertext {
    display: none;
}

@media (max-width: 480px){
  .gallery-block .column {
      width: 50%;
  }
  .modal {
      padding-top: 54%;
  }
  .active-slide img {
      width: 100%;
      height: auto;
  }
}

@media (max-width: 1024px) and (min-width: 767px) {
  .modal {
      padding-top: 20%;
  }
  .active-slide img {
      width: 100%;
      height: auto;
  }
}

/*============== 12. Timeline ==============*/


.slider-list__item img {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: rgba(0,0,0,0.1);
    border-width: 3px;
}

.slider-list__item.slick-current img {
    -webkit-box-shadow: 0px 0px 0px 0px rgb(161 161 161);
    -moz-box-shadow: 0px 0px 0px 0px rgba(161,161,161,1);
    box-shadow: 0px 0px 0px 0px rgb(161 161 161);
    background-color: rgba(0,0,0,0.1);
    border-style: solid;
    border-color: #fcfcfc;
    border-width: 3px;
}

.slider-list__item p, .slider-list__item h6 {
    display: none;
    font-size: 1rem;
}

.slider-list__item.slick-current p, .slider-list__item.slick-current h6 {
    display: block;
}

.slider-arrow:hover svg path {
    stroke: var(--third-color);
}

@media (max-width: 480px){
    .friends h3 {
        padding: 0 15px;
    }
}

/*============== 13. Registry ==============*/

.registry-block {
    background-color: #bfdbdf;
    padding: 5%;
}

.registry-block svg {
    fill: #fff;
}

.registry-item {
    display: grid;
    padding: 5% 20px 0 0;
}

.registry-item p {
    font-style: normal;
    font-weight: 100;
    text-align: center;
    font-size: 1.5rem;
}

.registry-item:hover p{
    text-decoration: none;
}

@media (max-width: 480px){
    .registry-item {
        padding: 5%;
    }
}

/*============== 14. Friends ==============*/

.friends-block {
    background-color: var(--secondary-color);
    padding: 0%;
}

.words-1-block {
    background-image: url('../img/sello-postal-2-l.png');
    background-size: contain;
    background-position: left bottom !important;
    background-repeat: no-repeat !important;
    padding: 3%;
}

.words-2-block {
    background-image: url('../img/sello-postal-2-l-2.png');
    background-size: contain;
    background-position: right top !important;
    background-repeat: no-repeat !important;
    padding: 3%;
}

.words-block-content {
    background-color: rgba(0,0,0,0.3) !important;
    padding: 5%;
    margin: auto;
    display: block;
    text-align: center;
}

.friends-block svg {
    width: 7.5rem;
    fill: #D28A56;
}

.friends-block .words-text {
    margin-top: 20px;
    text-align: left;
}

/*============== 15. Directory ==============*/

.directory-item {
    padding: 4% 2%;
    border: 1px solid;
}

.directory-item.item-style-1 {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.directory-item.item-style-2 {
    background-color: #fff;
    border-color: var(--fifth-color);
}

.directory-item svg {
    height: 100%;
    margin: auto 20px;
}

.directory-item.item-style-1 svg {
    fill: #fff;
}

.directory-item.item-style-2 svg {
    fill: var(--main-color);
}

.directory-text {
    display: inline-block;
}

.directory-item p.primary-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.directory-item p.secondary-text {
    font-size: 1rem;
    font-weight: 600;
}

.directory-item.item-style-1 .primary-text {
    color: var(--secondary-color);
}

.directory-item.item-style-1 .secondary-text {
    color: #fff;
}

.directory-item.item-style-2 .primary-text {
    color: var(--main-color);
}

.directory-item.item-style-2 .secondary-text {
    color: var(--secondary-color);
}

@media (max-width: 480px){
    .directory-item {
        min-height: 120px;
    }
}

/*============== 16. RSVP ==============*/

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

@media only screen and (max-width: 480px){
iframe {
    width: 100%;
    height: 1000px;
}
}

/*============== 17. Hashtag ==============*/

.hashtag-block {
    background-color: var(--secondary-color);
    background-image: url('../img/fondo.jpg');
    padding: 3% 5%;
}

.hashtag-block h1 {
    font-size: 3.2rem;
}

@media (max-width: 480px){
    .hashtag-block h1 {
        font-size: 1.5rem;
    }
}

/*============== 18. Map ==============*/

/*============== 19. Footer ==============*/

footer {
    margin-top: 20px;
    background-color: var(--secondary-color);
    padding: 40px 20px 52px !important;
}

/*============== 23. Audio ==============*/

audio {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000000000;
}

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

/*============== 24. Video ==============*/

.video-container {
    display: flex;
    margin: auto;
    justify-content: center;
    margin-top: -62px;
}

.video-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .video-modal-content {
    background-color: rgba(0,0,0,0);
    margin: auto;
    padding: 20px;
    border: 0px solid #888;
    width: 50%;
  }
  
  /* The Close Button */
  .video-modal-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .video-modal-close:hover,
  .video-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  #myVideoButton {
      background-image: url('../img/play-video.svg');
      width: 240px;
      height: 240px;
      border: 0px solid #fff;
      border-radius: 2000px;
      padding: 0px;
      cursor: pointer;
      margin-bottom: 0px;
      transition: all .2s ease-in-out;
  }
  
  #myVideoButton:hover {
    background-image: url('../img/play-video-hover.svg');
    width: 240px;
    height: 240px;
    border: 0px solid #fff;
    border-radius: 2000px;
    padding: 0px;
    transform: scale(1.1);
}

.video-responsive {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	padding-top: 30px;
	position: relative;
    margin-top: 10%;
	}
    
.video-responsive iframe, .video-responsive object, .video-responsive embed {
	height: 50vh;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	}


/*============== Goodbye ==============*/

.goodbye-block {
    padding: 5%;
}

.goodbye-block h1 {
    font-size: 3.5rem;
}