#map2 {
    height: 100vw;
}

#map a {
    color: inherit;
    text-decoration: none;
}

.map-wrapper,
#map {
    position: relative;
    background-color: #fff;
    text-align: left;
    height: 50vw;
}

#map .marker,
#map .marker-logo {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-weight: bold;
    text-align: center;
}

#map .marker {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

#map .marker-logo {
    display: block;
    padding-right: 100px;
    padding-top: 152px;
    background-repeat: no-repeat;
    background-image: url('../img/location/map_marker.svg');
    background-size: cover;
}

#map .marker .marker-content {
    display: none;
    position: absolute;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 10px;
    text-align: center;
    color: #fdf4e2;
    font-family: "degular", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    min-width: 120px;
}

#map .marker.map1 .marker-content {
    background: #142C3E;
}

#map .marker.map2 .marker-content {
    background: #D87C7C;
}

#map .marker.map3 .marker-content {
    background: #839681;
}

#map .marker.map4 .marker-content {
    background: #83949B;
}

#map .marker .marker-content p {
    color: #fff;
}

#map .marker .marker-content:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
    margin: 0 0 -5px 0px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
#map .marker.map1 .marker-content:after {
    border-top: 10px solid #142C3E;
}
#map .marker.map2 .marker-content:after {
    border-top: 10px solid #D87C7C;
}
#map .marker.map3 .marker-content:after {
    border-top: 10px solid #839681;
}
#map .marker.map4 .marker-content:after {
    border-top: 10px solid #83949B;
}

#map .marker .marker-content h3 {
    margin: 10px 0 5px;
    line-height: inherit;
    font-size: 20px;
    ;
    font-size: 20px;
    letter-spacing: 0;
}

#map .marker .marker-content a:hover {
    text-decoration: underline;
}

.hotspots {
    padding: 40px 0;
    overflow: hidden;
}

.hotspots li {
    display: inline-block;
    float: left;
    margin: 0 0 0 30px;
}

.hotspots li:first-child {
    margin: 0;
}

.hotspots li a:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
}

.hotspots li a {
    white-space: nowrap;
}

.hotspots li a[href="#map1"]:before {
    border-color: #fdafbb;
}

.marker.map1,
.hotspots li a[href="#map1"]:hover:before,
.hotspots li a[href="#map1"].active:before,
.list.map1a:before {
    background-repeat: no-repeat;
    background-color: #142C3E;
    background-size: cover;
}

.hotspots li a[href="#map2"]:before {
    border-color: #73dad4;
}

.marker.map2,
.hotspots li a[href="#map2"]:hover:before,
.hotspots li a[href="#map2"].active:before,
.list.map2a:before {
    background-repeat: no-repeat;
    background-color: #D87C7C;
    background-size: cover;
}

.hotspots li a[href="#map3"]:before {
    border-color: #bc95da;
}

.marker.map3,
.hotspots li a[href="#map3"]:hover:before,
.hotspots li a[href="#map3"].active:before,
.list.map3a:before {
    background-repeat: no-repeat;
    background-color: #839681;
    background-size: cover;
}

.hotspots li a[href="#map4"]:before {
    border-color: #bc95da;
}

.marker.map4,
.hotspots li a[href="#map4"]:hover:before,
.hotspots li a[href="#map4"].active:before,
.list.map4a:before {
    background-repeat: no-repeat;
    background-color: #83949B;
    background-size: cover;
}

.marker.map1,
.marker.map2,
.marker.map3,
.marker.map4 {
    display: none;
}

.marker.show.map1,
.marker.show.map2,
.marker.show.map3,
.marker.show.map4 {
    display: block;
}