@charset "utf-8";
/* CSS Document */

/* ORANGE COLOR #c3922e & fbc926*/


/*-----------------------------*/
/* BASIC SETUP */
/*-----------------------------*/
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing:border-box;
    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 COMPLIMENTS */
/*-----------------------------*/
.row {
    max-width: 1140px;
    margin: 0 auto;   
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}
/*------- PARAGRAPHS --------*/
.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}

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

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

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

h1 {
    margin-top: 0; /* Normalize.css margin fix */
    margin-bottom: 20px; /* Normalize.css margin fix */
    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: #c3922e;
    content:" ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

.green-text {
    color:chartreuse;
}
/*-----------------------------*/
/* HEADER */
/*-----------------------------*/
header {

    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.07))), url(img/computerCode.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}

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

.Tlogo {

    position: relative;
  z-index: 2;  /* places logo above the dark overlay */
    height: 125px;
    width: auto;
    float: left;
    margin-top: 20px;
}

/*-----------------------------*/
/* NAVIGATION */
/*-----------------------------*/

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

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

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 70%;
    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 #c3922e;
}

/*------- MOBILE NAV --------*/
.mobile-nav-icon {
    float: right;
    margin: 15px 0 0 30px;
    cursor: pointer;
    display: none;
    
}

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

/*------- 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 #cfcfcf;
    box-shadow: 0 2px 2px #cfcfcf;
    z-index: 9999;
}

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

.main-nav {margin-top: 25px;}

.sticky .Tlogo {

    height: 50px;
    width: auto;
    float: left;
    margin: 12.5px 0;
}

/*------- LINKS --------*/
a:link,
a:visited {
    color: #c3922e;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #c3922e;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}

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

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

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

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

.btn-full:hover,
.btn-full:active,
input[type=submit] {
    border: 1px solid #c3922e;
}

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

/*-----------------------------*/
/* FEATURES */
/*-----------------------------*/
.selection-features .long-copy {
    margin-bottom: 30px;
}

/*-----------------------------*/
/* GALLERY */
/*-----------------------------*/
.gallery h2 {
    padding:75px 0px 25px 0px;
}
.gallery {
    padding:0;
}
.gallery-showcase {
    list-style: none;
    width: 100%;
}

.gallery-showcase li {
    display: block;
    float: left;
    width: 25%;
}

.gallery-pic {
    width: 100%;
    margin:0;
    overflow: hidden;
    background-color: #000;
}

.gallery-pic img {
    opacity: 0.7;
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.gallery-pic img:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    opacity: 1;
}

/*-----------------------------*/
/* HOW IT WORKS */
/*-----------------------------*/

.section-steps img {
    border-width: 2px;
    border-color: #ccc;
    border-style: solid;
}

.section-steps {
    background-color:white;
}
.steps-box {
    margin-top: 30px;
}

.steps-box:first-child {
    text-align: center;
    padding-right: 3%;
    margin-top: 30px;
}

.steps-box:last-child {
    padding-left: 3%;
    margin-top: 70px;
}

.app-screen {
    width: 40%;
}

.works-step {
    margin-bottom: 50px;
}

.works-step div {
    color: #c3922e;
    border: 2px solid #a58858;
    display: block;
    border-radius: 50%;
    height:55px;
    width: 55px;
    text-align: center;
    padding: 5px;
    float: left;
    font-size: 150%;
    margin-right: 25px;
}

.works-step:last-of-type {
    margin-bottom: 80px;
}

.works-step li {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 70px;
  position: relative;
}

.button-app:link,
.button- app:visited {
    border: none;
}
.button-app img {
    height:50px;
    width: auto;
    margin-right: 10px;
}

.button-app img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

/*-----------------------------*/
/* CITIES */
/*-----------------------------*/
.section-cities {background-color:whitesmoke;}

.box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.city-feature {
    margin-bottom: 5px;
}

/*-----------------------------*/
/* TECHNOLOGY */
/*-----------------------------*/

.section-technology {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(img/tGears500x500LayeredWithShadow_1.gif);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/tGears500x500LayeredWithShadow_1.gif);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    font-size: 80%;
    position: relative;
}

blockquote:before {
    /* \201C is a GLYPH. Reference can be found on the web */
    /* content: "\201C"; */
    font-size: 500%;
    display: block;
    position: absolute;
    top: -5px;
    left: 0;
}

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

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

/*-----------------------------*/
/* PRICING PLANS */
/*-----------------------------*/

.section-plans {
  background: #f4f4f4;
  padding: 60px 20px;
  font-family: 'Lato', sans-serif;
}
.plans-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.plan-box {
  background: white;
  flex: 1 1 300px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 20px;
  box-sizing: border-box;
}
.plan-box h3 {
  margin-bottom: 10px;
  font-weight: 700;
}
.plan-price {
  font-size: 2.5rem;
  color: #c3922e;
  font-weight: bold;
}
.plan-price span {
  font-size: 1.2rem;
  color: #666;
}
.plan-box ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
  text-align: left;
}
.plan-box ul li {
  margin: 5px 0;
  padding-left: 20px;
  position: relative;
}
.plan-box ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #c3922e;
}
.plan-box label {
  font-size: 0.85rem;
  color: #333;
  display: block;
  margin-bottom: 10px;
}
.plan-box button {
  background-color: #ffc439;
  color: #111;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}
.section-plans button[type="submit"] {
    width: 100%;
    box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .section-plans form {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 20px; /* Add space under the form */
  }

  .section-plans button[type="submit"] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.5rem; /* Optional extra nudge */
  }
}

@media screen and (max-width: 600px) {
  .plan-box {
    margin-bottom: 20px;
  }

  .plan-box button[type="submit"] {
    width: 100%;
    box-sizing: border-box;
  }
}

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

.contact-form {
    width: 60%;
    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;
}

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

*:focus {outline:none}




/* FOOTER STYLING */

footer {
  background-color: #333;
  padding: 50px 20px;
  font-size: 80%;
  color: #888;
  text-align: center;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
}

/* Footer Navigation */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-nav li {
  display: inline-block;
  margin: 0 10px;
}

.footer-nav li a {
  text-decoration: none;
  color: #888;
  transition: color 0.2s;
}

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

/* Logo Row */
.footer-logos {
  margin-top: 30px;
}
/* Fix footer link underline to match nav behavior */
footer a {
  border-bottom: none !important;
  text-decoration: none !important;
  color: #888;
  transition: border-bottom 0.2s, color 0.2s;
}

footer a:hover {
  border-bottom: 2px solid #c3922e !important;
  color: #ddd;
}


.identity-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* allows wrapping on small screens */
  gap: 10px;
  margin-bottom: 10px;
}

.tallon-logo,
.flag {
  height: 30px;
  vertical-align: middle;
}

.made-in-usa-text {
  font-weight: 500;
  color: #ccc;
}

/* Site Seal */
#siteseal img {
  margin-top: 10px;
  height: auto;
  max-height: 40px;
}

/* Copyright */
.footer-logos p {
  margin: 20px 0 10px;
  font-size: 80%;
  color: #888;
}

/* Hamburger for small screens */
.footer-hamburger {
  display: none;
}

#footer-toggle {
  background: none;
  color: #fff;
  font-size: 24px;
  border: none;
  margin-bottom: 15px;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.footer-bottom #siteseal img {
  max-height: 40px;
  height: auto;
  margin-bottom: 10px;
}


/* Responsive: Stack nav on mobile */
@media screen and (max-width: 600px) {
  .footer-hamburger {
    display: block;
  }

  .footer-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .footer-nav li {
    display: block;
    margin: 5px 0;
  }

  .footer-nav.show {
    display: flex;
  }

  .identity-line {
    flex-direction: column;
  }
}


.made-in-usa-text {
  font-weight: 500;
  color: #ccc;
}

/* Seal + Copyright */
#siteseal {
  margin-top: 10px;
}

.footer-logos p {
  margin: 20px 0 10px;
  font-size: 80%;
  color: #888;
}

/* Mobile responsive */
@media screen and (max-width: 600px) {
  .footer-hamburger {
    display: block;
  }

  .footer-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .footer-nav li {
    display: block;
    margin: 5px 0;
  }

  .footer-nav.show {
    display: flex;
  }

  .footer-logos .identity-line {
    flex-direction: column;
  }

  .footer-logos .tallon-logo,
  .footer-logos .flag {
    height: 24px;
  }
}




#siteseal {
  display: block;
  margin: 10px auto 0;
}


/*-----------------------------*/
/* ANIMATIONS */
/*-----------------------------*/

.js--wp-1,
.js--wp-2,
.js--wp-3 {
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated {
    opacity: 1;
}

/* FOOTER LOGOS */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.footer-logos img {
  max-height: 50px;
  height: auto;
  width: auto;
  display: block;
}

.footer-logos img.flag {
  height: 22px !important;
  width: auto;
  vertical-align: middle;
  margin-left: 8px;
  margin-right: 5px;
  display: inline-block;
}

.footer-logos #siteseal {
  display: inline-block;
  max-height: 50px;
}

.footer-logos a {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
  border-bottom: none !important;
}

.footer-logos a:hover {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.made-in-usa-text {
  font-size: 0.8rem;
  color: #bbb;
  white-space: nowrap;
  display: inline-block;
}

/* Mobile tweaks */
@media only screen and (max-width: 600px) {
  .footer-logos {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .footer-logos img {
    max-height: 40px;
  }

  .footer-logos img.flag {
    height: 12px !important;
    margin-bottom: 4px;
  }

  .made-in-usa-text {
    white-space: normal;
    text-align: center;
    display: block;
  }
}

/* Force previously waypointed elements to be visible */
.js--wp-1, .js--wp-2, .js--wp-3, .js--wp-4,
.js--section-features, .js--section-skills {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
/* ---- HERO readability upgrades ---- */

/* Soft gradient overlay on the header image for contrast */
header::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35) 40%, rgba(0,0,0,.55));
  pointer-events:none;
  z-index: 0;
}

/* Ensure header is a stacking context and doesn't clip the overlay */
header{ position: relative; overflow: hidden; }

/* Framed hero card */
.hero-card{
  /* glassy background with fallback */
  background: rgba(0,0,0,.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);

  /* spacing & width that plays nicely with your 1140 grid */
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 28px 24px;

  /* layer the card above the new overlay */
  position: relative;
  z-index: 1;
}

/* Tweak hero typography when inside the card */
.hero-card h1{
  font-size: 240%;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.hero-card h2{
  font-size: 160%;
  text-transform: none; /* reads friendlier inside a card */
  margin-bottom: 6px;
}
.hero-card p a{ border-bottom-color: rgba(255,255,255,.5); }
.hero-card p a:hover{ border-bottom-color: transparent; }

/* Nice gold underline on h2 matches your brand color */
.hero-card h2::after{
  content:"";
  display:block;
  width: 100px;
  height: 2px;
  background-color: #c3922e;
  margin: 14px auto 6px;
}

/* Mobile/Tablet adjustments harmonized with your queries */
@media only screen and (max-width:1023px){
  .hero-card{ max-width: 92%; padding: 22px; }
  .hero-card h1{ font-size: 200%; }
  .hero-card h2{ font-size: 140%; }
}
@media only screen and (max-width:767px){
  .hero-card{
    margin: 0 auto;
    padding: 20px 18px;
    border-radius: 14px;
  }
  .hero-card h1{ font-size: 180%; }
  .hero-card h2{ font-size: 130%; }
}
.hero-offer {
  border: 2px solid #c3922e;
  box-shadow: 0 0 12px rgba(195, 146, 46, 0.3);
  background: #fffef8;
}

.badge-new {
  display: inline-block;
  background: #c3922e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
/* --- Pricing grid: 4-up → 2-up → 1-up --- */
.section-plans .plans-row{
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Neutralize legacy floats inside pricing only */
.section-plans .plans-row .col{
  float: none;
  width: auto;
  margin: 0;
}

/* Make each plan fill the grid cell vertically */
.section-plans .plan-box{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Tablet: 2 columns */
@media (max-width: 1023px){
  .section-plans .plans-row{
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

/* Phone: 1 column */
@media (max-width: 600px){
  .section-plans .plans-row{
    grid-template-columns: 1fr;
  }
}
/* Pricing grid: 4 → 2 → 1 */
.section-plans .plans-row{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(220px,1fr));
  gap: 24px;
  align-items: stretch;
}
.section-plans .plan-box{ display:flex; flex-direction:column; height:100%; max-width:unset; }
@media (max-width:1023px){ .section-plans .plans-row{ grid-template-columns:repeat(2, minmax(240px,1fr)); } }
@media (max-width:600px){ .section-plans .plans-row{ grid-template-columns:1fr; } }
/* === Feature section spacing + layout === */
.selection-features { padding-top: 48px; }
.selection-features .long-copy { margin-bottom: 28px; }

.feature-row{
  display:flex; flex-wrap:wrap;
  gap: 28px;                 /* more space between cards */
  max-width:1140px; margin:0 auto; padding:0 20px;
}

.feature-box{
  /* make each item a comfy card */
  flex:1 1 calc(50% - 28px);     /* 2-up on desktop by default */
  display:flex; align-items:flex-start; gap:16px;
  padding:18px 20px;
  border:1px solid #e9e9e9;
  border-radius:14px;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  min-width:320px;               /* prevents over-squeeze on wide screens */
}

.feature-box .icon{
  flex:0 0 48px;
  font-size:44px; line-height:1;
  color:#c3922e;
  margin-top:2px;                /* vertical align with heading */
}

.feature-box h3{
  margin:0 0 6px 0;
  letter-spacing:.4px;
}

.feature-box p{
  margin:0;
  line-height:1.6;               /* easier reading */
  color:#555;
}

/* 4-up if you want it at very wide widths */
/* @media (min-width: 1300px){ .feature-box{ flex:1 1 calc(25% - 28px); } } */

/* Tablet: still 2-up, just a hair wider text */
@media (max-width:1023px){
  .feature-box{ flex:1 1 calc(50% - 28px); }
}

/* Phone: 1-up, full width */
@media (max-width:600px){
  .feature-box{ flex:1 1 100%; }
}
/* --- TECHNOLOGY SECTION FIX --- */
.section-technology {
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url(img/tGears500x500LayeredWithShadow_1.gif);
  background-size: cover;
  background-attachment: fixed;
  color: #fff; /* Set default text color */
  padding: 60px 20px;
}

.section-technology h2 {
  color: #fff;
  margin-bottom: 40px;
}

.section-technology .feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-technology .feature-box {
  background: white;
  color: #333;
  border-radius: 14px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 260px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.section-technology blockquote {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  border: none;
}

.section-technology cite img {
  height: 40px;
  margin: 12px 6px 0;
  vertical-align: middle;
}

/* Stack on smaller screens */
@media screen and (max-width: 1023px){
  .section-technology .feature-box {
    flex: 1 1 calc(50% - 28px);
  }
}

@media screen and (max-width: 600px){
  .section-technology .feature-box {
    flex: 1 1 100%;
  }
}
.site-tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: #999;
  text-align: center;
  padding: 20px;
  background: #111;
  border-top: 1px solid #333;
}
/* Keep nav clickable above hero content */
nav { position: relative; z-index: 5; }
.mobile-nav-icon { position: relative; z-index: 6; }
