/*....  SIDEBAR  ...........................................................*/

main aside {
    grid-column: 2/3;
}

/* Side Box */
.box {
    border: 1px solid #50A731;
    overflow: hidden;
    border-radius: 3px;
}

.box h3 {
    padding: 1rem;
    background-color: #50A731;
    color: white;
}

.box a {
    display: block;
    padding: .35rem 1.5rem;
    font-size: .9rem;
    font-weight: 400;
    color: #002461;
    position: relative;
}

.box a i {
    position: relative;
    font-style: normal;
    background-color: #FBAA51;
    color: white;
    border-radius: 8px;
    padding: .1rem .2rem .2rem .3rem;
    margin-right: .3rem;
    font-weight: 600;
    font-size: .6rem;
    line-height: 1.4rem;
}

.box a:hover {
    background-color: #50A73124;
}

.box a:hover i {
    background-color:#50A731;
}

#map {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 1rem;
    border: 1px solid #50A731;
    border-radius: 3px;
    overflow: hidden;
}

#map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background: rgba(255, 255, 255, .2);
    background: radial-gradient(circle,rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, 1) 50%);
}

#map h3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: #50A731;
    color: white;
}

#map div {
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: #002461;
}

#map div {
    text-align: center;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: #002461;
}

#map div:first-child {
    top: 3.5rem;
}

#map div:last-child {
    top: 16rem;
}

#map div p {
    margin-top: .5rem;
    text-decoration: underline;
}