section.events {
    min-height: 100vh;
    min-height: 100dvh;
    gap: 30px;
        
    padding-inline: 180px;
    padding-left: 180px;
    padding-right: 180px;
    
    padding-block: 200px;
    padding-top: 200px;
    padding-bottom: 200px;

    justify-content: space-evenly;    
}

    section.events .eventsDescription {
        display: flex;
        flex-direction: row;
        gap: 40px;
        width: auto;
        height: auto;
        align-items: center;
    }

    section.events .eventsDescription .eventsTextContainer .eventsText {
                font-size: 1.875rem;
                font-weight: 300;
                margin-top: 0;
            }

    section.events .eventsDescription .imgContainer {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

    section.events .eventsDescription .imgContainer .eventsImg {
                width: 519px;
                /* height: 534px; */
                border-radius: 35px;
                aspect-ratio: 1/1.028;
                -o-object-fit: cover;
                   object-fit: cover;
            }

    section.events .eventsDescription .imgContainer a {
                font-style: italic;
                font-size: 0.75rem;
                padding: 5px;
            }

@media (max-width: 112.5rem) {
                section.events .eventsDescription .imgContainer .eventsImg {
                    width: 25vw;
                }
}

@media (max-width: 84.375rem) {   
                section.events .eventsDescription .eventsTextContainer .eventsText {
                    font-size: 1.5625rem;
                }
                section.events .eventsDescription .imgContainer .eventsImg {
                    border-radius: 25px;
                }

}
@media (max-width: 68.75rem) {   
                section.events .eventsDescription .eventsTextContainer .eventsText {
                    font-size: 1.25rem;
                }
}

@media (max-width: 56.25rem) {
    section.events {
        gap: 25px;
        
        padding-inline: 35px;
        padding-left: 35px;
        padding-right: 35px;
        
        padding-block: 35px;
        padding-top: 35px;
        padding-bottom: 35px;
    }   
            section.events .eventsTextContainer .eventsText {
                font-size: 1.25rem;
            }

        section.events .eventsDescription {
            flex-direction: column;
        }
                section.events .eventsDescription .imgContainer .eventsImg {
                    width: 90vw;
                }  
}