body {
    overflow-x: hidden;
    font-family: 'Lexend Tera', sans-serif;
}

label {
    color: #000;
}
input:not([type]):focus:not([readonly]), input[type=text]:not(.browser-default):focus:not([readonly]), input[type=password]:not(.browser-default):focus:not([readonly]), input[type=email]:not(.browser-default):focus:not([readonly]), input[type=url]:not(.browser-default):focus:not([readonly]), input[type=time]:not(.browser-default):focus:not([readonly]), input[type=date]:not(.browser-default):focus:not([readonly]), input[type=datetime]:not(.browser-default):focus:not([readonly]), input[type=datetime-local]:not(.browser-default):focus:not([readonly]), input[type=tel]:not(.browser-default):focus:not([readonly]), input[type=number]:not(.browser-default):focus:not([readonly]), input[type=search]:not(.browser-default):focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #000;
    -webkit-box-shadow: 0 1px 0 0 #000;
    box-shadow: 0 1px 0 0 #000;
}

/* -------------------------------- SECCIONES ------------------------------- */

.marco {
    border: solid 12px #000;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99999;
    pointer-events: none;
}

.slide {
    background: #fff ;
    height: 100vh;
    width: 100vw;
    scroll-snap-align: center;
    background-size: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
}




.one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    
}

.two .onda-content {
    height:20vh; 
    background-color: rgb(255, 242, 18);
    
    z-index: 99999;
}

.three .onda-content {
    height:70vh; 
    background-color:rgb(255, 242, 18);
    
}

.four .onda-content {
    background-color: #9cc6ea;
}

.three .onda-bottom{
     height:37vh; 
    position:relative;
}


.two .onda-top{
    height:80vh; 
   position:relative;
}



/* ---------------------------------- CONTENIDO --------------------------------- */


 h1.title{
    text-align: left;
    width: 100%;
    font-size: 50px;
    color:#fff;
    padding-top:20px;
    padding-bottom:20px;
    padding-left:100px;
    text-transform: uppercase;
   background-color: #000;
    font-family: 'Lexend Tera', sans-serif;
    animation: float-shadow 6s ease-in-out infinite;
    }

    .card-pasos{
        background-color:#fff; border:solid 5px #000; color:#000; min-height: 275px;
        height: fit-content;
        overflow-wrap: break-word;
    }
.title-pasos{
    color:#000 !important;
}

.title-pasos > h3{
    font-size:30px
}
p.desc-pasos{
    color:#000 !important;
}
.floating {
    animation: float 6s ease-in-out infinite;
}
.floating2 {
    animation: float2 5s ease-in-out infinite;
}
.delay1{
    animation-delay: 1s; 
}
.delay15{
    animation-delay: 1.5s; 
}
.delay2{
    animation-delay: 2s; 
}


@keyframes float-shadow {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}


@keyframes float {
	0% {
	
		transform: translatey(0px);
	}
	50% {
	
		transform: translatey(-20px);
	}
	100% {
		
		transform: translatey(0px);
	}
}


@keyframes float2 {
	0% {
	
		transform: translatey(0px);
	}
	50% {
	
		transform: translatey(-30px);
	}
	100% {
		
		transform: translatey(0px);
	}
}



.card .card-content  .title-plan{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size:25px;
    justify-content: center;
}

 div.price{
    margin-top:0px;
    text-align: center;
    font-size:30px;

}

div.price-tachado{
    margin-top:0px;
    text-align: center;
    font-size:25px;
    text-decoration:line-through;
    color:grey;

}





div.price span{
    font-size:20px;
}
ul.plan-items {
    list-style: none;
    font-family: arial;
    font-size:13px;
    text-align: left;
  }
  
  ul.plan-items li:before {
    content: '✓   ';
    font-size:18px;
    font-weight: bold;;
    text-align: left;
  }  
  .card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating) {
    margin-right: 0px;
    color: #000;
}

/* ---------------------------------- MENU ---------------------------------- */

.menu {
    width: 70px;
   
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    border: solid 12px #000;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.menu>div {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;

}

/* ---------------------------------- WAVEs ---------------------------------- */

#waveeffect {
    z-index: 100;
}

.wave {
    position: absolute;
    bottom: 0;
    background: rgb(255, 242, 18);

    display: inline-block;
    height: 15%;
    width: 10px;
    position: absolute;
    z-index: 5 !important;
    animation-name: dostuff;
    animation-duration: 2.74159s;
    animation-iteration-count: infinite;
    transition-timing-function: ease-in-out;
}

@keyframes dostuff {
    0% {
        height: 15%;
    }

    50% {
        height: 28%;
    }

    100% {
        height: 15%;
    }
}

.onda-top{
    height:30vh; 
    position:relative;
}

.onda-top svg{
    position: absolute;
    bottom:0px;
}
.onda-content{
    height:70vh; width:100vw;
    z-index: 50;
}

.onda-bottom{
    height:30vh; 
    position:relative;
}

.onda-bottom svg{
    position: absolute;
    top:0px;
}


/* ---------------------------- HORIZONTAL SCROLL --------------------------- */

.wrapper {
    transform: rotate(90deg) translateY(-100vh);
    transform-origin: top left;
}

.outer-wrapper {
    width: 100vh;
    height: 100vw;
    transform: rotate(-90deg) translateX(-100vh);
    transform-origin: top left;
    overflow-y: scroll;
    overflow-x: hidden;
    position: absolute;
    scroll-snap-type: y mandatory;
}

.outer-wrapper {

    scrollbar-width: none;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    display: none;
}

.wrapper {
    display: flex;
    flex-direction: row;
    width: 400vw;
}

.contenedorinstagram {
    position:absolute;
     top:0px; 
      width:100vw;
       height: 100vh;
       z-index: 99999;
       
    }
.botoninstagram {
    position: absolute;
    right:20px;
     top:20px; 
     font-size: 40px;
     background-color: black;
     color: white;
     padding-left: 10px;    
     padding-right: 10px;
     border-radius: 10px;
}

.botoninstagram > a {
     color: white;
}

