*{
    margin: 0;
    padding: 0;
    color: var(--grey);
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    scroll-behavior: smooth;
   }

   :root{
      --dark: #3F3F3F;
      --grey: #999999;
      --acento: #F65149;
      --light: #ffffff;
   }

   #hero-mobile{
      display: none;
   }

#hero{
   min-height: 100vh;
   background-color: var(--light);
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   padding: 60px 60px 60px 60px;
   position: relative;
}

.home h1{
   color: var(--dark);
   font-size: 75px;
   margin-bottom: 20px;
   font-weight: 300;
   position: relative;
   left: -10px;
   line-height: 100%;
   
}

.home p{
   font-weight: 300;
   font-size: 22px;
   line-height: 125%;
   max-width: 500px;
   margin-bottom: 50px;
   
}

.home p strong{
   font-weight: 700;
}

.home h5{
   font-weight: 300;
   font-size: 27px;
   line-height: 100%;
   margin-bottom: 0;
}

.home .video{
   position: absolute;
   right: 0;
   bottom: 0;
   top: 0;
   width: auto;
   max-width: 50%;
   height: 100%;
   overflow: hidden;
   display: flex;
   align-items: center;
}

.home .video::before{
   content: "";
   position: absolute;
   z-index: 3;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.5) 15% , rgba(255, 255, 255, 0.05) 100%);   
}


.home .video img{
   object-fit: cover;
   height: 100%;
   width: 100%;
}

.home .video video{
   max-width: 100%;
   max-height: 100%;
}

.addeventatc_dropdown{
   position: fixed !important;
   z-index: 10 !important;
   left: 20px !important;
   top: -75.5px !important;
}



#countdown,
#countdown2 {
   display: flex;
   align-items: center;
   margin-bottom: 45px;
}

#countdown .item,
#countdown2 .item{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   margin-right: 20px;
   width: 90px;
   border: solid 2px var(--dark);
   border-radius: 4px;
   padding: 10px 0;
}

#countdown .item .time,
#countdown2 .item .time{
   color: var(--dark);
   font-weight: 600;
   font-size: 35px;
   line-height: 90%;
   margin-bottom: 5px;
   padding-bottom: 5px;
   border-bottom: solid 2px var(--dark);
}

#countdown .item .time-label,
#countdown2 .item .time-label{
   color: #545454;
   font-size: 13px;
   text-transform: uppercase;
   margin-bottom: 0;
}

.btnCustomTop{
   display: inline-block;
   width: fit-content;
   position: relative;
   z-index: 9;
   font-family: "Nunito", sans-serif;
   color: #ffffff !important;
   background-color: var(--acento);
   font-weight: 400;
   line-height: 100%;
   font-size: 18px;
   text-decoration: none;
   border: 1px solid transparent;
   padding: 12px 18px;
   -webkit-border-radius: 20px;
   border-radius: 20px;
   cursor: pointer;
   transition: all ease .3s !important;
}

.btnCustomTop:hover{
   background-color: var(--grey);
   text-decoration: none;
}

#info{
   min-height: 70vh;
   background-color: var(--grey);
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   padding: 60px 60px 60px 60px;
}

#info h2{
   font-size: 55px;
   margin-bottom: 40px;
   color: var(--light);
}

.card{
   border: solid 3px var(--dark);
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   border-radius: 12px;
   padding: 40px 20px 0px 20px;
   text-align: center;
   position: relative;
}

.card::after{
   position: absolute;
   top: -95px;
   left: 0;
   right: 0;
   -webkit-animation: vibrate 3s linear infinite both;
   animation: vibrate 3s linear infinite both;

}

.card.card01::after{
   content: url(../images/calendar.png);
}

.card.card02::after{
   content: url(../images/pin.png);
}

.card.card03::after{
   content: url(../images/check.png);
   top: -75px;
}

.card.card04::after{
   content: url(../images/dresscode.png);
}

.card.card05::after{
   content: url(../images/playlist.png);
}

.card.card06::after{
   content: url(../images/gift.png);
}


.card .btnCustom,
.addeventatc.btncustom{
   margin-bottom: 0 !important;
   position: relative;
   bottom: -15px;
}

.card p{
   color: var(--dark) !important;
   font-size: 18px;
   text-align: center;
   line-height: 120%;
   font-weight: 400;
}

.card p span{
   color: var(--dark) !important;
   font-size: 20px;
   font-weight: 600 !important;
}

.addeventatc{
   width: fit-content;
   padding: 12px 16px !important;
   z-index: 9 !important;
}

.btnCustom,
.addeventatc.btncustom{
   display: inline-block;
   width: fit-content;
   position: relative;
   z-index: 9;
   font-family: "Nunito", sans-serif;
   color: var(--dark) !important;
   background-color: var(--light);
   font-weight: 700 !important;
   line-height: 100%;
   font-size: 17px !important;
   text-decoration: none;
   border: 2px solid var(--dark);
   padding: 10px 22px !important;
   -webkit-border-radius: 20px;
   border-radius: 20px;
   cursor: pointer;
   transition: all ease .3s;
}

.btnCustom:hover,
.addeventatc.btncustom:hover{
   background-color: var(--dark);
   color: var(--light) !important;
   text-decoration: none;
}

.addeventatc_icon.atc_node.notranslate{
   display: none;
}

#fotos{
   height: auto;
   background-color: var(--dark);
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   padding: 60px 60px 60px 60px;
   position: relative;
}

#fotos h2{
   font-size: 35px;
   color: var(--light);
   margin-bottom: 40px;
   line-height: 115%;
}


#fotos .col-lg-4 img{
   width: 100%;
   max-height: 300px;
   object-fit: cover;
   filter: grayscale(1);
}

.imgCustom{
   position: relative;
}

.imgCustom::after{
   content: url(../images/corazones.png);
   position: absolute;
   bottom: -20px;
   left: 20px;
   transform: scale(0.4);
}


#fiesta{
   min-height: 80vh;
   background-color: var(--light);
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   padding: 60px 60px 60px 60px;
}


#fiesta h2{
   font-size: 45px;
   margin-bottom: 100px;
   color: var(--dark);
}

#fiesta .card::after{
   transform: scale(0.5);
}

.bgModal{
   display: none;
   position: fixed;
   justify-content: center;
   align-items: center;
   background-color: rgba(0,0,0,.7);
   z-index: 15;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
}

.bgModal.modalMapa.ver,
.bgModal.modalRegalo.ver{
   display: flex;
}

.modalCustom{
   background-color: var(--light);
   padding: 35px 20px 20px;
   max-width: 90%;
   border-radius: 20px;
   width: 600px;
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
}

.modalCustom .btnCerrar{
   height: 15px;
   width: 15px;
   position: absolute;
   right: 12px;
   top: 12px;
   cursor: pointer;
   transition: all ease .3s;
}

.modalCustom .btnCerrar:hover{
   transform: scale(1.2);
}

.modalCustom iframe{
   width: 500px;
   height: 500px;
}

.bgModal.modalRegalo .modalCustomBody{
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
}

.bgModal.modalRegalo .modalCustomBody h5,
.bgModal.modalRegalo .modalCustomBody p,
.bgModal.modalRegalo .modalCustomBody p strong{
   color: var(--dark) !important;
}

.bgModal.modalRegalo img{
   width: 130px;
   margin-bottom: 25px;
}

#salon{
   height: auto;
   background-color: var(--dark);
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   padding: 60px 60px 60px 60px;
   position: relative;
}

#salon h2{
   font-size: 45px;
   color: var(--light);
   margin-bottom: 0;
   line-height: 115%;
}

#salon p{
   font-size: 18px;
   margin-bottom: 40px;
   color: var(--light);
   font-weight: 400;
}

#salon video{
   height: 100%;
   max-width: 100%;
   overflow: hidden;
}

#salon .col-lg-4 img{
   width: 100%;
   max-height: 300px;
   object-fit: cover;
}

#final{
   min-height: auto;
   background-color: var(--light);
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   text-align: center;
   padding: 60px 60px 80px 60px;
}

#final h2{
   color: var(--acento);
   font-size: 55px;
   font-weight: 400;
   text-align: center;
   margin-bottom: 10px;
}

#final h3{
   font-weight: 500;
   color: var(--dark);
   font-size: 35px;
   margin-bottom: 0;
}

#final p{
   font-weight: 400;
   color: var(--dark);
   font-size: 22px;
   margin-bottom: 0;
}

.scrollDown {
   position: absolute;
   z-index: 10;
   bottom: 20px;
   left: 90px;
   width: 30px;
   height: 50px;
   margin-left: -15px;
   border: 2px solid var(--dark);
   border-radius: 50px;
   box-sizing: border-box;
}

.scrollDown::before {
   position: absolute;
   bottom: 30px;
   left: 50%;
   content: '';
   width: 6px;
   height: 6px;
   margin-left: -3px;
   background-color: var(--dark);
   border-radius: 100%;
   -webkit-animation: 2s infinite scrollDown;
   -moz-animation: 2s infinite scrollDown; 
   animation: 2s infinite scrollDown;
   box-sizing: border-box;
}

@keyframes scrollDown {
   0% {
       opacity: 0;
   }
   40% {
       opacity: 1;
   }
   80% {
       transform: translate(0, 20px);
       opacity: 0;
   }
   100% {
       opacity: 0;
   }
}


.vibrate {
	-webkit-animation: vibrate 3s linear infinite both;
	        animation: vibrate 3s linear infinite both;
}

@-webkit-keyframes vibrate {
   0% {
   -webkit-transform: scale(0.45) translate(0);
            transform: scale(0.45) translate(0) !;

   }
   20% {
   -webkit-transform: scale(0.45) translate(-3px, 3px);
   transform: scale(0.45) translate(-3px, 3px);
   }
   40% {
   -webkit-transform: scale(0.45) translate(-3px, -3px);
   transform: scale(0.45) translate(-3px, -3px);
   }
   60% {
   -webkit-transform: scale(0.45) translate(3px, 3px);
   transform: scale(0.45) translate(3px, 3px);
   }
   80% {
   -webkit-transform: scale(0.45) translate(3px, -3px);
   transform: scale(0.45) translate(3px, -3px);
   }
   100% {
   -webkit-transform: scale(0.45) translate(0);
            transform: scale(0.45) translate(0);
   }
}

@keyframes vibrate {
   0% {
      -webkit-transform: scale(0.45) translate(0);
              transform: scale(0.45) translate(0) !;

    }
    20% {
      -webkit-transform: scale(0.45) translate(-3px, 3px);
      transform: scale(0.45) translate(-3px, 3px);
    }
    40% {
      -webkit-transform: scale(0.45) translate(-3px, -3px);
      transform: scale(0.45) translate(-3px, -3px);
    }
    60% {
      -webkit-transform: scale(0.45) translate(3px, 3px);
      transform: scale(0.45) translate(3px, 3px);
    }
    80% {
      -webkit-transform: scale(0.45) translate(3px, -3px);
      transform: scale(0.45) translate(3px, -3px);
    }
    100% {
      -webkit-transform: scale(0.45) translate(0);
              transform: scale(0.45) translate(0);
   }
}

@media (min-width: 1300px){
   .home h1{
      font-size: 95px;
   }

   .home p{
      font-size: 28px;      
   }

   .home .video{
      position: absolute;
      right: 0;
      bottom: 0;
      top: 0;
      max-width: 55%;
      height: 100%;
      overflow: hidden;
   }

   #final h2{
      font-size: 65px;
   }

   .card p{
      font-size: 20px;
      line-height: 125%;
   }
   
   .card p span{
      font-size: 25px;
   }

}

@media (max-width: 991px){
   #hero{
      display: none;
   }

   #hero-mobile{
      display: flex;
      min-height: 100vh;
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px 60px 100px 60px !important;
      position: relative;
      overflow: hidden;
      background-image: url(../images/bg-home.jpg);
      background-position: center bottom;
      background-size: cover;
   }


   #hero-mobile::before{
      content: "";
      position: absolute;
      z-index: 3;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.5) 100%);   
   }


   #hero-mobile video {
      position: absolute;
      bottom: 0px;
      right: 0px;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1000;
      overflow: hidden;   
   }

   .scrollDown {
      bottom: 30px;
      left: 60px;
      width: 20px;
      height: 35px;
      margin-left: -15px;
      border: 2px solid var(--light);
      border-radius: 50px;
      box-sizing: border-box;
   }

   .scrollDown::before {
      background-color: var(--light);
   }

   #hero-mobile .row{
      position: relative;
      z-index: 4;
   }

   #hero-mobile h5 {
      font-size: 22px;
      color: var(--light);
   }

   #hero-mobile h1 {
      color: var(--light);
      font-size: 55px;
   }

   #hero-mobile p {
      color: var(--light);
      font-size: 17px;
      margin-bottom: 25px;
   }

   #hero-mobile p span,
   #hero-mobile p strong{
      color: var(--light) !important;
   }

   #countdown2 .item .time{
      font-size: 25px;
      color: var(--light);
      border-bottom: solid 1px var(--light);

   }

   #countdown2 .item .time-label {
      color: var(--light);
      font-size: 11px;
   }

   #countdown2 .item {
      margin-right: 10px;
      width: 70px;
      border: solid 1px var(--light);
   }

   .btnCustomTop,
   .btnCustom,
   .addeventatc.btncustom  {
      font-size: 15px !important;
      padding: 10px 12px !important;
   }
   
   #countdown, #countdown2 {
      margin-bottom: 30px;
   } 

   #final h2 {
      font-size: 55px;
   }

   
}

@media (max-width: 767px){
   #info .col-lg-4,
   #fiesta .col-lg-4{
      margin-bottom: 70px;
   }

   #fotos .col-lg-4,
   #salon .col-lg-4{
      margin-bottom: 30px;
   }

   @-webkit-keyframes vibrate {
      0% {
      -webkit-transform: scale(0.35) translate(0);
               transform: scale(0.35) translate(0) !;
   
      }
      20% {
      -webkit-transform: scale(0.35) translate(-3px, 3px);
      transform: scale(0.35) translate(-3px, 3px);
      }
      40% {
      -webkit-transform: scale(0.35) translate(-3px, -3px);
      transform: scale(0.35) translate(-3px, -3px);
      }
      60% {
      -webkit-transform: scale(0.35) translate(3px, 3px);
      transform: scale(0.35) translate(3px, 3px);
      }
      80% {
      -webkit-transform: scale(0.35) translate(3px, -3px);
      transform: scale(0.35) translate(3px, -3px);
      }
      100% {
      -webkit-transform: scale(0.35) translate(0);
               transform: scale(0.35) translate(0);
      }
   }
   
   @keyframes vibrate {
      0% {
         -webkit-transform: scale(0.35) translate(0);
                 transform: scale(0.35) translate(0) !;
   
       }
       20% {
         -webkit-transform: scale(0.35) translate(-3px, 3px);
         transform: scale(0.35) translate(-3px, 3px);
       }
       40% {
         -webkit-transform: scale(0.35) translate(-3px, -3px);
         transform: scale(0.35) translate(-3px, -3px);
       }
       60% {
         -webkit-transform: scale(0.35) translate(3px, 3px);
         transform: scale(0.35) translate(3px, 3px);
       }
       80% {
         -webkit-transform: scale(0.35) translate(3px, -3px);
         transform: scale(0.35) translate(3px, -3px);
       }
       100% {
         -webkit-transform: scale(0.35) translate(0);
                 transform: scale(0.35) translate(0);
      }
   }

   #final h2 {
      font-size: 40px;
   }

   #final h3 {
      font-size: 27px;
   }

   #final p {
      font-size: 18px;
  }

  .modalCustom iframe {
   width: 400px;
   height: 400px;
  }

  #fiesta .card::after {
   top: -75px !important;
}


}

@media (max-width: 600px){
   section{
      padding: 40px 30px 60px !important;
   }

   #hero-mobile{
      padding: 20px 30px 100px 30px !important;
   }

   #info, #fotos, #fiesta, #salon{
      padding-top: 80px !important;
   }

   #hero-mobile h1 {
      font-size: 45px;
   }

   #hero-mobile h5 {
      font-size: 18px;
      margin-bottom: 10px;
  }


   #info .row,
   #fotos .row,
   #salon .row{
      width: 100% !important;
   }

   #fotos h2,
   #fiesta h2,
   #salon h2{
      font-size: 28px;
   }

   #fiesta h2{
      margin-bottom: 50px;
   }

   #salon p{
      font-size: 15px;
   }

   #final h2 {
      font-size: 27px;
   }

   #final h3 {
      font-size: 22px;
   }

   #final p {
      font-size: 15px;
  }

  .card {
      padding: 30px 15px 0px 15px;
   }


   .modalCustom iframe {
      width: 330px;
      height: 400px;
   }

}

@media (max-width: 470px){
   .modalCustom iframe {
      width: 280px;
      height: 400px;
   }
}

@media (max-width: 370px){
   .modalCustom iframe {
      width: 250px;
      height: 300px;
   }
}


.by {
   background-color: #000000;
   padding: 12px 0;
   margin-top: 70px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   text-align: center;
}

.by p {
   font-size: 0.8rem;
   text-decoration: none;
   color: white;
   margin-bottom: 5px;
}

.by a img {
   width: 80px;
}

@media screen and (max-width: 570px) {
   .by a img {
       width: 70px;
   }
}