.hero-main {
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}

.hero-main-layout {
  display: flex;
  gap: 120px;
  margin-top: 68px;
  padding-bottom: 110px;
}

.hero-main-info {
  color: #fff;
}

.hero-main-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-main-heading h1 {
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.hero-main-subtitle {
  color: #fff !important;
  text-align: center;
  font-weight: 600 !important;
  margin: 0;
}

.hero-main-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.hero-main-buttons .text-btn {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.hero-main-buttons .text-btn:hover, 
.hero-main-buttons .text-btn:focus {
  background: #4146554D;
}

.hero-main .text-btn {
  border-radius: 6px;
  border: 0.94px solid #414655;
}

@media all and (min-width:1024px) {
  .hero-main-info {
    width: 40%;
    color: #fff;
  }

  .hero-main-image {
    width: 60%;
  }
}

.align_content_vertically {
  align-items: center;
}

@media all and (max-width:1024px) {
  .hero-main {
    padding-top: 104px !important;
  }
  
  .align_content_vertically {
    align-items: initial;
  }
  
  .reverse-content-mobile {
  flex-direction: column-reverse !important;
  }
  
  .align_content_mobile_to_left .hero-main-description {
    text-align: left !important;
  }
   .align_content_mobile_to_left .hero-main-buttons {
    justify-content: flex-start; !important;
  }

  .hero-main-layout {
    flex-direction: column;
    gap: 48px;
    margin-top: 28px;
    padding-bottom: 48px;
  }

  .hero-main-info {
    text-align: center;
  }

  .hero-main-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media all and (min-width:768px) {
  .hero-main-heading h1 {
    font-size: 58px;
    line-height: 110%;
  }
}