.fade-in {
  animation: fadeIn ease 1.5s;
  -webkit-animation: fadeIn ease 1.5s;
  -moz-animation: fadeIn ease 1.5s;
  -o-animation: fadeIn ease 1.5s;
  -ms-animation: fadeIn ease 1.5s;
}

@keyframes fadeIn{
  0% {
    opacity:0;
    transform: scale(0.97);
        -webkit-transform: scale(0.97);
  }
  100% {
    opacity:1;
    transform: scale(1.0);
        -webkit-transform: scale(1.0);
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
    transform: scale(0.97);
        -webkit-transform: scale(0.97);
  }
  100% {
    opacity:1;
    transform: scale(1.0);
        -webkit-transform: scale(1.0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
    transform: scale(0.97);
        -webkit-transform: scale(0.97);
  }
  100% {
    opacity:1;
    transform: scale(1.0);
        -webkit-transform: scale(1.0);
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
    transform: scale(0.97);
        -webkit-transform: scale(0.97);
  }
  100% {
    opacity:1;
    transform: scale(1.0);
        -webkit-transform: scale(1.0);
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
    transform: scale(0.97);
        -webkit-transform: scale(0.97);
  }
  100% {
    opacity:1;
    transform: scale(1.0);
        -webkit-transform: scale(1.0);
  }
}



body {
  font-family: 'brandon-grotesque';
  font-weight: 200;
background: transparent;
}


.hero {
  position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  background-color: #072A3D;
  -webkit-transition: background-color 2s ease-in-out!important;
    -moz-transition: background-color 2s ease-in-out!important;
    -o-transition: background-color 2s ease-in-out!important;
    -ms-transition: background-color 2s ease-in-out!important;
    transition: background-color 2s ease-in-out!important;
}


.title{
  line-height: 50px!important;
  color: #fff;
  padding: 20px 0 0 0;
  font-size: 30px!important;
    font-weight: 200;
}

.title.is-2{
  font-size: 27px;
}

@media screen and (max-width: 768px) {
  .title.is-2{
    font-size: 20px;
    line-height: 32px;
  }
  .subtitle.is-5{
        font-size: 10px;
  }
  .tabs a{
    margin: 0 10px!important;
  }
}

@media screen and (max-width: 400px) {
  .title.is-2{
    font-size: 16px;
  }
  .subtitle.is-5{
      padding-top: 20px!important;
  }
  .tabs a{
    margin: 0 4px!important;
  }
  .hero-foot{
    padding-bottom: 20px!important;
  }
}

.title a{
  color: #fff;
    border-bottom: 2px solid;
}

/*** look at me, I am the background now ***/
#bg-test {
      position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #084467;
        background-color: transparent;
    -webkit-transition: background-color 1s ease-in-out!important;
      -moz-transition: background-color 1s ease-in-out!important;
      -o-transition: background-color 1s ease-in-out!important;
      -ms-transition: background-color 1s ease-in-out!important;
      transition: background-color 1s ease-in-out!important;
}

.link1:hover{
  color:#AED1E5;
  -webkit-transition: background-color .5s ease-in-out!important;
    -moz-transition: background-color .5s ease-in-out!important;
    -o-transition: background-color .5s ease-in-out!important;
    -ms-transition: background-color .5s ease-in-out!important;
    transition: background-color .5s ease-in-out!important;
}

.link2:hover{
  color:#AED1E5;
  -webkit-transition: background-color .5s ease-in-out!important;
    -moz-transition: background-color .5s ease-in-out!important;
    -o-transition: background-color .5s ease-in-out!important;
    -ms-transition: background-color .5s ease-in-out!important;
    transition: background-color .5s ease-in-out!important;
}

.link3:hover{
  color:#AED1E5;
  -webkit-transition: background-color .5s ease-in-out!important;
    -moz-transition: background-color .5s ease-in-out!important;
    -o-transition: background-color .5s ease-in-out!important;
    -ms-transition: background-color .5s ease-in-out!important;
    transition: background-color .5s ease-in-out!important;
}

.link1:hover ~ #bg-test {
    background: #084467;
}

.link2:hover ~ #bg-test {
    background: #084467;
}

.link3:hover ~ #bg-test {
    background: #084467;
}


.subtitle.is-5{
  padding-top: 50px;
  font-size: 16px;
  color: #fff;
  font-family: 'brandon-grotesque';
  font-weight: 700;
}

.hero-foot{
  padding-bottom: 50px;
}

.foot{
  margin: 0 auto;
}

.foot a{
  font-size: 12px;
  color: #fff;
  font-family: 'brandon-grotesque';
  font-weight: 700;
  text-transform: uppercase;
}

.tabs a{
box-shadow: inset 0 0px 0 rgba(255,255,255,.25);
/* margin: 0 20px; */
ransition: box-shadow .3s ease-in-out;
-webkit-transition: box-shadow .3s ease-in;
-moz-transition: box-shadow .3s ease-in;
-o-transition: box-shadow .3s ease-in;
-ms-transition: box-shadow .3s ease-in;
}

.tabs a:hover{
  color: #fff;
box-shadow: inset 0 -3px 0 rgba(255,255,255,1);
transition: box-shadow .3s ease-in-out;
-webkit-transition: box-shadow .3s ease-in;
-moz-transition: box-shadow .3s ease-in;
-o-transition: box-shadow .3s ease-in;
-ms-transition: box-shadow .3s ease-in;
}


/*** HERE IS THE WORK PAGE ***/

.workpage{
  background: #fff;
}
.logo{
  display: block;
  margin: 0 auto;
  padding: 30px 0 30px 0;
}

.worktitle{
  font-family: 'brandon-grotesque';
  font-weight: 700;
  font-size: 34px;
  padding-bottom: 10px;
}

.subtitle{
  text-transform: uppercase;
  font-family: 'brandon-grotesque';
  font-weight: 700;
  color: #3D444D;
  font-size: 14px;
  letter-spacing: .5px;
  padding-bottom: 20px;
}

p{font-size: 16px; color: #3D444D; line-height: 26px;}

.mini{font-size: 16px;  padding-bottom: 20px;   color: #3D444D; text-transform: none;}

.viewproj{
  font-family: 'brandon-grotesque';
  font-weight: 700;
  border-width: 2px;
  padding: 20px;
}

.titles{padding-top: 60px;}
.nobg{
  background-color: transparent!important;
}
.section{
  background-color: transparent;
}
.column{
  display: block;
   margin: 10px}


.image{
    display: block;
    top:0;
    bottom:0;
    margin: auto;
    padding: 40px 50px;
  }

.workfoot a{
  color: #3D444D;
  font-size: 12px;
  font-family: 'brandon-grotesque';
  font-weight: 700;
  text-transform: uppercase;
}

.workfoot a:hover{
  color: #3D444D;
}

.tabs ul{border-bottom: none!important;}
