#banner {
  width: 100%;
  height: 49.25rem;
  position: relative;
}

#banner > .banner__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

#banner > .banner__content {
  width: 39rem;
  padding: 2.25rem 2.88rem;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  background: var(--color-palette-white-background);
  position: absolute;
  bottom: 4.94rem;
  left: 6.25rem;
  z-index: 1;
}

#banner > .banner__content > .heading {
  color: var(--Text-Text-Oxford-Blue-100---Body);
  font-size: var(--font-size-H1);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

#banner > .banner__content > .sub__heading {
  color: var(--text-text-oxford-blue-54);
  font-size: var(--font-size-caption);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

#banner > .banner__content > .desc {
  color: var(--Text-Text-Oxford-Blue-87-body-text-1);
  font-size: var(--font-size-sub1);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.03125rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(9, 44, 76, 0.16);
  margin-bottom: 1.75rem;
}

#banner > .banner__content > .title {
  color: var(--Text-Text-Oxford-Blue-87-body-text-1);
  font-size: var(--font-size-H5);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1rem;
}

#banner > .banner__content > .social {
  display: flex;
  align-items: start;
}

#banner > .banner__content > .social > a {
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  background: var(--color-soft-light-gray-blue);
  position: relative;
}

#banner > .banner__content > .social > a:first-child {
  margin-right: 1rem;
}

#banner > .banner__content > .social > a > img {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

@media screen and (max-width: 639.9px) {
  #banner {
    height: auto;
  }

  #banner > .banner__img {
    position: relative;
    height: 27.44rem;
  }

  #banner > .banner__content {
    width: 100%;
    position: relative;
    left: 0;
    bottom: 1rem;
    padding: 2.25rem 1.25rem 1.25rem;
    border-radius: 0.625rem 0.625rem 0rem 0rem;
  }

  #banner > .banner__content > .sub__heading {
    margin-bottom: 1.5rem;
  }
}
