/* Rock Solid Custom Elements */

/* Hero */
.hero{
    width: 100vw;
    /* height: 100vh; */
    background-repeat: no-repeat;
    background-size: cover;
}
/* --- */

/* Banner */
.banner p{
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 45px;
    text-align: center; 
}
/* --- */


/* Awards */
#awards {
    padding: 50px 0;
}

.award {
    text-align: center;
    padding: 50px;
    transition: all 0.5s;
}

.award-padding {
    padding-top: 50px;
}

.award:hover{
    -webkit-box-shadow: 10px 10px 12px -9px rgba(0,0,0,0.19);
    -moz-box-shadow: 10px 10px 12px -9px rgba(0,0,0,0.19);
    box-shadow: 10px 10px 12px -9px rgba(0,0,0,0.19);
}

.award h2{
    font-size: 20px;
    line-height: 30px;
    padding-top: 30px;
    color: #444;
}
.award p{
    font-size: 16px;
    line-height: 25px;
    color: #444;
    text-align: center;
}

.award a{
    font-size: 16px;
    font-weight: 400;
    padding-top: 30px;
    color: #444;
    text-decoration: none;
}
/* --- */


/* Timeline */
#tl{
	position:relative;
	margin-bottom:50px;
}

#tl p{
	color: #A0A5AD;
}

#tl b{
	font-weight:bold;
	color: #fff;
}

#tl .date{
	text-align:right;
	padding-right:50px;
	padding-bottom: 50px;
}

#tl .date p{
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
}

#tl .event{
	text-align:left;
	padding-left:50px;
	padding-bottom: 50px;
}

#tl .event p{
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
}

#tl .event:before{
	position: absolute;
    content: "";
    display: block;
    height: 5px!important;
    width: 5px!important;
    background: #fff;
    outline: 10px solid #242424;
    z-index: 9999;
    border-radius: 50%;
    left: -2px;
    top: 9px;
}

#tl:after{
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    top: 0;
    background-color: #fff!important;
    width: 1px!important;
    height: 100%;
}
/* --- */

/* Media Querys */
@media(max-width:767px){
    .hero {
        background-attachment: scroll !important;
        height:300px;
    }

    #tl{
        margin-left: 20px;
    }

    #tl .date{
        padding-right: 0; 
        padding-left: 50px;
        padding-bottom: 0;
        text-align: left;
    }

    #tl .date p{
        font-size: 10px;
        line-height: 25px;
        padding: 0;
        margin: 0;
    }

    #tl .event p{
        font-weight: 300;
        font-size: 14px;
        line-height: 25px;
    }  

    #tl:after{
        left:0;
    }

    .award{
        width: 180px;
        margin: 0 auto;
        padding: 15px;
    }

    .award h2{
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        letter-spacing: 0.032px;
    }

    .award p{
        font-size: 10px;
        line-height: 14px;
        letter-spacing: -0.2048px;
    }

    .award a{
        font-weight: bold;
        font-size: 10px;
        line-height: 14px;
    }

    .award-padding {
        padding-top: 0px;
    }
}
/* --- */