
.container {
    max-width: 100%;
    margin: 0 auto;

  }
  .hero {
    position: relative;
    
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.7);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
  }
  .vacancies-card {
     
    
      background-color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

 
  .vacancies-card h2 {
    font-size: 2rem;
    color: #2e7d32;
   
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  .vacancies-card h4{
    text-align: center;
    margin-bottom: 40px;
  }
 
  
  .vacancies-card p{
    padding: 25px 45px;
    padding-top: 15px;
    text-align: center;

  }
  .gullery-vacancies{
    display: flex;
        gap: 60px;
        justify-content: center;
        flex-direction: row;
        align-items: center;
        padding: 25px;
  }
  .gullery-vacancies img{
    width: 350px;
    height: 350px;
    border-radius: 25px;
    box-shadow: -9px 12px 5px 5px green;
  }
 
  @media (max-width: 768px) {
    .gullery-vacancies{
      flex-direction: column;
    }
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero p {
      font-size: 1.2rem;
    }
    .vacancies-card h2 {
      font-size: 1.5rem;
     
    }
    .gullery-vacancies img{
      width: 300px;
      height: 300px;
    }
  
  }
