@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

body {
  font-family: "montserrat", "montserrat" !important;
}

.headline {
  left: 130px;
} 
.clipped {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 650px){
  .headline {
    left: 20px;
  } 
  .clipped {
    clip-path: none;
    max-height: 300px !important;
  }
}

.vision{
    background: #9E005D !important;
    margin-top: -50px;
}

.vision h1{
    text-align: center;
    margin: 50px auto 120px !important;
    color: #fff;
}

.main{
    width: 100%;
    min-height: 389px;
    text-align: center;
    cursor: pointer;
}
.missions{
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
}


.heroes .container {
    height: 600px;
    padding: 20px;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .heroes .container img {
    width: 50%;
    height: 50%;
  }
.hero-text {
    width: 80%;
  }
  
  .hero-text h1 {
    font-size: 3.3rem;
    font: "montserrat";
    margin-bottom: 12px;
    color: #9E005D;
  }
  
  .hero-text p {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .heroes button {
    padding: 1em 2.1em 1.1em;
    border-radius: 20px;
    margin: 8px;
    border: none;
    background-color: #9E005D;
    color: #fff;
    font-weight: 800;
    font-size: 0.85em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0em -0.2rem 0em #ccc inset;
    transition: color 3s ease-in-out;
  }
  
  .heroes button:hover {
    background-color: transparent;
    color: #9E005D;
    border: 3px solid #29ABE2;
    cursor: pointer;
  }
  
  /* Media queries */
  
  @media (max-width: 884px) {
    .heroes .container {
      margin-top: 10px;
      flex-direction: column;
      max-height: 50vh;
      padding-bottom: 30px;
    }
    .hero-text {
      width: 100%;
      text-align: center;
    }
    .hero-text h1 {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 678px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  }
 