/**
  * Project: www.seiður.is
  * Authors: Tryggvi Hjörvar
  * Date: Jun 2018
  *
  * www.seiður.is webpage
  *
*/

 
body{
  /*background-color: gray;*/
  font-family: arial;
  color: black;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
  font-weight: 100;
  color: #77C7AC;
}

header {
  width: 100%;
  height: 60%;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom:solid 0.5em #f4f4f4;
  /*background-color: #003367;*/
  background:   
    url('../img/diagonal.png'),
    linear-gradient(
      to bottom right, 
      #003367, 
      #004e9c
    );
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
  text-align:center;
}

header div#logo {
  display: inline-block;
  height: 450px;
  width: 450px;
  background: url('../img/seidur_logo_transparent.png');
  background-size: contain;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header div#name {
  display: none;
  height: 450px;
  width: 200px;
  margin-left: -28%;
}

div#name img{
  margin-bottom: 12px;
}


#content {
  padding-top: 450px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;  
}


#wrapper {
  width: 100%;
  margin: 0 auto;
}

#main {
  background-color: #fff;
  padding-top: 100px;
  min-height:500px;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 0 30px;
}

.grid {
  display: grid;
  grid-column-gap: 50px;
  grid-template-columns: auto auto auto;
}

.section {
  align-items: center;
  justify-content: center;
}

.section img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section h1{
  text-align: center;
  color: #003367;
}

.product-logo{
  width: 200px;
  margin-bottom: 2em;
}

.stack{
  margin-top: 3.5em;
  grid-column: 1 / span 5;
}

/*
footer{
  background: url('../img/footer.png');
  background-size: cover;
  background-repeat: no-repeat;
}*/


footer .blue{
  width: 100%;
  height: 20px;
  z-index: 999;
  background:   
    url('../img/diagonal.png'),
    linear-gradient(
      to bottom right, 
      #003367, 
      #004e9c
    );
}


footer .gold{
  width: 100%;
  height: 50px;
  z-index: 999;
  background:   
    url('../img/orange-boxes.png');
  background-size: cover;
  background-repeat: no-repeat;    
  text-align:center;
}

#copyright{
  padding: 16px 0;
  font-size: 10pt;
}


/**
 * ---- Shrink header ----
*/

header.shrink {
  height: 75px;
}

header.shrink div#logo {
  height: 75px;
  width: 75px;
  margin-left: -100%;
}

header.shrink div#name {
  display: inline;
}

#content.shrink {
  padding-top: 200px;
}
