.location-map {
    position: relative;
    z-index: 2;
}

.location-map__overlay {
    position: relative;
    z-index: 1;
    background-color: rgba(20, 36, 95, 0.45);
}

.location-map__info {
    padding: 40px 0;
    background-color: #14245f;
    color: #fff;
}

.location-map__info-head {
    text-align: center;
    margin: 0 0 15px;
}

.location-map__info-head h2 {
    color: #fff;
}

.location-map__info-list h3 {
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.location-map__info-list ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.location-map__info-list ul li {
    padding: 0;
    margin: 0 0 -8px 0;
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: flex-start;
}

.location-map__info-list ul li p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.125em;
    width: calc(100% - 74px);
}

.location-map__info-list ul li:before {
    display: none;
}

.location-map__info-list ul li span {
    width: 69px;
    height: 69px;
    position: relative;
    margin-right: 5px;
    border-radius: 50%;
}

.location-map__info-list ul li span:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.light-blue-circle span {
    background: radial-gradient(
        circle,
        rgba(155, 194, 247, 1) 0%,
        rgba(77, 128, 199, 0) 60%
    );
}

.light-blue-circle span:after {
    border: 1px solid #bfdaff;
}

.white-circle span {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 60%
    );
}

.white-circle span:after {
    border: 1px solid #fff;
}

.light-yellow-circle span {
    background: radial-gradient(
        circle,
        rgba(255, 210, 62, 1) 0%,
        rgba(255, 210, 62, 0) 60%
    );
}

.light-yellow-circle span:after {
    border: 1px solid #ffc915;
}

.dark-blue-circle span {
    background: radial-gradient(
        circle,
        rgba(0, 91, 217, 1) 0%,
        rgba(191, 218, 255, 0) 60%
    );
}

.dark-blue-circle span:after {
    border: 1px solid #005bd9;
}

@media (min-width: 768px) {
    .location-map__info {
        padding: 37px 0px 30px;
    }

    .location-map__info-head {
        text-align: left;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .location-map__info-head h2 {
        padding: 0;
        font-size: 54px;
    }

    .location-map__info-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .location-map__info-list h3 {
        font-size: 28px;
        padding: 0;
        margin: 0;
    }

    .location-map__info-list ul {
        width: calc(100% - 52px);
        padding-left: 24px;
        margin: 0 0 17px 0;
    }

    .location-map__info-list ul li {
        margin: 0 0 -17px 0;
    }

    .location-map__info-list ul li p {
        font-size: 20px;
        width: calc(100% - 104px);
    }

    .location-map__info-list ul li span {
        width: 84px;
        height: 84px;
        margin-right: 10px;
    }
}

@media (min-width: 1200px) {
    .location-map__info-list ul {
        margin: 0;
    }

    .location-map__info-list ul li {
        margin: 0 52px 0 0;
        width: auto;
    }

    .location-map__info {
        padding: 39px 0;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        background-color: rgba(20, 36, 95, 0.8);
    }
}

/* Google Maps */
.alumni-map-container {
    position: relative;
    z-index: 1;
    height: 350px;
}

.alumni-map-map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.alumni-map-map-overlay {
    content: "";
    display: block;
    position: absolute;
    right: 50%;
    z-index: 1;
    background-color: rgba(20, 36, 95, 0.45);
}

.alumni-map-infowindow {
    padding: 17px 22px;
    max-width: calc(100vw - 44px);
    position: absolute;
    border-radius: 8px;
    background-color: #fff;
}

.alumni-map-infowindow:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-left: solid 15px rgb(255 255 255);
    border-bottom: solid 15px transparent;
    border-top: solid 15px transparent;
    bottom: -28px;
    left: calc(50% - 8px);
    -webkit-transform: rotateZ(90deg) translate(-50%, 0);
    transform: rotateZ(90deg) translate(-50%, 0);
}

.alumni-map-infowindow h3 {
    padding: 0;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #14245f;
}

.alumni-map-infowindow p {
    font-size: 18px;
    color: #14245f;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

@media (min-width: 600px) {
    .alumni-map-infowindow:after {
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        top: 50%;
        left: auto;
        right: -14px;
    }
}

@media (min-width: 768px) {
    .alumni-map-container {
        height: 485px;
    }
}

@media (min-width: 1200px) {
    .alumni-map-container {
        height: 985px;
    }
}
