/* BANNER */
.admission-banner{
    height:280px;
    background:
        linear-gradient(rgba(47,62,46,.75), rgba(47,62,46,.75)),
        url("../../schoolPics/hero1.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

/* WRAPPER */
.admission-wrapper{
    display:flex;
    min-height:calc(100vh - 280px);
}

/* SIDEBAR */
#admissionSidebar{
    width:260px;
    background:#fff;
    color:#2F3E2E;
    padding:25px 20px;
    transition:.4s;
}

/* CONTENT */
#admissionContent{
    flex:1;
    padding:30px;
}

/* STEPS */
.admission-steps{
    list-style:none;
    padding:0;
}
.admission-steps li{
    padding:12px;
    margin-bottom:10px;
    background:#2F3E2E;
    border-left:4px solid #C8A24A;
    color: #C8A24A;
}
.admission-steps span{
    background:#C8A24A;
    color:#000;
    width:22px;
    height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:8px;
    font-weight:700;
}

/* TOGGLE */
.admission-toggle{
    position:fixed;
    top:220px;
    left:15px;
    z-index:9999;
    background:#C8A24A;
    border:none;
    display:none;
}

/* MOBILE */
@media (max-width:768px){
    #admissionSidebar{
        position:fixed;
        top:280px;
        left:-100%;
        height:100%;
        z-index:3000;
    }
    #admissionSidebar.open{
        left:0;
    }
    .admission-toggle{
        display:block;
    }
}
