/*------------------------------------------*/
/* BASIC SETUP */
/*------------------------------------------*/

* {                            
    margin: 0px;
    padding: 0px;
    box-sizing: border-box; 
}    

html {
    background-color: #ffffff;
    color: #555555;
    font-family: sans-serif;  
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility; 
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.clearfix {zoom: 1}
.clearfix:after {          
    content: '.';
    clear: both; 
    display: block;
    height: 0;
    visibility: hidden;
}

/*------------------------------------------*/
/* REUSEBLY COMPONENTS*/
/*------------------------------------------*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px;
}

.box {
    padding: 1px;
}

.box p{
    margin-top: 20px;
}

/*-------------------HEADINGS-----------------------*/

h1,
h2,
h3 {   
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 240%; 
    word-spacing: 4px;
}

h2 {
    text-align: center;
    font-size: 180%; 
    word-spacing: 2px;
    margin-bottom: 30px;
}

h2:after {
    display: block;
    background-color: #559dff;
    height: 2px;
    width: 100px;
    content: " ";
    margin: 0 auto;
    margin-top: 30px;
}

h3 {
    text-align: center;     
}

h4 {
    font-size: 200%;
    color: #ffffff;
    margin-bottom: 25px;
}

h5 {
    font-size: 150%;
    margin-top: 50px;
    text-align: center;
    margin-bottom: 25px;
}

/*-------------------LINKS----------------------------*/

a:link,
a:visited {
    color: #559dff;
    text-decoration: none;
    border-bottom: 1px solid #559dff;
    transform: border-bottom 0.2s, color 0.2s;
    -webkit-transform: border-bottom 0.2s, color 0.2s;
    -moz-transform: border-bottom 0.2s, color 0.2s;
    -ms-transform: border-bottom 0.2s, color 0.2s;
    -o-transform: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #555555;
    border-bottom: 1px solid transparent;
}

/*-------------------PARAGRAPHS-----------------------*/

.long-copy {
    line-height: 145%;
    width: 72%;
    margin-left: 15%;
    margin-bottom: 30px;
    text-align: center;
}

.box p {
    line-height: 145%;
    font-size: 90%;
    text-align: center;
}

.sell {
    margin-top: 25px;
    text-align: center;
}

.sell li {
    display: inline-block;
    margin: 20px 20px;
}

/*--------------------ICONS---------------------------*/

.icon-big {
    font-size: 350%; 
    display: block;
    color: #559dff;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 40px;
}

.icon-small {
    display: inline-block;
    color: #559dff;
    width: 30px;
    text-align: center;
    font-size: 120%;
    margin-right: 10px;
    line-height: 120%;          
    vertical-align: middle;
    margin-top: -7px;
} 

/*-------------------BUTTONS-----------------------*/

    .btn:link,
    .btn:visited,
    input[type=submit] {        
        display: inline-block; 
        padding: 10px 30px;
        font-weight: 300;
        text-decoration: none; 
        border-radius: 200px; 
        transition: background-color 0.4s, color 0.4s, border 0.4s;
        
    }

    .btn:hover,
    .btn:active,
    input[type=submit]:hover,          
    input[type=submit]:active {        
        background-color: #559dff;
    }

    .btn-full:link,
    .btn-full:visited,
    input[type=submit] {            
        background-color: #559dff;
        border: 1px solid #559dff;
        color: #ffffff;
        margin-right: 15px;
    }

    .btn-full:hover,               
    .btn-full:active,
    input[type=submit] {
        border: 1px solid #559dff;
    }

    .btn-ghost:link,
    .btn-ghost:visited {
        border: 1px solid #559dff;
        color: #559dff;
    }

    .btn-ghost:hover,
    .btn-ghost:active {
        border: 1px solid #559dff;
        color: #ffffff;
    }

/*------------------------------------------*/
/* HEADERS */
/*------------------------------------------*/

header {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/kombi1.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/kombi1.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}

.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.logo {
    height: 100px;
    width: auto;
    float: left;
    margin-top: 20px;
}

.logo-black {
    display: none;
    height: 50px;
    width: auto;
    float: left;
    margin: 5px 0;
}

/* Main nav */

.main-nav {
    float: right;
    list-style: none;  
    margin-top: 55px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 90%;
    border-bottom: 2px solid transparent;             
    transition: border-bottom 0.4s;
    -webkit-transition: border-bottom 0.4s;
    -moz-transition: border-bottom 0.4s;
    -ms-transition: border-bottom 0.4s;
    -o-transition: border-bottom 0.4s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #559dff;
}

/* Mobile nav */

.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
   font-size: 200%;
   color: #ffffff;
}

/* Sticky nav */

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:#333333;
    box-shadow: 0 2px 2px #7e7d7d;   /* horizontal, vertical, blur, color*/
    z-index: 9999; /*vertical stacking of elements*/

}

.sticky .main-nav {  
    margin-top: 18px;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0px;
    color: #ffffff;
}

.sticky .logo { display: none; }

.sticky .logo-black { display: block; }

/*------------------------------------------*/
/* FORM*/
/*------------------------------------------*/

.contact-bg {
    background: #eee;
}
.contact-form {
    width: 60%;
    margin: 0 auto;
}

input[type=text],   
input[type=email],  
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}

*:focus {outline:none;}  

/*------------------------------------------*/
/* FOOTER*/
/*------------------------------------------*/

footer {
    background-color: #333333;
    padding: 50px;
    font-size: 80%;
}

.footer-nav {
    float: left;
    list-style: none; 
}

.footer-nav li {
    display: inline-block;
    margin-right: 20px;
}

.social-links {
    float: right;
    list-style: none;  
    font-size: 160%;
}

.social-links li {
    display: inline-block;
    margin-left: 20px;
} 

.ion-logo-facebook,
.ion-logo-twitter,
.ion-logo-googleplus,
.ion-logo-instagram {
    transition: color 0.2s;
}
.ion-logo-facebook:hover {
    color: #3b5998;
}

.ion-logo-twitter:hover {
    color: #1da1f2;
}

.ion-logo-googleplus:hover {
    color: #db4437;
}

.ion-logo-instagram:hover {
    color: #c32aa3;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #888888;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #dddddd;
}

footer p {
    color: #888888;
    text-align: center;
    margin-top: 20px;
}

