.home-hero {
  padding: 128px 0;
  background-color: #00007B;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: normal;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: normal;
  overflow: hidden;
  position: relative;
}

.home-hero::before {
  display: flex;
  flex-direction: column;
  content: "";
  background-color: transparent;
  background-image: linear-gradient(90deg, #00007B 33%, #00007b00 61%);
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  inset: 0;
  position: absolute;
}

.home-hero__inner{
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  margin: 0 auto;
  max-width: 1280px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  z-index: 1;
}

/* .home-hero__content {
  width: 43%;
} */

.home-hero__container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-hero__heading {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  padding: 0;
}

.home-hero__paragraph-text {
  max-width: 100%;
  width: 550px;
}

.home-hero__paragraph-text-container {
  height: 100%
    display: flex;
  flex-direction: column;
}

.home-hero__paragraph {
  font-size: 20px;
  font-weight: 300;
  font-family: 'Lexend', sans-serif;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  padding: 0;
}

.home-hero__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.home-hero__btn {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  padding: 0px 28px;
  border: 1px solid #0000FF;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
  color: #ffffff;
  height: 64px;
}

.home-hero__btn-primary {
  background-color: #0000FF;
  border: 1px solid #0000FF;
}

.home-hero__btn-primary:hover {
  background-color: #0000E8;
  border-color: #0000E8;
  color: #ffffff;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  font-size: 20px;
}

.home-hero__btn-secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
}

.home-hero__btn-secondary:hover {
  background-color: #fff;
  border-color: #fff;
  color: #0000FF;
  font-weight: 500;
  line-height: normal;
  font-size: 20px;
  text-decoration: none;
}

@media (max-width: 1780px) {
  .home-hero {
    padding: 96px 48px;
/*     min-height: 512.40px; */
  }

  .home-hero__inner {
    gap: 16px;
  }
  .home-hero__heading {
    font-size: 48px;
  }
  .home-hero__paragraph {
    font-size: 18px;
  }

  .home-hero__btn {
    font-size: 18px;
    padding: 0px 20px;
    height: 56px;
  }
}

@media (max-width: 1200px) { 
  .home-hero__content { 
    width: 50%;
  } 
}

@media (max-width: 1024px) {
  .home-hero__content {
    margin-left: 0;
  }

  .home-hero__paragraph {
    line-height: 1.5;
    max-width: 400px;
  }

  .home-hero__buttons {
    margin-left: 0;
  }
}

@media (max-width: 900px){
  .home-hero::before {
    background-image: linear-gradient(90deg, #00007B 53%, #00007b00 80%);
  }
}

@media (max-width: 767px) {
  .home-hero {
    background-image: none !important;
    background-color: #00007B !important;
    height: auto;
/*     min-height: 364px; */
    padding: 64px 32px;
  }

  .home-hero__content {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .home-hero__heading {
    font-size: 40px;
  }
  .home-hero__inner {
    gap: 12px;
  }
  .home-hero__paragraph {
    font-size: 16px;
    font-weight: 300;
  }

  .home-hero__buttons {
    align-items: flex-start;
    gap: 10px;
  }
}
