/*

COLORS :
    TITLES, BUTTONS :   #00bcd4
    FONT            :   #727272
                        #117eff;
                        #191b3f














*/

* {
    margin: 0;
    padding:0;
    box-sizing: border-box;
    position: relative;
}

html, body, main {
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}

div {
    color: #727272;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    color: #727272;
}

header {

}

main {

}

section {
}

aside {

}

footer {

}

ul {

}

li {

}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

hr {
    height: 3px;
    color: white;
    border: 1px solid white;
}

.heading-line-white {
    display: block;
    width: 140px;
    height: 4px;
    margin: 10px 0 25px 0;
    background-color: white;
}

.heading-line-blue {
    display: block;
    width: 140px;
    height: 4px;
    margin: 10px 0 25px 0;
    background-color: #117eff;
}

.heading-line-black {
    display: block;
    width: 140px;
    height: 4px;
    margin: 10px 0 25px 0;
    background-color: #222;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.sec-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.sec-noise {
    background: url('../images/noise.png') repeat center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%
}

.panel-heading:hover {
    cursor: pointer;
}

.footer {
    width: 100%;
    background: url(../images/footer.png) repeat;
}

.title {
    font-size: 16px;
}

.shadow {
    box-shadow: none;
}