.layout-banner {
  position: relative;
  background: var(--elsel-blue-5);
  min-height: 500px;
  z-index: 1;
  padding: 4rem 0 6rem 0;
  background-repeat: no-repeat;
  background-position: right;
}

.layout-banner::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -2;
}

.layout-banner[data-page="about-us"]::after {
  background-image: url("/public/assets/images/banner-image-1.png");
}

.layout-banner[data-page="contact"]::after {
  background-image: url("/public/assets/images/contact-banner-1.png");
}

.layout-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #eaf9ff 0%, rgba(234, 249, 255, 0) 100%);
  width: 50%;
  height: 100%;
  z-index: -1;
}

.layout-banner > .eg-container > .eg-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  width: 50%;
}

.layout-banner > .eg-container > .eg-wrapper > .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.layout-banner .breadcrumb > a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--elsel-grey-6);
  font-size: var(--font-14);
  font-weight: 400;
}

.layout-banner .breadcrumb > a:hover {
  color: var(--elsel-blue);
  text-decoration: underline;
}

.layout-banner .breadcrumb > a::after {
  content: "";
  background: var(--elsel-grey-6);
  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  border-radius: 100%;
}

.layout-banner .breadcrumb > p {
  color: var(--elsel-blue);
  font-size: var(--font-14);
  font-weight: 700;
}

.layout-banner > .eg-container > .eg-wrapper > .description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.layout-banner .description > small {
  color: var(--elsel-grey-3);
  font-size: var(--font-18);
  font-weight: 400;
  letter-spacing: 4.5px;
}

.layout-banner .description > h1 {
  color: var(--elsel-black);
  font-family: "DM Serif Display";
  font-size: var(--font-36);
  font-weight: 400;
  line-height: 1;
}

.layout-banner .description > p {
  color: var(--elsel-grey-7);
  font-size: var(--font-16);
  line-height: var(--line-26);
  font-weight: 400;
}

@media (max-width: 1400px) {
  .layout-banner {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .layout-banner {
    min-height: unset;
  }
  .layout-banner {
    padding: var(--content-spacing);
  }
  .layout-banner .description > small,
  .layout-banner .description > p {
    display: none;
  }
  .layout-banner > .eg-container > .eg-wrapper {
    gap: 1rem;
  }
}
