@keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0px, 50px, 0px);
      -moz-transform: translate3d(0px, 50px, 0px);
      transform: translate3d(0px, 50px, 0px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0px, 0px, 0px);
      -moz-transform: translate3d(0px, 0px, 0px);
      transform: translate3d(0px, 0px, 0px);
    }
  }
  @keyframes snakeItem {
    50% {
      -webkit-transform: translate(0, -8px);
      -moz-transform: translate(0, -8px);
      -o-transform: translate(0, -8px);
      transform: translate(0, -8px);
    }
  }
  @-webkit-keyframes animationDuoi {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(20deg);
      transform: rotate(20deg);
    }
  }
  .section-index {
    padding: 30px 0;
  }
  @media (max-width: 767px) {
    .section-index {
      padding: 25px 0;
    }
  }
  .section-index .section-title {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
  }
  .section-index .section-title.a-left {
    text-align: left;
  }
  .section-index .section-title.txt-uppercese {
    text-transform: uppercase;
  }
  .section-index .section-title h2 {
    display: inline-block;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 0px;
    color: var(--mainColor);
    line-height: 6rem;
  }
  @media (max-width: 1025px) {
    .section-index .section-title h2 {
      font-size: 2.4rem;
      line-height: 5rem;
    }
  }
  @media (max-width: 767px) {
    .section-index .section-title h2 {
      font-size: 2rem;
    }
  }
  .section-index .section-title h2 a {
    color: var(--mainColor);
  }
  .section-index .section-title h2 a:hover,
  .section-index .section-title h2 a:focus {
    color: var(--subColor);
  }
  .section-index .section-title h2 span {
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
  }
  .section-index .section-title h2 span:before {
    content: "";
    position: absolute;
    height: 5px;
    border-radius: 5px;
    width: 100%;
    background-color: var(--subColor);
    left: 0px;
    bottom: 0px;
  }
  .section_slider {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  @media (max-width: 767px) {
    .section_slider {
      margin-top: 25px;
      margin-bottom: 25px;
    }
  }
  .section_slider .swiper-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  .section_slider .swiper-container .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_slider
    .swiper-container
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_slider
    .swiper-container
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_slider .swiper-container .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_slider .swiper-container .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_slider .swiper-container .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_slider .swiper-container .swiper-button-next:after {
    display: none;
  }
  .section_slider .swiper-container .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_slider .swiper-container .swiper-button-next:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_slider .swiper-container .swiper-button-next {
      display: none;
    }
  }
  .section_slider .swiper-container .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_slider .swiper-container .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_slider .swiper-container .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_slider .swiper-container .swiper-button-prev:after {
    display: none;
  }
  .section_slider .swiper-container .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_slider .swiper-container .swiper-button-prev:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_slider .swiper-container .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_slider .swiper-container .swiper-button-next,
    .section_slider .swiper-container .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_slider .swiper-container .swiper-button-next:after,
    .section_slider .swiper-container .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_slider .swiper-container .swiper-button-lock {
    display: none !important;
  }
  .section_slider .swiper-container .swiper-button-disabled {
    opacity: 0.35;
  }
  .section_slider
    .swiper-container
    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    bottom: 10px;
    min-height: 10px;
  }
  .section_slider .swiper-container .swiper-slide {
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 900/447;
  }
  .section_slider .swiper-container .swiper-slide img {
    width: 100%;
  }
  @media (max-width: 767px) {
    .section_slider {
      margin-bottom: 20px !important;
    }
  }
  .section_slider .banner_slide {
    position: relative;
  }
  @media (max-width: 767px) {
    .section_slider .banner_slide {
      margin-top: 14px;
      float: left;
      float: left;
      display: inline-block;
      width: calc(50% - 7px);
    }
    .section_slider .banner_slide:last-child {
      margin-left: 14px;
    }
  }
  .section_slider .banner_slide .a_banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
  }
  .section_slider .banner_slide .a_banner:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  .section_slider .banner_slide .a_banner:hover::before {
    -webkit-animation: circle 0.75s;
    animation: circle 0.75s;
  }
  .section_slider .banner_slide .a_banner.a_banner_1 {
    margin-bottom: 20px;
  }
  .section_tien_ich {
    position: relative;
  }
  .section_tien_ich .list_tien_ich {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich {
    width: calc((100% - 24px) / 2);
    width: -moz-calc((100% - 24px)/ 2);
    width: -webkit-calc((100% - 24px) / 2);
    width: -o-calc((100% - 24px)/ 2);
    margin-bottom: 24px;
    display: flex;
    cursor: pointer;
  }
  @media (max-width: 767px) {
    .section_tien_ich .list_tien_ich .item_tien_ich {
      width: calc((100% - 14px) / 2);
      width: -moz-calc((100% - 14px)/ 2);
      width: -webkit-calc((100% - 14px) / 2);
      width: -o-calc((100% - 14px)/ 2);
    }
  }
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(1) .item-info {
    border-radius: 40px 40px 0px 40px;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(1).active .item-info,
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(1):hover .item-info,
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(1):focus .item-info {
    background-color: var(--mainColor);
    color: #fff;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1).active
    .item-info
    .icon_tienich
    img,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1):hover
    .item-info
    .icon_tienich
    img,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1):focus
    .item-info
    .icon_tienich
    img {
    filter: brightness(0) invert(1);
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1).active
    .item-info
    .actions_tienich
    a,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1):hover
    .item-info
    .actions_tienich
    a,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1):focus
    .item-info
    .actions_tienich
    a {
    color: #fff;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1).active
    .item-info
    .actions_tienich
    a
    svg
    path,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1):hover
    .item-info
    .actions_tienich
    a
    svg
    path,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(1):focus
    .item-info
    .actions_tienich
    a
    svg
    path {
    fill: #fff;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(2) .item-info {
    border-radius: 40px 40px 40px 0px;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(2).active .item-info,
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(2):hover .item-info,
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(2):focus .item-info {
    background-color: var(--subColor);
    color: #fff;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2).active
    .item-info
    .icon_tienich
    img,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2):hover
    .item-info
    .icon_tienich
    img,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2):focus
    .item-info
    .icon_tienich
    img {
    filter: brightness(0) invert(1);
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2).active
    .item-info
    .actions_tienich
    a,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2):hover
    .item-info
    .actions_tienich
    a,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2):focus
    .item-info
    .actions_tienich
    a {
    color: #fff;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2).active
    .item-info
    .actions_tienich
    a
    svg
    path,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2):hover
    .item-info
    .actions_tienich
    a
    svg
    path,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(2):focus
    .item-info
    .actions_tienich
    a
    svg
    path {
    fill: #fff;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(3) .item-info {
    border-radius: 40px 0px 40px 40px;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(3).active .item-info,
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(3):hover .item-info,
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(3):focus .item-info {
    background-color: var(--subColor);
    color: #fff;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3).active
    .item-info
    .icon_tienich
    img,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3):hover
    .item-info
    .icon_tienich
    img,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3):focus
    .item-info
    .icon_tienich
    img {
    filter: brightness(0) invert(1);
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3).active
    .item-info
    .actions_tienich
    a,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3):hover
    .item-info
    .actions_tienich
    a,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3):focus
    .item-info
    .actions_tienich
    a {
    color: #fff;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3).active
    .item-info
    .actions_tienich
    a
    svg
    path,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3):hover
    .item-info
    .actions_tienich
    a
    svg
    path,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(3):focus
    .item-info
    .actions_tienich
    a
    svg
    path {
    fill: #fff;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(4) .item-info {
    border-radius: 0px 40px 40px 40px;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(4).active .item-info,
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(4):hover .item-info,
  .section_tien_ich .list_tien_ich .item_tien_ich:nth-child(4):focus .item-info {
    background-color: var(--mainColor);
    color: #fff;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4).active
    .item-info
    .icon_tienich
    img,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4):hover
    .item-info
    .icon_tienich
    img,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4):focus
    .item-info
    .icon_tienich
    img {
    filter: brightness(0) invert(1);
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4).active
    .item-info
    .actions_tienich
    a,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4):hover
    .item-info
    .actions_tienich
    a,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4):focus
    .item-info
    .actions_tienich
    a {
    color: #fff;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4).active
    .item-info
    .actions_tienich
    a
    svg
    path,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4):hover
    .item-info
    .actions_tienich
    a
    svg
    path,
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich:nth-child(4):focus
    .item-info
    .actions_tienich
    a
    svg
    path {
    fill: #fff;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich .item-info {
    box-shadow: -3px 6px 28px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background-color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding: 20px 16px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich .item-info .opacity_tienich {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
  }
  @media (max-width: 767px) {
    .section_tien_ich .list_tien_ich .item_tien_ich .item-info {
      padding: 14px 10px;
    }
  }
  .section_tien_ich .list_tien_ich .item_tien_ich .item-info .icon_tienich {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  @media (max-width: 767px) {
    .section_tien_ich .list_tien_ich .item_tien_ich .item-info .icon_tienich {
      width: 40px;
      height: 40px;
    }
  }
  .section_tien_ich .list_tien_ich .item_tien_ich .item-info .icon_tienich img {
    max-width: 100%;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich .item-info .title_tienich {
    font-size: 1.6rem;
    min-height: 24px;
    margin-bottom: 10px;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich .item-info .des_tienich {
    display: block;
    margin-bottom: 10px;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich .item-info .actions_tienich {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    position: relative;
    z-index: 2;
  }
  .section_tien_ich .list_tien_ich .item_tien_ich .item-info .actions_tienich a {
    display: flex;
    align-items: center;
    color: var(--mainColor);
    width: fit-content;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: underline;
  }
  @media (max-width: 767px) {
    .section_tien_ich
      .list_tien_ich
      .item_tien_ich
      .item-info
      .actions_tienich
      a {
      font-size: 1.4rem;
    }
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich
    .item-info
    .actions_tienich
    a
    svg {
    width: 16px;
    height: 16px;
    margin-left: 5px;
  }
  .section_tien_ich
    .list_tien_ich
    .item_tien_ich
    .item-info
    .actions_tienich
    a
    svg
    path {
    fill: var(--mainColor);
  }
  .section_tien_ich .row {
    align-items: center;
  }
  .section_tien_ich .banner_tien_ich {
    display: block;
    aspect-ratio: 704 / 617;
    position: relative;
  }
  .section_services {
    position: relative;
  }
  .section_services .promo-box .promo-item {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 0px;
  }
  @media (max-width: 992px) {
    .section_services .promo-box .promo-item {
      margin-bottom: 15px;
    }
  }
  .section_services .promo-box .promo-item .icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: inline-block;
    border: 1px solid var(--subColor);
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 10px;
  }
  .section_services .promo-box .promo-item .icon::after {
    content: "";
    width: 54px;
    height: 54px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: var(--bgBodySub);
  }
  .section_services .promo-box .promo-item .icon img {
    position: relative;
    z-index: 2;
  }
  .section_services .promo-box .promo-item .info {
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0;
  }
  .section_services .promo-box .promo-item .info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0px;
    margin-bottom: 3px;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  @media (max-width: 992px) {
    .section_services .promo-box .promo-item .info h3 {
      font-size: 1.4rem;
      text-align: center;
    }
  }
  .section_services .promo-box .promo-item .info span {
    font-size: 1.4rem;
    display: block;
    opacity: 0.75;
    line-height: 1.4;
  }
  @media (max-width: 992px) {
    .section_services .promo-box .promo-item .info span {
      font-size: 1.2rem;
      text-align: center;
    }
  }
  .section_coupons .swiper_coupons .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_coupons
    .swiper_coupons
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_coupons
    .swiper_coupons
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_coupons .swiper_coupons .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_coupons .swiper_coupons .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_coupons .swiper_coupons .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_coupons .swiper_coupons .swiper-button-next:after {
    display: none;
  }
  .section_coupons .swiper_coupons .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_coupons .swiper_coupons .swiper-button-next:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_coupons .swiper_coupons .swiper-button-next {
      display: none;
    }
  }
  .section_coupons .swiper_coupons .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_coupons .swiper_coupons .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_coupons .swiper_coupons .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_coupons .swiper_coupons .swiper-button-prev:after {
    display: none;
  }
  .section_coupons .swiper_coupons .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_coupons .swiper_coupons .swiper-button-prev:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_coupons .swiper_coupons .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_coupons .swiper_coupons .swiper-button-next,
    .section_coupons .swiper_coupons .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_coupons .swiper_coupons .swiper-button-next:after,
    .section_coupons .swiper_coupons .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_coupons .swiper_coupons .swiper-button-lock {
    display: none !important;
  }
  .section_coupons .swiper_coupons .swiper-button-disabled {
    opacity: 0.35;
  }
  .section_coupons .swiper_coupons .swiper-slide {
    height: auto;
  }
  .section_coupons .swiper_coupons .swiper-slide .box-coupon {
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 0px;
    position: relative;
    height: 100%;
    max-width: 100%;
  }
  .section_coupons .swiper_coupons .swiper-slide .box-coupon .image {
    width: 70px;
    height: 95px;
    display: flex;
    position: relative;
    flex: none;
    flex-grow: 0;
    background: var(--bgBodySub);
    border: 1px solid var(--bgBodySub);
    border-radius: 8px;
    padding: 7px;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
  }
  .section_coupons .swiper_coupons .swiper-slide .box-coupon .image img {
    height: 50px;
    width: 50px;
  }
  .section_coupons .swiper_coupons .swiper-slide .box-coupon .content_wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-left: 12px;
    position: relative;
    width: 100%;
    height: 95px;
    justify-content: space-between;
    background: var(--bgBodySub);
    border: 1px solid var(--bgBodySub);
    border-radius: 8px;
    padding: 7px;
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-top {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-top
    span {
    font-size: 1.2rem;
    color: #444;
    font-weight: 500;
  }
  @media (max-width: 350px) {
    .section_coupons
      .swiper_coupons
      .swiper-slide
      .box-coupon
      .content_wrap
      .content-top {
      font-size: 1.4rem;
    }
    .section_coupons
      .swiper_coupons
      .swiper-slide
      .box-coupon
      .content_wrap
      .content-top
      span {
      font-size: 10px;
    }
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-bottom
    span {
    color: var(--mainColor);
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
    color: #666;
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-bottom
    .coupon-code {
    position: relative;
    display: inline-block;
    color: #fff;
    background: var(--mainColor);
    padding: 2px 8px;
    margin-left: 0px;
    min-width: 70px;
    text-align: center;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-bottom
    .coupon-code:hover {
    background: var(--hover);
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .info-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 1.4rem;
    border: 1px solid var(--mainColor);
    border-radius: 99px;
    position: absolute;
    right: 7px;
    top: 7px;
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .info-button
    svg {
    width: 10px;
    height: 10px;
    fill: var(--mainColor);
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .info-button:hover {
    border: 1px solid var(--hover);
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .info-button:hover
    svg {
    fill: var(--hover);
  }
  @media (max-width: 767px) {
    .section_coupons .swiper_coupons {
      overflow: initial;
      padding: 0px;
      margin: 0px;
    }
    .section_coupons .swiper_coupons .swiper-wrapper {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      margin-left: -7px;
      width: auto;
    }
    .section_coupons .swiper_coupons .swiper-wrapper .swiper-slide {
      padding-left: 7px;
      padding-right: 7px;
      -ms-flex: 0 0 85%;
      flex: 0 0 85%;
      max-width: 85%;
      min-width: 85%;
      height: auto;
    }
    .section_coupons .swiper_coupons .swiper-wrapper .swiper-slide:last-child {
      padding-right: 0px;
    }
    .section_coupons
      .swiper_coupons
      .swiper-wrapper
      .swiper-slide
      .box-coupon
      .content_wrap
      .content-bottom
      .coupon-code {
      min-width: 70px;
      font-size: 1.1rem;
    }
    .section_coupons
      .swiper_coupons
      .swiper-wrapper
      .swiper-slide
      .box-coupon
      .content_wrap
      .content-bottom
      span {
      font-size: 1.1rem;
      font-weight: 500;
      line-height: normal;
    }
  }
  .popup-coupon {
/*     padding: 0 8px;
    box-sizing: border-box;
    width: 450px;
    max-height: 505px;
    height: auto;
    background: transparent;
    margin: 0 auto;
    position: relative; */
/*     position: fixed;
    left: 50%;
    top: 15%; */
/*     transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
      visibility 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: none;
    touch-action: manipulation; */
/*     opacity: 0; */
/*     transform: translateX(-50%); */
/*     z-index: -1;
    min-height: 200px; */
  }
  @media (max-width: 767px) {
    .popup-coupon {
      width: 100%;
    }
  }
  .popup-coupon.active {
    opacity: 1;
    z-index: 99999;
  }
  .popup-coupon .content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    background-color: #fff;
    margin: 0 auto;
    -webkit-box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
  }
  .popup-coupon .content .title {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--mainColor);
    color: #fff;
  }
  .popup-coupon .content .close-popup-coupon {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
  }
  .popup-coupon .content .close-popup-coupon svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s;
  }
  .popup-coupon .content .close-popup-coupon svg path {
    fill: #fff;
  }
  .popup-coupon .content .close-popup-coupon:hover svg {
    transform: rotate(90deg);
  }
  .popup-coupon .content ul {
    width: 100%;
  }
  .popup-coupon .content ul li {
    padding: 10px;
    display: flex;
  }
  .popup-coupon .content ul li:nth-child(2n + 1) {
    background-color: #f9f9f9;
  }
  .popup-coupon .content ul li span:first-child {
    min-width: 126px;
    display: inline-block;
    color: var(--mainColor);
  }
  .section_4_banner .three_banner {
    display: block;
    position: relative;
	overflow: hidden;
  }
  .section_4_banner .three_banner .duration-300 {
    display: block;
    aspect-ratio: 437/260;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  .section_4_banner .three_banner .duration-300:hover img {
    transform: scale(1.1);
  }
  .section_4_banner .three_banner .info_banner {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    max-width: 50%;
    color: var(--custom-color);
  }
  .section_4_banner .three_banner .info_banner h3 {
    line-height: 1.2;
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
  }
  .section_4_banner .three_banner .info_banner h2 {
    line-height: 1.2;
    font-size: 2.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
  }
  .section_4_banner .three_banner .info_banner .content_banner {
    line-height: 1.4;
    font-size: 1.3rem;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
  }
  @media (max-width: 1199px) {
    .section_4_banner .three_banner .info_banner {
      max-width: 60%;
    }
    .section_4_banner .three_banner .info_banner h2 {
      font-size: 1.8rem;
    }
  }
  .section_4_banner .three_banner .info_banner .actions_banner {
    display: flex;
    justify-content: start;
    margin-top: auto;
  }
  .section_4_banner .three_banner .info_banner .actions_banner a {
    display: flex;
    align-items: center;
    color: #fff;
    width: fit-content;
    font-size: 1.2rem;
    font-weight: 500;
    background-color: var(--custom-color);
    padding: 3px 10px;
    border-radius: 30px;
  }
  .section_4_banner .three_banner .info_banner .actions_banner a svg {
    width: 14px;
    height: 14px;
    margin-left: 3px;
  }
  .section_4_banner .three_banner .info_banner .actions_banner a svg path {
    fill: #fff;
  }
  .section_4_banner .three_banner .info_banner .actions_banner a:hover,
  .section_4_banner .three_banner .info_banner .actions_banner a:focus {
    background-color: var(--subColor);
  }
  @media (max-width: 350px) {
    .section_4_banner .three_banner .info_banner h3 {
      font-size: 1.2rem;
    }
    .section_4_banner .three_banner .info_banner h2 {
      font-size: 1.4rem;
    }
    .section_4_banner .three_banner .info_banner .content_banner {
      font-size: 1.1rem;
    }
  }
  .section_4_banner .banner-slider .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_4_banner
    .banner-slider
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_4_banner
    .banner-slider
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_4_banner .banner-slider .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_4_banner .banner-slider .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_4_banner .banner-slider .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_4_banner .banner-slider .swiper-button-next:after {
    display: none;
  }
  .section_4_banner .banner-slider .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_4_banner .banner-slider .swiper-button-next:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_4_banner .banner-slider .swiper-button-next {
      display: none;
    }
  }
  .section_4_banner .banner-slider .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_4_banner .banner-slider .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_4_banner .banner-slider .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_4_banner .banner-slider .swiper-button-prev:after {
    display: none;
  }
  .section_4_banner .banner-slider .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_4_banner .banner-slider .swiper-button-prev:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_4_banner .banner-slider .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_4_banner .banner-slider .swiper-button-next,
    .section_4_banner .banner-slider .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_4_banner .banner-slider .swiper-button-next:after,
    .section_4_banner .banner-slider .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_4_banner .banner-slider .swiper-button-lock {
    display: none !important;
  }
  .section_4_banner .banner-slider .swiper-button-disabled {
    opacity: 0.35;
  }
  .section_4_banner .banner-slider .swiper-button-disabled {
    display: none;
  }
  @media (max-width: 767px) {
    .section_4_banner .banner-slider .swiper-button-next,
    .section_4_banner .banner-slider .swiper-button-prev {
      display: block !important;
    }
  }
  .section_banner_2 .three_banner {
    display: block;
    position: relative;
  }
  .section_banner_2 .three_banner .duration-300 {
    display: block;
    aspect-ratio: 500/275;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  .section_banner_2 .three_banner .duration-300:hover img {
    transform: scale(1.1);
  }
  .section_banner_2 .banner2-slider .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_banner_2
    .banner2-slider
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_banner_2
    .banner2-slider
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_banner_2 .banner2-slider .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_banner_2 .banner2-slider .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_banner_2 .banner2-slider .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_banner_2 .banner2-slider .swiper-button-next:after {
    display: none;
  }
  .section_banner_2 .banner2-slider .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_banner_2 .banner2-slider .swiper-button-next:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_banner_2 .banner2-slider .swiper-button-next {
      display: none;
    }
  }
  .section_banner_2 .banner2-slider .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_banner_2 .banner2-slider .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_banner_2 .banner2-slider .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_banner_2 .banner2-slider .swiper-button-prev:after {
    display: none;
  }
  .section_banner_2 .banner2-slider .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_banner_2 .banner2-slider .swiper-button-prev:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_banner_2 .banner2-slider .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_banner_2 .banner2-slider .swiper-button-next,
    .section_banner_2 .banner2-slider .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_banner_2 .banner2-slider .swiper-button-next:after,
    .section_banner_2 .banner2-slider .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_banner_2 .banner2-slider .swiper-button-lock {
    display: none !important;
  }
  .section_banner_2 .banner2-slider .swiper-button-disabled {
    opacity: 0.35;
  }
  .section_banner_2 .banner2-slider .swiper-button-disabled {
    display: none;
  }
  @media (max-width: 767px) {
    .section_banner_2 .banner2-slider .swiper-button-next,
    .section_banner_2 .banner2-slider .swiper-button-prev {
      display: block !important;
    }
  }
  .section_1_banner .three_banner {
    display: block;
    position: relative;
  }
  .section_1_banner .three_banner .duration-300 {
    display: block;
    aspect-ratio: 1280/380;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  .section_1_banner .three_banner .duration-300 img {
    width: 100%;
  }
  .section_1_banner .three_banner .duration-300:hover img {
    transform: scale(1.1);
  }
  .section_1_banner .three_banner .info_banner {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, var(--mainColor), transparent);
    color: var(--one-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 20px;
  }
  @media (min-width: 992px) {
    .section_1_banner .three_banner .info_banner {
      position: absolute;
      z-index: 1;
      top: 50%;
      left: 20px;
      transform: translate(0, -50%);
      max-width: 70%;
      height: calc(100% - 40px);
    }
  }
  .section_1_banner .three_banner .info_banner .item_banner_info {
    display: block;
    max-width: 80%;
  }
  .section_1_banner .three_banner .info_banner h3 {
    line-height: 1.2;
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
  }
  .section_1_banner .three_banner .info_banner h2 {
    line-height: 1.2;
    font-size: 2.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
  }
  .section_1_banner .three_banner .info_banner .content_banner {
    line-height: 1.4;
    font-size: 1.3rem;
    font-weight: 300;
    display: block;
    margin-bottom: 10px;
  }
  @media (max-width: 1199px) {
    .section_1_banner .three_banner .info_banner {
      max-width: 80%;
    }
    .section_1_banner .three_banner .info_banner h2 {
      font-size: 1.8rem;
    }
  }
  @media (max-width: 1025px) {
    .section_1_banner .three_banner .info_banner {
      max-width: 90%;
    }
  }
  @media (max-width: 992px) {
    .section_1_banner .three_banner .info_banner {
      max-width: 100%;
      margin-top: 15px;
      padding: 14px;
    }
    .section_1_banner .three_banner .info_banner h2 {
      font-size: 1.6rem;
    }
    .section_1_banner .three_banner .info_banner .content_banner {
      font-size: 1.2rem;
    }
  }
  .section_1_banner .three_banner .info_banner .actions_banner {
    display: flex;
    justify-content: start;
    margin-top: auto;
  }
  .section_1_banner .three_banner .info_banner .actions_banner a {
    display: flex;
    align-items: center;
    color: var(--subColor);
    width: fit-content;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: var(--one-color);
    padding: 5px 15px;
    border-radius: 30px;
  }
  .section_1_banner .three_banner .info_banner .actions_banner a svg {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
  .section_1_banner .three_banner .info_banner .actions_banner a svg path {
    fill: var(--subColor);
  }
  .section_1_banner .three_banner .info_banner .actions_banner a:hover,
  .section_1_banner .three_banner .info_banner .actions_banner a:focus {
    color: #fff;
    background-color: var(--subColor);
  }
  .section_1_banner .three_banner .info_banner .actions_banner a:hover svg path,
  .section_1_banner .three_banner .info_banner .actions_banner a:focus svg path {
    fill: #fff;
  }
  .section_flash_sale {
    width: 100%;
    overflow: hidden;
  }
  .section_flash_sale .count-down {
    display: flex;
    padding: 0;
    background: transparent;
    margin-bottom: 0;
    position: relative;
    align-items: center;
  }
  .section_flash_sale .count-down .title_km {
    color: #fff;
    display: inline-block;
    margin-right: 10px;
  }
  @media only screen and (max-width: 767px) {
    .section_flash_sale .count-down .title_km {
      display: none;
    }
  }
  .section_flash_sale .count-down .timer-view {
    display: inline-block;
    text-align: left;
  }
  .section_flash_sale .count-down .timer-view .block-timer {
    width: 45px;
    height: 45px;
    background: var(--subColor);
    border-radius: 5px;
    display: inline-block;
    padding: 5px 0px;
    margin-right: 5px;
    text-align: center;
  }
  .section_flash_sale .count-down .timer-view .block-timer:last-child {
    margin-right: 0px;
  }
  .section_flash_sale .count-down .timer-view .block-timer p {
    display: block;
    font-weight: 500;
    color: #fff;
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 0px;
  }
  .item_product_main .count-down .timer-view .block-timer span {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
  }
  .item_product_main .count-down .lof-labelexpired {
    color: #fff;
  }
  .section_flash_sale .time_box_full {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 15px;
    background: var(--mainColor);
    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  @media only screen and (max-width: 767px) {
    .section_flash_sale .time_box_full {
      align-items: flex-start;
      padding: 15px 10px;
    }
  }
  .section_flash_sale .time_box_full .time_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (min-width: 767px) {
    .section_flash_sale .time_box_full .time_box {
      padding: 0;
      justify-content: flex-start;
      width: 100%;
    }
  }
  @media only screen and (max-width: 767px) {
    .section_flash_sale .time_box_full .time_box {
      flex-direction: column;
      align-items: center;
      padding: 0;
    }
  }
  .section_flash_sale .time_box_full .time_box .flex-full {
    flex: 1 1 auto;
  }
  .section_flash_sale .time_box_full .time_box .text-right {
    text-align: right;
  }
  @media (max-width: 767px) {
    .section_flash_sale .time_box_full .time_box .hidden-xs {
      display: none !important;
    }
  }
  .section_flash_sale .time_box_full .time_box a.ssmore {
    color: #fff;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: underline;
  }
  .section_flash_sale .time_box_full .time_box a.ssmore svg {
    width: 16px;
    height: 16px;
    margin-left: 5px;
  }
  .section_flash_sale .time_box_full .time_box a.ssmore svg path {
    fill: #fff;
  }
  .section_flash_sale .time_box_full .time_box a.ssmore:hover,
  .section_flash_sale .time_box_full .time_box a.ssmore:focus {
    color: var(--subColor);
  }
  .section_flash_sale .time_box_full .time_box a.ssmore:hover svg path,
  .section_flash_sale .time_box_full .time_box a.ssmore:focus svg path {
    fill: var(--subColor);
  }
  .section_flash_sale .time_box_full h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
    display: inline-block;
    margin-right: 50px;
  }
  @media only screen and (max-width: 767px) {
    .section_flash_sale .time_box_full h2 {
      margin-right: 0px;
      margin-bottom: 7px;
    }
  }
  @media (max-width: 322px) {
    .section_flash_sale .time_box_full h2 {
      font-size: 16px;
    }
  }
  .section_flash_sale .time_box_full h2 img {
    height: 32px;
    width: auto;
    animation: 0.8s linear 0s infinite normal none running pulseScale;
  }
  @-webkit-keyframes pulseScale {
    50% {
      opacity: 0.3;
      transform: scale(1.3);
    }
  }
  .section_flash_sale .time_box_full h2 a {
    color: #fff;
  }
  .section_flash_sale .time_box_full h2 a:hover {
    color: var(--subColor);
  }
  .section_flash_sale .item_product_main {
    padding-bottom: 0px;
  }
  .section_flash_sale .item_null {
    margin-bottom: 0px;
  }
  .section_flash_sale .block-product-sale {
	width: 100%;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--mainColor), #fff 30%) 0%,
      var(--mainColor) 100%
    );
  }
  .section_flash_sale .block-product-sale .swiper_sale {
    padding-left: 8px;
    margin-left: -8px;
    padding-bottom: 5px;
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-button-next
    svg
    path {
    stroke: var(--mainColor);
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-next:after {
    display: none;
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-button-next:hover
    svg
    path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_flash_sale .block-product-sale .swiper_sale .swiper-button-next {
      display: none;
    }
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-button-prev
    svg
    path {
    stroke: var(--mainColor);
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev:after {
    display: none;
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-button-prev:hover
    svg
    path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_flash_sale .block-product-sale .swiper_sale .swiper-button-next,
    .section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_flash_sale
      .block-product-sale
      .swiper_sale
      .swiper-button-next:after,
    .section_flash_sale
      .block-product-sale
      .swiper_sale
      .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-lock {
    display: none !important;
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-disabled {
    opacity: 0.35;
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-slide {
    height: auto !important;
  }
  @media (min-width: 992px) {
    .section_flash_sale .block-product-sale .swiper_sale .swiper-slide {
      max-width: 25%;
    }
  }
  @media (min-width: 1025px) {
    .section_flash_sale .block-product-sale .swiper_sale .swiper-slide {
      max-width: 20%;
    }
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-slide
    .product-flash-sale
    .box-product-sale {
    flex: 1 1 0%;
  }
  .item_product_main
    .productcount {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .item_product_main
    .productcount
    .countitem {
    width: 100%;
    height: 17px;
    border-radius: 10px;
    position: relative;
    background: #8d251c;
    z-index: 1;
  }
  .item_product_main
    .productcount
    .countitem.visible {
    background: var(--bgBodySub);
  }
  .item_product_main
    .productcount
    .countitem.sold-out
    .countdown {
    background: linear-gradient(90deg, #4a4a4a, #8b8b8b) !important;
  }
  .item_product_main
    .productcount
    .countitem
    .fire {
    position: absolute;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    top: -6px;
    left: 0;
  }
  .item_product_main
    .productcount
    .countitem
    .countdown {
    position: absolute;
    height: 17px;
    border-radius: 10px;
    background: linear-gradient(to right, #c8103d, #f4b631);
    z-index: 0;
    left: 0;
    top: 0;
  }
  .item_product_main
    .productcount
    .countitem
    .countdown
    span {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    z-index: 3;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    left: 100%;
    top: -10px;
  }
  .item_product_main
    .productcount
    .countitem.sold-out
    .countdown {
    background: #ddd;
  }
  .item_product_main
    .productcount
    span {
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    z-index: 4;
    color: #fff;
    line-height: 17px;
    left: 50%;
    min-width: 70px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -os-transform: translateX(-50%);
  }
  @media (max-width: 480px) {
    .item_product_main
      .productcount
      span {
      font-size: 1.2rem;
    }
  }
  .item_product_main
    .productcount
    span
    b {
    font-weight: 600;
  }
  @media (max-width: 767px) {
    .section_flash_sale .block-product-sale {
      overflow: hidden;
      padding: 14px;
    }
    .section_flash_sale .block-product-sale .alert.alert-warning {
      margin: 0 20px;
    }
    .section_flash_sale .block-product-sale .swiper-button-next,
    .section_flash_sale .block-product-sale .swiper-button-prev {
      display: block !important;
    }
  }
  .section_flash_sale .view-more {
    text-align: center;
    display: none;
  }
  @media (max-width: 767px) {
    .section_flash_sale .view-more {
      display: block !important;
      margin-top: 14px;
    }
  }
  .section_flash_sale .view-more .flexbtn:hover,
  .section_flash_sale .view-more .flexbtn:focus {
    background-color: var(--subColor);
    opacity: 0.8;
  }
  .section_product_tab .tab_big {
    height: auto;
    background-color: var(--mainColor);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .section_product_tab .tab_big .tab_ul {
    position: relative;
    max-width: 100%;
    margin: 0px auto 0 auto;
  }
  .section_product_tab .tab_big .tab_ul ul {
    scrollbar-face-color: #367cd2;
    scrollbar-shadow-color: #ffffff;
    scrollbar-highlight-color: #ffffff;
    scrollbar-3dlight-color: #ffffff;
    scrollbar-darkshadow-color: #ffffff;
    scrollbar-track-color: #ffffff;
    scrollbar-arrow-color: #ffffff;
    scrollbar-width: none;
  }
  .section_product_tab .tab_big .tab_ul ul::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .section_product_tab .tab_big .tab_ul ul::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    height: 0;
  }
  .section_product_tab .tab_big .tab_ul ul::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: rgba(255, 0, 0, 0.8);
    -webkit-box-shadow: none;
  }
  .section_product_tab .tab_big .tab_ul .grad-left {
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    z-index: 3;
    width: 24px;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .section_product_tab .tab_big .tab_ul .grad-left svg {
    transform: rotate(180deg);
  }
  .section_product_tab .tab_big .tab_ul .grad-left svg path {
    stroke: var(--mainColor);
  }
  .section_product_tab .tab_big .tab_ul .grad-left svg rect {
    fill: var(--mainColor);
  }
  .section_product_tab .tab_big .tab_ul .grad-right {
    position: absolute;
    top: calc(50% - 12px);
    z-index: 3;
    right: 0;
    width: 24px;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .section_product_tab .tab_big .tab_ul .grad-right svg path {
    stroke: var(--mainColor);
  }
  .section_product_tab .tab_big .tab_ul .grad-right svg rect {
    fill: var(--mainColor);
  }
  .section_product_tab .tab_big .tab_ul .button {
    cursor: pointer;
  }
  .section_product_tab .tab_big .tab_ul.actice {
    padding: 0px 30px;
  }
  .section_product_tab .tab_big .tab_ul.actice ul {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-mask: linear-gradient(
      90deg,
      transparent 0,
      #000 10px,
      #000 calc(100% - 10px),
      transparent 100%
    );
  }
  .section_product_tab .tab_big .tab_ul ul {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 0;
    margin: 0;
  }
  .section_product_tab .tab_big .tab_ul ul li {
    padding: 0px;
    position: relative;
    width: auto;
    line-height: 36px;
    height: auto;
    font-weight: 400;
    color: #fff;
    transition: background-color 0.3s ease;
    margin-right: 15px;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 7px 10px;
  }
  .section_product_tab .tab_big .tab_ul ul li span {
    position: relative;
    display: block;
    line-height: 1.4;
  }
  .section_product_tab .tab_big .tab_ul ul li span.txt-title-tab {
    font-size: 1.6rem;
    font-weight: 400;
  }
  @media (max-width: 767px) {
    .section_product_tab .tab_big .tab_ul ul li span.txt-title-tab {
      font-size: 1.4rem;
    }
  }
  @media (min-width: 767px) {
    .section_product_tab .tab_big .tab_ul ul li:last-child {
      margin-right: 0px;
    }
  }
  .section_product_tab .tab_big .tab_ul ul li:hover {
    color: #fff;
    border-color: var(--subColor);
    background-color: var(--subColor);
  }
  .section_product_tab .tab_big .tab_ul ul li.current {
    color: #fff;
    border-color: var(--subColor);
    background-color: var(--subColor);
  }
  .section_product_tab .tab_big .tab_ul .button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--bgBodySub);
    border-radius: 5px;
  }
  .section_product_tab .tab_big .tab_ul .button:hover svg {
    color: var(--subColor);
  }
  .section_product_tab .tab_big .tab_ul .button:hover svg path {
    fill: var(--subColor);
  }
  .section_product_tab .tab-content {
    overflow: initial;
  }
  .section_product_tab .view-more {
    text-align: center;
  }
  .section_product_tab .swiper-container {
    position: relative;
    padding: 2px;
    margin-bottom: 20px;
  }
  .section_product_tab .swiper-container .item_product_main {
    padding-bottom: 0px;
  }
  .section_product_tab .swiper-container .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_product_tab
    .swiper-container
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_product_tab
    .swiper-container
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_product_tab .swiper-container .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_product_tab .swiper-container .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_product_tab .swiper-container .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_product_tab .swiper-container .swiper-button-next:after {
    display: none;
  }
  .section_product_tab .swiper-container .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_product_tab .swiper-container .swiper-button-next:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_product_tab .swiper-container .swiper-button-next {
      display: none;
    }
  }
  .section_product_tab .swiper-container .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_product_tab .swiper-container .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_product_tab .swiper-container .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_product_tab .swiper-container .swiper-button-prev:after {
    display: none;
  }
  .section_product_tab .swiper-container .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_product_tab .swiper-container .swiper-button-prev:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_product_tab .swiper-container .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_product_tab .swiper-container .swiper-button-next,
    .section_product_tab .swiper-container .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_product_tab .swiper-container .swiper-button-next:after,
    .section_product_tab .swiper-container .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_product_tab .swiper-container .swiper-button-lock {
    display: none !important;
  }
  .section_product_tab .swiper-container .swiper-button-disabled {
    opacity: 0.35;
  }
  @media (max-width: 767px) {
    .section_product_tab .swiper-container .swiper-button-next,
    .section_product_tab .swiper-container .swiper-button-prev {
      display: block !important;
    }
  }
  @media (max-width: 767px) {
    .section_product_tab .col-lg-3 {
      order: 2 !important;
    }
    .section_product_tab .col-lg-9 {
      order: 1 !important;
    }
    .section_product_tab .tab_big .tab_ul {
      padding: 0px 30px;
    }
    .section_product_tab .tab-content.current {
      overflow: initial;
    }
  }
  @media (min-width: 767px) {
    .section_product_tab .pro_sticky {
      position: sticky;
      top: 60px;
    }
  }
  .section_product_tab .image-tab {
    overflow: hidden;
    border-radius: 10px;
  }
  @media (max-width: 767px) {
    .section_product_tab .image-tab {
      margin-top: 20px;
    }
  }
  .section_product_tab .image-tab img {
    transition: 0.5s all;
  }
  .section_product_tab .image-tab:hover img,
  .section_product_tab .image-tab:focus img {
    transform: scale(1.1);
  }
  .section_product_tab .key-pro {
    margin-top: 20px;
  }
  .section_product_tab .key-pro .tilte-key {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .section_product_tab .key-pro .list-search-key li {
    display: inline-block;
    margin-right: 5px;
    border: 1px solid var(--mainColor);
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .section_product_tab .key-pro .list-search-key li a {
    padding: 4px 15px;
    display: block;
  }
  .section_product_tab .key-pro .list-search-key li:hover {
    background: var(--mainColor);
  }
  .section_product_tab .key-pro .list-search-key li:hover a {
    color: #fff;
  }
  .section_about {
    position: relative;
  }
  @media (min-width: 992px) {
    .section_about .col-lg-3 {
      -ms-flex: 0 0 30%;
      flex: 0 0 30%;
      max-width: 30%;
    }
    .section_about .col-lg-6 {
      -ms-flex: 0 0 40%;
      flex: 0 0 40%;
      max-width: 40%;
    }
    .section_about .product-content {
      padding-top: 40px;
    }
  }
  .section_about .section-title {
    margin-bottom: 15px;
  }
  .section_about .container {
    position: relative;
  }
  .section_about .product-content {
    max-width: 80%;
  }
  @media (max-width: 767px) {
    .section_about .product-content {
      margin-bottom: 15px;
      max-width: 100%;
    }
  }
  .section_about .product-content .sub-section-title {
    font-size: 1.4rem;
    color: var(--subColor);
  }
  .section_about .product-content .section-title {
    text-align: left;
  }
  .section_about .product-content .section-title h2 {
    line-height: 1.2;
  }
  .section_about .product-content a.show-more {
    margin-top: 15px;
  }
  .section_about .banner-product {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 1010px;
    max-width: 100%;
    border-radius: 20px 20px 120px 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1010/1184;
  }
  @media (max-width: 767px) {
    .section_about .banner-product {
      display: none;
    }
  }
  .section_about .banner-product .exp-wrap {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 10px;
    width: fit-content;
    height: fit-content;
    background: var(--subColor);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px 15px 40px 15px;
  }
  @media (max-width: 767px) {
    .section_about .banner-product .exp-wrap {
      border-radius: 10px 10px 30px 10px;
    }
  }
  .section_about .banner-product .exp-wrap .exp-content {
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 15px 15px 36px 15px;
  }
  @media (max-width: 767px) {
    .section_about .banner-product .exp-wrap .exp-content {
      border-radius: 10px 10px 26px 10px;
    }
  }
  .section_about .banner-product .exp-wrap .exp-content .exp-tt {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0px;
  }
  @media (max-width: 1025px) {
    .section_about .banner-product .exp-wrap .exp-content .exp-tt {
      font-size: 2rem;
    }
  }
  .section_about .swiper-slide img {
    border-radius: 10px;
  }
  .section_about .faq-list {
    list-style: none;
    padding: 0;
  }
  @media (min-width: 767px) and (max-width: 992px) {
    .section_about .faq-list {
      margin-bottom: 15px;
    }
  }
  .section_about .faq-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
  }
  .section_about .faq-item:last-child {
    border-bottom: none;
  }
  .section_about .faq-item.is-active .faq-content {
    display: block;
  }
  .section_about .faq-content {
    display: none;
    margin-top: 5px;
    color: #444;
  }
  .section_about .faq-header {
    padding: 0;
    padding-left: 30px;
    border: 0;
    font-weight: 600;
    color: #5a5a5a;
    position: relative;
  }
  .section_about .faq-header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-position: center;
    background-image: url(//bizweb.dktcdn.net/100/587/433/themes/1031242/assets/plus.svg?1765265059192);
  }
  .section_about .faq-item.is-active .faq-header h3 {
    color: var(--mainColor);
  }
  .section_about .faq-item.is-active .faq-header::after {
    background-image: url(//bizweb.dktcdn.net/100/587/433/themes/1031242/assets/minus.svg?1765265059192);
  }
  .section_about .faq-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
  }
  @media (max-width: 767px) {
    .section_about .faq-header h3 {
      border-radius: 10px 10px 30px 10px;
    }
  }
  .section_category .list_category {
    grid-template-columns: repeat(6, 1fr);
    display: grid;
    gap: 20px;
  }
  @media (max-width: 1025px) {
    .section_category .list_category {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media (max-width: 767px) {
    .section_category .list_category {
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
  }
  .section_category .list_category .box-cate {
    position: relative;
    width: 100%;
    display: none;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
  }
  .section_category .list_category .box-cate picture {
    display: inline-block;
    margin-right: 14px;
    display: block;
    aspect-ratio: 56/ 56;
    position: relative;
    min-width: 56px;
  }
  @media (max-width: 767px) {
    .section_category .list_category .box-cate picture {
      aspect-ratio: 40/ 40;
      min-width: 40px;
      margin-right: 7px;
    }
  }
  .section_category .list_category .box-cate picture img {
    border-radius: 10px;
  }
  .section_category .list_category .box-cate {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 10px;
    /*border: 1px solid #e5e7eb;*/
    /*border-radius: 10px;*/
    flex-direction: column;
  }
  .section_category .list_category .box-cate img {
    height: 56px;
    width: 56px;
    transform: scale(1);
    position: relative;
    /*border-radius: 50%;*/
  }
  @media (max-width: 767px) {
    .section_category .list_category .box-cate img {
      height: 40px;
      width: 40px;
    }
  }
  .section_category .list_category .box-cate .nam_count_cate {
    display: flex;
  }
  .section_category .list_category .box-cate .nam_count_cate h3 {
    font-size: 1.6rem;
    margin-bottom: 0px;
    font-weight: 500;
    -webkit-line-clamp: 2;
    height: inherit;
    max-height: calc(1em * 1.4 * 2);
    text-align: center;
    margin-top: 8px;
  }
  @media (max-width: 767px) {
    .section_category .list_category .box-cate .nam_count_cate h3 {
      font-size: 1.4rem;
    }
  }
  
  .section_category .list_category .box-cate .cate-item {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
  }
  .section_category .list_category .box-cate .nam_count_cate h3 span {
    display: block;
  }
  .section_category .list_category .box-cate:hover {
    border: 1px solid var(--mainColor);
    color: #fff;
    background-color: var(--mainColor);
  }
  .section_category .box_btn_showmore {
    display: block;
    text-align: center;
  }
  .section_category .box_btn_showmore #loadMoreBtn,
  .section_category .box_btn_showmore #loadMoreBtn2 {
    margin-top: 16px;
    padding: 8px 16px;
    cursor: pointer;
    text-align: center;
    display: none;
    border: none;
    background: transparent;
    align-items: center;
  }
  .section_category .box_btn_showmore #loadMoreBtn svg {
    display: inline-block;
    margin-right: 4px;
  }
  .section_category .box_btn_showmore #loadMoreBtn:hover,
  .section_category .box_btn_showmore #loadMoreBtn:focus {
    color: var(--subColor);
  }
  .section_category .box_btn_showmore #loadMoreBtn:hover svg path,
  .section_category .box_btn_showmore #loadMoreBtn:focus svg path {
    fill: var(--subColor);
  }
  .section_blog .tab_big {
    height: auto;
    margin-bottom: 15px;
  }
  .section_blog .tab_big .tab_ul {
    position: relative;
    max-width: 100%;
    margin: 0px auto 0 auto;
  }
  .section_blog .tab_big .tab_ul ul {
    scrollbar-face-color: #367cd2;
    scrollbar-shadow-color: #ffffff;
    scrollbar-highlight-color: #ffffff;
    scrollbar-3dlight-color: #ffffff;
    scrollbar-darkshadow-color: #ffffff;
    scrollbar-track-color: #ffffff;
    scrollbar-arrow-color: #ffffff;
    scrollbar-width: none;
  }
  .section_blog .tab_big .tab_ul ul::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .section_blog .tab_big .tab_ul ul::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    height: 0;
  }
  .section_blog .tab_big .tab_ul ul::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: rgba(255, 0, 0, 0.8);
    -webkit-box-shadow: none;
  }
  .section_blog .tab_big .tab_ul .grad-left {
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    z-index: 3;
    width: 24px;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .section_blog .tab_big .tab_ul .grad-left svg {
    transform: rotate(180deg);
  }
  .section_blog .tab_big .tab_ul .grad-left svg path {
    stroke: var(--mainColor);
  }
  .section_blog .tab_big .tab_ul .grad-left svg rect {
    fill: var(--mainColor);
  }
  .section_blog .tab_big .tab_ul .grad-right {
    position: absolute;
    top: calc(50% - 12px);
    z-index: 3;
    right: 0;
    width: 24px;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .section_blog .tab_big .tab_ul .grad-right svg path {
    stroke: var(--mainColor);
  }
  .section_blog .tab_big .tab_ul .grad-right svg rect {
    fill: var(--mainColor);
  }
  .section_blog .tab_big .tab_ul .button {
    cursor: pointer;
  }
  .section_blog .tab_big .tab_ul.actice {
    padding: 0px 30px;
  }
  .section_blog .tab_big .tab_ul.actice ul {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-mask: linear-gradient(
      90deg,
      transparent 0,
      #000 10px,
      #000 calc(100% - 10px),
      transparent 100%
    );
  }
  .section_blog .tab_big .tab_ul ul {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 0;
    margin: 0;
  }
  .section_blog .tab_big .tab_ul ul li {
    padding: 0px;
    position: relative;
    width: auto;
    line-height: 36px;
    height: auto;
    font-weight: 400;
    transition: background-color 0.3s ease;
    margin-right: 15px;
    border: 1px solid var(--mainColor);
    border-radius: 10px;
    padding: 7px 10px;
  }
  .section_blog .tab_big .tab_ul ul li span {
    position: relative;
    display: block;
    line-height: 1.4;
  }
  .section_blog .tab_big .tab_ul ul li span.txt-title-tab {
    font-size: 1.6rem;
    font-weight: 400;
  }
  @media (max-width: 767px) {
    .section_blog .tab_big .tab_ul ul li span.txt-title-tab {
      font-size: 1.4rem;
    }
  }
  @media (min-width: 767px) {
    .section_blog .tab_big .tab_ul ul li:last-child {
      margin-right: 0px;
    }
  }
  .section_blog .tab_big .tab_ul ul li:hover {
    color: #fff;
    background-color: var(--mainColor);
  }
  .section_blog .tab_big .tab_ul ul li.current {
    color: #fff;
    background-color: var(--mainColor);
  }
  .section_blog .tab_big .tab_ul .button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--bgBodySub);
    border-radius: 5px;
  }
  .section_blog .tab_big .tab_ul .button:hover svg {
    color: var(--subColor);
  }
  .section_blog .tab_big .tab_ul .button:hover svg path {
    fill: var(--subColor);
  }
  .section_blog .tab-content {
    overflow: initial;
  }
  .section_blog .view-more {
    text-align: center;
  }
  .section_blog .swiper-container {
    position: relative;
    padding: 2px;
    margin-bottom: 20px;
  }
  .section_blog .swiper-container .item_product_main {
    padding-bottom: 0px;
  }
  .section_blog .swiper-container .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_blog
    .swiper-container
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_blog
    .swiper-container
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_blog .swiper-container .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_blog .swiper-container .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_blog .swiper-container .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_blog .swiper-container .swiper-button-next:after {
    display: none;
  }
  .section_blog .swiper-container .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_blog .swiper-container .swiper-button-next:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_blog .swiper-container .swiper-button-next {
      display: none;
    }
  }
  .section_blog .swiper-container .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_blog .swiper-container .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_blog .swiper-container .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_blog .swiper-container .swiper-button-prev:after {
    display: none;
  }
  .section_blog .swiper-container .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_blog .swiper-container .swiper-button-prev:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_blog .swiper-container .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_blog .swiper-container .swiper-button-next,
    .section_blog .swiper-container .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_blog .swiper-container .swiper-button-next:after,
    .section_blog .swiper-container .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_blog .swiper-container .swiper-button-lock {
    display: none !important;
  }
  .section_blog .swiper-container .swiper-button-disabled {
    opacity: 0.35;
  }
  @media (max-width: 767px) {
    .section_blog .swiper-container .swiper-button-next,
    .section_blog .swiper-container .swiper-button-prev {
      display: block !important;
    }
  }
  @media (max-width: 767px) {
    .section_blog .tab_big .tab_ul {
      padding: 0px 30px;
    }
    .section_blog .tab-content.current {
      overflow: initial;
    }
  }
  .section_blog .item_blog_index {
    display: block;
    position: relative;
  }
  .section_blog .item_blog_index .update_date {
    display: flex;
    margin-bottom: 7px;
    font-size: 12px;
    color: #838383;
    justify-content: space-between;
  }
  .section_blog .item_blog_index .update_date .user_name b {
    color: var(--mainColor);
    font-weight: 500;
  }
  .section_blog .item_blog_index .image-blog {
    padding-bottom: 57%;
    overflow: hidden;
    height: auto;
    display: block;
    position: relative;
    border-radius: 10px;
    background-color: #f8f8f8;
  }
  .section_blog .item_blog_index .image-blog .user_date {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--subColor);
    padding: 5px;
    border-radius: 10px 0px 10px 0px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .section_blog .item_blog_index .image-blog img {
    width: auto !important;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease-in-out all;
    will-change: opacify;
    transform: scale(1.05);
  }
  .section_blog .item_blog_index .blog_content {
    position: relative;
    width: 100%;
    padding-top: 15px;
    background-color: #fff;
  }
  .section_blog .item_blog_index .blog_content h3 {
    margin-bottom: 7px;
    line-height: 22px;
  }
  .section_blog .item_blog_index .blog_content h3 a {
    color: var(--textColor);
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
  }
  .section_blog .item_blog_index .blog_content h3 a:hover {
    color: var(--subColor);
  }
  .section_blog .item_blog_index .blog_content .blog_description {
    color: var(--textColor);
    line-height: 20px;
    margin-bottom: 10px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 40px;
  }
  .section_blog .item_blog_index .blog_content .read_more {
    font-weight: 600;
  }
  .section_blog .item_blog_index:hover .image-blog img {
    transform: scale(1.15);
  }
  .section_blog .view-more {
    text-align: center;
    display: block;
    margin-top: 15px;
  }
  .item_null .item_product_main {
    aspect-ratio: 242/382;
    background: #f1f1f1;
    border-radius: 0px;
    height: auto;
    padding: 0px;
    margin-bottom: 28px;
  }
  .section_product {
    position: relative;
    display: block;
  }
  .section_product .item_null {
    margin-bottom: 0px;
  }
  @media (min-width: 1025px) {
    .section_product .col-xl-20 {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
    }
  }
  .section_product .swiper-container {
    position: relative;
    padding: 2px;
  }
  .section_product .swiper-container .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_product
    .swiper-container
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_product
    .swiper-container
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_product .swiper-container .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_product .swiper-container .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_product .swiper-container .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_product .swiper-container .swiper-button-next:after {
    display: none;
  }
  .section_product .swiper-container .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_product .swiper-container .swiper-button-next:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_product .swiper-container .swiper-button-next {
      display: none;
    }
  }
  .section_product .swiper-container .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_product .swiper-container .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_product .swiper-container .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_product .swiper-container .swiper-button-prev:after {
    display: none;
  }
  .section_product .swiper-container .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_product .swiper-container .swiper-button-prev:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_product .swiper-container .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_product .swiper-container .swiper-button-next,
    .section_product .swiper-container .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_product .swiper-container .swiper-button-next:after,
    .section_product .swiper-container .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_product .swiper-container .swiper-button-lock {
    display: none !important;
  }
  .section_product .swiper-container .swiper-button-disabled {
    opacity: 0.35;
  }
  @media (max-width: 767px) {
    .section_product .swiper-container .alert.alert-warning {
      margin: 0 20px;
    }
    .section_product .swiper-container .swiper-button-next,
    .section_product .swiper-container .swiper-button-prev {
      display: block !important;
    }
  }
  .section_product .view-more {
    text-align: center;
  }
  .section_product .box_banner_pro .image-tab {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
  }
  @media (max-width: 767px) {
    .section_product .box_banner_pro .image-tab {
      margin-top: 20px;
    }
  }
  .section_product .box_banner_pro .image-tab .image_effect {
    display: block;
    aspect-ratio: 1280/ 229;
    position: relative;
  }
  .section_product .box_banner_pro .image-tab img {
    transition: 0.5s all;
  }
  .section_product .box_banner_pro .image-tab:hover img,
  .section_product .box_banner_pro .image-tab:focus img {
    transform: scale(1.1);
  }
  .section_product .box_banner_pro .link_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
	overflow-x: scroll;
	padding-bottom: 16px;
    gap: 8px;
    margin-bottom: 20px;
  }
  @media (max-width: 991px) {
    .section_product .box_banner_pro .link_title {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      flex-direction: unset;
      -webkit-flex-flow: unset;
      flex-flow: unset;
      -webkit-justify-content: unset;
      justify-content: unset;
      -webkit-align-items: unset;
      align-items: unset;
      padding-bottom: 5px;
    }
  }
  @media (max-width: 991px) and (max-width: 767px) {
    .section_product .box_banner_pro .link_title {
      padding-top: 10px;
    }
  }
  .section_product .box_banner_pro .link_title .item_cate_index {
    border: 1px solid var(--mainColor);
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    padding: 2px 15px;
    border-radius: 10px;
    background-color: #fff;
  }
  .section_product .box_banner_pro .link_title .item_cate_index .title_cate {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 3px;
    margin-top: 3px;
    text-align: center;
  }
  .section_product .box_banner_pro .link_title .item_cate_index:hover {
    color: #fff;
    background-color: var(--mainColor);
  }
  .section_brand .box-trend .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_brand .box-trend .swiper-pagination-bullets .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_brand
    .box-trend
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_brand .box-trend .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_brand .box-trend .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_brand .box-trend .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_brand .box-trend .swiper-button-next:after {
    display: none;
  }
  .section_brand .box-trend .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_brand .box-trend .swiper-button-next:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_brand .box-trend .swiper-button-next {
      display: none;
    }
  }
  .section_brand .box-trend .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_brand .box-trend .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_brand .box-trend .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_brand .box-trend .swiper-button-prev:after {
    display: none;
  }
  .section_brand .box-trend .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_brand .box-trend .swiper-button-prev:hover svg path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_brand .box-trend .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_brand .box-trend .swiper-button-next,
    .section_brand .box-trend .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_brand .box-trend .swiper-button-next:after,
    .section_brand .box-trend .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_brand .box-trend .swiper-button-lock {
    display: none !important;
  }
  .section_brand .box-trend .swiper-button-disabled {
    opacity: 0.35;
  }
  .section_brand .box-trend .swiper-button-disabled {
    display: none;
  }
  @media (max-width: 767px) {
    .section_brand .box-trend .swiper-button-next,
    .section_brand .box-trend .swiper-button-prev {
      display: block !important;
    }
  }
  .section_brand .box-trend .item-trend {
    padding: 15px 15px 25px;
    text-align: left;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--mainColor), #fff 95%);
    position: relative;
    overflow: hidden;
  }
  .section_brand .box-trend .item-trend .opaci-topic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 2;
  }
  .section_brand .box-trend .item-trend .img_trend {
    position: relative;
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    overflow: auto;
    justify-content: start;
  }
  .section_brand .box-trend .item-trend .img_trend .img_trend_child {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    -o-justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -os-justify-content: center;
    -o-display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -os-display: flex;
    align-items: center;
    height: auto !important;
    padding-bottom: 90%;
  }
  .section_brand .box-trend .item-trend .img_trend .img_trend_child img {
    width: auto !important;
    max-height: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease-in-out all;
    will-change: opacify;
  }
  .section_brand .box-trend .item-trend .content-topic {
    position: absolute;
    transition: height 0.3s;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    align-content: end;
    height: 70px;
    padding: 10px;
    padding-right: 60px;
  }
  .section_brand .box-trend .item-trend .content-topic h3,
  .section_brand .box-trend .item-trend .content-topic span {
    position: relative;
    z-index: 1;
  }
  .section_brand .box-trend .item-trend .content-topic h3 {
    margin-bottom: 0px;
    color: var(--mainColor);
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1;
  }
  .section_brand .box-trend .item-trend .content-topic span {
    font-size: 1.2rem;
    color: var(--mainColor);
  }
  .section_brand .box-trend .item-trend .content-topic .icon-svg {
    position: absolute;
    top: 15px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
  }
  .section_brand .box-trend .item-trend .content-topic .icon-svg img {
    max-width: 100%;
    border-radius: 5px;
  }
  .section_brand .box-trend .item-trend:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(
      180deg,
      transparent 17%,
      color-mix(in srgb, var(--mainColor), #fff 50%) 120%
    );
    z-index: 1;
    transition: height 0.3s;
  }
  .section_brand .box-trend .item-trend:hover:before {
    height: 100%;
    background: linear-gradient(
      180deg,
      transparent 0,
      color-mix(in srgb, var(--mainColor), #fff 0%) 100%
    );
  }
  .section_brand .box-trend .item-trend:hover .content-topic h3 {
    color: #fff;
  }
  .section_brand .box-trend .item-trend:hover .content-topic span {
    color: #fff;
  }
  .section_brand .box-trend .item-trend:hover .content-topic .icon-svg {
    background-color: var(--subColor);
  }
  .section_disease .box_disaese {
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--mainColor);
    position: relative;
  }
  @media (max-width: 767px) {
    .section_disease .box_disaese {
      padding: 14px;
    }
  }
  .section_disease .box_disaese .box_bng_basse {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-position: center;
    opacity: 0.3;
    background-size: contain;
  }
  .section_disease .box_disaese h2 {
    line-height: 1.2;
    font-size: 2.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
  }
  .section_disease .box_disaese .content_banner {
    line-height: 1.4;
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
  }
  .section_disease .box_disaese .disease-slider {
    position: relative;
  }
  .section_disease .box_disaese .disease-slider .swiper-pagination-bullets {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .section_disease
    .box_disaese
    .disease-slider
    .swiper-pagination-bullets
    .swiper-pagination-bullet {
    box-shadow: none;
    outline: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    font-size: 0;
    opacity: 1;
  }
  .section_disease
    .box_disaese
    .disease-slider
    .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: all 0.2s;
    background: var(--mainColor);
  }
  .section_disease .box_disaese .disease-slider .swiper-button-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(32px, -50%);
    -ms-transform: translate(32px, -50%);
    transform: translate(32px, -50%);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section_disease .box_disaese .disease-slider .swiper-button-next svg {
    width: 100%;
    height: 100%;
  }
  .section_disease .box_disaese .disease-slider .swiper-button-next svg path {
    stroke: var(--mainColor);
  }
  .section_disease .box_disaese .disease-slider .swiper-button-next:after {
    display: none;
  }
  .section_disease .box_disaese .disease-slider .swiper-button-next:hover {
    background-color: var(--subColor);
  }
  .section_disease
    .box_disaese
    .disease-slider
    .swiper-button-next:hover
    svg
    path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_disease .box_disaese .disease-slider .swiper-button-next {
      display: none;
    }
  }
  .section_disease .box_disaese .disease-slider .swiper-button-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    color: var(--mainColor);
    outline: none;
    border: 0px;
    background: transparent;
    text-align: center;
    z-index: 2;
    left: 10px;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translate(-32px, -50%) rotate(180deg);
    -ms-transform: translate(-32px, -50%) rotate(180deg);
    transform: translate(-32px, -50%) rotate(180deg);
    margin-top: 0px;
    background-color: var(--bgBodySub);
    border-radius: 5px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .section_disease .box_disaese .disease-slider .swiper-button-prev svg {
    width: 100%;
    height: 100%;
  }
  .section_disease .box_disaese .disease-slider .swiper-button-prev svg path {
    stroke: var(--mainColor);
  }
  .section_disease .box_disaese .disease-slider .swiper-button-prev:after {
    display: none;
  }
  .section_disease .box_disaese .disease-slider .swiper-button-prev:hover {
    background-color: var(--subColor);
  }
  .section_disease
    .box_disaese
    .disease-slider
    .swiper-button-prev:hover
    svg
    path {
    stroke: #fff;
  }
  @media (max-width: 767px) {
    .section_disease .box_disaese .disease-slider .swiper-button-prev {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .section_disease .box_disaese .disease-slider .swiper-button-next,
    .section_disease .box_disaese .disease-slider .swiper-button-prev {
      width: 25px;
      height: 25px;
      line-height: 25px;
    }
    .section_disease .box_disaese .disease-slider .swiper-button-next:after,
    .section_disease .box_disaese .disease-slider .swiper-button-prev:after {
      font-size: 1.2rem;
    }
  }
  .section_disease .box_disaese .disease-slider .swiper-button-lock {
    display: none !important;
  }
  .section_disease .box_disaese .disease-slider .swiper-button-disabled {
    opacity: 0.35;
  }
  .section_disease .box_disaese .disease-slider .swiper-button-disabled {
    display: none;
  }
  @media (max-width: 767px) {
    .section_disease .box_disaese .disease-slider .swiper-button-next,
    .section_disease .box_disaese .disease-slider .swiper-button-prev {
      display: block !important;
    }
  }
  .section_disease .box_disaese a {
    background: #fff;
    display: block;
    padding: 10px;
    border-radius: 10px;
  }
  .section_disease .box_disaese .thumb {
    position: relative;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .section_disease .box_disaese .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
    transform: scale(1);
  }
  .section_disease .box_disaese h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0px;
  }
  .section_blog_2 .view-more {
    text-align: center;
  }
  .section_blog_2 .box_banner_pro .link_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  @media (max-width: 991px) {
    .section_blog_2 .box_banner_pro .link_title {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      flex-direction: unset;
      -webkit-flex-flow: unset;
      flex-flow: unset;
      -webkit-justify-content: unset;
      justify-content: unset;
      -webkit-align-items: unset;
      align-items: unset;
      padding-bottom: 5px;
    }
  }
  .section_blog_2 .box_banner_pro .link_title .item_cate_index {
    border: 1px solid var(--mainColor);
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    padding: 2px 15px;
    border-radius: 10px;
    background-color: #fff;
  }
  .section_blog_2 .box_banner_pro .link_title .item_cate_index .title_cate {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 3px;
    margin-top: 3px;
    text-align: center;
  }
  .section_blog_2 .box_banner_pro .link_title .item_cate_index:hover {
    color: #fff;
    background-color: var(--mainColor);
  }
  .section_blog_2 .item_small_blog {
    position: relative;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    overflow: auto;
    justify-content: start;
  }
  @media (max-width: 767px) {
    .section_blog_2 .item_small_blog {
      gap: 14px;
      margin-top: 15px;
    }
  }
  .section_blog_2 .item_blog_index {
    display: block;
    position: relative;
  }
  .section_blog_2 .item_blog_index .update_date {
    display: flex;
    margin-bottom: 7px;
    font-size: 12px;
    color: #838383;
    justify-content: space-between;
  }
  .section_blog_2 .item_blog_index .update_date .user_name b {
    color: var(--mainColor);
    font-weight: 500;
  }
  .section_blog_2 .item_blog_index .image-blog {
/*     padding-bottom: 57%; */
    overflow: hidden;
/*     height: auto; */
    display: block;
    position: relative;
    border-radius: 10px;
	width: 100%;
	aspect-ratio: 16/9;
  }
  .section_blog_2 .item_blog_index .image-blog .user_date {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--subColor);
    padding: 5px;
    border-radius: 10px 0px 10px 0px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .section_blog_2 .item_blog_index .image-blog img {
    width: 100%;
    max-height: 100%;
    margin: auto;
    transition: 0.3s ease-in-out all;
    will-change: opacify;
    transform: scale(1.05);
	object-fit: cover;
  }
  .section_blog_2 .item_blog_index .blog_content {
    position: relative;
    width: 100%;
    padding-top: 15px;
    background-color: #fff;
  }
  .section_blog_2 .item_blog_index .blog_content h3 {
    margin-bottom: 7px;
    line-height: 22px;
  }
  .section_blog_2 .item_blog_index .blog_content h3 a {
    color: var(--textColor);
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
  }
  .section_blog_2 .item_blog_index .blog_content h3 a:hover {
    color: var(--subColor);
  }
  .section_blog_2 .item_blog_index .blog_content .blog_description {
    color: var(--textColor);
    line-height: 20px;
    margin-bottom: 10px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 40px;
  }
  .section_blog_2 .item_blog_index .blog_content .read_more {
    font-weight: 600;
  }
  .section_blog_2 .item_blog_index:hover .image-blog img {
    transform: scale(1.15);
  }
  .section_blog_2 .view-more {
    text-align: center;
    display: block;
    margin-top: 15px;
  }
  
.hide-child2 img:nth-child(2) {
    display: none;
}
.show-more {
	margin-top: 20px;
}