#downloads .hero{
    background-image: url(../assets/downloads/header_Downloads.jpg);
    border-bottom:18px solid #4fb548;
}

/* Solid border */
hr.solid {
  border-top: 4px solid #34bce2;
}


.button{
    background-color: #4fb548;
}
.button.download{
    background-color: #39875e;
    text-transform: uppercase;
    color:#fff;
}
ol li img{
    display: inline-block;
}


/* This controls the unordered list on the what's up instruction */
.instruction li{
    line-height: 130%;
    margin:0 0 20px;
}

.bg{
    display: flex;
    flex-wrap: wrap;
    margin:0 -2%;
}

.bg span{
    width: 46%;
    margin:2%;
    position: relative;
}

body.modal-open{
    overflow: hidden;
}

.modal{
    background-color: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top:0;
    left:0;
    z-index: -2;
    overflow-y:auto;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s, z-index 0.5;
}
.modal.open{
    opacity: 1;
    z-index: 99999;
}
.modal-box{
    background-color: #fff;
    width: 90vw;
    height: auto;
    color:#000;
    padding:30px;
    position: absolute;
    margin:20px auto 0;
    z-index: 99999;
    left: 50%;
    transform: translate(-50%, -0%);
}
.modal-close{
    width: 100vw;
    height: 100vh;
    position: absolute;
    top:0;
    left:0;
}
.close{
    position: absolute;
    right: 20px;
    font-size:20px;
    font-weight: bold;
    top:10px;
}
.modal-title{
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Oswald";
}
.bio-desc{
    font-size:14px;
    border-bottom:4px solid #000;
    padding-bottom: 30px;
}

.modal .modal-box{
    transition: top 0.5s, opacity 0.5s;
}

.modal-container{
    position: relative;
}

.modal.open .modal-box{
    top: 0px;
    opacity:1;
}
.modal.open .modal-hidden{
    top: -1500px;
    opacity:0;
}
.modal-box .portrait{
    margin:40px 0 0;
}

.modal-box .portrait img{
    margin:0 0 30px;
}

.modal-box .portrait p{
    font-size:15px;
}
@media only screen and (max-width: 734px) {
    .bg{
        display: block;
    }
}