/*!
 * CSS Stylesheet para Save the Date
 * Made by microcode
 *
 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=WindSong:wght@500&display=swap");
/* GENERAL */
::-moz-selection {
  background-color: #ffe8a1;
  color: #000000;
}
::selection {
  background-color: #ffe8a1;
  color: #000000;
}

html, body {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  margin: 0;
}

h1, h2, h3, p, a {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3rem;
}

.bold, h1, h2, h3 {
  font-family: WindSong, sans-serif;
}

a, button, input, select, textarea {
  text-decoration: none !important;
  outline: none !important;
  background: unset;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

.wrapper {
  max-width: 100vw;
  overflow: hidden;
}

.ordinary {
  position: relative;
  overflow: hidden;
}

.abs-pos {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.abs-pos.bg-cover {
  background-size: cover !important;
}
.abs-pos.bg-contain {
  background-size: contain !important;
}

.transition {
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
}

.custom-btn {
  color: #FFFFFF;
  font-size: 16px;
}
.custom-btn:hover {
  text-shadow: #000000 2px 3px 3px;
  color: #FFFFFF;
}
.custom-btn i {
  transform: rotate(45deg);
}

/* SPACING */
.spacing {
  padding: 100px 10px;
}

.regular-spacing {
  padding: 75px 10px;
}

.light-spacing {
  padding: 50px 10px;
}

.thin-spacing {
  padding: 25px 10px;
}

.clearfix {
  display: inline-block;
  width: 100%;
  margin: 0;
}
.clearfix.spacing-lg {
  margin: 25px 0px;
}
.clearfix.spacing-md {
  margin: 15px 0px;
}
.clearfix.spacing-sm {
  margin: 5px 0px;
}

.filter {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

/* MENU */
#nav {
  height: 50px;
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99;
  transition: 300ms ease all;
}
#nav.fixed-top {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
#nav .container {
  height: 100%;
}
#nav .container .d-flex {
  height: 100%;
}
#nav .container .d-flex a.brand {
  height: 100%;
  padding: 12px;
}
#nav .container .d-flex a.brand > img {
  height: 100%;
}
#nav .container .d-flex ul.nav-links {
  display: flex;
  margin: 0;
}
#nav .container .d-flex ul.nav-links li:not(:last-of-type) {
  margin-right: 5px;
}
#nav .container .d-flex ul.nav-links a {
  font-size: 16px;
  color: #FFFFFF;
  transition: 300ms ease all;
}
#nav .container .d-flex ul.nav-links a:hover, #nav .container .d-flex ul.nav-links a:focus {
  color: #ffe8a1;
}

menu {
  position: fixed;
  width: 35%;
  height: 100vh;
  background-color: #000000;
  right: 0;
  margin: 0;
  padding: 0 100px;
  margin-right: -35%;
  transition: all 0.5s ease-out;
  opacity: 0.4;
  z-index: 100;
}
menu.active-nav {
  margin-right: 0px;
  opacity: 1;
}
menu button.close {
  position: absolute;
  border: none;
  background-color: transparent;
  right: 10%;
  top: 10%;
  z-index: 99;
  opacity: 0.8;
}
menu button.close:hover {
  opacity: 1;
}
menu button.close i {
  font-size: 32px;
  color: #FFFFFF;
}
menu .menu-content {
  display: inline-flex;
  height: 100%;
  justify-content: center;
  flex-flow: column;
}
menu .menu-content a.brand {
  display: inline-block;
}
menu .menu-content a.brand img {
  max-width: 200px;
}
menu .menu-content ul.menu-list {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
menu .menu-content ul.menu-list li {
  list-style: none;
}
menu .menu-content ul.menu-list li a.menu-item {
  position: relative;
  font-size: 34px;
  color: #FFFFFF;
  border-bottom: 1px solid transparent;
}
menu .menu-content ul.menu-list li a.menu-item:hover {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
menu .menu-content .contact-info .social a:not(:last-of-type) {
  margin-right: 10px;
}
menu .menu-content .contact-info .social a:hover i {
  color: #34ce57;
}
menu .menu-content .contact-info .social a i {
  font-size: 20px;
  color: #000000;
}

/***** HEADER *****/
#cover {
  height: 100vh;
}
#cover .title {
  position: relative;
  margin-bottom: 100px;
}
#cover .title::after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  width: 50px;
  background-color: #FFFFFF;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
#cover .title h1 {
  font-size: 7rem;
  color: #FFFFFF;
}
#cover .title h2 {
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  color: #FFFFFF;
  letter-spacing: 18px;
}
#cover .subtitle p {
  color: #FFFFFF;
  font-size: 1.5rem;
}
#cover .subtitle p a {
  font-weight: 600;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
#cover #countdown {
  display: inline-flex;
  flex-flow: column;
  border-radius: 10px;
}
#cover #countdown p {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
}
#cover #countdown ul {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  padding: 10px 0;
  margin: 0;
}
#cover #countdown ul li {
  color: #FFFFFF;
  font-size: 1rem;
  text-transform: uppercase;
}
#cover #countdown ul li:not(:nth-of-type(3)) {
  margin-right: 42px;
}

#details .container {
  padding: 150px 10px;
}
#details .img-bg {
  opacity: 0.7;
}
#details .gallery {
  height: 550px;
}
#details .gallery .swiper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#details .gallery .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
#details .gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#details .gallery .swiper-button-next, #details .gallery .swiper-button-prev {
  color: #FFFFFF;
}
#details .content h1 {
  margin-bottom: 3rem;
}
#details .content .boxes {
  margin-top: -40px;
}
#details .content .boxes .box {
  margin-top: 40px;
  display: flex;
}
#details .content .boxes .box .icon {
  flex: 0 1 30px;
  height: 30px;
}
#details .content .boxes .box .icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#details .content .boxes .box .details {
  margin-left: 12px;
}
#details .content .boxes .box .details h2 {
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  height: 30px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
#details .content .boxes .box .details p {
  white-space: pre-line;
}
#details .content .boxes .box .details p a {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #000000;
}

#break .container {
  padding: 200px 10px;
}
#break h1 {
  font-size: 4rem;
  text-align: center;
  color: #FFFFFF;
}

#mesa-de-regalos .img-bg {
  opacity: 0.7;
}
#mesa-de-regalos .container {
  padding: 150px 10px;
}
#mesa-de-regalos .boxes {
  margin-top: -50px;
}
#mesa-de-regalos .boxes .box {
  text-align: center;
  margin-top: 50px;
}
#mesa-de-regalos .boxes .box img {
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}
#mesa-de-regalos .boxes .box p {
  font-weight: 600;
  font-size: 1.2rem;
  color: #212529;
}

footer .img-container {
  height: 80vh;
}

@media (max-width: 991px) {
  .h1, h1 {
    font-size: 2.5rem;
  }
  #nav .container .d-flex ul.nav-links {
    display: none;
  }
  #nav button {
    background-color: transparent;
    border: none;
    z-index: 99;
    cursor: pointer;
  }
  #nav button i {
    color: #FFFFFF;
    font-size: 30px;
  }
  menu {
    width: 100%;
    padding: 0 10%;
    margin-right: -100%;
  }
  menu button.close i {
    font-size: 28px;
  }
  menu .menu-content {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  menu .menu-content ul.menu-list {
    text-align: center;
  }
  menu .menu-content ul.menu-list li a.menu-item {
    font-size: 28px;
  }
  #cover .title h1 {
    font-size: 4rem;
  }
  #cover .title h2 {
    font-size: 1.5rem;
    letter-spacing: 8px;
  }
  #cover #countdown p {
    font-size: 1rem;
  }
  #cover #countdown ul li:not(:nth-of-type(3)) {
    margin-right: 20px;
  }
  #details .container {
    padding: 75px 10px;
  }
  #details .content {
    text-align: center;
  }
  #details .content .boxes {
    margin-bottom: 75px;
  }
  #details .content .boxes .box {
    justify-content: center;
    flex-flow: column;
  }
  #details .content .boxes .box .details {
    margin: 0;
  }
  #details .content .boxes .box .details h2 {
    font-size: 1rem;
    justify-content: center;
  }
  #break h1 {
    font-size: 3rem;
    text-align: center;
    color: #FFFFFF;
  }
  #mesa-de-regalos .boxes .box img {
    height: 40px;
  }
  footer .img-container {
    height: 60vh;
  }
}/*# sourceMappingURL=main.css.map */