.header-section {
  padding-top: 92px;
}

.header-section__description {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.header-section__info-box {
  background-color: var(--color-container);
  padding: 49px 68px;
  border-radius: 30px;
  margin-top: 42px;
}

.header-section__image-wrapper {
  overflow: hidden;
  max-width: 540px;
}

.header-section__image {
  width: 100%;
}


.header-section__button-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}

.header-section__button {
  padding: 15px 44px;
}

@media(max-width: 1199px) {
  .header-section__description {
    gap: 32px;
  }

  .header-section {
    padding-top: 66px;
  }

  .header-section__title {
    display: flex;
    flex-direction: column;
  }

  .header-section__button {
    padding: 15px 16px;
  }
}

@media(max-width: 991px) {
  .header-section__button {
    padding: 15px;
  }
}

@media(max-width: 767px) {
  .header-section__button-wrapper {
    flex-direction: column;
  }

  .header-section {
    padding-top: 58px;
  }

  .header-section__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .header-section__image-wrapper {
    order: 1;
    justify-content: flex-end;
  }

  .header-section__image {
    width: 100%;
  }

  .header-section__description {
    order: 2;
    gap: 16px;
  }

  .header-section__button {
    width: 100%;
    text-align: center;
  }

  .header-section__button-wrapper {
    margin-top: 8px;
  }

}