:root {
    --maincolor: #005d35;
    --accentcolor: #8fb69e;
    --maingrey: #666666;
    --secondarygrey: #E6E6E6;
  }

body {
    background-image: url('../media/stripes.png');
    background-color: var(--accentcolor);
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    font-size: 11pt;
}

.accent {
  color:var(--maincolor);
}

h1 {
    font-size: 14pt;
    font-weight: bold;
    color: var(--maincolor);
}

h2 {
  font-size: 11pt;
  font-weight: bold;
  color: var(--maincolor);
}

h2 > a {
  font-size: 11pt;
  font-weight: bold;
  color: var(--maincolor);
  text-decoration: none;
}

.wrapper {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    -webkit-box-shadow: 2px 2px 46px -11px #000000; 
    box-shadow: 2px 2px 46px -11px #000000;
}

.header {
  width: 100%;
  position: relative;
}

#mainheader {
  width: 100%;
  height: 350px;
  background-color: var(--accentcolor);
  background-image: url("../media/mainheader.jpg");
  background-size: cover;
}

.header > #mainlogo {
  height: 75px;
  width: 450px;
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: -6px 4px 15px -4px #000000; 
  box-shadow: -6px 4px 15px -4px #000000;
  border-radius: 0 0 0 5px;
  position: absolute;
  top: 0px;
  right: 0px;
}

.header > #mainlogo > a > #img {
  background-image: url("../media/mainlogo.png");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}



.content {
    margin: 0;
    background-color: #fff;
    /* border-left: 1px #000 solid;
    border-right: 1px #000 solid; */
    padding: 0;
}

.content > .path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  background-color: var(--secondarygrey);
  padding-left: 45px;
}

.content > .path > #lang_en {
  margin-right: 45px;
  padding: 0;
}

.content > .column {
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.column > .text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.column > .text > #col {
  padding-right: 45px;
}

.box {
  -webkit-box-shadow: 2px 2px 46px -11px #000000; 
    box-shadow: 2px 2px 46px -11px #000000;
    margin: auto;
    margin-bottom: 50px;
    background-color: #fff;
    width: 75%;
  }

.box > h1 {
  width: auto;
  height: auto;
  margin: 0;
  padding: 20px;
  padding-left: 40px;
  background-color: var(--secondarygrey);
}

.box > .paragraph {
  padding: 40px;
  padding-top: 20px;
}

#profil {
  border: 1px solid #000;
  width: 220px;
  height: 300px;
  padding: 0;
  margin-top: 12.5px;
}

.footer {
  background-color: var(--maincolor);
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 8pt;
}

.footer > .links > a {
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 650px) {
  .wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    -webkit-box-shadow: 2px 2px 46px -11px #000000; 
    box-shadow: 2px 2px 46px -11px #000000;
    }
    
    .header > #mainlogo {
      background-color: #fff;
      width: 100%;
      height: 30%;
      border-radius: 0 0 0 0px;
      position: absolute;
      margin: auto;
      padding: 0px;
    }

    .header > #mainlogo > a > #img {
      margin: auto;
      margin-top: 20px;
      margin-bottom: 10px;
      width: 90%;
      background-size: contain;
      background-position-x: 0px;
    }

    #mainheader {
      background-size: cover;
      background-repeat: no-repeat; 
    }

    .content > .path {
      padding-left: 10px;
    }
    .content > .path > #lang_en {
      margin-right: 10px;
    }

    .content > .column {
      padding:0;
      display: flex;
      flex-wrap: wrap;
      padding-bottom: 45px;
      flex-direction: column;
    }

    .column > .text {
      display: flex;
      padding: 10px;
    }

    .column > .text > #col {
      padding-right: 0;
    }
    
    .box {
      -webkit-box-shadow: none;
      box-shadow: none;
        margin-bottom: 50px;
        margin-right: 0px;
        margin-left: 0px;
        width: 100%;
      }
    
    .box > h1 {
      width: auto;
      height: auto;
      margin: 0;
      padding: 20px;
      padding-left: 10px;
      background-color: var(--secondarygrey);
    }
    
    .box > .paragraph {
      padding: 10px;
    }

    #profil {
      display: none;
    }
}

@media only screen and (min-width: 1880px) {
  #mainheader {
    width: 100%;
    height: 350;
    background-color: var(--accentcolor);
    background-image: url("../media/mainheader.jpg");
    background-size: cover;
    background-repeat: round;
  }
}
  

  
