/* Basic page layout*/
body {
    margin: 0;
    background-color: #1E2546;
}
#container {
    background: linear-gradient(-30deg,#076A5B,#4D5B9A);
    height: 674px;
    width: 1187px;
    display: flex;
    flex-wrap: wrap;
    margin: 55px auto 0 auto;
    padding: 0;
    box-shadow: 5px 5px 8px rgba(48, 48, 48, .7);
}
header{
    width: 400px;
    height: 674px;
}
#content{
    width: 785px;
}
#straightline{
    width: 1px;
    height: 480px;
    border-left: solid white 1px;
    margin-top: 140px;
}
aside{
    height: 74px;
    width: 785px;
    padding-top: 37px;
}

/* pixel perfect design */
aside img{
    width: 40px;
    float: right;
    margin-right: 20px;
}
#tabpages{
    min-width: 785px;
}
ul.tabs{
    margin: 116px;
    padding: 0px;
    list-style: none;
}
ul.tabs li{
    font-size: 30px;
    font-weight: 100;
    color: #ABABAB;
    padding: 10px 15px;
    cursor: pointer;
}

ul.tabs li.current{
    color: white;
}

.tab-content{
    display: none;
}

.tab-content.current{
    display: inherit;
}
/* Design per tab */
#tab-1, #tab-2, #tab-3{
    padding-left: 65px;
}
#tab-1 > p{
    margin-top: 34px;
}
#tab-1 img{
    margin-bottom: 10px;
}
#tab-2 img{
    width: 140px;
    margin-right: 45px;
    padding-left: 10px;
    padding-top: 25px;
    float: right;
}
#tab-2 p{
    padding-top: 30px;
    padding-right: 30px;
}
#tab-3{
    overflow-y: auto;
    height: 510px;
    margin-right: 45px;
}
.horizontal{
    height: 8px;
    width: 600px;
    border-top: 1px solid white;
}
/* Text specific style */
h1,
h2,
h3,
p,
li,
a{
    font-family: sans-serif;
    color: white
}
h1 {
    font-size: 50px;
    font-weight: 500;
    color: white;
    margin-left: 26px;
    margin-top: 45px;
    margin-bottom: 5px;
}
h2 {
    font-size: 34px;
    font-weight: 100;
    margin-left: 26px;
    margin-top: 0px;
    margin-bottom: 0px;
}
#tab-3 h2{
    margin-left: 0px;
    margin-bottom: 0px;
}
