
.hero {
  width: 100%;
  min-height: 86vh;
  position: relative;
  padding: 0px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
    color: #2780c4;
    margin: 0;
    font-size: 52px;
    font-weight: 700;

    }

.hero h2 {
    color: #b2d490;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 5vh;
    }

.hero hr {
  color: #b2d490;
  width: 30%;
  margin-top:12px !important;
  margin-bottom:12px !important;
}

.hero p {
    color: black;
    margin: 10px 0 0 0;
    font-size: 22px;
    width:60%
    }

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 18px;
  }
}

.partner-logos {
  margin-top: 35px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.partner-logos img {
  position: static;
  width: auto;
  max-width: 100%;
  height: 150px;
  object-fit: contain;
}


hr {
  margin: 0px !important;
  padding: 0px !important;
}