.aha-map-map {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.category-control {
    text-align: center;
    background-color: var(--e-global-color-ec39a1d);
    color: white;
    padding: 2rem 1rem;
}

.category-control h2 {
    margin-top: 0;
}

.category-control .category-options {
    display: flex;
    gap: 5px 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-control button,
.category-control button:hover,
.category-control button:active,
.category-control button:focus {
    background: none;
    color: white;
}

.category-control button {
    padding: 0;
    text-transform: none;
    border: none;
    border-bottom: solid 5px transparent;
    border-radius: 0;
}

.category-control button.active {
    border-bottom-color: var(--e-global-color-secondary);
}

.category-control .category-button-wrapper:after {
    border-inline-start-style: solid;
    border-inline-start-width: 2px;
    content: "";
    height: 60%;
    border-color: white;
    margin-left: 1rem;
}

.category-control .category-button-wrapper:last-child:after {
    display: none;
}

.education-entities {
    max-width: 1140px;
    margin: 3rem 1rem;
    justify-self: center;
}

.education-entities-heading {
    border-bottom: solid 2px var(--e-global-color-623ec33);
    margin-bottom: 2rem;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    text-transform: var(--e-global-typography-text-text-transform);
}

.education-entities-blocks {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
}

.education-entities-blocks:after {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background-color: var(--e-global-color-623ec33);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.education-block {
    display: flex;
    gap: 2rem;
}

.education-block h3 {
    text-transform: none;
    margin-bottom: 5px;
}

.education-block img {
    object-fit: contain;
    align-self: start;
    margin-top: 1rem;
}

.aha-edu-map-container .infowindow-content {
    display: flex;
    gap: 1rem;
}

.aha-edu-map-container .infowindow-content img {
    align-self: center;
    max-width: 150px;
}

.aha-edu-map-container .infowindow-content h3 {
    margin: 0 0 5px;
    text-transform: none;
    font-size: 16px;
}

@media (max-width: 1000px) {
    .education-entities-blocks {
        grid-template-columns: 1fr;
    }

    .education-entities-blocks:after {
        display: none;
    }
}