.header-swipper-wrapper {
    position: relative;
}

.header-swipper-wrapper .header-swiper {
    width: 100%;
    position: relative;
    overflow:  hidden;
}

.header-swipper-wrapper .swiper-slide {
    position: relative;
}

.header-swipper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.header-swipper-wrapper .header-swiper-pagination {
    position: absolute;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: end;
    padding: 1rem;
    width: max-content;
    right: 0;
    left: auto;
    bottom: 0;
}

.header-swipper-wrapper .header-swiper-pagination .swiper-pagination-bullet {
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid;
    border-color: #0967b1;
    cursor: pointer;
    opacity: 1;
}

.header-swipper-wrapper .header-swiper-pagination .swiper-pagination-bullet-active {
    background: #0967b1;
}

.header-swipper-wrapper .header-swiper-banner-wrapper {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: var(--section-padding-left-right);
}

.header-swipper-wrapper .header-swiper-banner-inner {
    display: flex;
}

.header-swipper-wrapper .header-swiper-banner {
    background-color: var(--cd-background-white);
    opacity: 0.85;
    color: var(--cd-font-black);
    padding: 1.3rem 1.5rem;
    border-radius: 38px;
    transition: .3s opacity ease;
}

.header-swipper-wrapper .header-swiper-banner:hover {
    background-color: var(--cd-background-white);
    opacity: 1;
}