/* Color Theme Swatches in Hex */
.herrmann-creative-1-hex { color: #010326; }
.herrmann-creative-2-hex { color: #F2F2F2; }
.herrmann-creative-3-hex { color: #010B40; }
.herrmann-creative-4-hex { color: #94C6F2; }
.herrmann-creative-5-hex { color: #E20015; }

/* Color Theme Swatches in RGBA */
.herrmann-creative-1-rgba { color: rgba(1, 3, 38, 1); }
.herrmann-creative-2-rgba { color: rgba(242, 242, 242, 1); }
.herrmann-creative-3-rgba { color: rgba(1, 11, 64, 1); }
.herrmann-creative-4-rgba { color: rgba(148, 198, 242, 1); }
.herrmann-creative-5-rgba { color: rgba(226, 0, 21, 1); }

/* Color Theme Swatches in HSLA */
.herrmann-creative-1-hsla { color: hsla(236, 94, 7, 1); }
.herrmann-creative-2-hsla { color: hsla(0, 0, 94, 1); }
.herrmann-creative-3-hsla { color: hsla(230, 96, 12, 1); }
.herrmann-creative-4-hsla { color: hsla(208, 78, 76, 1); }
.herrmann-creative-5-hsla { color: hsla(354, 100, 44, 1); }


body{
    font-family: 'Anek Latin', sans-serif;
    font-size: larger;
    margin: 0px;
}

#logodiv {
  min-height: 100px;
  max-height: 100px;
  max-width: 100px;
  padding: 4px;
}

#logodiv img {
    position:fixed;
    top: 0px;
    left: 0px;
    background-color: #010B40;
    max-width:inherit;
}

#menudiv {
    position: fixed;
    top: 20px;
    right: 0px;
}

#thenavbar {
    position: relative;
    overflow: hidden;
    top: 0px;
    width: 100%;
    height: 100px;
    background-color: #010B40;    
    opacity: 1.0;
}

#thenavbar::-webkit-scrollbar {
  display: none;
}

.navcontainer {
  overflow: hidden;
}

.nav ul { 
    margin: 0 auto; 
    text-align: center;
  }

.navli {
    display: table-cell; 
    text-align:center;
    color: #F2F2F2;
}

.nava {
    font-family: 'Anek Latin', sans-serif;
    color: #F2F2F2;
    text-transform: capitalize;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding: 15px 15px;
    position: relative;
}

.nava:after {    
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    background: #94C6F2;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }

.nava:hover:after { 
    width: 100%; 
    color: #94C6F2;
    left: 0; 
}

.nava:hover { 
    width: 100%; 
    color: #94C6F2;
    left: 0; 
}

.navcontainer .icon {
    display: none;
  }


@media screen and (max-width:1200px) {
  .navcontainer a {
    font-size: medium;
  }
}

@media screen and (max-width: 950px) {
  .navcontainer a {display: none;}
  .navcontainer a.icon {
    float: right;
    display: block;
  }
  #logodiv img {
    height: 100px;
    width: 100px;
  }
  #thenavbar {
    height: 100px;
  }

}


@media screen and (max-width: 600px) {
    .navcontainer.responsive {position: relative;}
    .navcontainer.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
      color: #94C6F2;
    }
    #logodiv img {
      height: 50px;
      width: 50px;
    }
    #thenavbar {
      height: 50px;
    }
    .navcontainer.responsive li {
      float: none;
      display: block;
      text-align: left;
    }
    .navcontainer.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    #menudiv {
      top: 0px;
  }
  }
