/*.featured-hero-block {
    border-radius: 2px;
    color:  #fff;
    background-size:  cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: 0.6s ease-out;
    opacity: 0;
}

.featured-hero-block.active {
    opacity: 1;
}
*/

.featured-hero-block-wrap .sc-content-block>div {
    height: 100%
}

.carousel-item {
    background-position: 50% 50%;
    background-size: cover;
}

.featured-block-content {
    width: 50%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(65, 0, 153, 0.85)), to(rgba(65, 0, 153, 0.85)));
    background-image: linear-gradient(180deg, rgba(65, 0, 153, 0.85), rgba(65, 0, 153, 0.85));
    -webkit-backdrop-filter: grayscale(100%);
    backdrop-filter: grayscale(100%);
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .featured-block-content {
        padding-bottom: 100px;
    }
}

.featured-block-text-wrap {
    width: 80%;
}

.featured-block-thumb-wrap {
    top: auto;
    bottom: 0;
    left:  0;
    right: 0;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    z-index: 3;
    margin-left: auto;
    margin-right: auto;
}

.featured-block-thumb {
    width: 100px;
    height: 60px;
    border-radius: 2px;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    opacity: 0.85;
    cursor: pointer;
    filter: grayscale(100%);
  
}.featured-block-thumb.active {
    opacity: 1;
    filter: grayscale(0);
}

.slider-next, .slider-prev {
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 100%;
}

.announcement-slider-arrow {
    font-size: 1rem;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 767px) {
    .featured-block-content {
        width: 100%;
    }
    
    .featured-block-text-wrap,
    .featured-block-thumb-wrap{
        width: 90%;
    }
    
}

