.organizers-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.organizers-img-box {
    flex: 1 1 50%;
    text-align: center;
    padding: 5% 10%;
}

.organizers-content-box {
    flex: 1 1 50%;

    h2 {
        font-family: "Lato", Sans-serif;
        font-size: 30px;
        font-weight: 800;
        color: #181818;
        margin-block-end: 20px;
        text-transform: uppercase;
    }

    p {
        text-align: justify;
        font-family: "Lato", Sans-serif;
        font-size: 20px;
        color: #1b1b1b;
        margin-bottom: 1em;

        a {
            color: #993300;
            text-decoration: underline;
        }
    }
}

.media-icon-list-organizer {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.75em;

    a {
        color: #fff;
        transition: 0.5s;
        font-size: 18px;
        line-height: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px;
        width: 30px;
        border-radius: 50%;
        background-color: #8cc541;





        &:hover {
            color: #fff;
            background-color: #00391d;

        }
    }
}

.time-files {
    text-align: center;
    padding-block: 40px;

    img {
        width: 100%;
        max-width: 550px;
    }
}

@media (max-width:768px) {
    .organizers-wrapper {
        flex-direction: column;
    }
}