#sect-banner .sect_content {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(32px, 3.2vw, 60px) clamp(75px, 7.5vw, 125px);
  height: clamp(278px, 27.8vw, 540px);
  background-color: var(--bg-color, #ADD1FF);
  border-radius: clamp(15px, 1.5vw, 25px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.2s ease-in-out;
}
#sect-banner .sect_content .banner_text {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 50px;
  z-index: 3;
}
#sect-banner .sect_content .banner_text .banner--title {
  font-size: clamp(40px, 4vw, 80px);
  font-weight: 700;
  text-transform: uppercase;
}
#sect-banner .sect_content .banner_text .banner--desc {
  font-size: clamp(16px, 1.6vw, 32px);
  font-weight: 400;
}
#sect-banner .sect_content .banner--line-mobile {
  display: none;
  position: absolute;
  top: calc(150px - 10vw);
  left: 0;
  z-index: 1;
  width: 100%;
}
#sect-banner .sect_content .btn--link:hover {
  background-color: #fff;
  color: #74B0FC;
}
#sect-banner .sect_content::before, #sect-banner .sect_content::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  right: 0;
  bottom: -5px;
  transition: all 0.2s ease-in-out;
}
#sect-banner .sect_content::before {
  background-image: var(--line-1, url("/upload/img/banner/default/line1_1.svg"));
  width: clamp(486px, 48.6vw, 952px);
  height: clamp(202px, 20.2vw, 402px);
  z-index: 1;
  transition-duration: 0.4s;
}
#sect-banner .sect_content::after {
  background-image: var(--line-2, url("/upload/img/banner/default/line2_1.svg"));
  width: clamp(311px, 31.1vw, 614px);
  height: clamp(129px, 12.9vw, 261px);
  z-index: 2;
}
#sect-banner .sect_content:hover {
  background-color: var(--bg-color-hover, #91BAEE);
}
#sect-banner .sect_content:hover .banner--link {
  background-color: #325F96;
}
#sect-banner .sect_content:hover::before {
  transform: scale(1.1);
  transform-origin: bottom right;
}
#sect-banner .sect_content:hover::after {
  transform: scale(1.1);
  transform-origin: bottom right;
}
@media (max-width: 1200px) {
  #sect-banner .sect_content .banner_text .banner--title {
    font-size: clamp(36px, 3vw, 80px);
  }
}
@media (max-width: 768px) {
  #sect-banner .sect_content {
    height: auto;
    padding: 41px 27px;
    gap: 36px;
  }
  #sect-banner .sect_content:before, #sect-banner .sect_content:after {
    width: 425px;
  }
  #sect-banner .sect_content:before {
    bottom: 190px;
  }
  #sect-banner .sect_content:after {
    bottom: 140px;
  }
  #sect-banner .sect_content .banner_text {
    grid-template-columns: 1fr;
    gap: 50vw;
  }
  #sect-banner .sect_content .banner_text .banner--title {
    font-size: 30px;
  }
  #sect-banner .sect_content .banner_text .banner--desc {
    font-size: 14px;
    text-shadow: 0 0 1px var(--bg-color);
  }
  #sect-banner .sect_content .banner--line-mobile {
    display: block;
  }
  #sect-banner .sect_content .box-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  #sect-banner .sect_content .btn--link {
    background-color: #fff;
    color: var(--bg-color);
    font-size: 13px;
    height: auto;
    align-self: flex-end;
  }
  #sect-banner .sect_content::before, #sect-banner .sect_content::after {
    display: none;
  }
}