#map {
    height: 100%;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', 'Helvetica', sans-serif;
}
.wrapper {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-image: url('../images/Vista-p.png');
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
    transition: all 1500ms ease-in-out;
    transition-delay: 200ms;
}
.box-nav {
    transform: translateY(-50%);
    top: 40px;
    left: 15px;
    position: absolute;
    z-index: 2;
    height: 10px;
    width: 10px;
    padding: 20px;
    border-radius: 50%;
    background: #0098aa;
    color: white;
    text-align: center;
}
.box-nav:hover {
    cursor: pointer;
    background: #0098aa;
    transition: all 250ms ease-in-out;
}
.btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.align-items-center {
    align-items: center;
}
.btn:after {
    content: "\2630";
    font-size: 25px;
}
.box-nav.show .btn:after {
    content: "\00D7";
    font-size: 25px;
}
.box {
    transform: translate(0%, -50%);
    top: 50%;
    left: 50px;
    padding: 30px;
    position: absolute;
    max-height: 700px;
    width: 30%;
    z-index: 1;
    opacity: 1;
    transition: all 250ms ease-in-out
}
.box.off {
    transform: translateY(-110%, -50%);
    opacity: 0;
}

.box--inner {
    padding: 0;
    background: #F4F7F9; 
    color: #0098aa;
    width: 100%;
    height: 100%; 
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    box-shadow: 0 0 0 rgba(37,56,88,0);
    overflow: auto;
}
.text-center {
    text-align: center;
}
.bg-black {
    background: #212121;
}
.bg-white {
    background: #FFF;
}
.bg-blue {
    background: #0098aa
;
}
.box--info {
    color: #eee;
    font-weight: 600;
    font-size: 1.4em;
    padding: 20px;
}
.columns {
    display: flex;
}
.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: .75rem;
}
.underline {
    color: #0098aa;
    text-decoration: underline;
}
.img-responsive {
    max-width: 100%;
}
.list-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    max-width: 350px;
}
.list-group li {
    list-style: none;
    padding: 10px
}
.line.active {
    background: #ecf3f8;
}
.line:hover {
    background: #ecf3f8;
    cursor: pointer; 
    transition: all 300ms ease-in-out;
}
.list-group ul {
    margin: 0;
    padding: 0;
}
.hidden {
    display: none
}
.content-change {
    display: none;
}
.content-change.active {
    display: block;
    transition: all 150ms ease-in-out;
    width: 350px;
    height: 100%;
}
#logo {
    width: 20%;
    height: 30%;
}
.footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    color: #ecf3f8;
    background: #0098aa;
    padding-top: 5px;
    padding-bottom: 5px;
}
#footer_a {
    color: #ecf3f8;
    text-decoration: none;
}
#footer_a:hover {
    color: black;
}

@media (min-width: 768px) {
    .box.off {
        transform: translateY(-110%, -50%);
        opacity: 1;
    }
    .box-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .box {
        top: 45%;
        left: 0px;
    }
    .columns {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .list-group {
        display: block;
        max-width: 100%;
    }
    .list-group ul {
        display: flex;
        align-items: center;
        overflow: scroll;
    }
    .box {
        padding: 0px;
        transform: translate(0%, 0%);
        top: 0;
        opacity: 0;
        width: 100% !important;
    }
    .box.off {
        transform: translateY(-110%, -50%);
        opacity: 1;
    }
    .img-responsive {
        max-width: max-content;
    }
}