.customicons {
    display: flex;
    font-size: 36px;
}

.customicons .fa {
    color: white;
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}

.customicons *,
.customicons *:hover {
    text-decoration: none;
}

.customicons .fa-facebook {
    background: #3B5998;
}

.customicons .fa-twitter {
    background: #55ACEE;
}

.customicons .fa-instagram {
    background: #F09433;
}

.modal-img {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-img:hover {
    opacity: 0.7;
}

#mapImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#mapImg:hover {
    opacity: 0.7;
}

.modal-container.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

#mapModal.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal-container .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 960px;
}

#mapModal .modal-content {
    margin: auto;
    display: block;
    width: 80%;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: #CCC;
    padding: 10px 0;
    height: 150px;
}

#mapCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #CCC;
    padding: 10px 0;
    height: 150px;
}

.modal-container .modal-content, #mapCaption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

#mapModal .modal-content, #mapCaption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

.modal-container .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #F1F1F1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

#mapModal .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #F1F1F1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.modal-container .close:hover,
.modal-container .close:focus {
    color: #BBB;
    text-decoration: none;
    cursor: pointer;
}

#mapModal .close:hover,
#mapModal .close:focus {
    color: #BBB;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-container .modal-content {
        width: 100%;
    }

    #mapModal .modal-content {
        width: 100%;
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}