@import url('https://fonts.googleapis.com/css?family=Montserrat:300,600');

h1{
    margin-bottom:5px;
}
.subheading{
    font-size:.9em;
    margin-top:0;
    text-transform:uppercase;
}

dl{
    margin:30px auto 60px;
    max-width:100%;
}

dt{
    background:#505662;
    border-left:8px solid #011128;
    color:#B6BCCC;
    font-weight:600;
    padding:15px;
    position:relative;
    text-align:left;
    text-transform:uppercase;
    transition: all .3s;
}

dt:after{
    content:"\f078";
    font-family: fontAwesome;
    position:absolute;
    right:15px;
    height:28px;
    top:12px;
    bottom:0;
    margin:auto;
    transition:all .5s ease-in-out;
}

dt:hover{
    cursor:pointer;
    border-left-color: #ff6600;
    background-color: #007eee;
    color:#011128;
}

dt + dd{
    max-height:0;
}

dd{
    background:#011128;
    color:#edeff3;
    margin:0;
    overflow:hidden;
    padding:1px 15px;
    transition: all .3s;
}

dt.open{
    background:#007eee;
    border-color:#011128;
    color:#011128; /*#edeff3;*/
    margin:-8px;
    border-left:8px solid #ff6600;
}

dd.open{
    border-left:8px solid #ff6600;
}

dt.open:after{
    transform:rotate(180deg) translateY(-2px);
    top: -12px;
    right: 20px;
}

dt.open + dd{
    padding:20px 15px 30px;
    margin:0 -8px;
    max-height:200px;
}