#more {
  display: none;
}

.readMoreBtn {
  color: #fff;
}

.modalTrigger {
    cursor: pointer;
    transition: 0.3s;
  }
.modalTrigger:hover {opacity: 0.7;}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
  }

.modal-content {
    margin: auto;
    display: block;
    width: 70%;
    height: auto;
    max-height: 90%;
  }
.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }
#close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
#close:hover,
#close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

@media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }

.image.palms {
  max-height: 25vh;
  align-self: flex-end;
}


/*********************** ESTILOS PARA LA FORMA RESPONSIVE DE VER EL PROCESO **********************/

.proceso-r-title {
  font-size: 8vw;
}

.proceso-responsive {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin-right: 10%;
  margin-left: 10%;
}

.proc-resp-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.75fr 1fr;
  margin-bottom: 7%;
}

.proceso-r#molino-p1 {
  justify-self: center !important;
}

.proceso-r#macerado-p2 {
  justify-self: center;
}

.proceso-r#lauter-p5 {
  margin-bottom: 0px;
}

.proceso-r#signo-p7 {
  align-self: flex-end;
}

.proceso-r#cooling-p8 {
  margin-bottom: 0px;
}

.proceso-r#filtro-p10 {
  align-self: flex-end;
}

.proceso-r#lauter-p5,
.proceso-r#brewing-p6,
.proceso-r#signo-p7,
.proceso-r#cooling-p8,
.proceso-r#filtro-p10,
.proceso-r#acondicionamiento-p11 {
  max-width: 45%;
}

.proc-resp-2,
.proc-resp-3,
.proc-resp-5 {
  display: flex;
  justify-content: space-around;
  margin-bottom: 7%;
}

.proc-resp-4,
.proc-resp-6 {
  display: flex;
  justify-content: center;
  margin-bottom: 7%;
}

img.proceso {
  max-width: 120%;
}

#lauter-p5, #brewing-p6 {
  max-width: 110%;
}
  

/*********************** ESTILOS CORRESPONDIENTES A LA ANIMACIÓN DEL PROCESO ********************/

.scrollmagic-pin-spacer {
  display: block;
} 
@media only screen and (max-width: 991px) {
  .scrollmagic-pin-spacer {
    display: none !important;
  }  
}

.proceso {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease-out;
}

.proceso.fade-in {
  opacity: 1;
  transform: translateX(0);
}

/* #embarrilado-p12 {
  opacity: 0;
  transform: translateX(-200px);
  transition: all 1s ease-out;
  z-index: 200;
}

#embarrilado-p12 .ride-in {
  opacity: 1;
  transform: translateX(0);
}
 */