@charset "UTF-8";
/* CSS Document */
/* =============================================
CSS VARIABLES & GLOBAL
============================================= */
:root {
  --navy: #002e6d;
  --red: #c3002f;
  --dark-gray: #4d4d4d;
  --mid-gray: #818a91;
  --light-gray: #ededed;
  --white: #ffffff;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--dark-gray);
  background: #fff;
}
body.noscroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
}
h3 {
  font-size: 1.75em;
}
a {
  color: var(--navy);
  text-decoration: none;
}
a:hover {
  color: var(--navy);
  text-decoration: underline;
}
.container-fluid {
  max-width: 1200px;
}
/* =============================================
HEADER / BANNER
============================================= */
header.banner {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header.banner a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
/* -- Upper bar -- */
header.banner .upper {
  background: rgba(9, 46, 110, 0.9);
}
header.banner .upper .container-fluid {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header.banner .upper .nav-upper {
  display: flex;
  align-items: center;
}
header.banner .upper .nav-upper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
header.banner .upper .nav-upper ul li a {
  color: #fff;
  line-height: 50px;
  display: inline-block;
  padding: 0 1.25em;
  transition: background 0.2s;
}
header.banner .upper .nav-upper ul li a:hover, header.banner .upper .nav-upper ul li.active a {
  background: var(--red);
  text-decoration: none;
  color: #fff;
}
header.banner .upper .search-wrap {
  display: inline-flex;
  align-items: center;
}
header.banner .upper #searchform {
  display: inline-block;
  width: 0;
  overflow: hidden;
  vertical-align: middle;
  transition: width 0.7s ease;
  height: 30px;
}
header.banner .upper #searchform input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  padding: 1px 2px;
  font-weight: 100;
  height: 100%;
  outline: none;
}
header.banner .upper #searchform.active {
  width: 210px;
}
header.banner .upper a.header-search {
  color: #fff;
  line-height: 65px;
  padding: 0 1.25em;
  font-size: 1.1em;
  display: inline-block;
}
header.banner .upper a.header-search:hover {
  text-decoration: none;
}
/* -- Lower bar -- */
header.banner .lower {
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.25em;
  height: 120px;
  transition: background 0.5s ease;
}
header.banner .lower.scroll {
  background: #fff;
  box-shadow: 0 0 7px -1px rgba(0, 0, 0, 0.3);
}
header.banner .lower .container-fluid {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
header.banner .lower a {
  color: #000;
  line-height: 120px;
}
header.banner .lower a.brand {
  display: flex;
  align-items: center;
}
a.brand img {
  display: inline-block;
  max-width: 350px;
  width: 100%;
  height: auto;
}
header.banner .lower .nav-main {
  display: flex;
  align-items: center;
}
header.banner .lower .nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
header.banner .lower .nav-main ul li {
  padding-right: 1.5em;
}
header.banner .lower .nav-main ul li:last-child {
  padding-right: 0;
}
header.banner .lower .nav-main ul li a {
  color: #000;
  line-height: 137px;
  display: inline-block;
  transition: color 0.2s;
}
header.banner .lower .nav-main ul li a:hover, header.banner .lower .nav-main ul li.active a {
  color: var(--red);
  text-decoration: none;
}
/* Mobile nav toggle */
.nav-mobile {
  display: none;
}
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.nav-mobile ul li {
  padding-right: 8px;
}
.nav-mobile ul a {
  color: var(--navy);
  font-size: 1.4em;
  line-height: 1;
  display: inline-block;
}
.menu-toggle {
  cursor: pointer;
}
.menu-toggle .icon-close {
  display: none;
}
.menu-toggle.active .icon-close {
  display: inline;
}
.menu-toggle.active .icon-menu {
  display: none;
}
/* =============================================
WRAP / PAGE OFFSET
============================================= */
.wrap {
  padding-top: 202px;
} /* upper(65) + lower(137) */
body.home .wrap {
  padding-top: 0;
}
/* =============================================
HERO CAROUSEL (Home)
============================================= */
#heroCarousel {
  position: relative;
}
#heroCarousel .slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 46, 110, .3);
  z-index: 1;
  pointer-events: none;
}
#heroCarousel .carousel-item {
  height: 880px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#heroCarousel .slide-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 202px;
}
#heroCarousel h2 {
  color: #fff;
  font-size: 5.5em;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s ease, transform 1s ease;
}
#heroCarousel .carousel-item.active h2 {
  opacity: 1;
  transform: translateY(0);
}
/* Dots */
#heroCarousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  transition: all 0.5s ease;
  margin: 0 0.5em;
  opacity: 1;
}
#heroCarousel .carousel-indicators li.active {
  background: var(--red);
  border-color: var(--red);
}
/* =============================================
PAGE HEADER (inner pages)
============================================= */
.page-header-banner {
  height: 490px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-header-banner .cover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.page-header-banner h1 {
  margin: 0;
  padding-top: 137px;
  line-height: calc(490px - 137px);
  text-align: center;
  color: #fff;
  font-size: 5em;
  position: relative;
  z-index: 2;
}
.page-header-banner h1 span {
  line-height: 1em;
  display: inline-block;
}







#search-overlay {
  display: none;
  z-index: 9999;
}
.block {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(9, 46, 110, .95);
  border: #a0a0a0 solid 1px;
  margin: 0;
}
.block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
}
.centered {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}
#search-box {
  position: relative;
  width: 100%;
  margin: 0;
}
#close-btn {
  position: fixed;
  top: 1em;
  right: 1em;
  font-size: 26px;
}
#close-btn:hover {
  color: #777;
  cursor: pointer;
}
li#search-toggle {
  cursor: pointer;
  margin: 0 0 0 20px;
  padding: 0px;
  width: 30px;
  height: 30px;
  font-size: 28px;
  line-height: 90px;
  color: #191919;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
li#search-toggle:hover {
  color: #0074c8;
}
li#search-toggle:hover, li#search-toggle.open {}
#search-bar {
  position: absolute;
  top: 90px;
  width: 100%;
  z-index: 999;
  background: #eaeaea;
  padding: 15px 0 15px 0;
  display: none;
}
#search-box input#s {
  -webkit-appearance: none;
  background: url(../img/arrow.svg) no-repeat right center;
  background-size: 60px;
  border: none;
  padding: 0 5px 0px 15px;
  margin: 0px !important;
  height: 57px;
  width: 100%;
  font-size: 16px;
  font-style: italic;
  -webkit-transition: background 500ms ease;
  transition: background 500ms ease;
  background-color: rgba(255, 255, 255, 1);
}
#search-box input#s:focus {
  background-color: rgba(255, 255, 255, 1);
  outline: none;
}
#search-box input#searchsubmit {
  position: absolute;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: none;
  width: 45px;
  height: 45px;
  top: 0;
  right: 15px;
  margin: 0px !important;
  padding: 0px !important;
}
/* =============================================
BUTTONS
============================================= */
.red-button {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  font-size: 80%;
  padding: 0.75em 1.5em;
  transition: all 0.2s;
  display: inline-block;
  letter-spacing: 0.04em;
}
.red-button:hover {
  color: #fff;
  background: var(--red);
  text-decoration: none;
}
.red-emboss-button {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5em;
  text-transform: uppercase;
  border: none;
  line-height: 2.5em;
  padding: 0 2em;
  display: inline-block;
  transition: opacity 0.2s;
  cursor: pointer;
}
.red-emboss-button:hover {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}
/* =============================================
HOME – LARGE INTRO TEXT
============================================= */
.home-large {
  font-size: 1.6em;
  text-align: center;
  line-height: 2em;
  font-weight: 100;
  padding: 4rem 2em;
}
/* =============================================
HOME LINKS / FEATURE GRID
============================================= */
.home-links {
  display: flex;
  flex-wrap: wrap;
  flex-flow: row wrap;
}
.home-links::after {
  content: '';
  display: table;
  clear: both;
}
.home-links .link {
  flex: 1 1 15em;
  min-width: 240px;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 1em;
  margin-bottom: 5px;
  margin-right: 5px;
  overflow: hidden;
}
.home-links .link:last-child {
  margin-right: 0;
}
.home-links .link span.cover {
  position: absolute;
  background: rgba(9, 46, 110, 0.5);
  inset: 0;
  display: block;
  transition: opacity 0.3s ease;
}
.home-links .link .inner {
  transition: background 0.4s ease;
  padding: 1em;
  padding-bottom: 3.5em;
  position: relative;
  height: 100%;
  background: transparent;
  z-index: 2;
}
.home-links .link h2 {
  text-align: center;
  color: #fff;
  transform: translateY(60px);
  transition: transform 0.2s ease, color 0.2s ease;
}
.home-links .link p, .home-links .link .red-button {
  transition: opacity 0.4s ease;
  opacity: 0;
}
.home-links .link .red-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1em;
  white-space: nowrap;
}
.home-links .link:hover span.cover {
  background: rgba(9, 46, 110, 0.5);
}
.home-links .link:hover h2 {
  transform: translateY(0);
  color: var(--dark-gray);
}
.home-links .link:hover .inner {
  background: rgba(255, 255, 255, 0.85);
}
.home-links .link:hover p, .home-links .link:hover .red-button {
  opacity: 1;
}
@media (max-width: 767px) {
  .home-links {
    flex-direction: column;
  }
  .home-links .link {
    flex: 1 1 100%;
    min-width: 100%;
    margin-right: 0;
  }
  .home-links .link {
    min-height: 200px; /* tighter on mobile */
  }
}
/* =============================================
RECENT POSTS WIDGET
============================================= */
.widget-recent-posts {
  padding: 5em 0;
}
.widget-recent-posts h3 {
  text-align: center;
  margin-bottom: 2em;
  font-size: 2em;
}
.widget-recent-posts article.post {
  border: none;
  padding: 0;
  padding-right: 2em;
}
.widget-recent-posts .all-news-wrapper {
  text-align: center;
  margin-top: 2em;
}
/* =============================================
POST / ARTICLE CARD
============================================= */
article.post {
  border: 1px solid var(--dark-gray);
  position: relative;
  padding: 1.5em;
  margin-bottom: 1.5em;
  overflow: hidden;
}
article.post span.post-date {
  color: var(--dark-gray);
  font-weight: 100;
  margin-bottom: 0;
  display: block;
}
article.post h4 {
  color: var(--dark-gray);
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
article.post h4 a {
  color: #373a3c;
  margin-bottom: 30px;
}
a.read-more {
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 80%;
  text-transform: uppercase;
}
/* =============================================
FOOTER FORM / CTA PARALLAX
============================================= */
.footer-form h2 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.footer-form > .container-fluid > span {
  font-size: 1.25em;
  display: block;
  margin-bottom: 4em;
  font-weight: 100;
}
.footer-form {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 50px 20px 70px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-form-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 160%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, -50%, 0);
    will-change: transform;
    z-index: 1;
}

.footer-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.footer-form-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

@media (max-width: 767px) {
    .footer-form {
        min-height: 380px;
        padding: 70px 20px;
    }

    .footer-form-bg {
        top: 0;
        height: 100%;
        transform: none !important;
    }
}
/* =============================================
FOOTER
============================================= */
footer.content-info {
  font-size: 80%;
}
footer.content-info .upper {
  background: var(--navy);
  color: #fff;
  padding: 55px 0;
}
footer.content-info .upper a {
  color: #fff;
  line-height: 32px;
}
footer.content-info .upper a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}
footer.content-info .upper li {
  list-style: none;
}
footer.content-info .upper ul {
  margin: 0;
  padding: 0;
}
footer.content-info .upper .col-footer-nav {
  border-left: 1px solid rgba(255, 255, 255, 1);
  padding-left: 1em;
}
footer.content-info .upper .brand-footer img {
  width: 175px;
  height: auto;
}
footer.content-info .upper .brand-footer:hover {
  text-decoration: none;
}
footer.content-info .upper .social-media-links {
  margin-top: 0.5em;
}
footer.content-info .upper .social-media-links a {
  font-size: 1.3em;
  margin-right: 0.75em;
  color: #fff;
}
footer.content-info .lower {
  background: var(--dark-gray);
  color: #fff;
  text-align: center;
  padding: 0;
  line-height: 133px;
}
footer.content-info .lower a {
  color: #fff;
}
footer.content-info .lower .footer-inner {
  display: inline-block;
  font-size: 1.1em;
}
footer.content-info .upper .social-media-links.last-col {
  display: none;
}
@media (max-width: 767px) {
  footer.content-info .upper .brand-footer img {
    width: 125px;
    height: auto;
  }
  footer.content-info .upper .col-md-2:nth-child(5), footer.content-info .upper .col-md-4 {
    width: 50%;
  }
  footer.content-info .upper .col-md-2:nth-child(2), footer.content-info .upper .col-md-2:nth-child(3), footer.content-info .upper .col-md-2:nth-child(4) {
    display: none;
  }
  footer.content-info .upper .social-media-links.last-col {
    display: block;
  }
  footer.content-info .lower .footer-inner {
    font-size: .9em;
  }
}
/* =============================================
MAIN CONTENT
============================================= */
main.main {
  padding: 4rem 0;
}
main.main img {
  max-width: 100%;
  width: auto;
  height: auto;
}
main.main h1, main.main h2, main.main h3, main.main h4, main.main h5, main.main h6 {
  margin-bottom: 1rem;
}
/* =============================================
SIDEBAR
============================================= */
aside.sidebar section {
  margin-top: 2px;
  background: #d9d9d9;
  padding: 25px 40px;
}
aside.sidebar h3 {
  background: var(--dark-gray);
  color: #fff;
  line-height: 3.75em;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5em;
  margin-top: 2px;
  margin-bottom: 0;
}
.widget-contact-us h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 4px;
}
.widget-contact-us h5:not(:first-child) {
  margin-top: 1em;
}
.widget-contact-us section {
  margin-bottom: 2em;
}
.widget-contact-us span {
  display: block;
}
.widget-contact-us a {
  color: var(--dark-gray);
}
/* =============================================
MEET THE TEAM
============================================= */
.meet-the-team.about-us {
  margin-top: 2em;
}
.meet-the-team h5 {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0 !important;
  font-weight: 700;
}
.meet-the-team span.position {
  font-size: 1.25em;
  color: var(--mid-gray);
}
.meet-the-team .col-md-4 {
  padding-right: 45px;
}
.meet-the-team .col-md-4 img {
  max-width: 100%;
  height: auto;
}
.meet-the-team .img-wrap {
  position: relative;
}
.meet-the-team .img-cover {
  transition: opacity 0.2s;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.meet-the-team .img-wrap:hover .img-cover {
  opacity: 1;
}
/* Team member single */
.team-member-layout .back-link {
  display: block;
  margin-bottom: 1em;
}
.team-member-layout .info {
  margin: 0.5em 0;
}
.team-member-layout .info span {
  display: block;
  color: #949396;
}
.team-member-layout .info span:first-child {
  color: #6e6d70;
}
.team-member-layout .gray-wrapper {
  padding: 40px;
  background: var(--light-gray);
  position: relative;
  min-height: 350px;
}
/* =============================================
PRODUCT DOWNLOADS (sidebar accordion)
============================================= */
.sidebar-accordion article {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sidebar-accordion article input[type="checkbox"] {
  display: none;
}
.sidebar-accordion article label {
  cursor: pointer;
  display: block;
  padding: 10px 0;
  user-select: none;
}
.sidebar-accordion article label h4 {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-weight: 600;
  color: var(--dark-gray);
}
.sidebar-accordion article label h4 span.icon {
  color: var(--navy);
  font-size: 1.1em;
  margin-right: 10px;
}
.sidebar-accordion article > div {
  display: none;
  padding: 10px 0;
}
.sidebar-accordion article input:checked ~ div {
  display: block;
}
.sidebar-accordion article > div a {
  color: var(--red);
  display: block;
  font-weight: 700;
  margin-top: 10px;
}
/* =============================================
POSTS NAVIGATION
============================================= */
nav.posts-navigation a {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  text-transform: uppercase;
}
nav.posts-navigation .nav-previous {
  float: left;
}
nav.posts-navigation .nav-next {
  float: right;
}
.post-navigation a {
  font-size: 2em;
  background: #e5e5e5;
  height: 90px;
  width: 90px;
  line-height: 90px;
  text-align: center;
  display: inline-block;
}
.post-navigation a:hover {
  text-decoration: none;
  background: #ccc;
}
/* =============================================
ACCESSORIES PAGE
============================================= */
#accessories {
  margin-top: 2em;
}
#accessories .accessory {
  border: 1px solid var(--dark-gray);
  padding: 0;
  text-align: center;
  margin-bottom: 10px;
}
#accessories .accessory-inner {
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}
#accessories .accessory h3 {
  background: var(--dark-gray);
  color: #fff;
  height: 3.25em;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  font-size: 1.5em;
  z-index: 3;
  line-height: 3em;
}
#accessories .accessory .img-area {
  position: absolute;
  top: 30px;
  bottom: 6em;
  left: 30px;
  right: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#accessories .accessory > a {
  display: inline-block;
  position: absolute;
  bottom: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
/* =============================================
404 PAGE
============================================= */
.page-404 {
  text-align: center;
  padding: 6em 0;
}
.page-404 h1 {
  font-size: 8em;
  color: var(--navy);
}
.page-404 h2 {
  margin-bottom: 1em;
}
/* =============================================
SEARCH RESULTS
============================================= */
body.search-results article.post {
  padding: 0;
  border: none;
}
body.search-results article {
  margin-bottom: 3em;
}
/* =============================================
RESPONSIVE
============================================= */
@media (max-width: 1230px) {
			a.brand img {
  max-width: 375px;
}
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
		a.brand img {
  max-width: 225px;
}
  body {
    font-size: 14px;
  }
  header.banner .upper {
    display: none;
  }
  header.banner .lower {
    margin-top: 0;
    height: 100px;
  }
  header.banner .lower a {
    line-height: 100px;
  }
  header.banner .lower a.brand {
    font-size: 1.5rem;
  }
  header.banner .lower .nav-main {
    position: absolute;
    background: #ebecef;
    top: 100%;
    width: 100%;
    padding: 30px;
    left: 0;
    display: none;
    z-index: 200;
  }
  header.banner .lower .nav-main.open {
    display: block;
  }
  header.banner .lower .nav-main ul {
    flex-direction: column;
  }
  header.banner .lower .nav-main ul li {
    padding: 0;
  }
  header.banner .lower .nav-main ul li a {
    color: var(--navy);
    line-height: 2em;
    display: block;
  }
  .nav-mobile {
    display: block;
  }
  .wrap {
    padding-top: 100px;
  }
  body.home .wrap {
    padding-top: 0;
  }
  #heroCarousel .carousel-item {
    height: 660px;
  }
  #heroCarousel .slide-inner {
    padding-top: 166px;
  }
  #heroCarousel h2 {
    font-size: 4.5em;
    width: 80%;
    left: 10%;
  }
  .page-header-banner h1 {
    padding-top: 166px;
    line-height: calc(490px - 166px);
  }
  .home-large {
    font-size: 1.3em;
    line-height: 1.8em;
  }
  aside.sidebar section {
    padding: 1em;
  }
  .sidebar-col, .main-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
	a.brand img {
  max-width: 200px;
}
  #heroCarousel .carousel-item {
    height: 500px;
  }
  #heroCarousel h2 {
    font-size: 3.75em;
    left: 0;
    width: 100%;
    padding: 0 30px;
  }
  .page-header-banner {
    height: 380px;
  }
  .page-header-banner h1 {
    font-size: 3em;
    line-height: calc(380px - 130px);
    padding-top: 130px;
  }
  footer.content-info .upper .col-footer-extra {
    display: none;
  }
  footer.content-info .lower {
    height: auto;
    padding: 20px 0;
    line-height: 2em;
  }
  .meet-the-team .visible-sm {
    display: block;
    margin-bottom: 1em;
  }
  .meet-the-team .col-md-7 h5, .meet-the-team .col-md-7 span.position {
    display: none;
  }
}
@media (max-width: 580px) {
  #heroCarousel h2 {
    font-size: 3em;
  }
  .page-header-banner h1 {
    font-size: 2.5em;
  }
  .home-large {
    padding: 2rem 1em;
  }
}