
/* ----------------------------------------------- */
/* 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: #fff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

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

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

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

.highlight-text-1 {
    color: #3498db;
}

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

.long-copy {
    font-weight: 400;
    line-height: 145%;
    width: 90%;
    margin-left: 5%;
    text-align: justify;
}

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

/* ----- ICONS ----- */
.icon-big {
    font-size: 350%;
    display: block;
    color: #3498db;
    margin-bottom: 10px;
}

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

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

a:link,
a:visited {
    color: #3498db;
    text-decoration: none;
    padding-bottom: 1px;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #2980b9;
}

/* ----- BUTTONS ----- */
.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: #3498db;
    border: 1px solid #3498db;
    color: #fff;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #3498db;
    color: #3498db;
    margin-right: 15px;
}

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

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

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


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

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

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

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

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

/* 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: #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 {
    border-bottom: 2px solid #3498db;
}


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

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


/* 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 .logo-black { display: block; }

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

.about-buttons {
    text-align: center;
}

/* ----------------------------------------------- */
/* CLIENTS */
/* ----------------------------------------------- */

.section-clients {
    background-color: #f4f4f4;
}

.clients-showcase {
    text-align: center;
    
}

.clients-showcase img {
    width: auto;    
    margin-bottom: 40px;
    margin-right: 30px;
    max-height: 100px;   
    overflow: hidden;
    display:inline-block;
    transition: transform 0.2s;
}

.clients-showcase img:hover {    
    transform: scale(1.15);
}

.section-clients ul {
    list-style: none;
}

/* ----------------------------------------------- */
/* CURRENT PROJECTS */
/* ----------------------------------------------- */


.projects-showcase {    
    width: 100%;
    text-align: right;
}

.projects-showcase img {    
    display: inline-block;    
    width: 30%;
    height: auto;
    overflow: hidden;
}

.project ul {
    list-style: none;    
}

.project-description {
    font-style: italic;
    text-align: justify;
}

.linkedin-project {
    text-align: center;
}


/* ----------------------------------------------- */
/* EQUIPMENT */
/* ----------------------------------------------- */

.section-equipment {
    background-color: #f4f4f4;
}

.section-equipment ul {
    list-style: none;
}

/* ----------------------------------------------- */
/* TEAM */
/* ----------------------------------------------- */

.section-team ul {
    list-style: none;
    text-align: center;
}

.section-team img {
    height: 85px;
    border-radius: 50%;
    border: 2px solid;
    vertical-align: middle;
    margin-bottom: 10px;
}

.member-name {
    text-transform: uppercase;
}

.member-role {
    font-style: italic;
}

.executive-member .member-name {
    color: #9b59b6;
}

.executive-member img {
    border-color: #9b59b6;
}

.non-executive-member .member-name {
    color: #3498db;
}

.non-executive-member img {
    border-color: #3498db;
}

/* ----------------------------------------------- */
/* POLYMER */
/* ----------------------------------------------- */

.section-polymer {
    background-color: #f4f4f4;
}

.polymer-buttons {
    text-align: center;
}

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

.section-contact ul {
   list-style: none;
}

.contact-form {
    display: none;
    width: 80%;
    margin: 0 auto;
}

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

textarea {
    height: 100px;
}

.submit-button {
    text-align: right;
}

*:focus {outline: none;}

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

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

footer p {
    color: #888;
    text-align: center;   
}



