/* Colors */
:root {
    --primary: #002DB3;
    --secondary: #0040FF;
    --tertiary: #F9B31F;
    --grey: #808080;
    --black: #0D0D0D;
}

/* Font Weights */
/* 
Montserrat
Regular 400
Medium 500
Semi-bold 600
Bold 700

Roboto
Light 300
Regular 400
Medium 500
*/

/*----------------------------------------------*/
/* Basic Setup*/
/*----------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    font-family: 'Montserrat', 'Roboto', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {
    zoom: 1
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

a {
    text-decoration: none;
}

/*----------------------------------------------*/
/* Reusable components */
/*----------------------------------------------*/
.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* HEADINGS */
h1,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', 'Arial', sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 312%;
    line-height: 120%;
    color: var(--primary);
}

h3,
h4,
h5,
h6 {
    color: var(--black);
}

h3 {
    text-transform: uppercase;
    font-size: 155%;
}

h4 {
    font-size: 123%;
}

h5 {
    font-size: 115%;
}

h6 {
    font-size: 100%;
}

/* PARAGRAPHS */
p {
    color: var(--grey);
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 90%;
    line-height: 140%;
    letter-spacing: 0.4px;
}

/* BUTTONS */
.btn {
    padding: 10px 30px;
    background: var(--secondary);
    border: none;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    outline: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary);
}

.btn:active {
    background: var(--tertiary);
}

/* BUTTONS */
ion-icon {
    font-size: 24px;
    color: var(--primary);
    margin-right: 10px;
}

/*----------------------------------------------*/
/* Header */
/*----------------------------------------------*/
header {
    height: 95vh;
    background-color: #f9f9f9;
}

.hero-text-box {
    margin-top: 50px;
}

.hero-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.hero-img {
    height: 105%;
    width: auto;
}

.logo {
    width: auto;
    float: left;
    margin-top: 30px;
}

/* Main Navigation */
header nav {
    margin-bottom: 100px;
}

.main-nav {
    float: right;
    list-style: none;
    margin-top: 45px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    font-weight: 600;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    color: var(--primary);
}

/* Mobile Nav */
.mobile-nav-icon {
    float: right;
    margin-top: 33px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: var(--black);
}

/* Sticky Nav */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-box-shadow: 0 2px 2px #efefef;
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .logo {
    margin: 14px 0;
}

.sticky .main-nav {
    margin-top: 24px;
}



/*-----------------------------------------------*/
/* About */
/*----------------------------------------------*/
.about-img {
    position: absolute;
    top: 550px;
}

.about-heading {
    margin-bottom: 30px;
}

.about-paragraph {
    font-weight: 400;
    margin-top: 10px;
}

/*-----------------------------------------------*/
/* SERVICES */
/*----------------------------------------------*/
.services-heading {
    text-align: center;
    margin-bottom: 20px;
}

.box {
    padding: 1%;
    text-align: center;
    height: 500px;
}

.box h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.box p {
    font-size: 100%;
    line-height: 35px;
}

.box:hover {
    -webkit-box-shadow: 3px 3px 60px -20px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 3px 60px -20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/*-----------------------------------------------*/
/* PROJECTS */
/*----------------------------------------------*/
.pc-tab > input,
.pc-tab section > div {
    display: none;
}

#tab1:checked ~ section .tab1,
#tab2:checked ~ section .tab2,
#tab3:checked ~ section .tab3 {
    display: block;
}

#tab1:checked ~ nav .tab1 label,
#tab2:checked ~ nav .tab2 label,
#tab3:checked ~ nav .tab3 label {
    background-color: var(--tertiary);
    border-radius: 5px;
}

.section-projects section {
    padding: 0;
}

.section-projects nav {
    margin-bottom: 40px;
}

.projects-heading {
    text-align: center;
    margin-bottom: 50px;
}

.pc-tab nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pc-tab nav ul li {
    margin: 0 20px;
    list-style-type: none;
}

.pc-tab nav ul li label {
    color: var(--black);
    padding: 15px 25px;
    font-size: 115%;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 400;
}

.pc-tab ul li label:hover {
    background-color: var(--primary);
    border-radius: 5px;
    color: #fff;
}

.pc-tab ul li label:active {
    background-color: var(--tertiary);
    border-radius: 5px;
    color: #fff;
}

.projects-text h5 {
    padding: 10px 0;
}

.projects-text h5 a {
    color: var(--black);
}

.projects-box {
    padding: 1%;
}

.projects-box img {
    border-radius: 10px;
    width: 100%;
}

/*-----------------------------------------------*/
/* CONTACT US */
/*----------------------------------------------*/
.contact-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-contact h4 {
    margin-bottom: 15px;
}

.contact-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
    color: var(--grey);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 90%;
    line-height: 140%;
    letter-spacing: 0.4px;
}

/* Contact Form */
.field {
  display: flex;
  flex-flow: column-reverse;
  margin-bottom: 10px;
  position: relative;
}

form input, form textarea {
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: #F6F5F5;
    font-size: 70%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding: 15px;
    width: 100%;
    cursor: text;
    color: var(--grey);
}

textarea {
    min-height: 160px;
}

label {
    color: var(--grey);
    font-size: 65%;
}
    
    /* -------float label styles------- */
input:focus, textarea:focus {
    outline: 0;
    border: 1px solid var(--secondary);
}

label, input, textarea {
     transition: all 0.2s; 
     touch-action: manipulation; 
}

input:placeholder-shown + label, textarea:placeholder-shown + label {
    cursor: text;
    max-width: 70%; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: -2.125rem 0; 
    transform: translate(0, 1.55rem) scale(1.25); 
}

input:not(:placeholder-shown) + label,
input:focus + label,
textarea:not(:placeholder-shown) + label,
textarea:focus + label {
    transform: translate(0, 0) scale(1);
    cursor: pointer;
    color: var(--secondary);
} 

    /* -------form button------- */
button#submit {
    padding: 10px 30px;
    background: var(--secondary);
    border: none;
    color: #fff;
    border-radius: 5px;
    font-size: 90%;
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    outline: none;
    cursor: pointer;
    margin-top: 12px;
    text-align: center;
}

button#submit:hover {
    background: var(--primary);
}

button#submit:active {
    background: var(--tertiary);
}

/*-----------------------------------------------*/
/* CLIENTS */
/*----------------------------------------------*/
.section-clients {
    background-color: #f9f9f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.client-logos {
    width: 100%;
    margin: 0 auto;   
}

.client-logos img {
    padding: 30px;
}

/*-----------------------------------------------*/
/* CAREER */
/*----------------------------------------------*/
.section-career img {
    width: 100%;
    height: auto;
}

.career-heading {
    text-align: center;
    margin-bottom: 30px;
}

.career-text {
    margin-top: 70px;
}

.career-text-second {
    margin: 5px 0;
    font-weight: 500;
}


/*-----------------------------------------------*/
/* Footer */
/*----------------------------------------------*/
footer {
    background-color: #f9f9f9;
    padding: 30px 0;
}

.footer-box {
    padding: 1%;
}

.footer-contact-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    color: var(--grey);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 90%;
    line-height: 130%;
}

.footer-contact-text ion-icon {
    font-size: 20px;
    color: var(--primary);
}

footer img {
    margin-bottom: 70px;
    width: 90%;
    height: auto;
}

footer h6 {
    margin-bottom: 10px;
}

.social-icons ion-icon:hover {
    color: var(--tertiary);
}

footer ul li {
    list-style: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: var(--grey);
    font-size: 90%;
    line-height: 180%;
}

footer ul li a {
    color: var(--grey);
}

footer ul li a:hover {
    color: var(--primary);
}

.copyright {
    background-color: #e3e3e3;
    height: 60px;
}

.copyright p {
    color: var(--black);
    padding-top: 15px;
    font-family: 'Roboto', sans-serif;
}

/*-----------------------------------------------*/
/* ANIMATION */
/*----------------------------------------------*/
.js--wp-1,
.js--wp-2,
.js--wp-5 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
