* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .hero_area {
    position: relative;
  }
  .hero_image img {
    width: 100%;
    height: 1024px;
    /* object-fit: cover; */
    position: relative;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1024px;
    background-color: rgba(0, 0, 0, 0.5);
  }

  /* header ends */
  .hero_content {
    padding: 0 80px 56px 80px;
  }
  .hero_info {
    display: flex;
    align-items: last baseline;
  }
  .hero_info h1 {
    font-size: 100px;
    font-weight: 400;
    color: #fff;
    line-height: 100px;
  }
  .hero_info h1 span {
    font-weight: 700;
    color: #ffff;
  }
  .hero_info img {
    border: 2px solid #fff;
    padding: 24px;
    border-radius: 100px;
  }

  .gallery_section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #fff;
    padding: 8px;
    border-radius: 12px;
  }
  .gallery_section img {
    width: 196px;
    height: 140px;
    border-radius: 12px;
  }
  /* hero section ends */
}
