body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size:100%; /* flexible baseline */
    color: #002135;
}

/*IMAGES*/

img {
    width:auto;
    max-width:100%;
    height:auto;
}

/**************************************************************/

/*HEADER AND NAVIGATION*/

.header { /*desk photo*/
    width: 100%;
    max-width: 100%;
	height: auto;
}

.masthead {
    height: 469px;
    background-image: url("../images/gui/masthead-branded.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: #F2F3F5;
}

/**************************************************************/

/*TYPOGRAPHY*/

h1.intro {
    text-align: center;
    color: #0fa3a1;
	font-size: 6.103515625em;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 9rem;
	margin-bottom: 3rem;
}

.masthead-container {
    padding: 90px 0;
}

h1.masthead-intro {
    text-align: center;
    color: #FFF;
	font-size: 5em !important;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 6rem !important;
    text-shadow: 1px 1px #000;
}

h2.masthead-description {
    text-align: center;
    color: #FFF;
    font-size: 3em;
    font-style: normal;
    font-weight: 400;
    padding-top: 30px;
}

.emphasis-style {
    color: #6DDEDD;
    font-weight: 700;
}

.greeting {
    font-size: 3.85em;
    font-weight: 400;
    line-height: 7.2rem;
	margin-bottom: 3rem;
    text-align: center;
}

.highlight {
    color: #002135;
    font-weight: 400;
}

h2.section-title {
    color: #61676a;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
	font-size: 6.10em;
	font-style: normal;
	line-height: 9rem;
	margin-bottom: 0rem;
}

.page-header {
    border-bottom: none;
}

.list {
    font-weight: 400;
    font-size: 2.500em;
    line-height: 3rem;
}

.list li {
    padding-bottom: 0.75em;
    list-style-type: none;
}

.list li:before {    
    font-family: 'FontAwesome';
    content: '\f058';
    margin:0 15px 0 -38px;
    color: #5F9B46;
}

h3.sub-section-title {
	text-align: center;
    color: #002135;
	font-size: 6.103515625em;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 9rem;
	margin-bottom: 3rem;
}

h3.sub-section-title.white {
    color: #FFF;
    text-shadow: 1px 2px 1px #4e5154;
}

.fa-quote-left {
    color: #c5d9d7;
}

.icon-font {
    text-align: center;
	color:#073b5d;
}

h4.process-title {
    font-size: 2.7em;
    font-weight: 700;
    color: #0093bf;
    text-transform: uppercase;
    text-align: center;
    clear: both;
}

p.small-desc {
    font-size: 2em;
    line-height: 1.50em;
    text-align: center;
}

h5.contact-title {
    font-size: 5em;
    font-weight: 300;
    color: #074167;
    margin-top: 40px;
}

p.basic {
    font-weight: 300;
    font-size: 2.5em;
    line-height: 1.750em;
    padding-right:12%;
    padding-left:12%;
}

p.box {
    font-weight: 300;
    padding-right:8%;
    padding-left:8%;
	font-size: 3.90em;
    line-height: 6rem;
	margin-bottom: 3rem;
    text-align: center;
}

p.box.white {
    color:#FFF;
    text-shadow: 1px 2px 1px #4e5154;
}

p.box strong {
    font-weight: 700;
    color: #0093bf;
}

.box-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #002135;
}

.form {
    margin-top: 1.625em;
}

input.form-control {
    height: 50px !important;
    font-size: 3em !important;
}

textarea.form-control {
    font-size: 3em !important;
}

label {
    font-size: 3em;
    text-transform: uppercase;
    color: #5F9B46;
    /*margin-right: -15px;*/
}

.btn-primary {
    float: left;
    background-color: #0093BF;
    border: none;
    font-size: 2.75em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5em 1.5em;
}

.btn-primary:hover {
    background-color:#007497 !important;
}

/**************************************************************/

/*ELEMENTS*/

.message {
	border: 4px solid #FFF;
	font-family: inherit;
	font-size: 3em;
	color: #FFF;
	background: none;
	cursor: pointer;
	padding: 20px 64px;
	display: inline-block;
	margin: 15px 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
    overflow: hidden;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.message:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.message:after {
	width: 100%;
	height: 0;
	top: 50%;
	left: 50%;
	background: #0093bf;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.message:hover,
.message:active {
	color: #FFF;
    background-color: #464D4E;
}

.message:hover:after {
	height: 260%;
	opacity: 1;
}

.message:active:after {
	height: 400%;
	opacity: 1;
}

.biopic {
    margin-bottom: 24px;
}

.work {
    background-color:#e9f6fe;
    margin-top: 4em;
    padding:5em 0em 10em 0em;
}

.work-segment {
    margin-bottom:24px;
}

.process {
    background-image: url(../images/gui/ux-strategy-bkg.png);
    background-size: 100%;
    background-color: #62676b;
    padding: 1em 0em 5em 0em;
}

/**************************************************************/

/*FORM*/

.alert-success {
    font-size: 3em !important;
}

.text-danger {
    font-size: 3em !important;
}

/**************************************************************/

/*PORTFOLIO*/

/*
figure {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30px !important;
}

figcaption{
    position: absolute;
    left: 0; right: 0;
    text-align: center;
    font-weight: 700;
    width: 100%;
    height: 100%;
    display: table;
}

figure img{
    -webkit-transition: all 0.5s linear;
            transition: all 0.5s linear;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
}

figure:hover figcaption{
    background: rgba(255,255,255,0.3);
}

figcaption:hover div{
    opacity: 1;
    top: 0;
}

figcaption:hover div:after{
    width: 50%;
}

figure:hover img{
    -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
}

*/

#portfolio-tns-home {
    text-align: left;
    font-size: 2em;
    font-weight: 400;
    padding-bottom: 1.5em;
}

#portfolio-tns-home img {
    border: 3px solid #d0d0d0;
}

#portfolio-tns-home img:hover {
    border: 3px solid #0fa3a1;
}

#portfolio-tns-home h4 {
    font-size: 1em;
    font-weight: 400;
    color: #61676a;
    line-height: 2.5rem;
    margin-bottom:1px;
    text-transform: uppercase;
}

#portfolio-tns-home h5 {
    font-size: 1.75em;
    font-weight: 600;
    color: #6F296B;
    line-height: 3.5rem;
    text-shadow: 1px 2px #F6EAF6;
}

#portfolio-tns-home p {
    font-weight: 400;
    font-size: 1.25em;
    letter-spacing: 0.005em;
    line-height: 3.25rem;
    margin-bottom: 20px;
    color:#002135;
}

.highlight {
    background-color: #C1F1F1;
    font-weight: 600;
}

.badges {
    font-size: 3em !important;
    color: #073b5d !important;
    line-height: 3.5rem !important;
}


/**************************************************************/

/*EFFECTS - Hover.css http://ianlunn.github.io/Hover/*/

/* Grow */
.hvr-grow {
    display: inline-block;
    /*vertical-align: middle;*/
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.1);
}

.hvr-grow:hover {
    color: #007497;
}

/* Shadow */
.hvr-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/*HOME PAGE THUMBNAIL TEXT OVERLAY*/

a.hovertext {
    position: relative;
    width: 100%;
    text-decoration: none !important;
    text-align: center;
	font-size:2em;
	letter-spacing:1px;
	line-height:20px;
  }
  a.hovertext:after {
    content: attr(title);
    position: absolute;
	top:-10px;
	right:0px;
    /*left: 0;
    bottom: 0;*/
    padding: 0.5em 20px;
    width: 100%;
    background: rgba(0,0,0,0.8);
    text-decoration: none !important;
    color: #fff;
    opacity: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
  }
  a.hovertext:hover:after, a.hovertext:focus:after {
    opacity: 1.0;
  }
    
/*GHOST BUTTON*/

.feature-bkg {
    position:relative;
}
.feature-bkg img {
    position:relative;
    width:100%;
    height:auto;
}
.feature-bkg div {
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 34%
}
.feature-bkg a {
    display: block;
    margin: 0 auto;
    width: 220px;
}

.ghost-button {
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #fafafa;
    border-radius: 0px;
    font-size: 3em;
    padding: 7px 12px;
    font-weight: normal;
    margin: 6px 0;
    margin-right: 12px;
    display: inline-block;
    text-decoration: none;
    min-width: 120px;
    font-weight: 400px;
    display: inline-block;
    -webkit-transition: background-color .5s linear;
    -moz-transition: background-color .5s linear;
    -ms-transition: background-color .5s linear;
    -o-transition: background-color .5s linear;
    transition: background-color .5s linear;
}

.ghost-button:hover, .ghost-button:active {
    color:#fff;
    background-color:rgba(0, 147, 191, 0.4);
    cursor: pointer;
    text-decoration: none;
}

/**************************************************************/

/*Media Queries*/

@media screen and (max-width:187.500em) { /*3000px*/ /*MAX*/
    .masthead {
        height: 469px;
    }
}

@media screen and (max-width: 75em) { /*1200px*/ /*BSLARGE*/
    .masthead {
        height: 469px;
    }
    
    h1.intro {
		font-size: 4.4em;
		line-height: 6rem;
		margin-bottom: 3rem;
    }
    
    h2.section-title {
        font-size: 5em;
		line-height: 6rem;
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top:0px;
        padding-bottom:0px;
    }
    
}

@media screen and (max-width:62em) { /*992px*/ /*BSMEDIUM*/
    .feature-bkg {
        margin-bottom:3.5em;
    }
    
    .masthead {
        height: 469px;
    } 
    
    h1.intro {
		font-size: 4.2em;
		line-height: 6rem;
		margin-bottom: 3rem;
    }
}
    
@media screen and (max-width:48em) { /*768px*/ /*BSSMALL*/
    h1.intro {
		font-size: 3.6em;
		font-style: normal;
		font-weight: 400;
		letter-spacing: 0em;
		line-height: 5rem;
		margin-bottom: 3rem;
    }
    
    .masthead {
        height: 269px;
    }

    .masthead-container {
        padding: 35px 35px;
    }

    h1.masthead-intro {
        font-size: 3.5em !important;
        line-height: 3.5rem !important;
    }

    h2.masthead-description {
        font-size: 2em;
        padding-top: 0px;
    }      

    h2.section-title {
        font-size: 4em;
		line-height: 3rem;
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top:0px;
        padding-bottom:0px;
    }
}

@media screen and (max-width:47.938em) { /*767px*/ /*BSXSMALL*/
    .masthead {
        height: 269px;
    }      
    
    h2.section-title {
        font-size: 4em;
		line-height: 3rem;
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top:0px;
        padding-bottom:0px;
    }
    
    .btn {
        font-size: 2.25em;
        padding: 20px 34px;
    }
    .greeting {
        font-size: 2.49em;
		line-height: 4.6rem;
		margin-bottom: 3rem;
		text-align: center;
    }
    
    .list {
        font-size: 2em;
        line-height: 3rem;
    }
    
    blockquote {
        font-size: 1.25em !important;
    }
	
	h1.intro {
		font-size: 3.125em;
		line-height: 4.8rem;
    }
    
    p.basic {
        font-size: 2em;
    }
    
    h5.contact-title {
        font-size: 3em;
    }
    
    .message {
        padding: 0.5em;
        line-height: 1em;
        margin: 0 auto;
    }
    
    h2.section-title {
        font-size: 3.90em;
		line-height: 5rem;
    }
    
    h3.sub-section-title {
        font-size: 3.125em;
		line-height: 4.8rem;
    }
    
    p.box {
        font-size: 2.49em;
		line-height: 4.6rem;
		margin-bottom: 3rem;
		text-align: center;
		padding-right:0%;
		padding-left:0%;
    }
    
    .feature-bkg {
        margin-bottom:3.5em;
    }
    
    .feature-bkg a {
        width: 1em;
    }
    
    .feature-bkg div {
        padding-top:26%;
    }
    
    .ghost-button {
        font-size: 2em;
    }
	.work {
		padding:3em 3em 2em 3em;
	}
}

@media screen and (max-width:26.563em) { /*425px*/ /*Large Mobile*/
    .masthead {
        height: 224px;
    }

    .masthead-container {
        padding: 25px 25px;
    }

    h1.masthead-intro {
        font-size: 2.25em !important;
        line-height: 2.25rem !important;
    }

    h2.masthead-description {
        font-size: 1.25em;
        padding-top: 0px;
    }    
    
    h1.intro {
		font-size: 2.2em;
		font-style: normal;
		font-weight: 400;
		letter-spacing: 0em;
		line-height: 3.4rem;
		margin-bottom: 3rem;
    }
    
    h2.section-title {
        font-size: 2.6em;
		line-height: 1rem;
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top:0px;
        padding-bottom:0px;
    }
    
    #portfolio-tns-home h4 {
        font-size: 1em;
        line-height: 2.5rem;
    }

    #portfolio-tns-home h5 {
        font-weight: 700;
        font-size: 1em;
        line-height: 2.5rem;
    }
    
    .message {
        font-size:2.4em;
    }
}

@media screen and (max-width:25.875em) { /*414px*/ /*iPhone 6/7/8*/
    .masthead {
        height: 224px;
    }

    .masthead-container {
        padding: 25px 25px;
    }

    h1.masthead-intro {
        font-size: 2em !important;
        line-height: 2rem !important;
    }

    h2.masthead-description {
        font-size: 1.5em;
        padding-top: 0px;
    }
    
    h2.section-title {
		line-height: 3rem;
    }
    
}

@media screen and (max-width:20em) { /*320px*/ /*iPhone 5/SE*/
    .masthead {
        height: 224px;
    }

    .masthead-container {
        padding: 15px 15px;
    }

    h1.masthead-intro {
        font-size: 2em !important;
        line-height: 2rem !important;
    }

    h2.masthead-description {
        font-size: 1.5em;
        padding-top: 10px;
    }
    
}