.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #f0f0f0;
    margin-bottom: 5%;
}

.header-container .text-part {
    width: 50%;
    text-align: center;
    color: #02253d;
}

.header-container .image-part {
    width: 50%;
	flex-grow: 2;
    text-align: center;
    color: #02253d;
}


.header-container img {
    width: 50%;
    border: 1px solid #000;
    padding: 0px;
}

.schedule-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row;
}

.month-item {
    width: 45%;
    justify-content: flex-start;
    padding: 5px;
}

.month-item .month {
    width: 21%;
    display: inline-block;
}

.month-item .schedule {
    white-space: nowrap;
    display: inline-block;
	
}

.initial {
  color: #000;
}

.flex-container-0 {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    flex-basis: auto;
    justify-content: space-evenly;
    flex-direction: row;
}

.flex-item-0 {
    justify-content: center;
    padding: 5px;
	font-size: 18px;
}

.flex-item-1 {
    justify-content: center;
    padding: 5px;
	font-size: 18px;
}

.flex-item-2 {
    justify-content: center;
    padding: 5px;
	font-size: 18px;
}

heading, .row {
  display: flex;  /* aligns all child elements (flex items) in a row */
}

.col {
  flex: 1;        /* distributes space on the line equally among items */
}


/* Smaller screen styles */
@media screen and (max-width: 1024px) {
    .header-container .text-part {
        width: 100%;
        margin: 5%;
    }
    .header-container img {
        width: 100%;
    }
    .month-item {
        width: 50%;
    }
    .month-item .schedule {
        display: block;
        white-space: pre-line;
        margin-top: -1em;
    }

}
