/*
Orange color: #e67e22
Blue color: #216897
Dark blue color: #1e5980
*/

/*---------------------------------------*/
/* GLOBAL
/*---------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow: scroll;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/*---------------------------------------*/
/* REUSABLE
/*---------------------------------------*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

.centered {
    text-align: center;
}

.padding-top {
    padding-top: 50px;
}

.what-we-do {
    padding-right: 10px;
    padding-left: 10px;
}

/* ----- HEADINGS ----- */

h1,
h2,
h3 {
    font-weight: 400;
    text-transform: uppercase;

}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 200%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 0px;
    letter-spacing: 1px;
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
    font-weight: bold;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #555;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

/* ----- PARAGRAPHS ----- */

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
	margin-top: 20px;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

.light-para {
    color: #989797;
}

/* ----- ICONS ----- */

.icon-big {
    font-size: 350%;
    display: block;
    color: #0F2E43;
    margin-bottom: 10px;
}

.icon-bigger {
    font-size: 900%;
    display: block;
    color: #0F2E43;
    margin-bottom: 10px;
}

.icon-small {
 display: inline-block;
    width: 30px;
    text-align: center;
    color: #0F2E43;
    font-size: 120%;
    line-height: 120%;
    vertical-align: middle;
    margin-right: 10px;
    
    /*secrets to align text and icons*/
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
}

/* ----- LINKS ----- */

a:link,
a:visited {
    color: #fff;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #0F2E43; 
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #fff;
    border-bottom: 1px solid transparent;
}

/* ----- BUTTONS ----- */

/*
Blue: #216897
Dark Blue: #1e5980
*/

.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color: #216897;
    border: 1px solid #216897;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #216897;
    color: #216897;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #1e5980;
}

.btn-full:hover,
.btn-full:active {
    border: 1px solid #1e5980;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #1e5980;
    color: #fff;
}


/*---------------------------------------*/
/* HEADER
/*---------------------------------------*/

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-img.jpg);
    background-size: cover;
    background-position: center;
    height: 85vh;
    background-attachment: fixed;
}

.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.logo {
    height: 80px;
    width: auto;
    float: left;
    margin-top: 20px;
}

.main-nav {
    float: right;
    list-style: none;
    margin-top: 40px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}


.main-nav li a:link,
.main-nav li a :visited {
    padding: 2px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a :active {
    padding-bottom: 2px;
}

/* Mobile navi */
.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #fff; /*#216897*/
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
}

/*---------------------------------------*/
/* FEATURES
/*---------------------------------------*/

.section-features .long-copy {
    margin-bottom: 30px;
    text-align: center;
}


/*---------------------------------------*/
/* WORK WITH US
/*---------------------------------------*/

.section-work-with-us {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/coding.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: none;
	background-attachment: fixed;
}

.work-with-us-text-box {
    text-align: center;
}

/*---------------------------------------*/
/* WHAT WE DO
/*---------------------------------------*/

.section-what-we-do {
    background-color: #f4f4f4;
}

.section-what-we-do p {
    font-size: 120%;
    padding-bottom: 20px;
}

.div-services-offered {
	text-align: center;
	margin-top: 40px;
}

/*---------------------------------------*/
/* WORK
/*---------------------------------------*/
.section-our-projects {
	background-color: #fff;
}

/*.our-projects-header {
	float: left;
}

.our-projects-header a {
	margin-left: 400px;
}

.our-projects-header h2, a {
	display: inline-block;
}*/

.section-our-projects h2:after {
	display: none;
}


.div-our-projects-header a {
	float: right;
}

.div-our-projects-header h2 {
	float: left;
}

.div-our-projects {
    text-align: center;
    color: #000;
}

.div-our-projects-video {
    background-image: url();
}

.div-our-projects-photo {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/IMG_0918.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 450px;
    margin: 0;
    padding: 0;
    color: #fff;
}

.div-our-projects-photo:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/IMG_0918.jpg");
}

.div-our-projects-photo h3 {
    line-height: 450px;
    font-size: 250%;
}

/*---------------------------------------*/
/* TESTIMONIALS
/*---------------------------------------*/

.section-testimonials {
    background-color: #f8f8f8;
}

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px;
}

blockquote:before {
    content: "\201C";
    font-size: 500%;
    display: block;
    position: absolute;
    top: 5px;
    left: -3px;
}

cite {
    font-size: 90%;
    margin-top: 25px;
    display: block;
}

cite img {
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle
}

/*---------------------------------------*/
/* FORM
/*---------------------------------------*/
.section-form {
	height: 700px;
    background-color: #E8E8E8;
}

.contact-form {
    width: 60%;
    margin: 0 auto;
	margin-top: 50px;
}

input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

textarea {
    height: 100px;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}

*:focus {
 outline: none;   
}




/* ABOUT PAGE */


/*---------------------------------------*/
/* ABOUT
/*---------------------------------------*/
.section-about {
    text-align: center;
}

.section-about h4 {
    padding-bottom: 50px;
    font-size: 150%
}

.div-box {
    background-color: #555;
    color: #fff;
    height: 250px;
    text-align: center;
    line-height: 250px;
}

.box-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/resources/img/hero-img1.jpg);
    background-size: 500px;
}

.box-1:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/resources/img/hero-img1.jpg);
}

.box-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/resources/img/coding.jpg);
    background-size: 500px;
    background-position: center;
}

.box-2:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/resources/img/coding.jpg);
}

.box-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/resources/img/hero-img.jpg);
    background-size: 500px;
    background-position: center;
}

.box-3:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/resources/img/hero-img.jpg);
}

/*---------------------------------------*/
/* FOOTER
/*---------------------------------------*/

footer {
    background-color: #333;
    padding: 50px;
    font-size: 80%;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: right;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: 0;
    border: 0;
    color: #888;
}

.footer-nav li a:hover,
.footer-nav li:active {
    color: #ddd;
}

.social-links li a:link,
.social-links li a:visited {
    font-size: 160%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-googleplus,
.ion-social-instagram {
    transition: color 0.2s;
}

.ion-social-facebook:hover {
    color: #3b5998;
}

.ion-social-twitter:hover {
    color: #00aced;
}

.ion-social-googleplus:hover {
    color: #dd4b39;
}

.ion-social-instagram:hover {
    color: #517fa4;
}

footer p {
    color: #888;
    margin-top: 20px;
    text-align: center;
}


/*---------------------------------------*/
/* CLIENTS
/*---------------------------------------*/
.section-our-clients {
	background-color: #eaeaea;
    margin-top: 0;
    clear: both;
}

.div-ourclients {
    margin: 0 auto;
}

.div-our-clients-title {
	margin: 0 auto;
    text-align: center;
	margin-bottom: 40px;
}


.section-work-video {
    text-align: center; 
    margin-left: 0%;
}