.awards{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: var(--max-sm-width);
    margin: 5rem auto;

}
.awards__headline{
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.awards__subheadline{
    color: var(--blue);
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}
.awards-carousel__card{
    width: 70%;
    min-width: 70%;
    height: 450px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap:2rem;
    padding: 4rem 2rem;
    border-radius: 10px;
    background: url('../../img/home/awards/awards-card-background.svg') no-repeat;
    background-size: cover;
    background-position: top left;
    transition: box-shadow .25s;
    box-shadow: 0 4px 12px 1px rgba(89,89,89,.25);
}
.awards-carousel__card:hover{
    box-shadow: 0 8px 12px 1px rgba(0,0,0,.25);
    transition: box-shadow .25s;
}
.awards-card__icon{
    height: 150px;
    width: 90%;
    object-fit: cover;
}
/* Bootstrap carousel */
.awards__slider-wrapper .carousel-inner{
    padding-bottom: 3rem;
}
.awards__slider-wrapper .carousel-indicators button{
    background-color: var(--light-blue) !important;
    height: 6px !important;
    border-radius: 10px !important;
}
.awards__cta{
    width: 270px;
    height: 40px;
    border-radius: 10px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--white);
    margin: 1rem auto;
    text-decoration: none;
}
.awards__cta:hover{
    background: var(--blue);
    color: var(--white)
}

@media (min-width: 768px){
    .awards{
        margin: calc(var(--gutter-section) + 2rem) auto var(--gutter-section);
    }
    /* Bootstrap carousel */
    .awards__slider-wrapper .carousel-inner{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 2rem;
        justify-content: center;
    }
    .awards__slider-wrapper .carousel-inner::after{
        display: none;
    }
    .awards__slider-wrapper .carousel-item{
        margin-right: 0;
        display: block;
        height: 100%;
    }
    .awards-carousel__card{
        width: 100%;
        min-width: 100%;
        justify-content: flex-start;
        margin: 0 auto;
        height: 100%;
    }
}