/**
 72B874
*/
/* ----------------------------------------------- */
/* BASIC SETUP */
/* ----------------------------------------------- */

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

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

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

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


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

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

/* ----- HEADINGS ----- */
h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

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

h2 {
    font-size: 180%;
    word-spacing: 2px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h3 {
    color: #4D4B49;
    font-size: 110%;
    margin-bottom: 15px;
}


/* ----- BUTTONS ----- */
.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-size: 80%;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
    
    -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: #72B874;
    border: 1px solid #72B874;
    color: #fff;
    margin-right: 15px;
}

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

/* ----- SECTION HEADERS ----- */
.section-header {
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

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

header {
    height: 100vh;
    background-attachment: fixed;
}

/* Main navi */
.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
}

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

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

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #72B874;
}


.hero-text-box {
    margin-top: 40px;
}

.hero-text-box .h3 {
    font-size: 200% !important;
    font-weight: bold;
}

.hero-text-box .btn {
    margin-top: 50px;
}

.hero-text-box p {
    font-size: 120%;
    letter-spacing: 1px;
    word-spacing: 1px;
}

.work-together-image {
    margin-left: -10px;
    
}


/* ----------------------------------------------- */
/* ABOUT */
/* ----------------------------------------------- */

.section-about {
    background-image: url(../img/green-rect.png);
    background-image: url(../img/green-rect.png);
    background-size: cover;
    background-position: center;
    height: 80vh; 
    position: relative;
}

.section-about p {
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    padding: 0 20%;
}

/* ----------------------------------------------- */
/* Cutting Edge */
/* ----------------------------------------------- */

.ct-gradient {
    background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
    font-family: sans-serif;
    text-align: center;
    text-transform: none;
    margin-top: 10px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tear-down-img {
    margin-left: -10%;
    width: 50%;
}

.section-cutting-edge p {
    padding: 10%;
    letter-spacing: 1px;
    word-spacing: 1px;
}

.section-cutting-edge .icon-tools {
    margin-top: -35px;
    margin-left: 7%;
}

/* ----------------------------------------------- */
/* ABOUT */
/* ----------------------------------------------- */

.section-here-at, .section-clients {
    background-color: #F1F8F1;
}

/* Add some padding inside the card container */
.card-container {
    display: flex;
    padding: 2px 16px;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 30%;
    padding: 25px;
    margin-left: 35px;
}

.card p {
    margin: 10px;
    padding: 10px
}

/* On mouse-over, add a deeper shadow */
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card-img {
    width: 90%;
    height: auto;
    margin-bottom: 35px;
}


/* ----------------------------------------------- */
/* WHAT WE DO */
/* ----------------------------------------------- */
.img-box {
    width: 270px;
    height: auto;
    margin-left: 25%;
}

.section-what-we-do h3 {
    font-weight: 800;
}

.section-what-we-do p {
    letter-spacing: 1px;
    word-spacing: 2px;
}

.section-what-we-do .row {
    margin-bottom: 5%;
}

.section-what-we-do .justify {
    margin-left: 10%;
}


.client-logo-container {
    width: 250px;
    transition: 0.3s;
}

.client-logo-container:hover {
    transform: scale(1.1);
}

/* ----------------------------------------------- */
/* CONTACT US */
/* ----------------------------------------------- */

.form {
    margin-left: 25%;
    width: 50%;
}

.form input, textarea {
    padding: 10px;
    width: 100%;
    background: transparent;
    border: 1px solid #bbbbbb;
    margin-bottom: 25px;
    font-size: 80%;
}

.form button {
    padding: 10px;
    width: 40%;
    background: transparent;
    border: 1px solid #bbbbbb;
    margin-bottom: 25px;
    font-size: 80%;
    transition: 0.4s;
}

.form button:hover {
    background-color: #72B874;
    color: #fff;
}


/* ----------------------------------------------- */
/* FOOTER */
/* ----------------------------------------------- */
footer {
    background-color: #72B874;
    padding: 50px;
    font-size: 80%;
}

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

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

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

.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #fff;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

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

.ion-social-facebook,
.ion-social-twitter,
.ion-social-googleplus,
.ion-social-instagram {
    -webkit-transition: color 0.2s;
    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 li:first-child {
    font-size: 150%;
    font-weight: 300;
}

footer p {
    color: #fff;
    margin-top: 20px;
}

footer .copyright {
    text-align: center;
}

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

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

.mobile-logo {
    display: none;
    height: 80px;
    width: auto;
    float: left;
    margin: 5px 0;
}

.work-together-image-mobile, .tear-down-img-mobile, 
.mobile-application-img-mobile, .conversation-img-mobile {
    display: none;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Sticky navi */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .main-nav { margin-top: 18px; }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0;
    color: #555;
}

.sticky .logo { display: none; }
.sticky .mobile-logo { display: block; }

.redcore-image {
    margin-left: 100%;
    height: auto;
    width: 250px;
}