.activitesHero {
    text-align: center;
    padding-top: 20px;
    background-color: #598896;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.activitesHero h2 {
    font-size: 32px;
    color: #ffffff;
}

.activities-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
	font-size: 18px;
}

.activity {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px;
    border: #f1f1f1 2px solid;
    padding: 20px;
    border-radius: 20px;
}

.activityTime {
    position: absolute;
    background-color: #598896;
    color: #ffffff;
    border-radius: 10px;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    top: 0;
}

.activityTime h2 {
    margin: 0px;
    font-size: 28px;
}

.activityTime p {
    margin: 0px;
}

.activityImg-container {
    position: relative;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 20px;
}

.activityImg-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-width: 450px !important;
}

@media only screen and (max-width: 768px) {
    .activityImg-container {
        flex-direction: column;
    }

.activity a {
    color: #598896;
    font-weight: normal;
    transition: all 0.3s ease;
    font-size: 18px;
    &:hover {
        color: #f0c12a;
    }
}

@media only screen and (max-width: 768px) {
    .activity {
        flex-direction: column;
    }

    .activity-alt {
        flex-direction: column-reverse !important;
    }
    .activityImg-container {
        min-width: auto;
    }

    .activityTime h2 {
        font-size: 18px;
    }

    .activityTime p {
        font-size: 14px;
    }

    .activityTime {
        padding: 10px;
    }
}
