.banner-blue {
  overflow: hidden;
  background-color: var(--blue);
}

.banner-blue__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-blue__content,
.banner-blue__image {
  max-width: 50%;
  width: 100%;
}

.banner-blue__content {
  background-color: var(--blue);
}

.banner-blue__content--inner {
  max-width: calc(1440px / 2);
  width: 100%;
  margin-left: auto;
  padding: 80px 45px 50px 45px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  justify-content: space-between;
  position: relative;
}

.banner-blue__content-bg-img {
  position: absolute;
  bottom: 0;
  width: 375px;
  height: 375px;
  aspect-ratio: 1/1;
  left: -130px;
  bottom: -77px;
}

.banner-blue__content-bg-img img {
  width: 375px;
  height: 375px;
  display: block;
  object-fit: contain;
}

.banner-blue__content--inner h1,
.banner-blue__content--inner h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 70px;
  line-height: 75px;
  letter-spacing: -1.84px;
  color: var(--white);
  margin: 0;
}

.banner-blue__content--inner p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16.17px;
  line-height: 21.6px;
  letter-spacing: -0.32px;
  margin: 0;
  color: var(--white);
}

.banner-blue__content--bottom-txt {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  text-align: right;
  position: relative;
  padding-top: 30px;
}

.banner-blue__content--bottom-txt::before {
  content: "";
  display: block;
  width: calc(100% + 398px);
  height: 1px;
  position: absolute;
  background-color: var(--border2);
  top: 0;
  left: 0;
}

.banner-blue__image img {
  width: 100%;
  max-height: 656px;
  height: 656px;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ----------------------------------
   RESPONSIVE
---------------------------------- */

/* â‰¤ 1399px */
@media (max-width: 1399px) {
  .banner-blue__content--inner {
    max-width: calc(var(--container-width) / 2);
    padding: 70px calc(var(--bs-gutter-x) / 2) 45px calc(var(--bs-gutter-x) / 2);
  }
  .banner-blue__content--inner h1,
  .banner-blue__content--inner h2 {
    font-size: 60px;
    line-height: 68px;
  }

  .banner-blue__image img {
    max-height: 600px;
  }
}

/* â‰¤ 1199px */
@media (max-width: 1199px) {
  .banner-blue__content--inner {
    max-width: calc(var(--container-width) / 2);
    padding: 60px calc(var(--bs-gutter-x) / 2) 40px calc(var(--bs-gutter-x) / 2);
    gap: 30px;
  }
  .banner-blue__content--inner h1,
  .banner-blue__content--inner h2 {
    font-size: 50px;
    line-height: 58px;
  }
  .banner-blue__content-bg-img {
    width: 300px;
    height: 300px;
    left: -100px;
    bottom: -60px;
  }

  .banner-blue__image img {
    max-height: 520px;
  }

  .banner-blue__content-bg-img {
    width: 300px;
    height: 300px;
    left: -100px;
    bottom: -60px;
  }

  .banner-blue__content-bg-img img {
    width: 300px;
    height: 300px;
  }
}

/* â‰¤ 991px */
@media (max-width: 991px) {
  .banner-blue__wrapper {
    flex-direction: column;
  }
  .banner-blue__content,
  .banner-blue__image {
    max-width: 100%;
  }
  .banner-blue__content--inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 50px calc(var(--bs-gutter-x) / 2) 35px calc(var(--bs-gutter-x) / 2);
    text-align: center;
  }
  .banner-blue__content--bottom-txt {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }
  .banner-blue__content--bottom-txt::before {
    width: 100%;
  }

  .banner-blue__image img {
    max-height: 450px;
    height: 450px;
  }

  /* .banner-blue__content-bg-img {
    display: none; 
  } */
  .banner-blue__content-bg-img {
    width: 220px;
    height: 220px;
    left: -60px;
    bottom: -40px;
  }

  .banner-blue__content-bg-img img {
    width: 220px;
    height: 220px;
  }
}

/* â‰¤ 767px */
@media (max-width: 767px) {
  .banner-blue__content--inner {
    padding: 40px calc(var(--bs-gutter-x) / 2);
    gap: 25px;
  }
  .banner-blue__content--inner h1,
  .banner-blue__content--inner h2 {
    font-size: 38px;
    line-height: 46px;
  }
  .banner-blue__content--inner p {
    font-size: 15px;
    line-height: 21px;
  }

  .banner-blue__image img {
    max-height: 380px;
    height: 380px;
  }

  .banner-blue__content-bg-img {
    width: 180px;
    height: 180px;
    left: -40px;
    bottom: -30px;
    display: none;
  }

  .banner-blue__content-bg-img img {
    width: 180px;
    height: 180px;
  }
}

/* â‰¤ 575px */
@media (max-width: 575px) {
  .banner-blue__content--inner {
    padding: 30px calc(var(--bs-gutter-x) / 2);
  }
  .banner-blue__content--inner h1,
  .banner-blue__content--inner h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .banner-blue__content--bottom-txt {
    font-size: 14px;
  }

  .banner-blue__image img {
    max-height: 300px;
    height: 300px;
  }

  .banner-blue__content-bg-img {
    width: 140px;
    height: 140px;
    left: -20px;
    bottom: -20px;
  }

  .banner-blue__content-bg-img img {
    width: 140px;
    height: 140px;
  }
}