/*
==========================================================================
===== TABLE OF CONTENTS =====
==========================================================================

00. MIXIN Functions
01. Background Gradients
    Transparent gradients
    Opaque gradients
02. Effects
03. Typography
04. Header
    Subnav
05. Menus
06. Sections
    Default Section Styles
    Box-3
    Column-2
    White Section
    Contact Us Section
07. Footer
08. Buttons and Calls to Action (CTA)
09. Projects
10. Motions

==========================================================================
===== MIXIN FUNCTIONS =====
========================================================================== */
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0,7; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(1.2);
    opacity: 0,7; }
  100% {
    -webkit-transform: scale(1);
    opacity: 1; } }

/* 
==========================================================================
===== BACKGROUND GRADIENTS =====
========================================================================== */
/* ===== transparent ===== */
.gradient-blues {
  background: linear-gradient(142deg, rgba(41, 121, 184, .25), rgba(31, 69, 121, .25)); }

.gradient-text-bg {
  background: linear-gradient(180deg, rgba(55, 71, 79, .65), rgba(84, 110, 122, .75)); }

.gradient-sky-to-navy {
  background: linear-gradient(142deg, rgba(41, 121, 184, .75), rgba(31, 69, 121, .75)); }
  
.gradient-teal-to-valley {
  background: linear-gradient(142deg, rgba(51, 171, 161, .75), rgba(31, 119, 119, .75)); }

/* ===== opaque ===== */
.gradient-glencoe-spectrum {
  background: linear-gradient(142deg, #1f4579, #77ba68); }
  
.gradient-glencoe-spectrum-reverse {
  background: linear-gradient(142deg, #77ba68, #1f4579); }
  
.gradient-gray-slant {
  background: linear-gradient(142deg, #CFD8DC, #ECEFF1); }

.gradient-navy-slant {
  background: linear-gradient(142deg, #1f4579, #5e799f); }

.gradient-sky-slant {
  background: linear-gradient(142deg, #2980b8, #65a4cc); }

.gradient-valley-slant {
  background: linear-gradient(142deg, #1f7777, #5e9d9d); }

.gradient-teal-slant {
  background: linear-gradient(142deg, #33aba1, #6dc3bc); }

.gradient-lime-slant {
  background: linear-gradient(142deg, #77ba68, #9dcd92); }

.gradient-gray-180 {
  background: linear-gradient(180deg, #CFD8DC, #ECEFF1); }

.gradient-navy-180 {
  background: linear-gradient(180deg, #1f4579, #5e799f); }

.gradient-sky-180 {
  background: linear-gradient(180deg, #2980b8, #65a4cc); }

.gradient-valley-180 {
  background: linear-gradient(180deg, #1f7777, #5e9d9d); }

.gradient-teal-180 {
  background: linear-gradient(180deg, #33aba1, #6dc3bc); }

.gradient-lime-180 {
  background: linear-gradient(180deg, #77ba68, #9dcd92); }

.gradient-navy-white {
  background: linear-gradient(180deg, #1f4579, #fff); }

/* 
==========================================================================
===== EFFECTS =====
========================================================================== */
/* ===== coloring ===== */
.navy { color: #1f4579; }
.sky { color: #2980b8; }
.valley { color: #1f7777; }
.teal { color: #33aba1; }
.lime { color: #77ba68; }
.ome-red { color: #df283f; }
.ome-green { color: #128669; }
.whiten { color: #fff; }

.radius {
  border-radius: 4px; }

.shadow {
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
  background: #fff; }

.shadow-dark {
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.9);
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.9);
  background: #fff; }

.text-shadow { text-shadow: 0px 1px 1px rgba(38, 50, 56, .9); }

.text-shadow-expanded { 
  font-weight: 600; 
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); }

.symbol { 
  font-size: 3rem;
  position: relative; top: 50px;
  padding: 30px;
  vertical-align: middle; }

/* ===== spacing ===== */
.margin-top { margin-top: 20px; }
.margin-bottom { margin-bottom: 20px; }
.padding-top { padding-top: 20px; }
.padding-bottom { padding-bottom: 20px; }

/* 
==========================================================================
===== TYPOGRAPHY ======
========================================================================== */
body { font-family: "Open Sans", sans-serif; }

h1, h2, h3, h4, h5, h6 { font-family: "Open Sans", sans-serif; }

h1 { font-size: 1.875rem; }

p { color: #455A64; }

ul { color: #546E7A; }

#header-h1 { 
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 75px;
  text-transform: uppercase; }

#tagline {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .065em;
  line-height: 35px;
  padding-bottom: 20px; }

#subheader {
  font-weight: 600;
  font-style: italic; }

.word-space { word-spacing: 7px; }

.tagline-details-light {
  color: #fff;
  font-size: 1.25rem;
  font-style: italic; }

.michroma { font-family: 'Michroma', sans-serif; }
.montserrat { 
  font-family: 'Montserrat', sans-serif ; 
  text-transform: uppercase; }

/* 
==========================================================================
===== HEADER  =====
========================================================================== */
section.teaser {
  background-size: cover;
  background-position: center; }
  section.teaser .teaser-content {
    color: #ffffff; }
    section.teaser .teaser-content h1 {
      font-size: 2rem;
      font-weight: normal; }
    section.teaser .teaser-content h2 {
      font-size: 1.25rem; }
    section.teaser .teaser-content h3 {
      font-size: 1.2rem;
      font-weight: normal; }
    @media screen and (max-width: 63.9375em) {
      section.teaser .teaser-content h1 {
        font-size: 1.75rem;
        font-weight: normal; }
      section.teaser .teaser-content h2 {
        font-size: 0.75rem; } }
  section.teaser .bottom-cell {
    background: #f0f4f7; }
    section.teaser .bottom-cell h1 {
      color: #263238;
      padding: 40px 0 10px 0; }
    section.teaser .bottom-cell i {
      font-size: 2rem; }
    @media screen and (max-width: 63.9375em) {
      section.teaser .bottom-cell h1 {
        font-size: 1.5rem; } }
    @media screen and (max-width: 39.9375em) {
      section.teaser .bottom-cell h1 {
        font-size: 1rem; } }
  section.teaser #typed {
    text-decoration: underline;
    font-weight: normal; }

.home-page-hero {
  position: relative;
  height: 65vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  color: white;
  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-pack: distribute;
      justify-content: space-around;
  padding: 80px 10px 0 10px;
  /* ===== Small Only ===== */ }
  .home-page-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .home-page-hero h1 {
    font-size: 2rem; }
  .home-page-hero .heading.fiftyHeight {
    padding-top: 15vh;
    padding-bottom: 5vh; }
  .home-page-hero .heading h1 {
    font-size: 3.75rem;
    font-weight: 700; }
  .home-page-hero .heading h2 {
    font-size: 1.25rem; }
  .home-page-hero .action {
    position: absolute;
    bottom: 50px;
    left: 0;
    display: block;
    width: 100%; }
    .home-page-hero .action .scroll-down {
      animation-name: pulse;
      -webkit-animation-name: pulse;
      animation-duration: 1.5s;
      -webkit-animation-duration: 1.5s;
      animation-iteration-count: infinite;
      -webkit-animation-iteration-count: infinite;
      cursor: pointer;
      font-size: 3rem;
      text-align: center; }
      .home-page-hero .action .scroll-down a {
        color: #fff; }
  @media screen and (max-width: 63.9375em) {
    .home-page-hero .heading h1 {
      font-size: 1.75rem;
      font-weight: 700; }
    .home-page-hero .heading h2 {
      font-size: 0.75rem; }
    .home-page-hero .action {
      bottom: 80px; } }
  @media screen and (max-width: 63.9375em) and (orientation: landscape) {
    .home-page-hero {
      min-height: 450px; } }

/* ===== Subnav ===== */
.subnav-hero-section {
  text-align: center;
  background-size: cover;
  position: relative;
  overflow: visible;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 300px; }

.subnav-hero-section .subnav-hero-headline { color: #fefefe; }

.subnav-hero-subnav {
  border-top: 1px solid rgba(255,255,255,.5);
  position: absolute; bottom: 50px; left: 0;
  text-align: center;
  margin: 0 auto;
  bottom: 0;
  width: 100%; }

.subnav-hero-subnav li {
  float: none;
  display: inline-block; }

.subnav-hero-subnav li a {
  padding: 0.9rem 1rem;
  font-size: 0.75rem;
  color: #fefefe;
  text-transform: uppercase;
  display: block;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.35s ease-in-out; }

.subnav-hero-subnav li a.is-active, .menu .is-active > a {
  background: rgba(254, 254, 254, 0.15); }

.subnav-hero-subnav li a:hover {
  background: rgba(254, 254, 254, 0.15); }

.section-head-description { color: #455A64; }

/* 
==========================================================================
===== MENUS  =====
========================================================================== */

.no-js #masthead {
  display: none; }

/* ===== Header menu ===== */
#masthead {
    padding-bottom: 20px;
}

  #masthead.border-bottom-white {
    border-bottom: 1px solid rgba(38, 50, 56, 0.2); }
  #masthead #top-bar-glencoe {
    padding-top: 20px; }
    #masthead #top-bar-glencoe .title-bars {
      cursor: pointer; }
    #masthead #top-bar-glencoe .title-bars {
      margin-top: 10px;
      margin-right: 10px; }
      #masthead #top-bar-glencoe .title-bars i {
        color: #1f4579; }

.primary {
  position: relative; }

/* Normal Logo Navigation */
#top-main-menu {
  float: right;
  display: block;
  margin: 10px 0 0 0;
  padding: 0;
  list-style-type: none; }
  #top-main-menu > li {
    float: left;
    font-size: 1rem;
    position: relative;
    margin-right: 30px; }
    #top-main-menu > li > a {
      color: #1f4579;
      display: inline-block;
      font-size: .75rem;
      font-weight: 600;
      margin: 0;
      padding: 0 0 10px 0;
      text-transform: uppercase;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      #top-main-menu > li > a:hover {
        color: #33aba1;
        cursor: pointer; }
      #top-main-menu > li > a:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #ffffff;
        content: '';
        margin-top: -2px;
        opacity: 0;
        -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
        transition: opacity 0.3s, -webkit-transform 0.3s;
        transition: opacity 0.3s, transform 0.3s;
        transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px); }
    #top-main-menu > li:hover a:after,
    #top-main-menu > li:focus a:after {
      opacity: 1;
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px); }
    #top-main-menu > li:hover ul.sub-menu {
      display: block; }
    #top-main-menu > li:last-child {
      margin-right: 0; }
    #top-main-menu > li ul.sub-menu {
      position: absolute;
      left: 0;
      display: none;
      padding: 24px;
      margin: 0;
      width: 100%;
      min-width: 225px;
      z-index: 9999;
      background: #ffffff; }
      #top-main-menu > li ul.sub-menu li {
        float: left;
        clear: left;
        line-height: 1rem;
        padding: 5px 0;
        display: block;
        width: 100%; }
        #top-main-menu > li ul.sub-menu li:last-child { margin-bottom: 15px; }
        #top-main-menu > li ul.sub-menu li a {
          display: inline-block;
          font-size: 0.9375rem;
          font-weight: 400;
          color: #546E7A;
          -moz-osx-font-smoothing: grayscale;
          letter-spacing: 0;
          text-transform: none; }
          #top-main-menu > li ul.sub-menu li a:hover {
            color: #33aba1 !important; }
  @media screen and (max-width: 39.9375em) {
    #top-main-menu {
      float: none;
      background: transparent;
      padding: 20px; }
      #top-main-menu > li {
        float: none;
        display: block;
        margin-top: 20px; }
        #top-main-menu > li > a {
          display: block;
          margin: 0px;
          padding: 0px; }
          #top-main-menu > li > a:after {
            position: relative;
            background: none;
            content: ''; }
        #top-main-menu > li ul.sub-menu {
          display: block;
          position: relative;
          background: none;
          margin: 0px;
          padding: 0; }
          #top-main-menu > li ul.sub-menu li a:hover {
            color: #33aba1 !important; } }

/* 
==========================================================================
===== SECTIONS =====
========================================================================== */
/* ===== Default ===== */
section {
  margin: 0;
  padding: 0; }
  section .inner-padding {
    padding-top: 80px;
    padding-bottom: 80px; }
    @media screen and (max-width: 63.9375em) {
      section .inner-padding {
        padding-top: 40px;
        padding-bottom: 40px; } }
  section .section-head {
    padding: 0 0 40px 0; }
    section .section-head .section-title {
      margin-top: 0; }
  section .section-body {
    padding: 0 75px; }
  section .white-color .section-title {
    color: #ffffff; }
  section .white-color .section-head-actions {
    color: #ffffff;
    opacity: 0.65;
    font-size: 1.125rem; }
  section.gray {
    background: #f0f4f7; }

/* ===== Box3 Layout ===== */
section.box-3 .box {
  padding: 20px; }
  section.box-3 .box h3 {
    font-size: 0.9375rem;
    font-weight: 600; }
  section.box-3 .box p {
    font-size: 0.9075rem;
    margin-bottom: 0px; }

section.box-3.gray {
  background: #ECEFF1; }

/* ===== Column2 Layout ===== */
section.column2 .section-body {
  padding: 0px 0px; }
  section.column2 .section-body h3 {
    font-size: 0.9375rem;
    font-weight: 600; }
  section.column2 .section-body p {
    color: #546E7A;
    font-size: 0.9375rem;
    margin-bottom: 40px; }
  section.column2 .section-body .feature-icon {
    margin-right: 30px;
    float: left; }
  section.column2 .section-body i {
    background: #fff;
    border: 1px solid #B0BEC5;
    border-radius: 100%;
    color: #33aba1;
    display: inline-block;
    min-height: 80px;
    min-width: 80px;
    padding: 22px 20px 20px 23px;
    vertical-align: middle; }

/* ===== White ===== */
section.gray {
  background: #ECEFF1; }

section.white.gray {
  background: #f0f4f7; }

section.white .section-body {
  padding: 0px 0px; }
  section.white .section-body h3 {
    font-size: 0.9375rem;
    font-weight: 600; }
  section.white .section-body p {
    color: #546E7A;
    font-size: 0.9375rem;
    margin-bottom: 40px; }

section.white h3.title {
  font-size: 1.375rem;
  font-weight: normal; }
  @media screen and (max-width: 63.9375em) {
    section.white h3.title {
      font-size: 1rem; } }

@media screen and (max-width: 63.9375em) {
  section.white .section-body i {
    margin-bottom: 20px; } }

/* ===== Contact Us ===== */
section.contact-us {
  padding-top: 40px;
  padding-bottom: 40px; }
  section.contact-us .section-head {
    padding: 80px 60px 60px 60px; }
  section.contact-us .section-body {
    margin: 0 auto;
    padding-bottom: 60px; }
    @media screen and (max-width: 39.9375em) {
      section.contact-us .section-body {
        padding-left: 40px;
        padding-right: 40px; } }
  section.contact-us p {
    margin-bottom: 5px; }
  section.contact-us input, section.contact-us textarea {
    font-size: 0.9375rem;
    color: #546E7A;
    background: #f9f9f9; }

section.contact-us.bg-image {
  background: linear-gradient(142deg, rgba(41, 121, 184, .75), rgba(31, 69, 121, .75)), url('/assets/bg/section_bg_contact.jpg') repeat center center;
  background-size: cover; }

/* 
==========================================================================
===== FOOTER =====
========================================================================== */
.site-footer {
    border-top: 1px solid #ECEFF1;
    padding-top: 60px;
    padding-bottom: 60px; }
  .site-footer p {
    color: #546e7a;
    font-size: 0.75rem; }
  .site-footer h4 {
    border-bottom: 1px solid #ECEFF1;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 0.8375rem;
    margin-bottom: 20px;
    padding-bottom: 20px; }
  .site-footer .menu li, .site-footer .no-bullet li {
    display: block;
    font-size: 0.8375rem; }
    .site-footer .menu li a {
      color: #546e7a;
      margin: 0 0 10px 0;
      padding: 0; }
    .site-footer .menu li:hover {
      color: #90A4AE;
      text-decoration: underline; }
  .site-footer .copy {
    margin-top: 20px; }

/* ===== Social Widget ===== */
.social_widget .social-links > a {
  font-size: 1.375rem;
  color: #546e7a;
  padding: 0px 5px 0px 5px; }
  .social_widget .social-links > a:hover {
    color: #455A64; }

/* 
==========================================================================
===== BUTTONS / CALLS TO ACTION (CTA) =====
========================================================================== */
.button {
  border-radius: 20px;
  border: 0px solid #ffffff;
  color: #ffffff;
  font-weight: bolder;
  padding-left: 45px;
  padding-right: 45px; }

  .button.action-button {
     background: linear-gradient(0deg, #FF8F00, #FFB300); }
    .button.action-button:hover {
      background: #2980b8;
      color: #ffffff;
      transition: none; }

.button.tiny { text-transform: uppercase; }
.button.large { border-radius: 40px; }

.full-width-cta {
  background-position: center center;
  border-top: 1px solid #ECEFF1; }

.full-width-cta-content { text-align: center; }

.full-width-cta-section {
  padding-top: 2rem; }

.full-width-cta-section .full-width-cta-text {
  font-size: 1.5em;
  font-weight: 300;
  margin-top: -5px;
  padding-left: 50px;
  padding-right: 50px; }

@media print, screen and (min-width: 40em) {
  .full-width-cta-section .full-width-cta-text {
    padding-left: 100px;
    padding-right: 100px;
  } }

@media print, screen and (min-width: 64em) {
  .full-width-cta-section .full-width-cta-text {
    padding-left: 180px;
    padding-right: 180px;
    font-size: 1.8em;
  } }

@media screen and (min-width: 75em) {
  .full-width-cta-section .full-width-cta-text {
    padding-left: 300px;
    padding-right: 300px;
  } }

.full-width-cta-text,
.full-width-cta-content {
  padding-bottom: 2rem; }

.full-width-cta-content { width: 100%; }

/* 
==========================================================================
===== MOTIONS =====
========================================================================== */
/* Motion ui Transitions */
.linear {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important; }

/* Motion ui Animations */
.linear {
  -webkit-animation-timing-function: linear !important;
          animation-timing-function: linear !important; }
