body {
    background-color: #f4f8fa;
}

.banner{
    height:70vh;
    width: 100%;
    background-color:#bbe0e4;
    align-content:center;
}
.banner h1{
    font-size:80px;
    color:#00888A;
    width:80%;
    margin-inline:auto;
}
.event-card {
    background-color: white;
    border-radius: 10px;
    border: 1px solid #beb0b0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}
.pmec-logo{
    width: 100px;
}
.pmec-logo img{
    width: 100%;
}
.event-date {
    background-color: #00787a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
   border-radius: 20px;
}

.event-date span {
    font-size: 30px;
    font-weight: bold;
}

.event-date h3 {
    /* margin: 5px 0 0; */
    font-size: 40px;
}

.event-details h3 {
    color: #00787a;
    font-size: 20px;
}

.location-icon {
    color: #ff3b3b;
    font-size: 14px;
    margin-right: 5px;
}
.appointment h3{
    font-family: "Freeman", sans-serif;
    font-size: 30px;
    color: #00888A
}
.appointment a {
    background-color: #00787a;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
}

.appointment a:hover {
    background-color: #005f60;
}

@media (max-width: 768px) {
    .event-date {
        border-radius: 10px 10px 0 0;
    }
}