#desktopFrontDisplay {
    width: 100%;
    height: auto;
    padding: 0 15px;
}

#mobileFrontDisplay {
    width: 100%;
    height: auto;
    padding: 0 10px;
    display: none;
}

.innerFrontDisplay {
    width: 100%;
    height: auto;
    position: relative;
}

.innerFrontDisplay img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.fdSwipperBtns{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 25px 30px;
}

.fdSwipperBtns>button{
    border: none;
    background-color: #02FF7F;
    border-radius: 5rem;
    padding: 9%;
    box-shadow: 0 0 15px white;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 200ms ease-out;
}

.fdSwipperBtns>button:hover{
    background-color: #00e271;
}

.fdSwipperBtns>button>img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 576px) {
    #desktopFrontDisplay {
        display: none;
    }
    
    #mobileFrontDisplay {
        display: block;
    }
}