.slideshow-swiper {
    overflow: hidden;
    display: block;
    transition: height .5s;
    position: relative;
}

.slideshow-swiper--show-mb {
    display: none;
}

@media screen and (max-width: 749px) {
    .slideshow-swiper--show-pc {
        display: none !important;
    }

    .slideshow-swiper--show-mb {
        display: block !important;
    }
}


.slideshow-swiper__banner {
    position: relative;
    background-color: white;
}

.slideshow-swiper__swiper-slide-inner {
    position: relative;
}

.slideshow-swiper__banner img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slideshow-swiper__video-banner {
    background-color: black;
}

.slideshow-swiper__video-banner video {
    display: block;
}

.slideshow-swiper__overlay-wrapper {
    position: absolute;
    color: inherit;
    left: 0;
    right: 0;
    top: 0;
    /* width: 100%; */
    height: 100%;
    padding-top: 8%;
    padding-bottom: 8%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    pointer-events: none;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
    .slideshow-swiper__overlay-wrapper.page-width {
        padding-left: 3.2rem;
        padding-right: 3.2rem;
    }
}

@media screen and (max-width: 749px) {
    .slideshow-swiper__overlay-wrapper.page-width {
        padding: 10% 2rem;
    }
}

.slideshow-swiper__overlay-btn {
    text-align: center;
    font-weight: 500;
    font-style: normal;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: calc(90px + 4.5vw);
    height: calc(21px + 1.1vw);
    font-size: calc(10px + 0.25vw);
    box-sizing: border-box;
    white-space: nowrap;
    color: rgb(var(--color-secondary-button-text));
    background-color: rgb(var(--color-secondary-button));
    transition: background-color .2s, color .2s;
}

.slideshow-swiper__overlay-btn:hover {
    color: rgb(var(--color-button-text));
    background-color: rgb(var(--color-button));
}

.slideshow-swiper__overlay-btn.btn-style--primary {
    color: rgb(var(--color-secondary-button));
    background-color: rgb(var(--color-button-background));
}

.slideshow-swiper__overlay-btn.btn-style--primary:hover {
    color: rgb(var(--color-button-background));
    /* background-color: #fff; */
}

.slideshow-swiper__navigation .swiper-btn {
    position: absolute;
    top: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity .3s;
    cursor: pointer;
}

.slideshow-swiper__navigation .swiper-btn svg {
    display: block;
}

.slideshow-swiper__swiper-outer:hover .slideshow-swiper__navigation .swiper-btn {
    opacity: 1;
}

.slideshow-swiper__navigation .swiper-btn-prev {
    left: 6.0%;
    transform: translate(-100%, -50%);
}

.slideshow-swiper__navigation .swiper-btn-next {
    right: 6.0%;
    transform: translate(100%, -50%);
}

@media screen and (max-width: 1399px) {
    .slideshow-swiper__navigation .swiper-btn svg {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .slideshow-swiper__navigation .swiper-btn-prev {
        left: 5.0%;
    }

    .slideshow-swiper__navigation .swiper-btn-next {
        right: 5.0%;
    }
}

@media screen and (max-width: 989px) {
    .slideshow-swiper__navigation .swiper-btn {
        display: none;
    }
}

/* position */
@media screen and (min-width: 750px) {

    .slideshow-swiper__overlay-wrapper.position-top-left {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .slideshow-swiper__overlay-wrapper.position-top-center {
        align-items: center;
        justify-content: flex-start;
    }

    .slideshow-swiper__overlay-wrapper.position-top-right {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .slideshow-swiper__overlay-wrapper.position-center-left {
        align-items: flex-start;
        justify-content: center;
        max-width: 45%;
        left: -35%;
    }
    .new-slide-content  .slideshow-swiper__overlay-wrapper.position-center-left {
        left: auto;
    }
    .slideshow-swiper__overlay-wrapper.position-center-center {
        align-items: center;
        justify-content: center;
    }

    .slideshow-swiper__overlay-wrapper.position-center-right {
        align-items: flex-end;
        justify-content: center;
    }

    .slideshow-swiper__overlay-wrapper.position-bottom-left {
        align-items: flex-start;
        justify-content: flex-end;
    }

    .slideshow-swiper__overlay-wrapper.position-bottom-center {
        align-items: center;
        justify-content: flex-end;
    }

    .slideshow-swiper__overlay-wrapper.position-bottom-right {
        align-items: flex-end;
        justify-content: flex-end;
    }

    .text-align-left {
        text-align: left;
    }

    .text-align-center {
        text-align: center;
    }

    .text-align-right {
        text-align: right;
    }
}

.slideshow-swiper__overlay-text h1,
.slideshow-swiper__overlay-text h2,
.slideshow-swiper__overlay-text h3,
.slideshow-swiper__overlay-text h4,
.slideshow-swiper__overlay-text h5,
.slideshow-swiper__overlay-text h6,
.slideshow-swiper__overlay-text p {
    margin: 0;
    color: inherit;
    font-weight: inherit;
    line-height: 1.5;
}

.slideshow-swiper__overlay-text .slideshow-swiper__overlay-btn {
    margin-top: 1.5vw;
    pointer-events: initial;
}

.slideshow-swiper__overlay-text p {
    font-weight: 400;
}

.slideshow-swiper__overlay-text>*:empty::after {
    content: "";
    display: inline-block;
    width: 0px;
}


.slideshow-swiper__overlay-text h2 {
    font-size: calc(12px + 1.875vw);
}

.slideshow-swiper__overlay-text h3 {
    font-size: calc(9px + 1.4vw);
}

.slideshow-swiper__overlay-text h4 {
    font-size: calc(7.5px + 1.15vw);
}

.slideshow-swiper__overlay-text h5 {
    font-size: calc(6px + 0.93vw);
}

.slideshow-swiper__overlay-text h6 {
    font-size: calc(5px + 0.75vw);
}

.slideshow-swiper__overlay-text p {
    font-size: calc(7.5px + 1.15vw);
}

.slideshow-swiper__overlay-text .overlay-title h1 {
    font-size: calc(25px + 1.15vw);
    font-weight: 700;
}

.slideshow-swiper__overlay-text .overlay-title h1  {
    font-weight: 700;
    line-height: 1.25;
    font-size: clamp(36px, 3.33vw, 48px);
   
}

.slideshow-swiper__overlay-text .overlay-subtitle p span {
    font-weight: 400;
    font-family: Poppins;
    font-size: clamp(12px, 1.11vw, 16px);
    line-height: 1.5;
}

@media screen and (max-width: 749px) {
    .slideshow-swiper__overlay-wrapper.position-mb-top-left {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .slideshow-swiper__overlay-wrapper.position-mb-top-center {
        align-items: center;
        justify-content: flex-start;
    }

    .slideshow-swiper__overlay-wrapper.position-mb-top-right {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .slideshow-swiper__overlay-wrapper.position-mb-center-left {
        align-items: flex-start;
        justify-content: center;
    }

    .slideshow-swiper__overlay-wrapper.position-mb-center-center {
        align-items: center;
        justify-content: center;
    }

    .slideshow-swiper__overlay-wrapper.position-mb-center-right {
        align-items: flex-end;
        justify-content: center;
    }

    .slideshow-swiper__overlay-wrapper.position-mb-bottom-left {
        align-items: flex-start;
        justify-content: flex-end;
    }

    .slideshow-swiper__overlay-wrapper.position-mb-bottom-center {
        align-items: center;
        justify-content: flex-end;
    }

    .slideshow-swiper__overlay-wrapper.position-mb-bottom-right {
        align-items: flex-end;
        justify-content: flex-end;
    }

    .slideshow-swiper__overlay-text h1 {
        font-size: calc(18px + 4.8vw);
    }

    .slideshow-swiper__overlay-text h2 {
        font-size: calc(15px + 4.0vw);
    }

    .slideshow-swiper__overlay-text h3 {
        font-size: calc(12px + 3.2vw);
    }

    .slideshow-swiper__overlay-text h4 {
        font-size: calc(9px + 2.4vw);
    }

    .slideshow-swiper__overlay-text h5 {
        font-size: calc(7px + 2.12vw);
    }

    .slideshow-swiper__overlay-text h6 {
        font-size: calc(6px + 1.6vw);
    }

    .slideshow-swiper__overlay-text p {
        font-size: calc(9px + 2.4vw);
    }

    /* .slideshow-swiper__overlay-text .overlay-title p{
    font-size: calc(20px + 1.15vw);
  } */

    .slideshow-swiper__overlay-btn {
        margin-top: calc(10px + 2vw);
        font-size: calc(6px + 1.6vw);
        width: calc(50px + 25vw);
        height: calc(15px + 5vw);
        border-radius: 3px;
    }

    .text-align-mb-left {
        text-align: left;
    }

    .text-align-mb-center {
        text-align: center;
    }

    .text-align-mb-right {
        text-align: right;
    }
}

/* Animation */
.slideshow-swiper .swiper-slide:not(.swiper-slide-active) .fadein-0,
.slideshow-swiper .swiper-slide:not(.swiper-slide-active) .fadein-03,
.slideshow-swiper .swiper-slide:not(.swiper-slide-active) .fadein-05,
.slideshow-swiper .swiper-slide:not(.swiper-slide-active) .fadein-1,
.slideshow-swiper .swiper-slide:not(.swiper-slide-active) .fadein-1-5 {
    visibility: hidden;
    animation: none;
}

/* Ended Animation */

.slideshow-swiper .swiper-pagination {
    /* left: 50%; */
    bottom: 34px;
    /* transform: translateX(-52%); */
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    /* max-width: calc(var(--page-padding) * 2 + var(--page-width)); */
    width: 100%;
    /* text-align: right; */
    z-index: 1;
    --swiper-pagination-bullet-horizontal-gap: 10px;
    position: absolute;
}


.slideshow-swiper .swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.slideshow-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.slideshow-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(var(--color-button-background));
    width: calc(var(--progress) * 100%);
}

.slideshow-swiper[data-brightness="dark"] .swiper-pagination-bullet {
    background: #000;
}

@media screen and (max-width: 749px) {
    .slideshow-swiper .swiper-pagination {
        text-align: center;
        /* transform: translateX(-50%); */
        bottom: 10px;
        --swiper-pagination-bullet-horizontal-gap: 8px;
    }

    .slideshow-swiper .swiper-pagination-bullet {
        width: 34px;
    }
}

#shopline-section-17133244478420806847 .btn-style--primary {
    border-radius: 50px;
    font-weight: 600;
    text-transform: none;
    color: #fff;
    min-width: 170px;
    margin-top: 1em;
}

#shopline-section-17133244478420806847 .btn-style--primary:hover {
    opacity: .7;
    background-color: steelblue;
    transition: .3s all;
}


/* select new style */
.new-slide-content .slideshow-swiper__overlay-text .overlay-title {
    margin-bottom: 20px;
    background: linear-gradient(90deg, #1292AA 0%, #17EDB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.new-slide-content .slideshow-swiper__overlay-text .overlay-title h1 {
    line-height: 1.25;
    font-size: clamp(36px, 2.5vw, 48px);
    font-weight: 700;
}

.new-slide-content .slideshow-swiper__overlay-text .overlay-subtitle {
    margin-bottom: 20px;
}

.new-slide-content .slideshow-swiper__overlay-text .overlay-subtitle p {
    font-family: Poppins;
    font-size: clamp(12px, 0.833vw, 16px);
    font-weight: 700;
    line-height: 1.5;
}

.new-slide-content .btn-style--primary {
    background: linear-gradient(90deg, #1292AA 0%, #17EDB1 100%);
    position: relative;
    color: #fff;

}

@media screen and (min-width: 750px) {
    .new-slide-content .slideshow-swiper__overlay-wrapper {
        max-width: 100%;
        padding-left: 10.417vw;
        padding-right: 10.417vw;
    }

    .new-slide-content .slideshow-swiper__overlay-text {
        width: 36%;
    }

    .new-slide-content .btn-style--primary {
        margin-top: 20px;
    }
}

@media screen and (max-width: 749px) {
    .new-slide-content .slideshow-swiper__overlay-text .overlay-title {
        margin-bottom: 10px;
    }

    .new-slide-content .btn-style--primary {
        margin-top: 0px !important;
    }

    .new-slide-content .slideshow-swiper__overlay-wrapper.page-width {
        padding: 10% 2rem;
    }

  .btn-style--primary {
        font-weight: 700 !important;
        padding: 8px 22px !important;
        min-width: auto !important;
    }

     .slideshow-swiper__overlay-btn {
        height: auto;
        width: auto;
    }
}
.slideshow-swiper__overlay-wrapper span {
    vertical-align: inherit;
}