@font-face {
    font-family: campton;
    src: url('../campton-exbold.otf');
    font-weight:900;
}
@font-face {
    font-family: campton;
    src: url('../campton-medium.otf');
    font-weight:normal;
}
@font-face {
    font-family: campton;
    src: url('../campton-bold.otf');
    font-weight:bold;
}

body{font-family: 'Open Sans', sans-serif;}
h1, h2, h3, h4, h5, h6, .menu-link{
  font-family: 'campton', 'Open Sans', sans-serif; 
  font-weight:normal;
}
p{display:inline-block;line-height:180%;font-size:14pt;font-weight:100;}
li{line-height:180%; font-size:14pt; font-weight:100;}

  ul{
    font-size:7.5pt;
    line-height:27pt;
  }

  ul li{
    vertical-align:top;
    font-size:14pt;
    line-height:27pt;
    font-weight:100;
  }

.intered{color:#ee3a5d}
.white{color:white;}
.white-bg{background:white !important;}
.bg-intered{background-color:#ee3a5d;}
.bold{font-weight:bold;}
.ex-bold{font-weight:900;}
.display-none{display:none;}
.hidden{display:none;visibility:hidden;}
.center{display:block;margin:0 auto;}
.margin-bottom-none{margin-bottom:0;}
.h3-layout-class{visibility:hidden;}
.auto-height{height:auto !important;}

.dev-logo{
  margin:0em 0.2em 0 0.2em;
}

.des-logo{
  margin:0em 0.5em 0 0.5em;
}

.show-mobile{display:none;}

.callout-link:link{
  text-decoration:none;
  color:white;
}

.callout-link:visited{
  text-decoration:none;
  color:white;
}

.callout-link:hover{
  text-decoration:none;
  color:white;
}

.callout-link:active{
  text-decoration:none;
  color:white;
}

#form-wpr{
  height:auto;
  /*margin-top:6%;*/
  padding-bottom:6%;
}

#callout{
  border: solid 4px white;
  color:white;
  padding-bottom:2%;
  margin-left:10%;
  width:70%;
}

#oops-wpr{
  position:relative;
  background-color:white;
  padding-left:2%;
  margin-bottom:3%;
}

#oops-wpr:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 12px;
  margin-left: -48%;
}

#oops{
  margin:0.5em 0 0.5em 0;
}

.err{
  margin:0;
  padding-left:2%;
}


#help-list{
    font-size:7.5pt;
    line-height:27pt;
  }

  #help-list li span{
    vertical-align:top;
    font-size:16pt;
    line-height:27pt;
    font-weight:100;
  }



  input, textarea, #submit-btn{
    display:block;
    width:95%;
    background-color:#ee3a5d;
    border:none;
    border-bottom: solid 2px white;
    padding:1em 0 1em 0;
    margin-bottom:1em;
    color:white;
  }

  #submit-btn{
    margin-top:3em;
    padding:1em 0 1em 0;
    background-color:#ee3a5d;
    border: solid 2px white;
    width:20%;
    margin-right:1em;
    float:right;
  }

  textarea:focus, input:focus{
      outline: none;
  }

  .form-label-hide{
    opacity:0;
    transition: .2s bottom, .2s opacity;
  }

  .form-label-show{
    opacity:1 !important;
  }

  input:-webkit-autofill {
      -webkit-box-shadow: 0 0 0px 1000px #ee3a5d inset;
      -webkit-text-fill-color: white !important;
  }

  .trans{
     transition: fadein 1s ease-in-out;
   opacity:0;
  }

  .fade-out{
    opacity:0;
    transition: all 0.25s ease-in-out;
  }

  .fade-in{
    opacity:1 !important;
    transition: all .5s ease-in-out;
  }
  #success, #failure{
    transition: all .5s ease-in-out;
  }

/*Logo SVG Animation*/
@-webkit-keyframes fadeIn { from { opacity:0; transform:scale(1);} to { opacity:1; transform:scale(1.1);} }
@-moz-keyframes fadeIn { from { opacity:0; transform:scale(1);} to { opacity:1; transform:scale(1.1);} }
@keyframes fadeIn { from { opacity:0; transform:scale(1);} to { opacity:1; transform:scale(1.1);} }

/* fadeInUpShort animation*/

@-webkit-keyframes fadeInUpShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpShort {
  -webkit-animation-name: fadeInUpShort;
  animation-name: fadeInUpShort;
}

/* End of fadeInUpShort */

/*  animation*/

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeInOpacity {
  -webkit-animation-name: fadeInOpacity;
  animation-name: fadeInOpacity;
}

/* Press */

#landing-logo{
  /*position: absolute;
    top: 50%;
    left: 50%;*/
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:0.7s;
  -moz-animation-duration:0.7s;
  animation-duration:0.7s;
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

/* Animated Hamburger Menu*/
  #hamburger {
    width: 24px;
    height: 25px;
    margin: 50px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    position:fixed;
    right:4em;
    top:-1em;
    z-index:500;
  }

  #hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ee3a5d;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  #hamburger span:nth-child(1) {
    top: 0px;
  }

  #hamburger span:nth-child(2),#hamburger span:nth-child(3) {
    top: 7px;
  }

  #hamburger span:nth-child(4) {
    top: 14px;
  }

  


  #hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
    background: #fff;
  }

  #hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
  }

  #hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #fff;
  }

  #hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
    background: #fff;
  }

  #hamburger.arrow-left:hover span:nth-child(1) {
    top:0;
  }

   #hamburger.arrow-left:hover span:nth-child(4) {
    top:14px;
  }

  #hamburger.arrow-left span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg) translateX(-3px);
    width:15px;
    right:100px;
    background: #fff;
  }

  #hamburger.arrow-left span:nth-child(2) {
    width:120%;
    background: #fff;
  }

  #hamburger.arrow-left span:nth-child(3) {
    width:120%;
    background: #fff;
  }

  #hamburger.arrow-left span:nth-child(4) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg) translateX(-3px);
    width:15px;
    background: #fff;
  }

  #hamburger.arrow-right:hover span:nth-child(1) {
    top:0;
  }

   #hamburger.arrow-right:hover span:nth-child(4) {
    top:14px;
  }

  #hamburger.arrow-right span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(45deg) translateX(3px);
    left:15px;
    width:15px;
    right:100px;
    background: #fff;
  }

  #hamburger.arrow-right span:nth-child(2) {
    width:120%;
    background: #fff;
  }

  #hamburger.arrow-right span:nth-child(3) {
    width:120%;
    background: #fff;
  }

  #hamburger.arrow-right span:nth-child(4) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(-45deg) translateX(3px);
    left:15px;
    width:15px;
    background: #fff;
  }
/* End of Animated Hamburger Menu*/


/* Menu Transitions */

  #menu{
    display:flex-box; 
    display:flex;
  }
  
  .menu {
    position: fixed;
    z-index: 200;
    transition: transform 0.2s ease-out;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow-y: auto;
    background-color:#ee3a5d;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  .menu.is-active{
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }

  .menu-items {
    margin:auto auto
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu .menu-items {
    display: inline-block;
    text-align: center;
  }

  .menu .menu-item {
    display: block;
    line-height:4.5rem;
  }

  .menu .menu-link {
    display: block;
    padding: 0 4px;
    color: #fff;
  }

  .menu-link{
    padding-bottom:1rem !important;
    text-decoration:none !important;
    font-size:26pt;
    transition: 0.6s;
  }

  .menu-link-current{
    text-shadow: 0 0 4px white, 0 0 4px grey;
    transition: 0.6s;
  }

  .menu-link:hover{
    transform: scale(1.05);
    transition: 0.6s;

  }

  

  body.has-active-menu {
    overflow: hidden;
  }
/* End of Menu Transitions */

/* Change input placeholder text colour */
*::-webkit-input-placeholder {
  color: white;
  font-weight:lighter;
}

*:-moz-placeholder { /* Firefox 18- */
  color: white;  
  font-weight:lighter;
  opacity: 1;

}

*::-moz-placeholder {  /* Firefox 19+ */
  color: white; 
  font-weight:lighter; 
  opacity: 1;
}

*:-ms-input-placeholder {  
  font-weight:lighter; 
  color: white;  
}
/* End of input placeholder text colours */

#sec1::before {
    will-change: all; 
  }

#sec1{
  /*background:url("../img/bgLanding2.jpg") no-repeat; 
  background-position:100% 100%;
    background-size:cover;*/
  will-change: all;
  -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
   -ms-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
  z-index:14;
  background:url("../img/bg-image1.jpg") repeat-x; 
  background-size: inherit;
  background-attachment: fixed;
}

#sec2::before {
    will-change: all; 
  }

#sec2{
  /*background:url("../img/bgLanding2.jpg") no-repeat; 
  background-position:100% 100%;
    background-size:cover;*/
  will-change: all;
  -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
   -ms-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
  z-index:14;
  color: white;
  /*background:url("../img/bg-image2.jpg") repeat-x; 
  background-size: inherit;
  background-attachment: fixed;*/
}

.parallax-window {
  min-height: 400px;
  background: transparent;
}

/*#sec6{
  z-index:12;
}*/

#logo{
  background:url("../img/logo-white.svg");
  -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  width:30px;
  height:25px;
  z-index:100;
  position:fixed;
  bottom:3%;
  right:49%;
}

/* ---------------------------- Desktop CSS ----------------------------*/

@media screen and (min-width:801px){

  #sec3, #sec5, #sec6, #sec7{
    z-index: 12;
  }

  #hamburger:hover span:nth-child(1) {
    top: -3px;
  }

   #hamburger:hover span:nth-child(4) {
    top: 17px;
  }

  .menu-items{
    /*position:relative;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);*/
  }

  #sec4{
    z-index:12;
  }

  /*#sec7{
    padding-bottom:4em;
  }*/

  .show-mobile{
    display:none !important;
  }

  .zoom-img{
    -ms-transition: all 1s cubic-bezier(0.445, 0.05, 0.55, 0.95); /* IE 9 */
    -webkit-transition: all 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: all 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    max-width: 100%;

  }

  .zoom{
    -ms-transform:scale(1.1); /* IE 9 */
     transform:scale(1.1);
  }

  .zoom-wpr{
    width:100%;
    height:100%;
    overflow:hidden;
    position:relative;  
    z-index:10;
  }

  #header{
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 100%;
    display: inline;
    height: 75px;
    z-index: 13;
    background-color: white;
    position: fixed;  
  }

  #footer{
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 100%;
    display: inline;
    /* height: 75px; */
    z-index: 11;
    background-color: white;
    position: fixed;
    bottom:0;
  }

  #interad-logo{
    opacity:0;
    position: fixed;
    top: 1.3em;
    left: 3.5em;
    width: 150px;
    z-index: 200;
    -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out;
  }

  /*h1, h2, h3, h4, h5, h6{
    z-index:14;
  }*/

  .full{
    width:100%;
    height:100%;
  }

  .wp{
    font-size:14pt;
    font-weight:100;
  }

  #welcome-wpr{
    width:50%;
    margin: 0 auto;
  }

  #welcome-wpr2{
    display:inline-block;
    width:30%;
    position: relative;
    top: 50%;
    transform: translateY(-20%);
  }


  #spacer1{
    display:inline-block;
    width:10%;
  }

  #spacer2{
    display:inline-block;
    width:10%;
  }

  h1{
    text-align:right;
    font-size:40pt;
    font-weight:500;
    word-spacing: 9999px;
    line-height:140%;
  }

  .welcome{
    margin-top:0;
    word-spacing: 10px;
    text-align: left; 
  }

  .centair{
    position:relative;
    left:40%;
  }

  .inline-block{
    display:inline-block;
  }

  #laundry-wpr{
    display:inline-block;
  }

  .ap{
    overflow:auto;
  }

  #about-wpr{
    height: 80vh;
    width: 50vw;
    padding-left: 10%;
    padding-top: 0%;
  }

  #about-img-wpr{
    position:absolute;
    top:0;
    display:inline-block;
    width:41vw;
  }

  #about-img{
    background:url("../img/bgAbout.jpg") no-repeat; 
    background-size: auto 100vw;
    background-attachment: fixed;
    /*background-position:100% 100%;    */
    height:100%;
    width:100%;
  }

  .pos-relative{
    position:relative;
  }

  #ap-wpr{
    float:right;
    display:inline-block;
    padding-right:8%;
    padding-top:3%;
    width:42%;
    padding-bottom:4%;
  }

  .ap{
    margin-top:0;
  }

  #about-title{
    margin-bottom:0;
    text-align: left;
  }

  .process{
    margin-bottom:0;
    text-align: left;
  }

  #process-img-wpr{
    height:100%;
    width:42vw;
  }

  #process-img{
    background:url("../img/bgProcess.jpg") no-repeat; 
    background-size:auto 100vw;
    background-attachment: fixed;
    /*background-position:100% 100%;*/
    background-position:0% 50%;
    height:100%;
    width:100%;
  }

  #pro-wpr{
    height:100%;
    display:inline-block;
    position: absolute;
  }

  #pro-wpr2{
    display:inline-block;
    width:39%;
    float:right;
    padding-right:10%;
    padding-top:3%;
    padding-bottom:10%;
  }


  #pro-wpr2 p.bold{
    margin-bottom:0;
  }

  #pro-wpr3{
    display:inline-block; 
    position:absolute; 
    top:10%;
    bottom:0;
    left:0;
    right:0;
  }

  #img-pro{
    padding-left:5%;
  }

  .half2{
    height:100vh;
    width:50%;
    float:left;
    display:inline-block;
  }

  .half{
    
    width:50%;
    float:left;
    display:inline-block;
  }

  .absolute{
    position: absolute;
  }

  .onethird{
    width:32%;
    float:left;
    display:inline-block;
  }

  .twothird{
    height:100%;
    width:65%;
    float:right;
    display:inline-block;
  }

  .transparent{
    opacity:0;
  }

  #hiring-img-wpr{
    position:absolute; 
    top:0;
    right:0;
    width:57vw;
    height:100%;
  }

  #hiring-img{
    background:url("../img/bgCareers.jpg") no-repeat; 
    background-size:auto 100vw;
    background-attachment: fixed;
    position:relative;
    background-position: 40vw 50%;
    width:100%;
    height:100%;
  }

  #hiring{
    position:relative;
    display:inline;
    padding:0 !important;
    margin:0 !important;
  }

  
  .contact-info{
    text-align: right;
    display:block;
    line-height:160%;
    font-size:17px;
  }

  #contact-form{
    padding-left:10%;
    width:70%;
    padding-bottom:10%;
  }

  #contact-form h3{
    font-size:18pt;
  }

  #contact-wpr{
    overflow:visible;
    margin-bottom: 1em;
  }

  /*#contact-wpr h1{
    margin-top: 3em;
  }*/

  input, textarea{
    display:block;
    width:100%;
    background-color:#ee3a5d;
    border:none;
    border-bottom: solid 2px white;
    padding:1em 0 1em 0;
    margin-bottom:1em;
    color:white;
  }

  #submit-btn{
    margin-top:3em;
    padding:1em 0 1em 0;
    border: solid 2px white;
    width:30%;
    margin-right:1em;
    float:right;
  }

  #reset-btn{
    margin-top:3em;
    padding:1em 0 1em 0;
    border: 0;
    width:20%;
    margin-right:1em;
    float:right;
  }

  textarea:focus, input:focus{
      outline: none;
  }

  .form-label-hide{
    opacity:0;
    transition: .2s bottom, .2s opacity;
  }

  .form-label-show{
    opacity:1 !important;
  }


  .float-left{
    text-align:left;
  }

  .d{
    display:block;
    /*position: relative;
    top: 40%;
    margin:0 auto;*/
    margin: 0 0 50px 6%;
  }

  #d1-img:hover, #d2-img:hover{
    cursor:pointer;
  }

  #design-services{
    padding-top:5%;
  }

  #dev-services{
    padding-bottom:7%;
  }

  #d1-img, #d2-img{
    transition: transform 1s ease;
    height:100px;
    width:105px;
  }

  .hover{
    transition: transform 1s ease;
    transform:scale(1);
  }

  .scale{
    transform:scale(1.10);
  }

  #d-wpr-scale{
    display:inline-block;
    width:100%;
    transition:all 1s cubic-bezier(0.47, 0, 0.745, 0.715);
  }

  #d-wpr-translate{
    display:inline-block;
    width:100%;
    transition:all 1s cubic-bezier(0.47, 0, 0.745, 0.715);
  }

  .scale-out{
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  .hide-left{
    -webkit-transform: translateX(-5000px);
    -moz-transform: translateX(-5000px);
    -o-transform: translateX(-5000px);
    transform: translateX(-5000px) scaleX(-1);
  }

  .hide-right{
    -webkit-transform: translateX(5000px);
    -moz-transform: translateX(5000px);
    -o-transform: translateX(5000px);
    transform: translateX(5000px) scaleX(-1);
  }

  .service{
    /*padding-top:7%;
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
    display:inline-block;
    padding-top:5%;*/
    padding-bottom:5%;
    background-color:#ee3a5d;
    color:white;
    overflow:hidden;
    -webkit-transition: all 900ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -moz-transition: all 900ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -ms-transition: all 900ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -o-transition: all 900ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 900ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .service .half:nth-child(2){
    padding-left:6%;
    width:44%;
  }

  .active-service{
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform:translateX(0px);
  }

  .service p{
    padding-right:25%;
    margin-top:0;
  }

  .service h3{
    padding-top:4%;
    display:inline;
    font-size:22pt;
  }

  .service-first{
    margin-top:5% !important;
  }  

  .service-first-col2{
    margin-top:56.9844px !important;
  }

  #tech-used{
    margin-bottom:18.67px;
  }

  #dev-services p{
    padding-right:15%;
    font-weight:100;
  }

  .off-screen-right{
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }

  .off-screen-left{
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .opaque{
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    opacity: 1 !important;
  }

  .hide{
    visibility: hidden;
  }

  .divider{
    margin-bottom:5%;
    margin-top:1%;
    border: 2px solid white;
    width: 12%;
  }

  #hire{
    margin-bottom: 0;;
    padding-top:5%;
    padding-left:15%;
    font-size:24pt;
  }

  #hire-wpr{
    width:41%;
  }

  #hire-par{
    padding-left:15%;
    margin-bottom:0%;
  }

  #grads{
    padding-left:15%;
    margin-bottom:0;
  }

  figcaption{
    text-align:center;
    font-size:16pt;
  }

  #thank-you-message{
    -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      -o-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
  }

  #logo{
    background:url("../img/logo-white.svg");
    -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      -o-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
    width:30px;
    height:25px;
    z-index:100;
    position:fixed;
    bottom:3%;
    right:49%;
  }

  #help-list{
    font-size:7.5pt;
    line-height:27pt;
  }

  #help-list li span{
    vertical-align:top;
    font-size:14pt;
    line-height:27pt;
  }

  #sec7{
    overflow:hidden;
  }
}
/* End of Desktop CSS */


/* ---------------------------- Mobile CSS ---------------------------- */
@media screen and (max-width:800px){

  body * {
    
    padding:0;
    margin:0;
    clear:both;
  }

  #interad-logo-mobile{
    opacity:0;
    position:fixed;
    top:1em;
    left:1em;
    z-index:200;
    width:20%;
    -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      -o-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
  }

  .menu-link{
    font-size:20px;
  }

  .menu .menu-item{
    line-height:50px;
  }

  .menu-items{
    /*margin-top:20%;*/
    /*margin-top:8%;*/
  }

  strong{
    display:inline;
  }

  .hide-mobile{
    display:none !important;
  }

  .show-mobile{
    display:block !important;
  }


  #laundry{
    position:relative;
    margin-left:1rem;
    margin-right: 1rem;
  }

  .about{
    position:absolute;
    top:0em;
    float:right;
    text-align:right;
  }

  #logo{
    bottom:2%;
    opacity:0;
  }

  #sec1{
    z-index:12;
    /*background:url("../img/bgLandingc.png") no-repeat; */
    background:url("../img/bg-image1.jpg") no-repeat;
    /*background-size:220%;*/
    background-size:cover;
    background-position:40% 0%;
    background-attachment: scroll;
  }
  #sec2{
    /*z-index:12;*/
    z-index: 9;
    /*background:url("../img/bgLanding2c.png") no-repeat; */
    /*background-size:220%;*/
    background-size:cover;
    background-position:40% 0%;
    background-attachment: scroll;
  }

  h1{
    margin:1rem;
  }

  label, p, h2, h3, h4{
    margin:1rem;
  }

  input, textarea{
    margin-left:1rem;
    margin-right:1rem;
  }

  p{display:block;line-height:180%;font-size:16pt; position:static;}
  h1{
  position:static;
  text-align:left;
  float:left;
  font-size:35pt;
  font-weight:500;
  }

  #hamburger{
    right:1em;
    top:-2em;
  }

  #d1-img-mobile, #d2-img-mobile{
    padding-bottom:30px;
  }

  .d{
    padding-left:1rem;
    padding-top:1rem;
    margin: 0 auto;
  }

  #landing-logo{
    width:65vw;
  }

  #about-img-wpr{
    width:100%;
    height:50vh;
  }

  #about-img{
    background:url("../img/bgAboutM.png") no-repeat; 
    background-size:  cover;
    background-position:50%;
    background-attachment: inherit;  
    height:100%;
    width:100%;
  }

  #about-title{
    text-align: right;
    word-spacing: 500px;
    color:white;
    margin-bottom:4em;
    position:relative;
    top:100px;
  }

  #ap-wpr{
    position:relative;
    bottom:24em;
  }

  .ap:nth-of-type(2){
    margin-bottom:-12em;
  }


  .dev-logo{
    margin-top:1em;
  }

  .des-logo{
    margin-top:1em;
  }

  .logo-container{
    padding-top:30px;
    padding-bottom:30px;
    padding-left:1rem;
  }

  #tech-used{
    margin-left:1rem;
    margin-right:1rem;
    list-style: none;
  }

  #design-services, #dev-services{
    color:white;
    background-color:#ee3a5d;
    z-index:1;
  }

  #design-services h3, #dev-services h3{
    font-size:24pt;
  }

  #dev-services{
    padding-bottom: 1em;
  }

  #d1-img-mobile.show-mobile, #d2-img-mobile.show-mobile{
    padding-top:2em;
  }

  .mobile-last{
    margin-bottom:0;
    padding-bottom:2em;
  }

  .divider{
    margin-top:1%;
    margin-left:5%;
    border: 2px solid white;
    width: 22%;
    background-color:#ee3a5d;
  }

  #process-img-wpr{
    width:100%;
    height:50vh;
  }

  #process-img{
    background:url("../img/bgProcessM.png") no-repeat; 
    background-size: cover;
    background-attachment: inherit;
    background-position:50%;
    height:100%;
    width:100%;
  }

  .process{
    text-align: right;
    word-spacing: 500px;
    color:white;
    margin-bottom:2em;
  }

  #pro-wpr2{
    position:relative;
    bottom:300px;
  }

  #pro-par{
    margin-bottom:-10em;
  }

  #hiring-img-wpr-mobile{
    width:100%;
    height:50vh;
  }

  #hiring-img-mobile{
    background:url("../img/bgCareersM.png") no-repeat; 
    background-size:cover;
    background-attachment: inherit;
    position:relative;
    width:100%;
    height:100%;
  }

  #grads{
    text-align: left;
    word-spacing: 500px;
    color:white;
    position:relative;
    bottom:20px;
  }

  #hire{
    font-size:26pt;
  }

  #hire-wpr{
    position:relative;
    bottom:18em;
  }

  #hire-par{
    padding-top:3em;
    margin-bottom:-10em;
  }

  #reset-btn{
    display:block;
    margin:auto;
    border:none;
  }

  #submit-btn{
    margin-right:30%;
    width:40%;
  }

  .contact-info{
    line-height:160%;
  }

  #contact-wpr-mobile{
    padding-bottom:5em;
  }

  #thank-you-message{
    transition: all 500ms ease;
    padding-left:1em;
  }

  #oops{
    margin-top:0;
  }

  #header{
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 100vw;
    display: inline;
    height: 55px;
    z-index: 10;
    background-color: white;
    position: fixed;  
  }

  #footer{
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 100vw;
    display: inline;
    height: 60px;
    z-index: 10;
    background-color: white;
    position: fixed;
    bottom:0;
  }


  #help-list, #help-with{
    display:none !important;
  }

  input, textarea{
    border-bottom: solid 2px white;
    padding-bottom:1em;
    margin-bottom:2em;
  }

  a[href^="tel"]{
    color:inherit;
    text-decoration:underline;
  }
  
}