.p2p-swiper .swiper {
    max-width: 100%;
    height: 500px;
}

.p2p-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0px 0px 24px -3px #000;
    transition: all 1s ease-in-out;
}

.p2p-swiper .swiper-button-prev,
.p2p-swiper .swiper-button-next {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 45px;
    height: 45px;
    margin-top: 0;
    transform: rotate(90deg);
    border-radius: 50%;
    background: white;
    box-shadow: 0px 0px 9px -4px #000;
}

.p2p-swiper .swiper-button-next:after, .p2p-swiper .swiper-button-prev:after {
    font-size: 16px;
}

.p2p-swiper .p2p-swiper__inner {
    
}

.p2p-slider-item__button {
    padding: 12px 24px;
    font-weight: 700!important;
    border-radius: 5px;
    border: 2px solid #fff;
    color: #fff!important;
    margin-top: 16px;
    display: inline-block;
}

.p2p-swiper__navigation {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 16px;
    right: 16px;

}

.p2p-swiper .p2p-slider-item {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px 70px;
}

.p2p-swiper .p2p-slider-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.p2p-swiper .p2p-slider-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.p2p-swiper .p2p-slider-item__content {
    z-index: 2;
    position: relative;
    color: white;
    max-width: 500px;
}

@media screen and (max-width: 767px) {

    .p2p-swiper .p2p-slider-item {
        border-radius: 25px;
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 30px;
    }
}