/* Custom Stylesheet */
/**
 * Use this file to override Materialize files so you can update
 * the core Materialize files in the future
 *
 * Made By MaterializeCSS.com
 */

@font-face {
    font-family: Syncopate-Regular;
    src: url('../font/Syncopate-Regular.ttf');
}

/**
 * Animations
 */

/*** Fade In ***/

@-webkit-keyframes fade-in { from { opacity: 0; } to { opacity: 1; }}
   @-moz-keyframes fade-in { from { opacity: 0; } to { opacity: 1; }}
     @-o-keyframes fade-in { from { opacity: 0; } to { opacity: 1; }}
        @keyframes fade-in { from { opacity: 0; } to { opacity: 1; }}

.animate-fade-in {
    -webkit-animation: fade-in 1s forwards ease;
       -moz-animation: fade-in 1s forwards ease;
         -o-animation: fade-in 1s forwards ease;
            animation: fade-in 1s forwards ease;
}

/*** Fade Out ***/

@-webkit-keyframes fade-out { from { opacity: 1; } to { opacity: 0; }}
   @-moz-keyframes fade-out { from { opacity: 1; } to { opacity: 0; }}
     @-o-keyframes fade-out { from { opacity: 1; } to { opacity: 0; }}
        @keyframes fade-out { from { opacity: 1; } to { opacity: 0; }}

.animate-fade-out {
    -webkit-animation: fade-out 1s forwards ease;
       -moz-animation: fade-out 1s forwards ease;
         -o-animation: fade-out 1s forwards ease;
            animation: fade-out 1s forwards ease;
}

/*** Blink ***/

@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

/*** Navbar Down ***/

@-webkit-keyframes navbar-down { from { transform: translateY(-70px); } to { transform: translateY(0); }}
   @-moz-keyframes navbar-down { from { transform: translateY(-70px); } to { transform: translateY(0); }}
     @-o-keyframes navbar-down { from { transform: translateY(-70px); } to { transform: translateY(0); }}
        @keyframes navbar-down { from { transform: translateY(-70px); } to { transform: translateY(0); }}

.animate-nav-down {
    -webkit-animation: navbar-down 0.3s ease;
       -moz-animation: navbar-down 0.3s ease;
         -o-animation: navbar-down 0.3s ease;
            animation: navbar-down 0.3s ease;
}

/*** Navbar Up ***/

@-webkit-keyframes navbar-up { from { transform: translateY(0); } to { transform: translateY(-70px); }}
   @-moz-keyframes navbar-up { from { transform: translateY(0); } to { transform: translateY(-70px); }}
     @-o-keyframes navbar-up { from { transform: translateY(0); } to { transform: translateY(-70px); }}
        @keyframes navbar-up { from { transform: translateY(0); } to { transform: translateY(-70px); }}

.animate-nav-up {
    -webkit-animation: navbar-up 0.3s ease;
       -moz-animation: navbar-up 0.3s ease;
         -o-animation: navbar-up 0.3s ease;
            animation: navbar-up 0.3s ease;
}

/*** Intro Animations ***/

.animate-title {
    opacity: 0;
    -webkit-animation: 2s ease 0.5s forwards fade-in;
       -moz-animation: 2s ease 0.5s forwards fade-in;
         -o-animation: 2s ease 0.5s forwards fade-in;
            animation: 2s ease 0.5s forwards fade-in;
}

.animate-tagline {
    opacity: 0;
    -webkit-animation: 1.5s ease 1.5s forwards fade-in;
       -moz-animation: 1.5s ease 1.5s forwards fade-in;
         -o-animation: 1.5s ease 1.5s forwards fade-in;
            animation: 1.5s ease 1.5s forwards fade-in;
}

.animate-buttons {
    opacity: 0;
    -webkit-animation: 2s ease 2.75s forwards fade-in;
       -moz-animation: 2s ease 2.75s forwards fade-in;
         -o-animation: 2s ease 2.75s forwards fade-in;
            animation: 2s ease 2.75s forwards fade-in;
}

.animate-navbar {
    transform: translateY(-70px);
    -webkit-animation: 1s ease 2.5s forwards navbar-down;
       -moz-animation: 1s ease 2.5s forwards navbar-down;
         -o-animation: 1s ease 2.5s forwards navbar-down;
            animation: 1s ease 2.5s forwards navbar-down;
}

/**
 * General Styles
 */

html, body {
    height: 100%;
    font-size: 16px;
}

body {
    overflow-x: hidden;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

p, li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 12pt;
    line-height: 2.0;
    hyphens: none;
}

p {
    display: block;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    margin: 0em;
}

a {
    color: white;
}

span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

/**
 * Headers
 */

h1 {
    font-family: 'Syncopate', 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transform:scale(1, 1.09);
    -webkit-transform:scale(1, 1.09);
    font-size: 5vmax;
    line-height: 1;
}

.h1 {
    font-size: 2.8em;
}
.h1-sm {
    font-size: 2.6em;
}

h2 {
    font-family: 'Syncopate-Regular', 'Roboto', sans-serif;
    text-transform: uppercase;
    transform:scale(1, 1.09);
    -webkit-transform:scale(1, 1.09);
    font-size: 1.875em;
    line-height: 1;
}

@media only screen and (max-width: 1139px) {
    h1 { font-size: 4.5vmax; }
    h2 { font-size: 1.5em; }
    h5 { font-size: 1.6em; }
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1.25em;
    line-height: 1;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15pt;
    line-height: 1.4em;
}


/** 
 * Utility Classes
 */

.debug {
    background: #ccc;
}

.vert-container {
    display: table;
}

.vert-center {
    display: table-cell;
    vertical-align: middle;
}

.margin-20 { margin: 20px; }

.margin-top-20 { margin-top: 20px; }
.margin-top-50 { margin-top: 50px; }
.margin-top-75 { margin-top: 75px; }
.margin-top-150 { margin-top: 150px; }

.margin-bottom-50 { margin-bottom: 50px; }
.margin-bottom-75 { margin-bottom: 75px; }
.margin-bottom-150 { margin-bottom: 150px; }

.margin-top-bottom-50 { 
    margin-top: 50px; 
    margin-bottom: 50px; 
}
.margin-top-bottom-75 { 
    margin-top: 75px; 
    margin-bottom: 75px; 
}
.margin-top-bottom-150 { 
    margin-top: 150px; 
    margin-bottom: 150px; 
}

.margin-bottom-0 {
    margin-bottom: 0px;
}

.justify-text {
    text-align: justify;
}

.gray-text { color: #8a8a8a; }
.blue-text { color: #0080f8; }


/** 
 * Navbar
 */

.nav-bar-whitespace {
    height: 70px;
}

.nav-bar {
    position: absolute;
    top: 0;
    background: gray;
    width: 100%;
    z-index: 999;
}

.home-nav-bar {
    background: none !important;
}

.nav-hide {
    transform: translateY(-70px);
}

.fixed-nav {
    position: fixed;
    top: 0;
    background: #fff !important;
}

.logo-container > a {
    position: absolute;
}
.logo {
    height: 60px;
    padding-top: 5px;
}

@media screen and (max-width: 992px) {
    .logo {
        padding: 0;
        padding: 7px;
    }
}

.button-collapse {
    margin-top: 10px;
}

.nav-bar li {
    display: inline-block;
    margin-left: 30px;
    cursor: pointer;
}

.nav-bar li a,
.mobile-nav li a {
    color: #707070;
    font-weight: 400;
}

.nav-bar li:hover {
    color: #0080f8 !important;
}

.header-text {
    min-height: 90vh;
    text-align: center;
    background: green;
}

.selected {
}

.nav-bar ul {
    display: inline-block;
    float: right;
    margin-top: 23px;
}

.container {
    width: 90% !important;
}

.container .full-width,
.container.full-width {
    width: 100% !important;
    max-width: none;
}



/** 
 * Home Page
 */

.svg-icon {
    width: 75px;
    height: 75px;
}

.svg-icon-sm { 
    width: 50x; height: 50px;
    margin: 12.5px;
}
.svg-icon-md { 
    width: 75x; height: 75px; 
}
/*.svg-icon-lg { width: 93x; height: 93px; }*/



#hero {
/*    margin-top: -9vh;*/
/*    background-position: center center;*/
/*    background-size: cover;*/
/*    background-image: url('../img/background-1.png');*/
    height: 590px;
/*    height: 80vh;*/
}

.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

.home-picture-container {
    position: relative;
    height: 40vh;
    
}

.home-picture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
    height: 40vh;
}

.clipping-text-1 {
    background: url('../img/background-2.png');
    background-attachment: fixed;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.gray-background {
    background: #f7f7f7;
    background-position: center center;
    background-size: cover;
}

.blue-gradient-background {
    background: #49b0fc; /* Old browsers */
    background: -moz-linear-gradient(top,  #49b0fc 1%, #0080f8 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #49b0fc 1%,#0080f8 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #49b0fc 1%,#0080f8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#49b0fc', endColorstr='#0080f8',GradientType=0 ); /* IE6-9 */
    background-position: center center;
    background-size: cover;
}

.text-shadow {
    text-shadow: 1px 1px #8a8a8a;
}

.picture-1 {
    background: url('../img/background-2.png');
    /*background-size: 100%;*/
}

@media only screen and (max-width: 599px) {
    .picture-1 {
        background: url('../img/background-2-mobile.png');
    }

    .logo{
        height:40px;
        padding-bottom:5px;

    }

    .peopleImg{
        min-width:800px;
    }
}

/**
 * Recent Work
 */

.tech-logo-row {
    height: 100px;
}


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

    ul.side-nav {
/*        width: 100% !important;*/
/*        margin-top: 44px;*/
    }
    
    .side-nav {
        padding-top: 10px;
    }
    .side-nav a {
        height: 38px;
        line-height: 38px;
    }


    
/*
    .logo {
        height: 30px;
        padding: 0;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .logo-container {
        margin-left: 15px;
    }
*/
}

/**
 * Contact Form
 */

#mc_embed_signup {
/*    background: #fff; */
/*    clear: left; */
/*    font: 14px Helvetica, Arial, sans-serif; */
}



.dark-gray-text {
    color: #8a8a8a;
}

.clip-to-bottom {
    position: absolute;
    left: 30px;
    right: -30px;
    bottom: 20px;
}

.gray-gradient-background {
    background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: linear-gradient(to bottom, #ffffff, #f5f5f5);
}

.gray-box, input, textarea {
    border: 1px solid #cccccc !important;
    background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: linear-gradient(to bottom, #ffffff, #f5f5f5);
/*    -webkit-border-radius: 10;*/
/*    -moz-border-radius: 10;*/
/*    border-radius: 10px;*/
    text-decoration: none;
    margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
    .gray-box {
        min-height: 500px
    }
}

@media screen and (min-width: 1280px) {
    .gray-box {
        min-height: 500px
    }
}

input:focus {
    border: 1px solid #cccccc !important;
    box-shadow: none !important;
}

.asterisk {
    color: #ff0000
}

textarea {
    padding: 8px;
    height: 257px;
}

.radio-group,
.checkbox-group {
    margin-top: 0;
}

.subscribe-button {
    height: 50px;
    position: absolute;
    bottom: 0;
    width: 160px;
    cursor: pointer;
    padding: 0px 10px 0px 10px;
    color: #ffffff;
    border-radius: 2px;
}

input[type='checkbox']:not(:checked) + label:before,
input[type='checkbox']:not(:checked) + label:after {
    border-radius: 50%;
    border-color: #8a8a8a;
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    margin: 4px;
    width: 16px;
    height: 16px;
    z-index: 0;
}
input[type='checkbox']:checked + label:before {
    border-right-color: #0080f8;
    border-bottom-color: #0080f8;
}

input[type='text'],
input[type='email'] {
/*    padding: 8px;*/
/*    height: 15px;*/
    height: 31px;
}

.select-wrapper {
    margin-top: 0;
}

input[type='radio']:not(:checked) + label:before {
    border-color: #8a8a8a;
}

input[type='radio']:checked + label:after {
    border-color: #0080f8;
    background-color: #0080f8;
}

.blue-button {
    cursor: pointer;
/*    background-color: #0080f8;*/
/*    width: 200px;*/
    width: 12.5em;
    height: 60px;
    padding: 0px 10px 0px 10px;
    border-radius: 4px;
    border: 3px solid #0080f8;
}

.blue-button-hero {
    cursor: pointer;
    background-color: #0080f8;
    /*width: 200px;*/
    width: 12.5em;
    height: 60px;
    padding: 0px 10px 0px 10px;
    border-radius: 4px;
    
}

.blue-button-text {
    color:#0080f8;
}

.blue-button p, .blue-button-hero p, .white-outline-button p, .gray-button p {
    line-height: 60px;
    font-size: 1.4em;
}

.blue-button:hover {
    /*background-color: #0390f9;*/
    background-color: white;
    transition: all 0.3s ease 0s;
}

.blue-button-hero:hover {
    background-color: #0390f9;
    transition: all 0.3s ease 0s;
}

.white-outline-button {
    background: transparent;
    width: 150px;
    padding: 0px 10px 0px 10px;
    border-radius: 2px;
    border: 3px solid white;
}


.gray-button {
    cursor: pointer;
    background-color: #8a8a8a;
    width: 200px;
    height: 60px;
    padding: 0px 10px 0px 10px;
    border-radius: 4px;
}

.gray-button:hover {
    background-color: #969696;
    transition: all 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
    .blue-button {
        width: 100%;
    }
    .blue-button-hero {
        width: 100%;
    }
    .gray-button {
        width: 100%;
    }
}



/**
 * Footer
 */

.footer p {
    line-height: 1.5;
}
.footer-main.row {
/*    height: 300px;*/
    padding-top: 25px;
    padding-bottom: 45px;
}
.footer-inset.row {
    margin-bottom: 0;
    height: 75px;
}

.footer-background {
    background: #0080f8;
}
.footer-background-dark {
    background: #1778e5;
}


/**
 * Services
 */

#services {
    margin-top: 25px;
}

/**
 * Recent Work
 */

.feature-image-container {
    position: relative;
}

.feature-image-align-right {
    z-index: 996;
    position: absolute;
    top: 0;
    right: -10%;
    width: 100%;
    height: 100%;
}
.feature-image-align-right .feature-frame {
    z-index: 997;
    position: absolute;
    top: 56px;
    left: 38%;
}
.feature-image-align-right .feature-image {
    z-index: 998;
    max-height: 530px;
    max-width: 852px;
    position: absolute;
    top: 104px;
    left: 45.5%;
}

.feature-image-align-left {
    z-index: 996;
    position: absolute;
    top: 0;
    left: -10%;
    width: 100%;
    height: 100%;
}
.feature-image-align-left .feature-frame {
    z-index: 997;
    position: absolute;
    top: 56px;
    right: 38%;
}
.feature-image-align-left .feature-image {
    z-index: 998;
    max-height: 530px;
    max-width: 852px;
    position: absolute;
    top: 104px;
    right: 45.5%;
}

/**
 * About Page
 */

.sprint-cycle {
    position: relative;
    height: 25.75em;
    width: 50.25em;
/*    width: 37.75em;*/
/*
    background-position: center center;
    background-size: cover;
    background-image: url('../img/sprint-cycle-2.png');
*/
}

.vert-image {
/*    max-height: 100%;*/
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}
.sprint-cycle img {
    max-height: 100%;
}
.sprint-cycle h5 {
/*    cursor: pointer;*/
}

.vert-center-right {
    position: absolute;
    top: 179px;
    right: 8px;
    padding-left: 50px;
/*    cursor: pointer;*/
}
.vert-top-right {
    position: absolute;
    top: 2.1875em;
    right: 80px;
    padding-left: 52px;
/*    cursor: pointer;*/
}
.vert-top-left {
    position: absolute;
    top: 2.1875em;
    left: 55px;
    padding-right: 50px;
/*    cursor: pointer;*/
}

.vert-bottom-right {
    position: absolute;
    bottom: 2.1875em;
    right: 50px;
    padding-left: 50px;
/*    cursor: pointer;*/
}
.vert-bottom-left {
    position: absolute;
    bottom: 2.1875em;
    left: -5px;
    padding-right: 49px;
/*    cursor: pointer;*/
}

.vert-wrapper {
    display: table;
}
.vert-align {
    display:table-cell;
    vertical-align: middle;
}

/**
 * Our Work
 */


.col.s4{

    padding: 0em 0.5em;
}

#clients{
    margin-top:1em;
}

.Flexbox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display:flex;
    align-items:center;
    justify-content:center;
    /*justify-center:space-around;*/
     -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    
}

.Flexbox-item{
    width:calc(15% + 70px);
    max-width:150px;
    
    margin:1.5em 1.2em;
    display:flex;
    justify-content:center;
    /*-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    /*filter: grayscale(100%);*/
}

.Flexbox-item img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    transition: 0.2s ease-in;
    max-height: 70px;
}

.Flexbox-item img:hover {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}


#peopleImgContainer{
  
  height:100%;
  overflow:hidden;

}

.peopleImg{
  position: relative;
  width: 100%;
  min-width:1600px;
  /*height:100%;*/
  background-position:center;
  background-size: cover;
  /*margin:0 auto;*/
  margin-left: 50%;
  transform: translateX(-50%);


}

@media only screen and (max-width: 599px) {
 
     .peopleImg{
        min-width:300px;
    }
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
    .row{
        width:100%;
    }

    .Flexbox-item{
        display:block;
        /*margin-left: auto;
        margin-right: auto*/
    }

}

/*.bwWrapper {
    position:relative;
    display:block;
}*/

