/**
 * Banner 1 Setup
 ********************/

section.banner-1 {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  max-width: 100%;
  margin-bottom: 75px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--forest2);
  overflow: hidden;
  max-height: 350px;
}
@media (max-width: 990px) {
  section.banner-1 {
    flex-flow: column nowrap;
    align-items: center;
    overflow: auto;
    max-height: 100%;
  }
}

.banner-1 .block-mustard-container {
  flex: 1 1 20%;
  justify-content: center;
  display: flex;
  padding: 35px;
  flex-direction: column;
  margin-left: 1rem;
}
.banner-1 .banner-body {
  flex: 1 1 50%;
  padding: 35px;
}
.banner-1 .banner-image {
  flex: 1 1 30%;
}
@media (max-width: 990px) {
  .banner-1 .block-mustard-container {
    padding-left: 8%;
    padding-right: 8%;
    margin-top: 50px;
  }
  .banner-1 .banner-body {
    padding-left: 8%;
    padding-right: 8%;
  }
  .banner-1 .banner-image {
    width: 100%;
    margin-top: 25px;
  }
}

.banner-1 .banner-image img {
  display: flex;
  margin: 0;
  padding: 0;
  object-fit: cover;
  height: 100%;
  object-position: left;
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 990px) {
  .banner-1 .banner-image img {
    object-position: unset;
    width: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }
}

.banner-1 .block-mustard {
  font-size: var(--p-small);
  font-weight: 700;
  color: var(--forest2);
  background: var(--mustard);
  padding: 25px 35px;
  font-family: var(--font2);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  margin-bottom: 1rem;
}
.banner-1 .banner-body h2 {
  color: var(--mustard);
  line-height: 1;
  font-weight: 400;
  font-size: calc(var(--h2-main) - 10px);
}
.banner-1 .banner-body p {
  color: white;
}
