.header-container {
  padding: 0 !important;
  background-color: white;
  color: white;
  position: relative;
  margin: 0 0 3%;
}

.header-img {
  overflow: hidden;
  min-height: 720px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@supports(object-fit: contain){
  .container img{
    width: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

.header-above {
  height: 100%;
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 12.5%;
  margin-right: 50%;
}

.header-title {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  line-height: 54px;
  letter-spacing: -0.03em;
  text-align: left;
  padding-right: 5%;
}

.header-btn-container {
  position: absolute;
  left: 20%;
  transform: translate(-20%);
  top: 50%;
  z-index: 10;
}

.header-btn {
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 1em 2em;
  border-radius: 60px;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.header-btn-arrow {
  color: var(--pes-purple);
  padding-right: 1rem;
}

.breadcrumb {
  flex-wrap: nowrap !important;
}

.breadcrumb-item,.breadcrumb-item a, .breadcrumb-item.active {
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  text-align: left;
  color: #F2F9F7 !important;
  --bs-breadcrumb-divider-color: var(--pes-green);
}

.breadcrumb-item.active {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 992px) {
  .header-title {
    text-align: left;
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -0.03em;
  }

  .header-title::after {
    float: none;
  }

  .header-img {
    height: 100%;
    width: auto;
    min-height: 400px;
  }

  .header-text {
    padding-top: 1em;
    text-align: center;
    width: 60% !important;
    border-left: none;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -0.03em;
    color: #F2F9F7;
  }

  .header-container {
    margin-bottom: 10%;
  }
}

@media screen and (max-width: 600px){
  .header-above {
    width: 90%;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
    margin-right: 5%;
  }

  .header-img {
    max-height: 530px;
    min-height: 320px;
  }
}

