/* Generales */

:root {
  --color-primario: #434343;
  --color-secundario: #9FB19B;
}

body{
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
}

p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 17px;
}


h4
{
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
}

.btn{
  font-family: 'Montserrat', sans-serif;
  color: white;
  background-color: var(--color-primario);
  border-radius: 30px;
  padding: 10px 40px;
  border: 1px solid var(--color-primario);
  text-transform: uppercase;
}

.btn:hover{
  color:var(--color-primario);
  background-color: white;
}

.btn-alt{
  font-family: 'Montserrat', sans-serif;
  color: var(--color-primario);
  background-color: white;
}

.btn-alt:hover{
  color: white;
  background-color: var(--color-primario);
  border: 1px solid white;
}

.btn:focus{
  box-shadow:none;
}


.fancybox-bg{
  background-color: var(--color-primario) !important;
}

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

a:hover{
  text-decoration: none;
}

/* Animacion fade in */
.fade-in{
  animation: fadeIn ease 4s;
  -webkit-animation: fadeIn ease 4s;
  -moz-animation: fadeIn ease 4s;
  -o-animation: fadeIn ease 4s;
  -ms-animation: fadeIn ease 4s;
}

.fade-in-portada{
  animation: fadeIn ease 8s;
  -webkit-animation: fadeIn ease 8s;
  -moz-animation: fadeIn ease 8s;
  -o-animation: fadeIn ease 8s;
  -ms-animation: fadeIn ease 8s;
}

.fiesta{
  opacity: 0;
}
.ceremonia{
  opacity: 0;
}
.title-galery{
  opacity: 0;
}
.regalo{
  opacity: 0;
}
.opacidad{
  opacity: 0;
}
.iconCalendario {
  opacity: 0;
}
.iconInstagram{
  opacity: 0;
}
.iconMusic{
  opacity: 0;
}
.anillos{
  opacity: 0;
}

.divCanciones{
  opacity: 0;
}
.divAlojamientos{
  opacity: 0;
}
.divFiesta{
  opacity: 0;
}
.divCeremonia {
  opacity: 0;
}
.divTitleAgenda{
  opacity: 0;
}
.divAgenda{
  opacity: 0;
}
.divCbu{
  opacity: 0;
}
.divDressCode{
  opacity: 0;
}
.divIntagram{ 
  opacity: 0;
}
.divGracias{
  opacity: 0;
}
.divAnillos{
  opacity: 0;
}


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

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

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

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

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



/* Animacion fade in up */
.fadeInUp {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}


.animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-fill-mode: both
}

@keyframes fadeInUp{
  0% {
    opacity:0;
    transform: translateY(120px);
  }
  100% {
    opacity:1;
    transform: translateY(0px);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity:0;
    transform: translateY(120px);
  }
  100% {
    opacity:1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity:0;
    transform: translateY(120px);
  }
  100% {
    opacity:1;
    transform: translateY(0px);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity:0;
    transform: translateY(120px);
  }
  100% {
    opacity:1;
    transform: translateY(0px);
  }
}

@-ms-keyframes fadeInUp {
  0% {
    opacity:0;
    transform: translateY(120px);
  }
  100% {
    opacity:1;
    transform: translateY(0px);
  }
}




/* Flecha para scroll de portada */
.scroll-down {
  cursor: pointer;
	position: absolute;
	bottom: 40px;
	display: block;
	text-align: center;
	font-size: 20px;
	z-index: 100;
	text-decoration: none;
	text-shadow: 0;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
  z-index: 9;
  left: calc(50% - 15px);
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -moz-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
	-webkit-animation: fade_move_down 2s ease-in-out infinite;
	-moz-animation:    fade_move_down 2s ease-in-out infinite;
	animation:         fade_move_down 2s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
  0%   { -webkit-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -webkit-transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
@-moz-keyframes fade_move_down {
  0%   { -moz-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -moz-transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
@keyframes fade_move_down {
  0%   { transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { transform:translate(0,10px) rotate(45deg); opacity: 0; }
}



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


/* Portada */
section.portada{
  height: 100vh;
}
 .logo-portada img{
    margin-top: -5%;
    max-width: 60%;
    }
.fade-in-portada {
 text-align: center;
  }

section.audio {

  margin-top: 20px;

  margin-bottom: 20px;

  position: fixed;

}

section.audio .columna {
  text-align: center;
}

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



/* ------------- Cuenta Regresiva -----------*/

section.cuenta-regresiva{
  font-family: 'Montserrat', sans-serif !important;
  text-align: center;
  padding-top: 40px;
  background-color:var(--color-secundario);
  height: 250px;
}

section.cuenta-regresiva p{
   color: white; 
} 

/* Clase de los numero de la cuenta regresiva (00:00:00) */
.num_cuenta{
  font-size: 30px;
  margin-bottom: 0;
  font-weight: 600;
}
/* Clase que divide el titulo de los numeros de la cuenta regrasiva */
.margenSup{
  margin-top: 30px;
}
/* Clase de los texto de la cuenta regresiva (dias, horas, minut, seg.) */
.text_cuenta{
  font-size: 15px;

}

/* Texto que se muestra cuando la Cuenta Regresiva esta en 0 */
#reloj{
  text-align: center;
  font-size: 25px;
  margin-bottom: 0;
}

.descartar{
  display: none;

}



/* ------------- Fin Cuenta Regresiva -----------*/



/* Ceremonia y Fiesta */

/* section.ceremonia-fiesta{
  padding: 70px 0 90px;
} */

section.ceremonia-fiesta .columna{
  text-align: center;
  padding: 15px;
}

section.ceremonia-fiesta .columna h4{
  margin-top: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

section.ceremonia-fiesta .columna p{
  margin-bottom: 25px;

}

section.ceremonia-fiesta .columna img.icon{
  width: 150px;
}

section.ceremonia-fiesta .columna img.anillos{
  width: 150px;
}



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


/* Galeria /Historia */
section.galeria{
  padding-bottom: 50px;
}

section.galeria h4{
  text-align: center;
  margin-bottom: 60px;
}
section.galeria .item-galeria{
  padding: 0 3px;
  margin-bottom: 5px;
}

section.galeria .item-galeria a img{
  transition: all 0.3s ease-out;
  border-radius: 10px;
}


section.galeria .item-galeria a:hover img{
  transform: scale(1.1);
  position: relative;
  z-index: 999;
}



/* CONFIRMAR ASISTENCIA */

section.parallax-confirmar{
  text-align: center;
    height: 400px;
 }

section.parallax-confirmar .container img.icon{
  width: 150px;
}

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

/* ALBUM */

section.album{
  text-align: center;
  background-color: var(--color-secundario);
color: white;
}

section.album .contenido{
 padding: 50px 20px 80px 20px;
}

section.album h4{
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 400;
  margin-top: 30px;
}

section.album img.icon{
  width: 150px;
}

section.album p{
  margin-top: 20px;
  margin-bottom:30px;
}


/* GRACIAS */

section.gracias{
  text-align: center;
  padding: 50px 0;
  background-color:var(--color-secundario);
}

section.gracias p{
  color: white;
}


@keyframes pulse-animation {
  0% {
      transform: scale(1);
  }

  50% {
      transform: scale(1.1);
  }

  100% {
      transform: scale(1);
  }
}
.vertical_shake {
  animation: vertical-shaking 0.7s infinite;
}


@keyframes vertical-shaking {
  0% { transform: translateY(0) }
  25% { transform: translateY(4px) }
  50% { transform: translateY(-4px) }
  75% { transform: translateY(4px) }
  100% { transform: translateY(0) }
}



/* Medias queries */

@media (max-width: 760px) {


  .logo-portada img{
    max-width: 85%;
    margin-bottom: 0%;
    margin-top: -70%;
  }

  .logo-portada{
    text-align: center;
  }

  section.parallax-confirmar{
    height: 450px;
     }

  section.ceremonia-fiesta .row .columna:nth-child(2){
    margin-top: 0px;
  }

  section.ceremonia-fiesta .row .columna.no-margin-top{
    margin-top: 0;
  }

  section.menu-footer ul li{
    margin-top: 10px;
  }


}
