.awards-section{
    margin: 7rem 2rem 3.5rem;
    max-width: 100%;
}

.awards-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-block: 2rem;
}

.awards-category{
    width: -moz-fit-content;
    width: fit-content;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--color-text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 30px 30px 0 0;
    font-size: 1rem;
    padding-inline: 2rem;
}

.awards-main-div{
    width: 70%;
    height: auto;
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem 1rem 1rem;
}

.awards-compete-div{
    width: 90%;
    height: auto;
    padding: 0.5rem;
    border-bottom: 3px solid var(--primary-green);
    border-left: 3px solid var(--primary-green);
    border-right: 3px solid var(--primary-green);
    border-radius: 0 0 60px 60px;
    box-shadow: 0px 0px 3px 1.5px rgba(0, 0, 0, 0.25);
    gap: 1rem;
}

.awards-compete-div h3{
    font-size: 0.9rem;
    line-height: 2;
    color: var(--secondary-blue);
}

.awards-compete-div h3:nth-child(2){
    color: rgb(78, 78, 78);
}

.awards-img-div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    height: auto;
    gap: 1rem;
}

.awards-img-div img{
    width: 300px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px ;
}

.awards-img-container{
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 1rem;
}

@media screen and (max-width: 600px){
    .awards-main-div{
        width: 100%;
        padding: 0 0 1rem;
    }

    .awards-img-div img{
        width: 250px;
        height: 250px;
        -o-object-fit: cover;
           object-fit: cover;
    }
} 
