/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

@keyframes border-ripple{0%{opacity:.8;transform:scale(1);border-width:2px}80%{opacity:0;transform:scale(1.5);border-width:1px}100%{opacity:0;transform:scale(1.8);border-width:0}}@keyframes bounce-down{0%,20%,50%,80%,100%{transform:translateY(0)}40%{transform:translateY(6px)}60%{transform:translateY(3px)}}@keyframes float-in{from{opacity:0;transform:translateY(var(--float-distance, 30px))}to{opacity:1;transform:translateY(0)}}.accordion{--bs-accordion-border-radius: 4px;--bs-accordion-inner-border-radius: 4px;--bs-accordion-btn-padding-x: 0;--bs-accordion-btn-padding-y: 0;--bs-accordion-body-padding-x: 16px;--bs-accordion-body-padding-y: 16px;--bs-accordion-active-bg: #$button-active-bg-color{};--bs-accordion-active-color: #333435;--bs-accordion-color: #616365;--bs-accordion-bg: #FFFFFF;--bs-accordion-border-color: #FFFFFF}@media(min-width: 768px){.accordion{--bs-accordion-body-padding-x: 32px;--bs-accordion-body-padding-y: 32px}}.accordion-item{box-shadow:0 0 4px 0 rgba(0,0,0,.1);border-radius:var(--bs-accordion-border-radius);margin-bottom:16px}.accordion-header{padding:16px 16px 16px 0}.accordion-button{position:relative;font-size:16px;line-height:24px;font-weight:700;background-color:rgba(0,0,0,0);box-shadow:none !important;padding-left:16px}@media(min-width: 1200px){.accordion-button{font-size:20px;line-height:32px}}@media(min-width: 768px){.accordion-button{padding-left:32px}}.accordion-button:before{content:"";position:absolute;top:0;left:0;width:4px;height:0;background-color:#7a5dff;transition:height .35s ease}@media(min-width: 768px){.accordion-button:before{width:6px}}.accordion-button[aria-expanded=true]::before{height:100%}@media(min-width: 768px){.accordion-body{padding-top:0}}.accordion-dropdown .accordion-button::before{content:none;transition:none}.accordion-dropdown .accordion-body{padding:16px 26px;padding-top:0}.bt-cover-page{position:relative;height:640px;overflow:hidden}@media(min-width: 768px){.bt-cover-page{height:600px}}.bt-cover-page__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-1}.bt-cover-page__content{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;justify-content:end;text-align:center;height:100%;padding-bottom:96px;color:#fff;text-shadow:0 4px 40px rgba(0,0,0,.4)}@media(min-width: 768px){.bt-cover-page__content{padding-bottom:86px}}.bt-cover-page__title{font-weight:700;font-size:64px;line-height:64px;margin-bottom:16px}@media(min-width: 1200px){.bt-cover-page__title{font-size:88px;line-height:106px}}@media(min-width: 768px){.bt-cover-page__title{margin-bottom:4px}}.bt-cover-page__subtitle{font-weight:700;font-size:36px;line-height:44px;margin-bottom:16px}@media(min-width: 1200px){.bt-cover-page__subtitle{font-size:64px;line-height:80px}}@media(min-width: 768px){.bt-cover-page__subtitle{margin-bottom:16px}}.bt-cover-page__desc{font-size:18px;line-height:26px;margin-bottom:32px}@media(min-width: 1200px){.bt-cover-page__desc{font-size:24px;line-height:36px}}@media(min-width: 768px){.bt-cover-page__desc{margin-bottom:48px}}.bt-cover-page__title,.bt-cover-page__subtitle,.bt-cover-page__desc{color:#fff}.bt-cover-page__title-extra{color:#e6ff91;font-size:48px;line-height:60px}@media(min-width: 1200px){.bt-cover-page__title-extra{font-size:72px;line-height:90px}}@media(min-width: 576px){.bt-cover-page__title-extra{font-size:64px;line-height:64px}}@media(min-width: 576px)and (min-width: 1200px){.bt-cover-page__title-extra{font-size:88px;line-height:106px}}.bt-sidebar-link{position:relative;font-size:14px;line-height:22px;font-weight:600;color:#616365;padding-left:32px;padding-top:8px;padding-bottom:8px;padding-right:8px;text-align:start;background-color:#fff;border-width:0;transition:color .25s ease-in-out,background-color .25s ease-in-out;width:100%}@media(min-width: 1200px){.bt-sidebar-link{font-size:16px;line-height:28px}}.bt-sidebar-link:before{position:absolute;content:"";top:0;left:0;width:2px;height:100%;background-color:#cbd1d3}.bt-sidebar-link:after{position:absolute;content:"";top:0;left:0;width:4px;height:100%;background-color:#7a5dff;transform:scaleY(0);transform-origin:top;transition:transform .25s ease-in-out}.bt-sidebar-link.active{background-color:#f2f0ff;color:#333435}.bt-sidebar-link.active:after{transform:scaleY(1)}.accordion-dropdown .bt-sidebar-link.active{background-color:#fff}.bt-btn-pill{display:inline-flex;justify-content:center;align-items:center;text-decoration:none;font-weight:600;font-size:14px;line-height:22px;padding:5px 12px;gap:8px;border-radius:999px;color:#616365;border:1px solid #cbd1d3;background-color:#fff}@media(min-width: 1200px){.bt-btn-pill{font-size:16px;line-height:28px}}@media(min-width: 768px){.bt-btn-pill{padding:6px 16px}}.bt-btn-pill.active{color:#7a5dff;border-color:#7a5dff;background-color:#f2f0ff}.bt-btn-pill--blue{color:#616365;border:1px solid #cbd1d3;background-color:#fff}.bt-btn-pill--blue.active{color:#fff;border-color:#1b2c46;background-color:#1b2c46}.bt-swiper{width:100%;flex-shrink:0;padding:1px;padding-top:4px;margin-top:-4px}.bt-swiper .swiper-slide{width:auto;flex-shrink:0}.bt-swiper-nav{display:flex;gap:24px}.swiper-navigation-icon{display:none}.bt-swiper-pagination-bullet{display:none;justify-content:center;gap:8px}.bt-swiper-pagination-bullet .bullet-pagination-item .dot{border-radius:999px;display:inline-block;width:6px;height:6px;background-color:#e2e9f4;cursor:pointer}@media(min-width: 768px){.bt-swiper-pagination-bullet .bullet-pagination-item .dot{width:8px;height:8px}}.bt-swiper-pagination-bullet .bullet-pagination-item:hover .dot{background-color:#1b2c46}.bt-swiper-pagination-bullet .bullet-pagination-item.active .dot{border-radius:999px;width:16px;background-color:#1b2c46}@media(min-width: 768px){.bt-swiper-pagination-bullet .bullet-pagination-item.active .dot{width:24px}}.bt-swiper-pagination.swiper-pagination-bullets:not(.swiper-pagination-lock){display:flex}.bt-swiper-pagination-fraction{display:flex;justify-content:center;font-family:"Inter",sans-serif}.bt-pagination{list-style-type:none;padding-left:0;margin-bottom:0;display:flex;gap:16px}.bt-pagination .page-item .page-link{display:flex;justify-content:center;align-items:center;font-size:16px;line-height:24px;font-family:"Inter",sans-serif;font-weight:600;width:40px;height:40px;padding:8px;border-radius:999px;border:1px solid rgba(0,0,0,0);transition:all .25s ease-in-out}@media(min-width: 1200px){.bt-pagination .page-item .page-link{font-size:20px;line-height:32px}}@media(min-width: 768px){.bt-pagination .page-item .page-link{width:48px;height:48px}}.bt-pagination .page-item .page-link i{display:flex;align-items:center;justify-content:center;width:1em;height:1em;line-height:1;font-size:20px;transition:color .25s ease-in-out,background-color .25s ease-in-out}.bt-pagination .page-item:first-child .page-link,.bt-pagination .page-item:last-child .page-link{border:1px solid #7a5dff;color:#7a5dff}.bt-pagination .page-item:first-child .page-link i,.bt-pagination .page-item:last-child .page-link i{color:inherit}.bt-pagination .page-item.disabled .page-link{border:1px solid #b2b7b9;color:#b2b7b9}.bt-pagination .page-item.disabled .page-link i{color:inherit}.bt-pagination .page-item.active:not(:first-child):not(:last-child) .page-link,.bt-pagination .page-item:hover:not(:first-child):not(:last-child) .page-link{border:1px solid #7a5dff;background-color:#7a5dff;color:#fff}.bt-pagination .page-item.page-ellipsis{pointer-events:none;border:none}.bt-pagination .page-item.page-ellipsis .page-link{background:rgba(0,0,0,0);border:none;color:#989c9f;font-weight:400;cursor:default}.bt-breadcrumb,[data-element=element_breadcrumb] .bt-breadcrumb{display:flex;flex-wrap:nowrap;background-color:rgba(0,0,0,0);list-style-type:none;padding:0;gap:8px;color:#989c9f}.bt-breadcrumb .breadcrumb-item{font-size:16px;line-height:24px;white-space:nowrap}@media(min-width: 1200px){.bt-breadcrumb .breadcrumb-item{font-size:20px;line-height:32px}}.bt-breadcrumb .breadcrumb-item a{color:inherit;text-decoration-line:none}.bt-breadcrumb .breadcrumb-item a:hover{text-decoration-line:underline}.bt-breadcrumb .breadcrumb-item.active,.bt-breadcrumb .breadcrumb-item[aria-current=page]{color:#7a5dff;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bt-breadcrumb .breadcrumb-separator{font-size:20px}.breadcrumb-item+.breadcrumb-item:before{content:""}.bt-cover-page{position:relative;height:640px;overflow:hidden;display:flex;align-items:center;background-repeat:no-repeat;background-position:center;background-size:cover;text-shadow:0 4px 40px rgba(0,0,0,.4)}@media(min-width: 768px){.bt-cover-page{height:600px}}.bt-cover-page-sm{height:640px}@media(min-width: 768px){.bt-cover-page-sm{height:436px}}.bt-cover-page.bt-cover-page-2sm{height:420px}@media(min-width: 768px){.bt-cover-page.bt-cover-page-2sm{height:460px}}.bt-cover-page-md{height:640px}@media(min-width: 768px){.bt-cover-page-md{height:516px}}.bt-cover-page-lg{height:640px}@media(min-width: 768px){.bt-cover-page-lg{height:600px}}.bt-cover-page div[data-element=container]{display:flex;flex-direction:column;justify-content:end;height:100%}@media(min-width: 768px){.bt-cover-page div[data-element=container]{justify-content:center}}[data-element=element_image] img{border-radius:8px;overflow:hidden;border-radius:4px}@media(min-width: 768px){[data-element=element_image] img{border-radius:8px}}@media(min-width: 1200px){[data-element=element_content_bullet]{transition:transform .25s ease,box-shadow .25s ease}[data-element=element_content_bullet]:hover,[data-element=element_content_bullet]:focus{transform:translateY(-4px) scale(1);box-shadow:0 8px 16px rgba(0,0,0,.08)}[data-element=element_content_bullet]:active{transform:translateY(-1px) scale(0.98);box-shadow:0 4px 8px rgba(0,0,0,.12)}}[data-element=element_content_bullet] a{text-decoration:none}[data-element=element_content_bullet] .bt-content-bullet{position:relative;display:flex;flex-direction:column;gap:24px;padding:32px 32px;width:100%;box-shadow:0 0 4px 0 rgba(0,0,0,.1);border-radius:4px}@media(min-width: 992px){[data-element=element_content_bullet] .bt-content-bullet{flex-direction:row;border-radius:8px}}[data-element=element_content_bullet] .bt-content-bullet-header .text-bullet{font-family:"Inter",sans-serif;font-size:36px;line-height:44px;font-weight:700;color:#7a5dff}@media(min-width: 1200px){[data-element=element_content_bullet] .bt-content-bullet-header .text-bullet{font-size:64px;line-height:80px}}[data-element=element_content_bullet] .bt-content-bullet-body .text-title{font-size:24px;line-height:36px;font-weight:700;color:#333435;margin-bottom:8px}@media(min-width: 1200px){[data-element=element_content_bullet] .bt-content-bullet-body .text-title{font-size:32px;line-height:48px}}[data-element=element_content_bullet] .bt-content-bullet-body .text-desc{font-size:16px;line-height:24px;color:#616365}@media(min-width: 1200px){[data-element=element_content_bullet] .bt-content-bullet-body .text-desc{font-size:20px;line-height:32px}}@media(min-width: 992px){[data-element=element_content_bullet] .bt-content-bullet-body{padding-right:72px}}[data-element=element_content_bullet] .bt-content-bullet .bt-btn{position:absolute;top:32px;right:32px}@media(min-width: 992px){[data-element=element_content_bullet] .bt-content-bullet .bt-btn{top:50%;transform:translateY(-50%)}}div[data-element=element_cms_tag] .bt-tags{font-size:16px;line-height:24px;color:#333435}@media(min-width: 1200px){div[data-element=element_cms_tag] .bt-tags{font-size:20px;line-height:32px}}div[data-element=element_cms_tag] .bt-tags .tag-item{text-decoration:none;font-weight:600;color:#604fdd;margin-left:8px}[data-element=element_date_and_view] ul{list-style-type:none;padding-left:0;margin-bottom:0}[data-element=element_date_and_view] .bt-date-view{font-size:18px;line-height:26px;color:#333435}@media(min-width: 1200px){[data-element=element_date_and_view] .bt-date-view{font-size:24px;line-height:36px}}[data-element=element_date_and_view] .bt-date-view ul{display:flex;gap:8px}[data-element=element_date_and_view] .bt-date-view li{color:inherit;font-size:1em}div[data-element=element_social_share_print]{display:flex}div[data-element=element_social_share_print] ul{list-style-type:none;padding-left:0;margin-bottom:0}div[data-element=element_social_share_print] .bt-social-share{font-size:18px;line-height:26px;color:#333435}@media(min-width: 1200px){div[data-element=element_social_share_print] .bt-social-share{font-size:24px;line-height:36px}}div[data-element=element_social_share_print] .bt-social-share-items{display:flex;gap:8px}div[data-element=element_social_share_print] .bt-social-share-items img{width:32px;height:32px}@media(min-width: 768px){div[data-element=element_social_share_print] .bt-social-share-items img{width:44px;height:44px}}div[data-element=element_social_share_print] .bt-social-share-item a{display:inline-block}div[data-element=element_social_share_print] .bt-social-share .bt-btn-copied{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}div[data-element=element_social_share_print] .bt-social-share a,div[data-element=element_social_share_print] .bt-social-share button,div[data-element=element_social_share_print] .bt-social-share img{border-radius:50%}[data-element=element_button] .bt-btn{border-color:rgba(0,0,0,0)}[data-element=element_button] .bt-btn:hover{opacity:.95}@media(min-width: 1200px){[data-element=element_card]{transition:transform .25s ease,box-shadow .25s ease}[data-element=element_card]:hover,[data-element=element_card]:focus{transform:translateY(-4px) scale(1);box-shadow:0 8px 16px rgba(0,0,0,.08)}[data-element=element_card]:active{transform:translateY(-1px) scale(0.98);box-shadow:0 4px 8px rgba(0,0,0,.12)}}[data-element=element_card] a{text-decoration:none}[data-element=element_card] .bt-card{display:flex;flex-direction:column;background-position:center;background-repeat:no-repeat;background-size:cover;text-decoration:none !important;row-gap:16px}[data-element=element_card] .bt-card-content{width:100%;color:#333435}[data-element=element_card] .bt-card-img{margin:auto;max-width:100%;text-align:center}[data-element=element_card] .bt-card-img img{max-width:100%;max-height:100%;height:auto}[data-element=element_card] .bt-card-square{aspect-ratio:1/1}[data-element=element_card] .bt-card-vertical{height:400px}@media(min-width: 768px)and (max-width: 991.98px){[data-element=element_card] .bt-card-vertical{height:400px}}@media(min-width: 992px)and (max-width: 1199.98px){[data-element=element_card] .bt-card-vertical{height:500px}}[data-element=element_card] .bt-card-horizontal{flex-direction:row;min-height:172px}@media(min-width: 768px)and (max-width: 991.98px){[data-element=element_card] .bt-card-horizontal.bt-device-desktop{flex-direction:column;height:auto;aspect-ratio:1/1}}@media(min-width: 992px){[data-element=element_card] .bt-card-horizontal{flex-direction:row;flex:0 0 auto}[data-element=element_card] .bt-card-horizontal .bt-card-img{flex:0 0 auto;aspect-ratio:16/9;width:40%;overflow:hidden;margin-right:16px}[data-element=element_card] .bt-card-horizontal .bt-card-img img{width:100%;height:100%;object-fit:cover}[data-element=element_card] .bt-card-horizontal .bt-card-content{width:100%}}[data-element=element_card] .bt-card.c-reverse{flex-direction:column-reverse}[data-element=element_card] .bt-card.c-reverse .bt-card-img{margin-bottom:0}[data-element=element_card] .bt-card.r-reverse{flex-direction:row-reverse}.bt-card-group .bt-card-square{aspect-ratio:auto !important}@media(min-width: 768px)and (max-width: 991.98px){.bt-card-group div[data-element=container] .bt-card-content *{text-align:center !important}.bt-card-group div[data-element=container] div[data-element=container5_7]{gap:24px}.bt-card-group div[data-element=container] div[data-element=container5_7] .col-md-5,.bt-card-group div[data-element=container] div[data-element=container5_7] .col-md-7{width:100%}.bt-card-group div[data-element=container] div[data-element=container5_7] div[data-element=container1] div[data-element=element_card] .bt-card-horizontal{aspect-ratio:auto !important}}@media(min-width: 992px)and (max-width: 1199.98px){.bt-card-group div[data-element=container] div[data-element=container5_7] div[data-element=container1] div[data-element=element_card] .bt-card-horizontal{aspect-ratio:auto !important}.bt-card-group div[data-element=container] div[data-element=container5_7] div[data-element=container1] div[data-element=element_card] .bt-card-horizontal .bt-card-img{margin-right:0}}@media(min-width: 768px){.bt-card-group div[data-element=container] div[data-element=container5_7] div[data-element=container1_1] div[data-element=element_card]{height:100%}.bt-card-group div[data-element=container] div[data-element=container5_7] div[data-element=container1_1] div[data-element=element_card] .bt-card-square{height:100%}}@media(min-width: 992px){.bt-card-group div[data-element=container] div[data-element=container5_7] div[data-element=container1] div[data-element=element_card] .bt-card-horizontal .bt-card-img{aspect-ratio:16/9;position:relative;overflow:visible}}[data-element=element_content_related] a{text-decoration:none}[data-element=element_content_related] .bt-card-content-related{position:relative;display:flex;flex-direction:column;width:100%;background-color:#fff;gap:24px;overflow:hidden}@media(min-width: 1200px){[data-element=element_content_related] .bt-card-content-related{transition:transform .25s ease,box-shadow .25s ease}[data-element=element_content_related] .bt-card-content-related:hover,[data-element=element_content_related] .bt-card-content-related:focus{transform:translateY(-4px) scale(1)}[data-element=element_content_related] .bt-card-content-related:active{transform:translateY(-1px) scale(0.98)}}[data-element=element_content_related] .bt-card-content-related-thumb{display:flex;width:100%;aspect-ratio:1;overflow:hidden;border-radius:4px}[data-element=element_content_related] .bt-card-content-related-thumb>*{width:100%;height:100%;object-fit:cover}@media(min-width: 768px){[data-element=element_content_related] .bt-card-content-related-thumb{border-radius:8px}}[data-element=element_content_related] .bt-card-content-related-body{flex:1;display:flex;flex-direction:column}[data-element=element_content_related] .bt-card-content-related .title{font-size:16px;line-height:24px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2lh;font-weight:700;margin-bottom:0}@media(min-width: 1200px){[data-element=element_content_related] .bt-card-content-related .title{font-size:20px;line-height:32px}}@media(min-width: 1200px){[data-element=element_content_related] .bt-card-content-related .title{min-height:2lh}}[data-element=element_content_related] .bt-card-content-related .bt-badge{font-size:12px;line-height:28px;font-weight:600}@media(min-width: 1200px){[data-element=element_content_related] .bt-card-content-related .bt-badge{font-size:14px;line-height:24px}}[data-element=element_product_highlight] .bt-product-highlight{position:relative;width:100%;overflow:hidden}[data-element=element_product_highlight] .bt-product-highlight-body{position:absolute;top:0;left:0;right:0;z-index:2;display:flex;flex-direction:column;justify-content:start;height:100%;padding-top:64px;padding-right:16px;padding-left:16px}[data-element=element_product_highlight] .bt-product-highlight-action{display:flex;flex-direction:column;margin-top:24px;column-gap:24px;row-gap:16px}[data-element=element_product_highlight] .bt-product-highlight-action .bt-btn{width:fit-content;font-size:16px;line-height:24px}@media(min-width: 1200px){[data-element=element_product_highlight] .bt-product-highlight-action .bt-btn{font-size:20px;line-height:32px}}[data-element=element_product_highlight] .bt-product-highlight-action .bt-btn:hover{opacity:.95}[data-element=element_product_highlight] .bt-product-highlight-action .bt-btn-highlight{margin-bottom:16px}[data-element=element_product_highlight] .bt-product-highlight-img{width:100%}[data-element=element_product_highlight] .bt-product-highlight-img img{width:100%;height:auto;object-fit:cover;display:block}[data-element=element_product_highlight] .bt-product-highlight .bt-btn-text{color:#fff;font-weight:400;text-decoration:underline}@media(min-width: 576px)and (max-width: 767.98px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-mobile .bt-product-highlight-body{padding-top:160px;padding-right:32px;padding-left:32px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-mobile .bt-product-highlight-body .bt-fs-display-lg{font-size:48px;line-height:60px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-mobile .bt-product-highlight-body .bt-fs-body-md{font-size:20px;line-height:32px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-mobile .bt-product-highlight-body .bt-btn{font-size:20px}}@media(min-width: 768px)and (max-width: 991.98px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-mobile .bt-product-highlight-body{padding-top:160px;padding-right:32px;padding-left:32px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-mobile .bt-product-highlight-body .bt-fs-display-lg{font-size:48px;line-height:60px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-mobile .bt-product-highlight-body .bt-fs-body-md{font-size:20px;line-height:32px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-mobile .bt-product-highlight-body .bt-btn{font-size:20px}}@media(min-width: 576px)and (max-width: 767.98px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body .bt-fs-display-lg{font-size:18px;line-height:26px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body .bt-fs-body-md{font-size:14px;line-height:20px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body .bt-btn{font-size:14px}}@media(min-width: 768px)and (max-width: 991.98px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body .bt-fs-display-lg{font-size:18px;line-height:26px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body .bt-fs-body-md{font-size:14px;line-height:20px}[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body .bt-btn{font-size:14px}}@media(min-width: 768px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body{padding-top:0;padding-right:64px;padding-left:40px;padding-bottom:0;justify-content:center}}@media(min-width: 992px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body{padding-right:64px;padding-left:60px}}@media(min-width: 1200px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-body{padding-right:64px;padding-left:80px}}@media(min-width: 768px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-content{padding-right:40%}}@media(min-width: 768px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-content{padding-right:45%}}@media(min-width: 768px){[data-element=element_product_highlight] .bt-product-highlight.bt-device-desktop .bt-product-highlight-action{margin-top:24px;flex-direction:row;align-items:center}}@media(min-width: 768px){[data-element=element_product_highlight].bt-product-highlight-body-pos-end .bt-product-highlight.bt-device-desktop .bt-product-highlight-body{padding-top:0px;padding-right:64px;padding-left:40px;padding-bottom:24px;justify-content:end}}@media(min-width: 992px){[data-element=element_product_highlight].bt-product-highlight-body-pos-end .bt-product-highlight.bt-device-desktop .bt-product-highlight-body{padding-right:64px;padding-left:60px;padding-bottom:62px}}@media(min-width: 1200px){[data-element=element_product_highlight].bt-product-highlight-body-pos-end .bt-product-highlight.bt-device-desktop .bt-product-highlight-body{padding-right:64px;padding-left:80px;padding-bottom:82px}}div[data-element=element_text_editor] ol,div[data-element=element_text_editor] ul{line-height:1.4}div[data-element=element_text_editor] ol li,div[data-element=element_text_editor] ul li{list-style-position:inside}[data-element=element_badge] .bt-ebadge{padding:.5em 1em}div[data-element=element_card_product] .bt-card-eproduct{display:flex;flex-direction:column;overflow:hidden}@media(min-width: 768px){div[data-element=element_card_product] .bt-card-eproduct{flex-direction:row}div[data-element=element_card_product] .bt-card-eproduct-img,div[data-element=element_card_product] .bt-card-eproduct-body{flex:0 0 50%;max-width:50%}}div[data-element=element_card_product] .bt-card-eproduct-img{position:relative;overflow:hidden}div[data-element=element_card_product] .bt-card-eproduct-img img{width:100%;height:100%;object-fit:cover}div[data-element=element_card_product] .bt-card-eproduct-img-content{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;display:flex;align-items:end;padding:24px}@media(min-width: 576px){div[data-element=element_card_product] .bt-card-eproduct-img-content{padding:32px}}@media(min-width: 768px){div[data-element=element_card_product] .bt-card-eproduct-img-content{padding:24px}}@media(min-width: 992px){div[data-element=element_card_product] .bt-card-eproduct-img-content{padding:48px}}div[data-element=element_card_product] .bt-card-eproduct-body{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:24px 24px;gap:24px}@media(min-width: 768px){div[data-element=element_card_product] .bt-card-eproduct-body{padding:24px 24px}}@media(min-width: 992px){div[data-element=element_card_product] .bt-card-eproduct-body{padding:48px 48px}}div[data-element=element_card_product] .bt-card-eproduct-detail{margin:0;padding:0;list-style:none;width:100%}div[data-element=element_card_product] .bt-card-eproduct-detail .col{display:flex;flex-direction:column;gap:8px 0;padding-left:0;margin-bottom:12px}div[data-element=element_card_product] .bt-card-eproduct-detail li{display:flex;align-items:flex-start;gap:12px}div[data-element=element_card_product] .bt-card-eproduct-detail li .icon i{font-size:20px;color:#333435}@media(min-width: 768px){div[data-element=element_card_product] .bt-card-eproduct-detail li .icon i{font-size:24px}}div[data-element=element_card_product] .bt-card-eproduct-detail li .text{flex:1 1 auto;font-size:16px;line-height:24px}@media(min-width: 1200px){div[data-element=element_card_product] .bt-card-eproduct-detail li .text{font-size:20px;line-height:32px}}div[data-element=element_card_product] .bt-card-eproduct-detail.detail-1col{display:grid;grid-template-columns:1fr;gap:8px 0}div[data-element=element_card_product] .bt-card-eproduct-detail.detail-2col{display:grid;grid-template-columns:1fr;gap:0 20px}@media(min-width: 1200px){div[data-element=element_card_product] .bt-card-eproduct-detail.detail-2col{grid-template-columns:1fr 1fr}}div[data-element=element_card_product] .bt-card-eproduct-footer{width:100%;display:flex;justify-content:center}@media(min-width: 768px){div[data-element=element_card_product] .bt-card-eproduct-footer{justify-content:start}}div[data-element=element_card_product] .bt-card-eproduct-footer .bt-btn{font-size:16px;line-height:24px}@media(min-width: 1200px){div[data-element=element_card_product] .bt-card-eproduct-footer .bt-btn{font-size:20px;line-height:32px}}div[data-element=element_card_product] .bt-card-eproduct-footer .bt-btn:hover{opacity:.95}div[data-element=element_card_product] .bt-card-eproduct-remark{margin-top:8px}div[data-element=element_card_product] .bt-card-eproduct-remark ul,div[data-element=element_card_product] .bt-card-eproduct-remark li{line-height:1.4;font-size:8px;line-height:14px}@media(min-width: 1200px){div[data-element=element_card_product] .bt-card-eproduct-remark ul,div[data-element=element_card_product] .bt-card-eproduct-remark li{font-size:10px;line-height:14px}}@media(min-width: 768px){div[data-element=element_card_product].bt-card-eproduct-p-none .bt-card-eproduct-img,div[data-element=element_card_product].bt-card-eproduct-p-none .bt-card-eproduct-body{flex:0 0 calc(50% - 12px);max-width:calc(50% - 12px)}}div[data-element=element_card_product].bt-card-eproduct-p-none .bt-card-eproduct{gap:24px}div[data-element=element_card_product].bt-card-eproduct-p-none .bt-card-eproduct-body{padding:0}div[data-element=element_card_product].bt-img-contain .bt-card-eproduct-img img{object-fit:contain}div[data-element=element_card_product].bt-img-mw-500px .bt-card-eproduct-img img{max-width:500px}[data-element=element_slide_image]{position:relative;padding:0 32px}@media(min-width: 768px){[data-element=element_slide_image]{padding:0 48px}}[data-element=element_slide_image] .bt-swiper-padination-bullet{padding-top:32px}@media(min-width: 768px){[data-element=element_slide_image] .bt-swiper-padination-bullet{padding-top:48px}}@media(min-width: 576px)and (max-width: 767.98px){[data-element=element_slide_image] .swiper-slide-image{padding-left:24px;padding-right:24px}}@media(min-width: 768px)and (max-width: 991.98px){[data-element=element_slide_image] .swiper-slide-image{padding-left:24px;padding-right:24px}}@media(min-width: 992px)and (max-width: 1199.98px){[data-element=element_slide_image] .swiper-slide-image{padding-left:24px;padding-right:24px}}[data-element=element_slide_image] .swiper-slide{flex-shrink:0}[data-element=element_slide_image] .swiper-button-prev,[data-element=element_slide_image] .swiper-button-next{position:absolute;z-index:10;top:40%;transform:translateY(-40%)}@media(min-width: 576px){[data-element=element_slide_image] .swiper-button-prev,[data-element=element_slide_image] .swiper-button-next{top:35%;transform:translateY(-35%)}}[data-element=element_slide_image] .swiper-button-prev .bt-btn,[data-element=element_slide_image] .swiper-button-next .bt-btn{font-size:12px;width:32px;height:32px}[data-element=element_slide_image] .swiper-button-prev{left:0}[data-element=element_slide_image] .swiper-button-next{right:0}[data-element=element_slide_image] .bt-slide-image{text-align:center}[data-element=element_slide_image] .bt-slide-image .bt-slide-image-thumb{margin-bottom:32px}[data-element=element_slide_image] .bt-slide-image .bt-slide-image-thumb img{max-width:90%}@media(min-width: 576px){[data-element=element_slide_image] .bt-slide-image .bt-slide-image-thumb img{max-width:100%}}[data-element=element_slide_image] .bt-slide-image .title{font-size:16px;line-height:24px;font-weight:600;margin-bottom:8px}@media(min-width: 1200px){[data-element=element_slide_image] .bt-slide-image .title{font-size:20px;line-height:32px}}[data-element=element_slide_image] .bt-slide-image .content-desc{font-size:14px;line-height:20px}@media(min-width: 1200px){[data-element=element_slide_image] .bt-slide-image .content-desc{font-size:16px;line-height:28px}}[data-element=element_video].bt-video-wrapper iframe,[data-element=element_video].bt-video-wrapper video{display:block;width:100%;height:auto;aspect-ratio:auto}.bt-toast{--bs-toast-spacing: 12px;display:flex;align-items:center;border-radius:8px;box-shadow:0 0 10px 0 rgba(0,0,0,.1);margin-bottom:16px;min-width:400px;overflow:hidden;background-color:#fff;border-color:rgba(0,0,0,0);width:100%}.bt-toast-body{display:flex;align-items:center;flex:1 1 auto;padding:20px 20px;font-size:14px;line-height:22px;font-weight:400;color:#333435}@media(min-width: 1200px){.bt-toast-body{font-size:16px;line-height:28px}}.bt-toast-body i{font-size:26px;flex-shrink:0;margin-right:16px}.bt-toast .btn-close{margin-left:auto;opacity:.6}.bt-toast .btn-close:hover{opacity:1}.bt-toast-success .bt-toast-body i{color:#588d01}.bt-toast-danger .bt-toast-body i{color:#e31c59}.swiper-pagination{position:absolute;text-align:center;transition:300ms opacity;transform:translate3d(0, 0, 0);z-index:10;&.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>&,&.swiper-pagination-disabled{display:none !important}}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0;.swiper-pagination-bullet{transform:scale(0.33);position:relative}.swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullet-active-prev{transform:scale(0.66)}.swiper-pagination-bullet-active-prev-prev{transform:scale(0.33)}.swiper-pagination-bullet-active-next{transform:scale(0.66)}.swiper-pagination-bullet-active-next-next{transform:scale(0.33)}}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, 0.2);button&{border:none;margin:0;padding:0;box-shadow:none;appearance:none}.swiper-pagination-clickable &{cursor:pointer}&:only-child{display:none !important}}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0px, -50%, 0);.swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}&.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px;.swiper-pagination-bullet{display:inline-block;transition:200ms transform,200ms top}}}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets{.swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}&.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap;.swiper-pagination-bullet{transition:200ms transform,200ms left}}}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform,200ms right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color, inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));position:absolute;.swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl & .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>&,&.swiper-pagination-horizontal,.swiper-vertical>&.swiper-pagination-progressbar-opposite,&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}.swiper-vertical>&,&.swiper-pagination-vertical,.swiper-horizontal>&.swiper-pagination-progressbar-opposite,&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}}.swiper-pagination-lock{display:none}.bt-cover-page{height:420px;display:block}@media(min-width: 768px){.bt-cover-page{height:460px}}.bt-cover-page__content{justify-content:start;padding-top:186px}@media(min-width: 768px){.bt-cover-page__content{padding-top:208px}}.bt-cover-page__title,.bt-cover-page__title-extra{font-size:28px;line-height:36px}@media(min-width: 1200px){.bt-cover-page__title,.bt-cover-page__title-extra{font-size:48px;line-height:60px}}.bt-cover-page__title{margin-bottom:16px}
