/* main slider */
.ms-carousel {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.ms-carousel-item {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s;
    z-index: 1;
}

.ms-carousel-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.media {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 350px;
    width: 100%;
    margin: 0;
}


/* smal sider */

.media-sm {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 350px;
    width: 100%;
    margin: 0;
}


.adn-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 380px;
}

.adn-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 400ms ease;
    transform: translateX(0px);
}

.adn-carousel-item {
    flex: 0 0 260px;
    height: 100%;
    margin-right: 12px;
    cursor: pointer;
    touch-action: pan-y;
}

.adn-carousel-item:last-child {
    margin-right: 0;
}
.adn-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    touch-action: pan-y;
    background: transparent;
    user-select: none;
}

.adn-track {
    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 0 6px;
     
}

.adn-track.dragging {
    cursor: grabbing;
    will-change: transform;
    /* Apply will-change only when dragging */
}

.adn-carousel-item {
    flex: 0 0 23%;
    min-width: 24.5%;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c0c0c042;
    background: #fff;
}

.adn-carousel-item-title {
    padding: 5px;
}

.media-sm {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 19rem;
    width: 100%;
    margin: 0;
}
.adn-carousel-item-title{
 
    width: 100%;
    float:right;
}
.adn-carousel-item-title img{
    float: left;
    margin-right: 7px;
}
.adn-carousel-item-title-text{
    width:100%;
    float: right;
    font-family: Paperozi;
    font-weight: 600;
    font-style: 6 SemiBold;
    line-height: 20px;
    letter-spacing: 5%;
    font-size: 1rem;    
}
.adn-carousel-item-title-text div:first-child{
    width: 100%;
    float: left;
    
}
.adn-carousel-item-title-text div:last-child{
    width: auto;
    float: left;
    margin-bottom: 5px;
}
.adn-carousel-div-icon{
    position: absolute;
  margin-top: -70px;
  margin-left: -10px;
  opacity: 0.4;
}
 
/* Responsive widths */
@media (max-width:991.98px) {
    .adn-carousel-item {
        flex-basis: 50%;
        min-width: 50%;
    }
}

@media (max-width:767.98px) {
    .adn-carousel-item {
        flex-basis: 80%;
        min-width: 80%;
    }
}

@media (max-width:575.98px) {
    .adn-carousel-item {
        flex-basis: 80%;
        min-width: 80%;
    }
}