body, html {
  height: 100%;
  margin: 0;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
}

.hero-image {
  background-image: url("AIECMain.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}


.basic-default-text {
  text-align: left;
  color: #777;
  margin: 0px 100px 50px 50px;
}

.basic-default-text-table {
  text-align: left;
  color: #777;
  margin: 0px 100px 5px 5px;
}

.basic-default-text-white {
  text-align: left;
  color: white;
}

.basicmargin {
            margin: 50px 50px 50px 50px;
}

.aboutlwtmargin {
            margin: 0px 50px 50px 50px;
}

.softermargin {
            margin: 25px 25px 50px 50px;
}

.bottommargin {
            margin: 25px 15px 15px 15px;
}

.topcellpadding {
            padding-top: 17px;
            padding-bottom: 7px;
}

.cellmargin {
            margin: 15px 15px 15px 15px;
}

.rightalign {
  text-align: right;
  position: absolute;
  top: 0%;
  right: 0%;
}

.leftalign {
  text-align: left;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
}

.logopadding {
  padding-top: 25px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 50px;
}

.blackbackground {
        background-color: black;
}

table.frisebackground {
  background-image: url("AIECMain.jpg");
  background-position: 20%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative
}

.lwtaboutbackground {
  background-image: url("AIECMain.jpg");
  height: 45%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative
}

.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.buttongreyblue {
  background-color: #DCDCDC; 
  color: black; 
  border: 2px solid #DCDCDC;
}

.buttongreyblue:hover {
  background-color: #008CBA;
  color: white;
  border: 2px solid #008CBA;
}

/* Style small button for translations */
.smallbutton {
  border: none;
  color: black;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.container {
  position: relative;
}

.container:hover .image {
  opacity: 0.3;
}

.container:hover .middle {
  opacity: 1;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #fffff;
  background-color: #ffffff;
  overflow: auto;
  white-space: nowrap;
}

/* Style the tab */

.scrollmenu {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
}


.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

.scrollmenu a.active {
  background-color: #008CBA;
  color: white;
}

.scrollmenu a:hover {
  background-color: #008CBA;
  color: white;
}

/* Dynamic Table Properties */
* {
  box-sizing: border-box;
}

.col { /* Only for testing */
  color: white;
  float: left;
  width: 25%;
  padding: 10px;
}

.default-col {
  width: 25%;
  float: left;
}

.default-col-x3 {
  width: 33%;
  float: left;
}

.default-col-x2 {
  width: 50%;
  float: left;
}

.default-col-x2-fixed {
  width: 50%;
  float: left;
}

.default-col-x4 {
  width: 100%;
  float: left;
}

.colContainer:after {
  content: "";
  display: table;
  clear: both;
}
/* When the screen size gets smaller than 900px, the width is 50%  */
@media screen and (max-width: 900px) {
  .col {
     width: 50%;
    }
  .default-col {
     width: 50%;
    }
   .default-col-x3 {
     width: 100%;
    }
  .default-col-x2 {
     width: 100%;
    }
      .default-col-x2-fixed {
     width: 100%;
    }
  .default-col-x4 {
     width: 100%;
    }
}
/* When the screen size gets smaller than 500px, the width is 100%  */
@media screen and (max-width: 500px) {
  .col {
     width: 100%;
    }
   .default-col {
     width: 100%;
   }
   .default-col-x3 {
     width: 100%;
   }
    .default-col-x2-fixed {
     width: 100%;
    }
}

