/* GENERAL SETTINGS */

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.ttf');
}

body {
    background: #fff;
    color: #3f3f3f;
    font: 14px / 28px arial;
    font-family: 'Raleway';
}

h1 {
    font-size: 52px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.sectionHeader {
    background: #0037C2;
    border-bottom: 6px solid #000;
    height: 60px;
    color: white;
    display: inline-block;
    line-height: 60px;
    font-size: 24px;
    padding: 5px 40px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h3 {
    font-size: 16px;
    color: #0037C2;
    transition: all .5s ease;
}

.sectionArea {
    padding: 80px 0;
    
}
/* GRID SETTINGS */

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
}
.featuresBody .container {
    justify-content: space-between;
}

.col3 {
    flex-grow: 1;
    width: 33.33%;
}

polikarbonBody.container {
    justify-content: space-between;
}

.col2 {
    flex-grow: 1;
    width: 50%;
    padding: 20px;
}


/* HOME SETTINGS */


header .logo {
    margin-right: auto;
}

header .logo img {
    display: block;
    height: 70px;
}

.menu li {
    float: left;
}

.menu li a {
    padding: 27px 17px;
    display: block;
    text-decoration: none;
    letter-spacing: 2px;
    color: #333;
    transition: all .5s ease;
}

.menu li:hover a {
    background: #0037C2;
    color: #fff;
}

#mainSlider {
    height: 500px;
    background: url('../image/mainHome.jpg') center center no-repeat;
    background-size: cover;
}

.slider {
    width: 100%;
}

#mainCaption {
    height: 500px;
    background: rgba(0,0,0,.5);
}

.caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: white;
}

.featuresTop {
    text-align: center;
}

.item {
    padding: 10px 20px;
}

.zoom {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.zoom img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .5s ease;
}

.item .itemText {
    text-align: center;
    padding: 5px;
    border: 1px solid #0037C2;
}

.item:hover .zoom img {
    transform: scale(1.25);
}

.item:hover h3 {
    color: white;
}

.item:hover .itemText{
    background: #0037C2;
    color: white;
    transition: all .5s ease;
}

.btnDetails {
    color: #0037C2;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #0037C2;
    transition: all .5s ease;
}

.item:hover .btnDetails {
    color: white;
    border: 1px solid #fff;
}

.itemText p{
    margin: 20px 0;
}

#parallax {
    background: linear-gradient(
    rgba(0,0,0,.7),
    rgba(0,0,0,.7)
    ),
    url('../image/parallax.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
}

#parallax p{
    color: white;
}

.polikarbonTop {
    text-align: center;
}
.polikarbonContainer {
    position: relative;
    width: 100%;
}

.imageOver {
    display: block;
    width: 100%;
    height: auto;
}

.polikarbonOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,55,194,.7);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.polikarbonContainer:hover .polikarbonOverlay {
    width: 100%;
}

.polikarbonText {
    white-space: nowrap;
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.polikarbonOverlay2 {
    position: absolute;
    bottom: 0;
    left: 100%;
    right: 0;
    background-color: rgba(0,55,194,.7);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.polikarbonContainer:hover .polikarbonOverlay2 {
    width: 100%;
    left: 0;
}

footer {
    background: #0037C2;
    text-align: center
}

.footerItem {
    padding: 20px;    
}

.footerItem img {
    height: 50px;
    opacity: .5;
}

footer h3 {
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

footer .fa {
    font-size: 30px;
    color: white;
    line-height: 50px;
    transition: .3s ease;
}
footer .fa:hover {
    color: white;
}

footer p {
    color: white;
    line-height: 20px;
}

.footerLinks a {
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
    transition: .3s ease;
}
.footerLinks a:hover {
    color: white;
    text-decoration: underline;
}
.socialLinks li {
    display: inline-block;
    width: 50px;
    height: 50px;
}