.carroussel-container {
    position: relative;
    min-height: 350px;
    margin-block: 20px;
}
.carroussel-container .carrossel-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-block: 2rem;
    font-weight: 600;
}
.carrossel-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 265px;
    padding-inline: 8px !important;
}
.carrossel-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    margin-bottom: 10px !important;
}
@media (max-width: 768px) {
    .carrossel-item img {
        height: 115px;
   }
}
.carrossel-item .carrossel-item-title {
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 19px;
    text-transform: capitalize;
}
.carrossel-item:hover .carrossel-item-link {
    opacity: 1 !important;
}
.carrossel-item .carrossel-item-link {
    width: 80%;
    background-color: #619429;
    font-size: 15px;
    padding-block: 5px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    transition: 0.25s ease-in-out;
}
.glider-next, .glider-prev {
    top: 40%;
    font-size: 18px !important;
    border-radius: 9999px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    border: none;
    background: rgba(232, 232, 232, 0.6) !important;
    z-index: 20;
}
.carroussel-container .draggable:is(.nothas-4) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .carroussel-container .draggable:is(.nothas-4) {
        align-items: start;
    }
}
