/* SWIPER CSS*/

.slide-container.swiper {
    max-width: 100%;
    max-height: 740px;
    width: 100%;
}

.swiper .slide-content {    
    padding: 0 12px;
    overflow: hidden;
    height: 640px;
    /*border-radius: 25px;*/
}

.swiper .card {
    max-height: 640px;
    /*background-color: #FFF;*/
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: left;
    /*padding: 10px 14px;*/
}

.card-wrapper{
    padding-top: 20px;
    padding-bottom: 20px;

}

.card.swiper-slide{
    transition: all 0.3s ease-out;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card.swiper-slide:hover{
    transform: scale(1.03);
}

.image-content {
    position: relative;
    row-gap: 5px;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /*background-color: #4070F4;*/
    /*border-radius: 25px 25px 0 25px;*/
}

.overlay::before,
.overlay::after {
    display: none;
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070F4;
}

.overlay::after {
    /*border-radius: 0 25px 0 0;*/
    background-color: #FFF;
}

.card-image {
    position: relative;
    height: 250px;
    width: 350px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.titolo {
    font-size: 20px !important;
    font-weight: 500;
    text-transform: uppercase !important;
    color: #333;
    margin-top: 10px;
    font-family: 'DM Sans' !important;
}

.description {
    font-size: 14px;
    color: #707070;
    text-align: left;
    margin-bottom: 0px !important;
}

.date {
    color: #707070;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.2;
}

.swiper {
    z-index: 0;
}

.swiper .button {
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #4070F4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0px;
}

.swiper-navBtn {
    color: #194d32 !important;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover {
    color: #4070F4 !important;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 35px;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 800;
    color: black;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next, 
.swiper-button-prev {
    margin-top: 0px;
    background-color: #d6d6d6;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.swiper-pagination-bullet {
    background-color: #ebebeb;
    border: 1px solid #acacac;
    opacity: 1;
    height: 10px;
    width: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #E7D287;
    border: 1px solid #E7D287;
}

.swiper-button-next {
    right: 60px;
}

.swiper-button-prev {
    right: 120px;
    left: auto;
}

@media screen and (max-width: 768px) {
    .slide-content {
        margin: 0 30px;
    }
    .swiper-navBtn {
        display: none;
    }
}


