body {
  background-color: #fff;
  font-family: 'Raleway', sans-serif;
}
h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700; /* Bold version */
}
h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500; /* Bold version */
    font-size: 6em;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 800px;
}
h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500; /* Bold version */
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 800px;
}
p {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  max-width: 800px;
  line-height: 1.8em;
}
.h2-black{
  color: #fff;
  margin-top: 100px;
  margin-left: 5%;
}
.container-paddingMW{
  padding: 100px 20px 100px 20px;
  padding-left: 5%;
  text-align: center;
}
.col-contactMW{
  text-align: center;
  padding-top: 100px;
  padding-left: 5%;
}
.bold-text{
  font-weight: 700;
}
.white-text{
  color: #fff;
  margin-left: 5%;
}
.yellow-text{
  color:#ffd400;
  margin-left: 5%;
}
.border-left{
  border-left: 3px solid #ffd400;
  padding-left: 10px;
}
/* HERO ANIMATED*/
#mwHero{
  background-color: #ffd400;
  height: 100vh;
}
path {
  transform-box: fill-box;
  transform-origin: bottom; 
}
.conteiner-logo{
  text-align: center;
}
.linea-animadaA, .linea-animadaB, .linea-proA, .linea-proB {
  animation: 
    dibujar 0.6s ease-out forwards,
    rebote 0.6s ease-in-out 5 alternate forwards;
}
.linea-animadaA { animation-duration: 1s, 0.45s; }
.linea-animadaB { animation-duration: 0.8s, 0.55s; }
.linea-proA     { animation-duration: 0.7s, 0.4s; }
.linea-proB     { animation-duration: 0.9s, 0.5s; }

@keyframes dibujar {
  to { stroke-dashoffset: 0; }
}

@keyframes rebote {
  from {
    transform: scaleY(0.2) translateY(10px);
    opacity: 0.4;
  }
  to {
    transform: scaleY(1) translateY(0);
    opacity: 1;
  }
}

.linea-typo {
    stroke-dasharray: 180;
    stroke-dashoffset: -180;
    animation: dibujarlogo 2s ease-out forwards;
  }

  @keyframes dibujarlogo {
    to {
      stroke-dashoffset: 0;
    }
  }
.growing-line {
      transform-origin: 21.5px 333.5px;
      animation: growVertical 1.5s ease-out 1s both;
    }

    @keyframes growVertical {
      from {
        transform: scaleY(0);
        opacity: 0;
      }
      to {
        transform: scaleY(1);
        opacity: 1;
      }
    }

.fade-path {
      opacity: 0;
      animation: fadeIn 0.5s ease-in forwards;
      animation-delay: 2.8s; 
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
/*¿Quienes somos?*/

.text-spaceMw{
  padding: 100px 40px 60px 40px;
}
/*Main container*/

#plopBig{
  margin: auto;
  max-width: 300px;
  min-height: 1000px;
  }
  #plop-small{
  max-width: 200px;
  margin-top: -80px;
  height: 550px;
  }
  .plops-style{
  background-color: #ffd400;
  padding: 20px 20px 20px 20px;
  text-align: center;
  border-radius: 1000px; 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), inset 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }
.rotating-vinil{
  position: sticky;
  top: 10%; 
  transform: translateY(-10%);
  display: block;
  margin: 0 auto;

  /* Animation Vinil */
  animation: rotate-on-scroll linear;
  animation-timeline: scroll(); /* Links animation to the scroll progress */
}

@keyframes rotate-on-scroll {
  from {
    transform: translateY(-10%) rotate(0deg);
  }
  to {
    transform: translateY(-10%) rotate(360deg);
  }
}
}
#test{
  background-color: red;
  
  }
/* Black container */

.container-black{
  background-color: #000;
  width: 100%;
  padding-bottom: 100px;
}
.img-sticky {
  position: sticky;
  top: 0;
}
.lord-iconMW{
  text-align: center;
  margin-top: 100px;
}
/* Pop-icons */
.pop-in-elementMw {
  opacity: 0;
  transform: scale(0.1);
  transition: opacity 0.5s, transform 0.5s;
}

.is-visibleMW {
  animation: pop-in 0.5s ease-out forwards; 
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.rotate-and-move-on-scroll {
  /* Mantenemos la conexión con el scroll */
  animation: rotate-and-slide linear;
  animation-timeline: view();
  animation-range: entry 0% exit 100%;
  margin-right: -90px;
}

@keyframes rotate-and-slide {
  from {
    /* Estado inicial */
    transform: rotate(0deg) translateX(50px);
  }
  to {
    transform: rotate(-25deg) translateX(70px);
  }
}
/*Contact form*/

#btn-submitMW{
width: 100%;
color: #ffd400;
background-color: #000;
}