/*********************************** CSS RESET ***************************************/
html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
/************************************* Landing Page *****************************************/

html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}

html {
    height:  100%;
    width: 100%;
}

body {
    height:  100%;
    width: 100%;
    overflow-y: scroll;
}

* {
	margin: 0;
}

.wrapper{
	width:90%;
	margin:0 5%;
	position:relative;
    overflow: hidden;
}

.wrapper:before,
.wrapper:after {
    content: ".";    
    display: block;    
    height: 0;    
    overflow: hidden; 
}

.wrapper:after { clear: both; }
.wrapper { zoom: 1; }

section{
    padding-bottom: 10px;
}

/***************************************  BASIC STYLES  ****************************************/

a{
    text-decoration: none;
    color: #000000;
}

h1{
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #000000;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
}

h2{
    font-size: 10px;
     font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #000000;
}

h1 a{
    margin-right: 10px;
}

.landing-page{
    background-color: #ffffff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    background-attachment: fixed;
	width:100%;
	height:100%;
	position: relative;
    overflow-y:hidden;
    overflow-x:none;
    
}

.landing-page:after{
    content: " ";
    display: block;
    height: 0;
    clear: both; 
}

.logo-landing-page {
    position: absolute;
    top: 20%;
    left: 50%;
    margin-left: -400px;
}

.logo-landing-page-1{
    width: 800px;
    height: 400px;
    background-image: url(../images/logo-big-black.png);
    background-size: 100%;
}

footer{
    
    width: 100%;
    text-align: left;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}
header {
    overflow: visible;
    height: 78px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: black;
    margin-bottom: 130px;
}

.logo-header a {
    position: absolute;
    left: 50%;
    margin-left: -200px;
}

.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Create four equal columns that sits next to each other */
.column {
    -ms-flex: 32%; /* IE10 */
    flex: 32%;
    max-width: 32%;
    padding: 0 4px;
    position: relative;
    overflow: hidden;
}

.column img{
    opacity: 0.5;
    -webkit-transition: opacity 100ms ease-in-out;
  -moz-transition: opacity 100ms ease-in-out;
  -ms-transition: opacity 100ms ease-in-out;
  -o-transition: opacity 100ms ease-in-out;
  transition: opacity 100ms ease-in-out;
}

.column img:hover{
    opacity: 0.8;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 700px) {
    .column {
        -ms-flex: 45%;
        flex: 45%;
        max-width: 45%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}
