@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamMedium.ttf'); /* IE9 Compat Modes */
  src: url('../fonts/GothamMedium.ttf?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('webfont.woff') format('woff'), /* Modern Browsers */
       url('../fonts/GothamMedium.ttf')  format('truetype'), /* Safari, Android, iOS */
}


/*

  LESS VARIABLES

*/
/* html */
/* nav */
/* nav border */
/* nav font color */
/* button border */
/*

  GENERAL CLASSES

*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}





.blur {

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -99;


  filter: blur(100px);

}




html,
body {
  padding: 0;
  margin: 0;
  font-family: "Gotham A","Gotham B",sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #333;
  background: #f2f2f2;
  -webkit-font-smoothing: antialiased;  

}

.shadow {

  background-color: #fff;
  box-shadow: 0px 0px 8px #aaa;
  clear: both;

}

.vAlign {
  height: 100%;
  height: 100vh;
  height: calc(100vh);
  display: table;
  text-align: center;
  max-width: 1220px;
  width: 100%;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: #ccc;
}
.vAlign .vAlignHelper {
  display: table-cell;
  vertical-align: middle;
}

.fRight {

  float:right;

}
.fLeft {

  text-align:left !important;
  float:left;

}
/*

  ELEMENTS

*/

.button {
  display: inline;
}
.button input {
  padding: 15px 35px;
  background-color: rgb(0,127,255);
  border: 1px solid #666;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
}
.button input:hover {
  background-color: #444;
}
/*

  HTML TAGS

*/
header {
  width: 100%;
  height: 4em;
  background-color: #333;
  border-bottom: 1px solid #444;
}
/*header:after,
header::after {
  content: "\A";
  border-style: solid;
  border-width: 10px 12px 10px 12px;
  border-color: #444 transparent transparent transparent;
  position: absolute;
  margin-left: -1100px;
  margin-top: 64px;
}
*/nav {
  max-width: 1220px;
  width: 100%;
  margin: auto;
}
nav a {
  line-height: 60px;
  display: block;
  float: left;
  text-align: center;
  font-size: 16px;
  height: 63px;
  color: #aaa;
  text-decoration: none;
}

nav a:first-child {

  width: 80%;

}
nav a:last-child {

  width: 20%;

}

nav a:first-child,
div.activeLink {
  width: calc( 100% - 195px );
}

.lLink {
  width: calc( 100% - 195px );
}

nav a:last-child{
  width: 65px;
  color: #aaa;

}

nav .nav-inner {
  max-width: 78rem;
  margin: auto;
}

nav .nav-inner img {
  height: 2.5rem;
  margin-top: 10px;
  padding-left: 10px;
}

nav a:hover {

}
h1 {
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  width: 100%;
  display: block;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;  
}

h2 {
  /*text-transform: uppercase;*/
  font-size: 1.8em;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

h3, h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.clear {
  clear: both;
}

/*

  WRAPPER CLASSES

*/

.w-header-image {
  width: 100%;
  height: 100%;
  max-height: 800px;
  max-height: 60vh;
  overflow: hidden;
  
  display: flex;
  align-items: center;

}

.w-header-image img {
  width: 100%;
}

.wGeneral {
  width: 100%;
  padding: 1.2em;
}
/* ################################################################################# */
/* ################################ GRID CLASSES ################################### */
/* ################################################################################# */
/* 

  THE WRAPPER

*/
.wGrid {
  width: 100%;
}
.wGrid:after {
  content: "";
  display: table;
  clear: both;
}
/*

  THE DIFFERENT GRIDS

*/

.col-1-1 {
  width: 100%;
}
.col-2-3 {
  width: 66.666%;
}

.col-6.col-last.login,
.col-1-2 {
  width: 50%;
}
.col-1-3 {
  width: 33.33333333%;
}
.col-1-4 {
  width: 25%;
}
.col-1-5 {
  width: 20%;
}
.col-1-6 {
  width: 16.66666667%;
}
.col-1-7 {
  width: 14.28571429%;
}
.col-1-8 {
  width: 12.5%;
}
/* 
  
  Settings for the columns
  padding for any but the last column

*/
[class*='col-'] {
  float: left;
}
[class*='col-'].col-last {
  padding-right: 0;
}


 @media screen and (max-width: 480px) {

  .col-1-3 {
    clear: both;
  }

}