#Competition {
    text-align: center;
}

#Competition .Container h3 {
    text-align: center;
}

#Competition .Item {
    margin: 30px 10px 10px 10px;
    padding: 30px 0 35px 0;
    display: inline-block;
    width: 200px;
    aspect-ratio: 1;
    text-align: center;
    color: #23569d;
    font-size: 30px;
    border-radius: 100%;
    border: 1px solid #aaa;
    background-color: #fff;
    transition: .2s all;
}

#Competition .Item:hover {
    color: #fff;
    background-color: #23569d;
}

#Competition .Item strong {
    margin: 0 .1em 0 -.05em;
    font-size: 2.3em;
    font-weight: 500;
    letter-spacing: -.1em;
}

#Competition .Item .Session {
    padding: 0 0 5px 0;
    border-bottom: 1px solid #aaa;
}

#Competition .Item:hover .Session {
    border-bottom: 1px solid rgba(225, 225, 225, .9);
}

#Competition .Item .Year {
    display: block;
    margin: 5px 0 0 0;
    color: #e0004d;
    font-weight: 300;
}

#Competition .Item:hover .Year {
    color: #fff;
}

@media screen and (max-width:1249px) {
    #Competition .Item {
        width: 168px;
        font-size: 24px;
    }

    #Competition .Container>span {
        white-space: nowrap;
    }
}

@media screen and (max-width:767px) {
    #Competition {
        text-align: left;
    }

    #Competition .Container {
        padding: 9.4vw;
    }

    #Competition h3 {
        margin: 0 0 .5em 0;
    }

    #Competition h3>span {
        white-space: nowrap;
    }

    #Competition .Container>span {
        white-space: inherit;
    }

    #Competition .Container {
        text-align: center;
    }

    #Competition .Item {
        margin: 0 0 10px 0;
        padding: 10px;
        width: 100%;
        aspect-ratio: unset;
        border-radius: 10px;
    }

    #Competition .Item .Session {
        width: 50%;
        border-bottom: none;
    }

    #Competition .Item .Year {
        padding: 0 0 0 1em;
        display: inline-block;
    }

    #Competition .Item strong {
        font-size: 1.5em;
    }
}