#top-home, .hero-image {
    height: 400px;
}

.hero-image {
    width: 100%;
}

#top-banner {
    background-color: white;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0px 4px 4px 0px #00000078;
}

#top-banner h1 {
    color: #003C73;
    font-family: "Courgette";
    font-weight: 400;
    font-size: 22px;
    text-align: center;
}

#socials {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.socials-inner {
    background-color: white;
    border-radius: 40px;
    padding: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 4px 4px 0px #00000078;
}

#socials a {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 12px;
}

#socials a img {
    fill: #575757;
}

.whatsapp-link h3 {
    color: #003C73;
}


.home-text-image-combo {
    margin-bottom: 50px;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    box-shadow: 0px 4px 4px 0px #00000078;
}

.events-inner, .hti-inner {
    width: min(90vw, 1000px);
}

.hti-inner {
    display: flex;
    gap: 70px;
}

.info-image {
    min-width: min(480px, 50vw);
    height: 330px;
}

.hti-inner .text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;

    text-align: center;
}

.hti-inner p {
    font-size: 15px;
    line-height: 150%;
}

.hti-inner p i {
    color: #003C73;
    font-family: "Courgette";
    font-weight: 500;
    font-style: normal;
}

#events {
    display: flex;
    justify-content: center;
}

.events-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.event {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: clip;
    box-shadow: 0px 4px 4px 0px #00000078;
}

.event-date {
    padding: 40px 60px;
    background: blue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg,#3C7DB9 0%, #0D4374 100%);
}

.event-date * {
    font-family: "Courgette";
    color: white;
    font-weight: 300;
}

.event-date h1 {
    font-size: 60px;
}

.event-content {
    padding: 24px;
}

.event-content h1 {
    font-weight: 500;
    margin-bottom: 13px;
}

.event-details {
    margin-bottom: 30px;
}

.event-bubbles {
    display: flex;
    gap: 10px;
}

.bubble {
    display: flex;
    padding: 6px 12px;
    border-radius: 30px;
    gap: 6px;
    /* justify-content: center; */
    align-items: center;
}

.bubble p, .bubble b {
    color: white;
    font-size: 16px;
}

.bubble p {
    font-weight: 200;
}

.bubble b {
    font-weight: 400;
}

.time-bubble {
    background-color: #094E8E;
}

.info-bubble {
    background-color: #5894CA;
}

/* add some sort of rule for the spacing between all items */

@media only screen and (max-width: 1000px) {
    .event-bubbles {
        flex-direction: column;
    }

    .socials-inner h3 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 700px) {

    .hero-image, #top-home {
        height: 340px;
    }

    #top-banner h1 {
        font-size: 18px;
    }

    #top-banner {
        margin-bottom: 30px;
    }

    #socials {
        margin-bottom: 30px;
    }

    .socials-inner {
        flex-direction: column;
    }



    .hti-inner {
        padding: 20px;
        gap: 30px;
    }

    .hti-inner .text {
        text-align: left;
    }

    .hti-inner-first {
        flex-direction: column-reverse;
    }

    .hti-inner-second {
        flex-direction: column;
    }

    .info-image {
        min-width: unset;
        border-radius: 20px;
    }

    .event {
        flex-direction: column;
    }

    .event-date {
        padding: 10px 0;
        flex-direction: row-reverse;
        gap: 10px;
    }

    .event-date h1, .event-date h2 {
        font-size: 24px; 
    }

    .event-content h1 {
        font-size: 20px;
    }

    .event-content p, .event-content b {
        font-size: 14px;
    }


}