@media screen and (max-width: 768px) {
  .about_us_container {
    flex-direction: column;
    gap: 2rem;
  }

  .about_hero {
    height: 30vh;
  }

  .about_us_img {
    width: 100%;
    height: 100%;
    height: 20vh;
    display: none;
  }

  .about_hero_title {
    margin: 0;
    font-family: oswald, poppins, arial;
    font-size: 3rem;
  }

  .about_us_para {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.3;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about_us_container {
    flex-direction: column;
    gap: 2rem;
  }

  .about_hero {
    height: 30vh;
  }

  .about_us_img {
    width: 100%;
    height: 100%;
    height: 20vh;
    display: none;
  }

  .about_hero_title {
    margin: 0;
    font-family: oswald, poppins, arial;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .about_hero {
    height: 30vh;
  }

  .about_us_img {
    flex: 0.5;
    display: none;
  }

  .about_hero_title {
    margin: 0;
    font-family: oswald, poppins, arial;
    font-size: 3rem;
  }
}

@media screen and (min-width: 1441px) {
  /* .about_us_container {
    
  } */

  .about_hero {
    height: 30vh;
  }

  .about_us_img {
    flex: 0.5;
    height: 100vh;
    display: none;
  }

  .about_us_img_cont{
    background-image: url('/assets/gas-863172_1920.jpg');
    flex: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1d1d1d6a;
    background-blend-mode: overlay;
  }

  .about_us_content{
    flex: 1;
  }

  .about_hero_title {
    margin: 0;
    font-family: oswald, poppins, arial;
    font-size: 3rem;
  }
  
}