.awards-block {}

.awards-block .awards-swiper {
    margin-bottom: 30px;
}

.awards-block .awards__item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 5px;
    background: var(--bg-primary-fourth);
    padding: 40px;
}

.awards-block .item__top-side {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.awards-block .item__bottom-side {
    height: 132px;
    overflow: auto;
    padding-right: 20px;
}

.awards-block .item__bottom-side {
    height: 134px;
    overflow: auto;
}

.awards-block .item__bottom-side::-webkit-scrollbar {
    width: 2px;
}

.awards-block .item__bottom-side::-webkit-scrollbar-track {
    background: var(--bg-primary-main);
}

.awards-block .item__bottom-side::-webkit-scrollbar-thumb {
    background: var(--colors-main);
}

.awards-block .item__bottom-side::-webkit-scrollbar-thumb:hover {
    background: var(--hover-main);
}

.awards-block .swiper-pagination {
    width: 100% !important;
    height: 4px !important;
}

.awards-block .navigation {
    gap: 80px;
}

.awards-block .swiper-pagination-progressbar {
    background: var(--bg-primary-fourth) !important;

}

.awards-block .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--colors-main) !important;
}

.awards-block .awards__image {
    width: 230px;
    height: 150px;
    overflow: hidden;
}

.awards-block .awards__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {
    .awards-block .awards__item {
        padding: 20px;
    }
}

@media (max-width: 500px) {
    .awards-block .navigation {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .awards-block .navigation .navigation_btns {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .awards-block .item__top-side {
        flex-direction: column-reverse;
        gap: 10px;
    }
}