.company-awarding__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.company-awarding__video-holder {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.company-awarding__video-btn {
    width: 130px;
    height: 130px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
}

.company-awarding__video-holder:hover .company-awarding__video-btn {
    transform: scale(1.05);
}

.company-awarding__video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row+.awarding-carousel__section {
    margin-top: 160px;
}

.awarding-carousel__section-title {
    margin-bottom: 40px;
}

.swiper_buttons_theme_awarding .swiper-pagination {
    left: 0;
    right: 0;
    margin-top: 25px;
    position: relative;
}

.awarding-carousel__item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.big-awarding-slider__img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;
    left: -50%;
    right: -50%;
}

.awarding-carousel__item:before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}

.custom-body-class .company-awarding {
    background: var(--dark);
    color: #fff;
}

@media (max-width: 991px) {
    .company-awarding__video-holder {
        margin-top: 30px;
    }
    .awarding-carousel__section {
        margin-top: 60px;
    }
    .company-awarding__video-btn {
        width: 100px;
        height: 100px;
    }
    .row+.awarding-carousel__section {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .company-awarding__info {
        gap: 20px;
    }
    .company-awarding__video-btn {
        width: 72px;
        height: 72px;
    }
    .company-awarding__video-btn img {
        width: 27px;
        height: auto;
    }
}