.bg-white {
    background-color: #FFF;
}

.bg-gray {
    background-color: #ededed;
}

.bg-dark-cyan {
    background-color: #16a085;
}

.bg-moderate-cyan {
    background-color: #45B39D;
}

.bg-slightly-desaturated-cyan {
    background-color: #73C6B6;
}

.bg-gradient-cyan {
    /* background: linear-gradient(90deg, rgba(115, 198, 182, 1) 0%, rgba(69, 179, 157, 1) 35%, rgba(22, 160, 133, 1) 100%); */
    background: linear-gradient(90deg, rgb(194, 219, 214) 0%, rgb(108, 164, 153) 35%, rgb(158, 198, 190) 100%);
}

.border-top-bottom {
    border-top: solid 1px #c7c7c7;
    border-bottom: solid 1px #c7c7c7;
}

.navbar-nav .btn-to-div {
    background-color: #18a186;
    padding: 0 15px;
}

.navbar-nav .btn-to-div a {
    color: #FFF;
}

.navbar-nav .btn-to-div:hover {
    background-color: #7e7f7f;
}

.navbar-nav .btn-to-div:hover a {
    color: #FFF;
}

#imgMap {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#imgMap:hover {
    opacity: 0.7;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}
