.bar {
    background-color: #0b2f78;
    height: 4em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    top: 1vh;
}
.banner {
    background-image: url(img/pic_home_main2.jpg);
    width: 100%;
    height: 20em;
    background-size: contain;
    background-repeat: no-repeat;
    
}
.banner-about {
    background-image: url(img/bg_corp.jpg);
    width: 100%;
    height: 8em;
    background-size: contain;
    background-repeat: no-repeat;
    
}



.bottombar {
    background-color: white;
    height: 5em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    bottom: 0;
    
}
.container {
    cursor: pointer;
    float: right;
    margin: 10px;
    border: 1px solid #FFF;
    width: 45px;
}
  
.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #FFF; 
    margin: 6px 0;
    margin-left: 5px;
    margin-right: 5px;
    transition: 0.4s;
}
  
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
  
.change .bar2 {opacity: 0;}
  
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}
.text-container {
    color: black;
    margin-left: 5vh;
    margin-right: 5vh;
}
.headertext {
    text-align: center;
    font-size: 22pt;
}
.headertext-about {
    font-size: 22pt;
    margin-bottom: 20px;
}
.section-home {
    border-top: 2px solid #005288;
    margin-left: 10vh;
    margin-right: 10vh;
    font-size: 15pt;
    color: black;
    text-align: left;
}
.section-home-2 {
    margin-left: 4vh;
    margin-right: 4vh;
    font-size: 17pt;
}
.trio {
    font-size: 20pt;
    font-weight: bold;

}
.icon1 {
    background-image: url(img/img_oss_openstack.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20%;
    height: 4em;
    margin-top: 0.5em;
    margin-left: 1em;
    transition: transform .2s;
}
.icon2 {
    background-image: url(img/img_oss_linux.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20%;
    height: 4em;
    margin-top: 0.5em;
    transition: transform .2s;

}
.icon3 {
    background-image: url(img/img_oss_kubernetes.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20%;
    height: 4em;
    margin-top: 0.5em;
    margin-left: 0.2em;
    margin-right: 0.2em;
    transition: transform .2s;
}
.icon4 {
    background-image: url(img/img_oss_docker.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20%;
    height: 4em;
    margin-top: 0.5em;
    transition: transform .2s;

}
.icon5 {
    background-image: url(img/img_oss_kvm.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20%;
    height: 4em;
    margin-top: 0.5em;
    transition: transform .2s;

}
.icon1:hover {
    transform: scale(1.1);
}
.icon2:hover {
    transform: scale(1.1);
}
.icon3:hover {
    transform: scale(1.1);
}
.icon4:hover {
    transform: scale(1.1);
}
.icon5:hover {
    transform: scale(1.1);
}
.icon1:active {
    transform: scale(0.5);
}
.icon2:active {
    transform: scale(0.5);
}
.icon3:active {
    transform: scale(0.5);
}
.icon4:active {
    transform: scale(0.5);
}
.icon5:active {
    transform: scale(0.5);
}


.logo {
    float: left;
    margin: 1em;
}

#navbar {
    width: 300px;
    background-color: #0b2f78;
    padding: 10%;
    display: none;
}

/* NAV */

/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT license
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */

 body
 {
   margin: 0;
   padding: 0; 
   overflow-x: hidden; /* needed because hiding the menu on the right side is not perfect,  */
 }
 
 a
 {
   text-decoration: none;
   color: #FFF;
   transition: color  0.3s ease;
 }
 
 a:hover
 {
   color: #8f8f8f;
 }
 
 #menuToggle
 {
   display: block;
   position: absolute;
   top: 1.4em;
   right: 1.4em;
   
   z-index: 1;
   
   -webkit-user-select: none;
   user-select: none;
 }
 
 #menuToggle input
 {
   display: block;
   width: 40px;
   height: 32px;
   position: absolute;
   top: -7px;
   left: -5px;
   
   cursor: pointer;
   
   opacity: 0; /* hide this */
   z-index: 2; /* and place it over the hamburger */
   
   -webkit-touch-callout: none;
 }
 
 /*
  * Just a quick hamburger
  */
 #menuToggle span
 {
   display: block;
   width: 33px;
   height: 4px;
   margin-bottom: 5px;
   position: relative;
   
   background: #cdcdcd;
   border-radius: 3px;
   
   z-index: 1;
   
   transform-origin: 4px 0px;
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               opacity 0.55s ease;
 }
 
 #menuToggle span:first-child
 {
   transform-origin: 0% 0%;
 }
 
 #menuToggle span:nth-last-child(2)
 {
   transform-origin: 0% 100%;
 }
 
 /* 
  * Transform all the slices of hamburger
  * into a crossmark.
  */
 #menuToggle input:checked ~ span
 {
   opacity: 1;
   transform: rotate(45deg) translate(-2px, -1px);
   background: #fff;
 }
 
 /*
  * But let's hide the middle one.
  */
 #menuToggle input:checked ~ span:nth-last-child(3)
 {
   opacity: 0;
   transform: rotate(0deg) scale(0.2, 0.2);
 }
 
 /*
  * Ohyeah and the last one should go the other direction
  */
 #menuToggle input:checked ~ span:nth-last-child(2)
 {
   opacity: 1;
   transform: rotate(-45deg) translate(0, -1px);
 }
 
 /*
  * Make this absolute positioned
  * at the top left of the screen
  */
 #menu
 {
   position: absolute;
   width: 200px;
   margin: -100px 0 0 0;
   padding: 50px;
   padding-top: 125px;
   right: -100px;
   
   background: #0b2f78;
   list-style-type: none;
   -webkit-font-smoothing: antialiased;
   /* to stop flickering of text in safari */
   
   transform-origin: 0% 0%;
   transform: translate(100%, 0);
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
 }
 
 #menu li
 {
   padding: 10px 0;
   font-size: 22px;
 }
 
 /*
  * And let's fade it in from the left
  */
 #menuToggle input:checked ~ ul
 {
   transform: scale(1.0, 1.0);
   opacity: 1;
 }
 /* NAVIGATION END */ 
 @media only screen and (min-width: 1200px) {
    body {
      display: none;
    }
    .headertext-about {
      margin-top: 50px;
    }
  }
  @media only screen and (min-width: 480px) {
    .banner{
        background-image: url(img/pic_home_main2.jpg);
        width: 100%;
        height: 40em;
        background-size: contain;
        background-repeat: no-repeat;
        
    }
    .banner-about {
      width: 100%;
        height: 20em;
        background-size: contain;
        background-repeat: no-repeat;
    } 
    body {
        text-align: center;
    }
    .headertext {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .section-home {
        width: 50vh;
        margin-left: auto;
        margin-right: auto;
    }
    .bottombar{
      width: 100%;
    }
    .icon1 {
      width: 15%;
      margin-left: 7%;

    }
    .icon2 {
      width: 15%;
      margin-left: 7%;
    }
    .icon3 {
      width: 15%;
      margin-left: 7%;
    }
    .icon4 {
      width: 15%;
      margin-left: 7%;
    }
    .icon5 {
      width: 15%;
      margin-left: 7%;
    }

  }
  .collapsible {
    background-color: #0b2f78;
    color: white;
    border: 1px solid white;
    border-left: 10px solid white;
    border-right: 10px solid white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.5s ease;
    
    
  }
  .collapsible:hover {
      transform: scale(1.01);
  }
  .active, .collapsible:hover {
    background-color: #08204e;
  }
  
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    margin-left: 10px solid white;
    margin-right: 10px solid white;
    background-color: none;
    
  }
  #page-container {
  position: relative;
  min-height: 100vh;
}
#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
}

.collapsible2 {
  background-color: #0b2f78;
  color: white;
  border: 1px solid white;
  border-left: 30px solid white;
  border-right: 30px solid white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 12px;
  transition: 0.5s ease;
  
  
}
.collapsible2:hover {
    transform: scale(1.01);
}
.active, .collapsible2:hover {
  background-color: #08204e;
}
.content2 {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: none;
  border: 1px solid #08204e;
  width: 73%;
  border-left: 30px solid white;
  border-right: 30px solid white;
  margin-top: -5px;

  
}
#map {
  width: 90%;
  margin-right: 5%;
  margin-left: 5%;
  height: 400px;
  background-color: grey;
}

.contactinfo {
  font-size: 16pt !important;
  color: black !important;
  text-align: left !important;
  word-break: break-word !important;
  background-color: white;
}

.contactinfo a {
  color: black !important;
}

@media only screen and (max-width: 479px) {
  .contactinfo {
    color: black !important;
    text-align: left !important;
    font-size: 16pt !important;
    display: block !important;
    opacity: 1 !important;
  }
  .contactinfo a {
    color: black !important;
  }
}

