@charset "UTF-8";
@layer reset, base, page, custom;
:root {
  --l-H-hero: 580px;
  --l-header: 80px;
  --l-header-: -80px;
  --l-header--mobile: 56px;
  --l-header--mobile-: -56px;
  --l-services-logo: 44px;
  --l-btnH: 36px;
  --l-h-sec-footer: 150px;
  --c-text: #535173;
  --c-heading: #1e1e1e;
  --c-nav: #494949;
  --c-brand-text: #8b8bac;
  --c-primary: #ff8851;
  --c-secondary: #1e3659;
  --c-hightlight: #ec4e00;
  --c-primary-start: #f0da98;
  --c-primary-stop: #cfab3b;
  --c-secondary-start: #ffdc23;
  --c-secondary-stop: #ffe972;
  --f-services-title: 18px;
  --f-services-title-lh: 20px;
  --f-services-title--ch: 13px;
  --f-services-title--ch-lh: 16px;
  --z-nav: 10;
  --z-hero: 8;
  --z-main: 9;
  --c-sdg1: #c74140;
  --c-sdg2: #cfa94d;
  --c-sdg3: #6b9e47;
  --c-sdg4: #aa3433;
  --c-sdg5: #df5330;
  --c-sdg6: #71b8e0;
  --c-sdg7: #edc843;
  --c-sdg8: #8d2c44;
  --c-sdg9: #df7538;
  --c-sdg10: #bf3767;
  --c-sdg11: #e6a441;
  --c-sdg12: #b28f40;
  --c-sdg13: #567c4b;
  --c-sdg14: #5794d5;
  --c-sdg15: #7fbc45;
  --c-sdg16: #3d669a;
  --c-sdg17: #2f4768;
  --c-zdg1: #a47903;
  --c-zdg2: #be9115;
  --c-zdg3: #d7aa2d;
}

:root {
  --l-inner: 1024px;
}

@keyframes slide-f-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-top {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-up-20 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@scope (.p-home) {
  padding-top: 0 !important;
  .s-wrapper {
    padding-top: 80px;
    padding-bottom: 0 !important;
  }
  @media only screen and (max-width: 768px) {
    .s-wrapper {
      padding-top: 56px;
    }
  }
  .section {
    position: relative;
  }
  .section .l-inner {
    padding-block: 100px;
  }
  @media only screen and (max-width: 551px) {
    .section .l-inner {
      padding-block: 50px;
    }
  }
}
.p-home {
  --l-H-hero: 710px;
}

@scope (.hero) {
  :scope {
    --l-H-hero: calc(570px + 80px);
    place-content: center;
    display: flex;
    width: 100%;
    overflow-x: clip;
    position: relative;
    background-size: cover;
    background-position: center bottom;
    margin-top: var(--l-header);
    z-index: 0;
  }
  :scope::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 0 0 0;
  }
  .l-inner {
    display: flex;
    flex-direction: column;
    width: min(100%, 1200px);
    height: 100%;
    z-index: 5;
    align-items: center;
    justify-content: center;
    padding-top: var(--l-header);
    position: relative;
  }
  .l-inner::before {
    content: "";
    display: block;
    width: 130px;
    height: 130px;
    position: absolute;
    background: url(../images/ic_bird_1.webp) no-repeat right bottom/contain;
    right: -30px;
    bottom: -30px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--l-header);
    color: #fff;
    gap: 15px;
  }
  .hero__title {
    font-size: 45px;
    font-weight: 300;
  }
  .hero__subtitle {
    font-size: 17px;
  }
}
@scope (.section-news) {
  :scope {
    position: relative;
    padding: 0 30px 100px;
    background: url(../images/news_bg.webp) no-repeat center bottom/cover;
  }
  :scope::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 70px;
    bottom: -3px;
    right: 30px;
    z-index: 3;
    background: url(../images/ic_tree.webp) no-repeat center bottom/contain;
  }
  :scope::after {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    z-index: 2;
  }
  :scope .sec-title h3 {
    font-size: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    padding-bottom: 35px;
  }
  :scope .sec-title h3::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/ic_star.webp) no-repeat center center/contain;
  }
  :scope .sec-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(83, 81, 115, 0.25);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    transform: translateY(-55px);
    border: 3px solid rgba(83, 81, 115, 0.07);
    position: relative;
    z-index: 3;
  }
  :scope .sec-inner::after {
    content: "";
    position: absolute;
    height: 100%;
    background: url(../images/ic_plane.webp) no-repeat center bottom/contain;
    bottom: -30px;
    right: 55px;
    width: 75px;
    height: 50px;
    z-index: 0;
    pointer-events: none;
  }
  :scope .section-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }
  @media only screen and (max-width: 551px) {
    :scope .section-footer {
      justify-content: flex-start;
    }
  }
  .news-item__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    gap: 25px 50px;
    z-index: 3;
  }
  @media only screen and (max-width: 860px) {
    .news-item__wrapper {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .news-item {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid rgba(83, 81, 115, 0.15);
    padding-bottom: 15px;
    gap: 10px;
  }
  .news-item > a {
    display: inline-flex;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(83, 81, 115, 0.25);
    background: url(../images/default_cover.png) no-repeat center/cover;
  }
  @media only screen and (max-width: 678px) {
    .news-item {
      flex-direction: column;
      gap: 15px;
    }
  }
  .news-item__image {
    width: min(240px, 100%);
    height: auto;
    aspect-ratio: 3/2;
    transition: box-shadow 300ms, transform 300ms;
  }
  .news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news-item__image:hover {
    box-shadow: 0 5px 15px rgba(83, 81, 115, 0.3);
    transform: translateY(-2px);
  }
  .news-item__content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
  }
  .news-item__date {
    color: #535173;
    font-size: 14px;
  }
  .news-item__date span {
    padding-right: 5px;
  }
  .news-item__tags .tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    list-style-type: none;
  }
  .news-item__tags .tags .list-inline-item a {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 13px;
    color: #fff;
    background-color: #2a2a2a;
    text-shadow: 0 1px 3px rgba(83, 81, 115, 0.35);
  }
  .news-item__tags .tags .list-inline-item.tag-23 a {
    background-color: #638ee3;
  }
  .news-item__tags .tags .list-inline-item.tag-24 a {
    background-color: #9278df;
  }
  .news-item__tags .tags .list-inline-item.tag-25 a {
    background-color: #f4c700;
  }
  .news-item__tags .tags .list-inline-item.tag-26 a {
    background-color: #39d59e;
  }
  .news-item__tags .tags .list-inline-item.tag-27 a {
    background-color: #d77a3b;
  }
  .news-item__title {
    color: #535173;
    font-size: 18px;
    line-height: 26px;
    transition: color 300ms;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制最多 2 行 */
    overflow: hidden;
  }
  .news-item__title:hover {
    color: #5d50ce;
  }
}
@scope (.section-member) {
  :scope {
    min-height: 330px;
    background: #cacaca;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-bottom: 20px;
  }
  .marquee__inner {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
  }
  .marquee__inner span {
    display: inline-block;
    padding: 0 35px;
    font-size: 96px;
    line-height: 1;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
  }
  @media only screen and (max-width: 1024px) {
    .marquee__inner span {
      font-size: 50px;
      padding: 0 25px;
    }
  }
  @media only screen and (max-width: 678px) {
    .marquee__inner span {
      font-size: 35px;
      padding: 0 15px;
    }
  }
  @media only screen and (max-width: 375px) {
    .marquee__inner span {
      font-size: 25px;
      padding: 0 5px;
    }
  }
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}
#journey {
  max-width: 1280px;
  padding: 115px 30px 215px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 678px) {
  #journey {
    padding: 95px 8px 230px;
  }
}
#journey::before {
  content: "";
  position: absolute;
  height: 100%;
  background: url(../images/ic_mountain_2.webp) no-repeat center bottom/contain;
  bottom: 0;
  left: -70px;
  right: -70px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}
#journey::after {
  content: "";
  position: absolute;
  height: 100%;
  background: url(../images/ic_windliongod.webp) no-repeat center bottom/contain;
  bottom: 0;
  left: 35px;
  width: 200px;
  height: 200px;
  z-index: 0;
  pointer-events: none;
}
#journey .journey__filter {
  max-width: 1200px;
  margin: 0 auto;
  padding: 55px 7px 7px;
  position: relative;
}
#journey .journey__filter::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  top: -85px;
  left: -30px;
  background: url(../images/ic_bird_2.webp) no-repeat center center/contain;
}
#journey .journey__filter .filter-type .journey__tab-item.active {
  border-color: #79a8ee;
  background-color: rgba(121, 168, 238, 0.15);
  color: #136aec;
}
#journey .journey__filter .filter-township .journey__tab-item.active {
  border-color: #ebd057;
  background-color: rgba(235, 208, 87, 0.15);
  color: #eca100;
}
#journey .journey__tabs {
  padding-bottom: 35px;
}
#journey .journey__tabs h3 {
  padding-bottom: 15px;
  font-size: 22px;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}
#journey .journey__tabs h3::before {
  content: "";
  width: 25px;
  height: 25px;
}
#journey .journey__tabs.filter-type h3::before {
  background: url(../images/ic_tour_1.png) no-repeat center center/contain;
}
#journey .journey__tabs.filter-township h3::before {
  background: url(../images/ic_map_1.png) no-repeat center center/contain;
}
#journey .journey__sec-title {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  padding-bottom: 35px;
}
#journey .journey__sec-title::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/ic_km_house.png) no-repeat center center/contain;
}
#journey .journey__sec-title::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  background: url(../images/ic_bird_2.webp) no-repeat center/contain;
  left: -30px;
  top: 0;
  z-index: 5;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  #journey .journey__sec-title::after {
    width: 95px;
    height: 95px;
  }
}
#journey .journey__tabs-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
@media only screen and (max-width: 678px) {
  #journey .journey__tabs-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
#journey .journey__tab-item {
  text-align: center;
  padding: 10px;
  border-radius: 7px;
  border: 1px solid rgba(83, 81, 115, 0.15);
  font-weight: 500;
}
#journey .journey__empty {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0;
  color: #000;
}
#journey .journey__empty.is-hide {
  display: none;
}
#journey .journey__wrapper {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  margin: 0 auto;
  gap: 55px 10px;
  position: relative;
  z-index: 5;
}
#journey .journey__link {
  text-decoration: none;
}
#journey .journey__link:hover .journey__item {
  box-shadow: 0 7px 19px rgba(119, 119, 119, 0.15);
  background-color: rgba(255, 255, 255, 0.75);
}
#journey .journey__link:hover .journey__cover {
  transform: translate(0, -3px);
}
#journey .journey__link:hover .journey__img.shadow {
  opacity: 0.5;
}
#journey .journey__link:hover .journey__img img {
  transform: scale(1.05);
}
#journey .journey__item {
  width: 100%;
  padding: 9px 7px 13px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 13px;
  transition: box-shadow 300ms, background-color 300ms;
  box-shadow: 0 0px 10px rgba(119, 119, 119, 0);
}
#journey .journey__cover {
  position: relative;
  transition: box-shadow 300ms, transform 300ms;
  background: url(../images/default_cover.png) no-repeat center/cover;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 2/1.1;
}
#journey .journey__cover::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  border-radius: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
  z-index: 3;
}
#journey .journey__township {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 6;
  padding: 3px 9px;
  color: #fff;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  text-shadow: 0 1px 3px rgba(119, 119, 119, 0.5);
  padding-left: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#journey .journey__township::before {
  content: "";
  position: absolute;
  left: 5px;
  width: 17px;
  height: 17px;
  background: url(../images/ic_map_w.png) no-repeat center center/contain;
}
#journey .journey__img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 10px;
}
#journey .journey__img img {
  aspect-ratio: 2/1.1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 300ms;
}
#journey .journey__img.shadow {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 0;
  filter: blur(7px);
  opacity: 0.15;
  transition: opacity 300ms;
}
#journey .journey__content {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#journey .journey__title {
  color: #535173;
  font-size: 18px;
  font-weight: 500;
}
#journey .journey__location {
  color: #8b8bac;
  font-size: 16px;
  position: relative;
  padding-left: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#journey .journey__location::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../images/ic_store_2.png) no-repeat center center/contain;
}
#journey .journey__detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  padding-top: 3px;
}
#journey .journey__type .field-value span {
  display: inline-block;
  padding: 5px 7px;
  color: #3e82f1;
  font-size: 14px;
  border-radius: 5px;
  display: inline-block;
  background-color: rgba(62, 130, 241, 0.15);
}
#journey .journey__duration {
  padding: 5px 7px;
  color: #8b8bac;
  font-size: 14px;
  border-radius: 5px;
  display: inline-block;
  background-color: rgba(139, 139, 172, 0.1);
  position: relative;
  padding-left: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
}
#journey .journey__duration b {
  padding-left: 5px;
  font-weight: 400;
}
#journey .journey__duration::before {
  content: "";
  position: absolute;
  left: 3px;
  width: 18px;
  height: 18px;
  background: url(../images/ic_clock.png) no-repeat center center/contain;
}
#journey .journey__cost {
  color: #1e1e1e;
  font-size: 18px;
  font-weight: 700;
  padding-top: 10px;
}
#journey .journey__cost .field-value::before {
  content: "NT$ ";
}
#journey .section-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

#topnews {
  padding: 50px 30px 0;
}
@media only screen and (max-width: 431px) {
  #topnews {
    padding: 50px 15px 0;
  }
}
#topnews .topnews {
  padding: 15px 0 25px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}
#topnews .topnews .swiper-button-next, #topnews .topnews .swiper-button-prev {
  width: 43px;
  height: 43px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(170, 170, 170, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: background-color 300ms;
}
#topnews .topnews .swiper-button-next.swiper-button-disabled, #topnews .topnews .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}
#topnews .topnews .swiper-button-next::after, #topnews .topnews .swiper-button-prev::after {
  color: #6375ec;
  font-size: 19px;
  font-weight: 500;
  transition: color 300ms;
}
#topnews .topnews .swiper-button-next::after {
  transform: translateX(2px);
}
#topnews .topnews .swiper-button-prev::after {
  transform: translateX(-2px);
}
#topnews .topnews .swiper-pagination-bullet-active {
  background-color: #5267f3;
}
#topnews .topnews__title {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}
#topnews .topnews__title::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/ic_km_phone.png) no-repeat center center/contain;
}
#topnews .topnews__wrapper {
  display: flex;
  flex-direction: row;
}
#topnews .topnews__wrapper .journey__link {
  text-decoration: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(83, 81, 115, 0.25);
}
#topnews .topnews__wrapper .journey__link:hover .journey__cover::before {
  backdrop-filter: blur(10px);
  background: linear-gradient(to top, rgba(82, 103, 243, 0.95) 0%, rgba(60, 150, 246, 0.75) 30%, rgba(55, 205, 219, 0.55) 100%);
}
#topnews .topnews__wrapper .journey__link:hover .journey__title {
  transform: translateY(-25px);
}
#topnews .topnews__wrapper .journey__link:hover .journey__cate {
  opacity: 1;
  height: 100%;
}
#topnews .topnews__wrapper .journey__cover {
  overflow: hidden;
  position: relative;
}
#topnews .topnews__wrapper .journey__cover::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: linear-gradient(to top, rgba(82, 103, 243, 0.95) 0%, rgba(60, 150, 246, 0.5) 30%, rgba(55, 205, 219, 0) 100%);
  z-index: 2;
  transition: background 300ms, backdrop-filter 300ms;
}
#topnews .topnews__wrapper .journey__img {
  position: relative;
  z-index: 1;
}
#topnews .topnews__wrapper .journey__img img {
  aspect-ratio: 2/1.1;
  object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 431px) {
  #topnews .topnews__wrapper .journey__img img {
    aspect-ratio: 2/1.5;
  }
}
#topnews .topnews__wrapper .journey__content {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  text-shadow: 0 0 5px rgba(83, 81, 115, 0.55);
}
#topnews .topnews__wrapper .journey__title {
  font-size: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制顯示 2 行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 5px;
  transition: transform 250ms;
}
@media only screen and (max-width: 551px) {
  #topnews .topnews__wrapper .journey__title {
    font-size: 18px;
  }
}
#topnews .topnews__wrapper .journey__cate {
  display: inline-block;
  padding: 3px 13px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  transition: transform 300ms;
  font-size: 18px;
  transition: opacity 300ms;
  opacity: 0;
  height: 0;
}
@media only screen and (max-width: 551px) {
  #topnews .topnews__wrapper .journey__cate {
    font-size: 15px;
  }
}

#banner {
  position: relative;
}
#banner::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: linear-gradient(to bottom, rgba(42, 97, 225, 0.5) 0%, rgba(124, 54, 208, 0.15) 20%, rgba(152, 87, 233, 0) 55%);
  z-index: 10;
  pointer-events: none;
}
#banner::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  background: url(../images/ic_bird_1.webp) no-repeat center/contain;
  right: 30px;
  bottom: -30px;
  z-index: 5;
  pointer-events: none;
}
@media only screen and (max-width: 1280px) {
  #banner::after {
    bottom: -75px;
  }
}
@media only screen and (max-width: 768px) {
  #banner::after {
    width: 70px;
    height: 70px;
  }
}
#banner .banner {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 5px 25px rgba(83, 81, 115, 0.25);
  z-index: 5;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  #banner .banner {
    border-radius: 0;
  }
}
#banner .banner__img {
  max-width: 1080px;
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
#banner .banner__img img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
#banner .banner__bgimg {
  position: absolute;
  inset: 0 0 0 0;
  z-index: 1;
}
#banner .banner__bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner .banner__bgimg:before {
  content: "";
  inset: 0 0 0 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
#banner .banner .swiper-pagination-bullet-active {
  background-color: #5267f3;
}

/*# sourceMappingURL=homepage.css.map */
