@charset "UTF-8";
.background-cover, .subsplash, .service-blocks .service-card, .card-wrapper .card {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.card-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 39px;
  padding-bottom: 100px;
  align-items: stretch; /* THIS is key */
}
.card-wrapper .card {
  position: relative;
  overflow: hidden;
  width: calc(33% - 22px);
  border-top: solid 5px #FFFFFF;
  background-color: #FFFFFF;
  background-image: none;
  padding: 1rem 2rem 1.5rem;
  text-decoration: none;
  color: #000000;
  font-weight: 350;
  letter-spacing: 0.02em;
  font-size: 14.6px;
  font-size: 0.9125rem;
  -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card-wrapper .card h3 {
  color: #EE872C;
  padding: 0 0 5px;
  margin: 0 0 12px;
  border-bottom: solid 1px #CCCCCC;
}
.card-wrapper .card table {
  margin-top: 12px;
  font-size: 14px;
  font-size: 0.875rem;
}
.card-wrapper .card table td {
  padding: 0;
}

/* ---------------------------------------------
/* Service Blocks
--------------------------------------------- */
.service-blocks {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 39px;
  padding-bottom: 100px;
  align-items: stretch;
  /* 2 per row on medium screens */
  /* 1 per row on small screens */
}
.service-blocks .service-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 26px);
  border-top: solid 5px #FFFFFF;
  background-color: #FFFFFF;
  background-image: none;
  padding: 1rem 2rem 1.5rem;
  text-decoration: none;
  color: #000000;
  font-weight: 350;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-size: 1rem;
  -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.service-blocks .service-card .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: #EE872C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  font-size: 1.5rem;
}
.service-blocks .service-card h2 {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-weight: 350;
  font-size: 28px;
  gap: 16px;
}
.service-blocks .service-card > * {
  position: relative;
  z-index: 1;
}
.service-blocks .service-card:hover {
  background-color: #000000;
  border-top: solid 5px #EE872C;
  color: #FFFFFF;
  text-shadow: 0 0 8px #000000;
}
.service-blocks .service-card:hover h2 {
  text-shadow: 0 0 12px #000000;
  color: #FFFFFF;
}
.service-blocks .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hover-bg);
  background-size: cover;
  background-position: center;
  background-color: #000000;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.service-blocks .service-card:hover::before {
  opacity: 0.4;
}
@media (max-width: 900px) {
  .service-blocks .service-card {
    flex: 0 0 calc(50% - 19.5px);
  }
}
@media (max-width: 600px) {
  .service-blocks .service-card {
    flex: 0 0 100%;
  }
}

/* Navigation
--------------------------------------------- */
.main-navigation {
  position: relative;
  display: block;
  margin: auto;
  max-width: 1200px;
  height: 64px;
  padding: 0 20px;
  border-radius: 10px;
  background-color: #000000;
  z-index: 20;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.main-navigation .nav-ctas {
  display: none;
}
@media (max-width: 800px) {
  .main-navigation {
    display: none;
  }
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  top: calc(100% + 4px);
  border-radius: 8px;
  background-color: #EE872C;
  left: -999em;
  z-index: 99999;
  padding: 8px 0;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li {
  position: relative;
  border-radius: 0;
  border: 0;
  padding: 5px;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  text-align: left;
}
.main-navigation ul ul li:hover {
  background-color: rgba(0, 0, 0, 0.3) !important;
}
.main-navigation ul ul li a {
  color: #FFFFFF;
  padding: 0 20px;
  font-weight: 350;
}
.main-navigation ul ul li a:hover {
  text-decoration: none;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: 0;
}
.main-navigation ul ul a {
  width: max-content;
  min-width: 175px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: 0;
}
.main-navigation li {
  position: relative;
  height: 48px;
  border-radius: 8px;
  border: solid 5px #000000;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
}
.main-navigation li:hover {
  background-color: #EE872C;
}
.main-navigation li a {
  color: #FFFFFF;
  padding: 0 20px;
  font-weight: 350;
}
.main-navigation li a:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Backdrop when mobile nav is open */
.nav-overlay {
  display: none;
}
@media (max-width: 800px) {
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.28s ease, visibility 0.28s ease;
    -moz-transition: opacity 0.28s ease, visibility 0.28s ease;
    -ms-transition: opacity 0.28s ease, visibility 0.28s ease;
    -o-transition: opacity 0.28s ease, visibility 0.28s ease;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
}

@media (max-width: 800px) {
  .main-navigation.toggled + .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 800px) {
  body.nav-open {
    overflow-y: hidden; /* prevent background scroll */
    overflow-x: visible; /* avoid clipping fixed nav drawer (e.g. on About LSSE) */
  }
}

@media (max-width: 800px) {
  .main-navigation {
    display: block;
    margin: 0;
    max-width: none;
    position: fixed;
    padding: 0;
    border-radius: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 320px;
    max-width: 92vw;
    min-width: 280px;
    height: 100vh;
    height: 100dvh;
    background-color: #202020;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: visible;
    transform: translateX(100%);
    visibility: visible;
    -webkit-transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .main-navigation.toggled {
    transform: translateX(0);
  }
  .main-navigation .nav-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .main-navigation .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: 12px 16px;
    color: #FFFFFF;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-transition: background-color 0.2s ease;
    -moz-transition: background-color 0.2s ease;
    -ms-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
  }
  .main-navigation .nav-cta:hover {
    background-color: rgba(238, 135, 44, 0.9);
    color: #FFFFFF;
    text-decoration: none;
  }
  .main-navigation .nav-cta__label {
    font-size: 0.8125rem;
    opacity: 0.9;
  }
  .main-navigation .nav-cta__action {
    font-weight: 500;
    margin-top: 2px;
  }
  .main-navigation .nav-cta__action i {
    margin-right: 4px;
  }
  .main-navigation .menu-mainmenu-container {
    width: 100%;
    min-width: 0;
    padding: 0 0 2rem;
    margin: 106px 0 0 0;
  }
  .main-navigation ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .main-navigation li {
    border: 0;
    border-radius: 0;
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .main-navigation li:hover {
    background-color: #d2711b;
  }
  .main-navigation li > a {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-transition: background-color 0.2s ease;
    -moz-transition: background-color 0.2s ease;
    -ms-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
  }
  .main-navigation li > a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .main-navigation li > a:hover {
    background-color: #d2711b;
  }
  .main-navigation li.menu-item-has-children > a {
    padding-right: 2rem;
    position: relative;
  }
  .main-navigation li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid currentColor;
    -webkit-transition: transform 0.25s ease;
    -moz-transition: transform 0.25s ease;
    -ms-transition: transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
  }
  .main-navigation li.focus > a::after, .main-navigation li:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .main-navigation li ul.sub-menu {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s;
    -moz-transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s;
    -ms-transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s;
    -o-transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s;
  }
  .main-navigation li:hover > ul.sub-menu, .main-navigation li.focus > ul.sub-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
  }
  .main-navigation li ul.sub-menu li {
    padding: 0;
  }
  .main-navigation li ul.sub-menu li a {
    width: 100%;
    padding: 4px 12px 4px 24px;
    min-height: 44px;
    line-height: 1.25em;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    -webkit-transition: background-color 0.2s ease;
    -moz-transition: background-color 0.2s ease;
    -ms-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
    font-size: 14.4px;
    font-size: 0.9rem;
  }
  .main-navigation li ul.sub-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
}
/* Footer navigation – matches main nav look (horizontal, dark links, orange active) */
.footer-navigation {
  display: block;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-navigation .menu-footermenu-container,
.footer-navigation ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.footer-navigation ul.menu li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
}
.footer-navigation a {
  display: block;
  padding: 0 1rem;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  border-bottom: 3px solid transparent;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  -moz-transition: color 0.2s ease, border-color 0.2s ease;
  -ms-transition: color 0.2s ease, border-color 0.2s ease;
  -o-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-navigation a:link, .footer-navigation a:visited {
  color: #000000;
}
.footer-navigation a:hover {
  color: #EE872C;
}
.footer-navigation .current-menu-item a,
.footer-navigation li.current_page_item a {
  color: #EE872C !important;
  border-bottom-color: #EE872C;
  text-decoration: none;
}

.metrics-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/bg-workstation.jpg") center/cover no-repeat;
  padding: 4rem 1.5rem;
  color: #FFFFFF;
  text-align: center;
}

.metrics-hero__content {
  max-width: 1200px;
  margin: 0 auto;
}

.metrics-hero__headline {
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
  font-weight: 600;
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-size: 28px;
  font-size: 1.75rem;
}
.metrics-hero__headline span {
  color: #EE872C;
}

/* ======================
   METRICS
====================== */
.metrics {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
  flex-wrap: nowrap;
}
@media (max-width: 990px) {
  .metrics {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 500px) {
  .metrics {
    flex-wrap: wrap;
    gap: 25px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}

.metric {
  width: 25%;
  background: rgba(255, 255, 255, 0.25);
  padding: 20px 30px;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
@media (max-width: 990px) {
  .metric {
    width: calc(50% - 13px);
  }
}
@media (max-width: 500px) {
  .metric {
    flex-wrap: nowrap;
    width: 100%;
  }
}

.metric__label {
  font-weight: 350;
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
  letter-spacing: 0.05em;
  font-size: 17.6px;
  font-size: 1.1rem;
}

.metric__body {
  display: block;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
}
.metric__body i {
  font-size: 48px;
  font-size: 3rem;
  color: #EE872C;
  margin-right: 12px;
}

.metric__value {
  font-weight: 700;
  color: #EE872C;
  font-size: 48px;
  font-size: 3rem;
}

@media (max-width: 1150px) {
  .metric__label {
    font-size: 14.4px;
    font-size: 0.9rem;
  }
  .metric__body i {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .metric__value {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media (max-width: 970px) {
  .metric__label {
    font-size: 12.8px;
    font-size: 0.8rem;
  }
  .metric__body i {
    font-size: 35.2px;
    font-size: 2.2rem;
  }
  .metric__value {
    font-size: 35.2px;
    font-size: 2.2rem;
  }
}
@media (max-width: 970px) {
  .metric__label {
    font-size: 12.8px;
    font-size: 0.8rem;
  }
  .metric__body i {
    font-size: 35.2px;
    font-size: 2.2rem;
  }
  .metric__value {
    font-size: 35.2px;
    font-size: 2.2rem;
  }
}
@media (max-width: 500px) {
  .metric__label {
    font-size: 16px;
    font-size: 1rem;
  }
  .metric__body i {
    font-size: 35.2px;
    font-size: 2.2rem;
  }
  .metric__value {
    font-size: 35.2px;
    font-size: 2.2rem;
  }
  .metrics-hero__headline {
    font-size: 20.8px;
    font-size: 1.3rem;
  }
}
.cta-band {
  background: url("../img/bg-topo-orange.png") center/cover no-repeat;
  padding: 2.5rem 1.5rem;
}
.cta-band:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.cta-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cta-band__text {
  color: #FFFFFF;
}
.cta-band__text h3 {
  margin: 0;
  padding: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
}
.cta-band__text p {
  margin: 0.25rem 0 0;
  opacity: 0.9;
}

.btn {
  padding: 0.75em 1.25em;
  border-radius: 4px;
}

/* White button (black text, white icon) */
.btn--white {
  background: #FFFFFF;
  color: #000000;
}
.btn--white i {
  color: #EE872C;
}
.btn--white:hover {
  background: rgb(242.25, 242.25, 242.25);
  opacity: 1;
}

/* Orange button (white text, black icon) */
.btn--orange {
  background: #EE872C;
  color: #FFFFFF;
}
.btn--orange i {
  color: #000000;
}
.btn--orange:hover {
  background: rgb(227.9355263158, 116.6684210526, 18.3644736842);
  color: #FFFFFF;
  opacity: 1;
}

.btn--transparency {
  opacity: 0.7;
}

.site-footer {
  font-family: inherit;
}

.footer-nav-section {
  background: #FFFFFF;
  padding: 2.5rem 1.5rem;
}

.footer-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-nav__inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    text-align: left;
  }
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.footer-nav a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.footer-nav a:hover {
  color: #EE872C;
}
@media (min-width: 768px) {
  .footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}

.footer-social {
  display: flex;
  justify-content: center;
}
.footer-social a {
  font-size: 1.25rem;
  color: #000000;
}
.footer-social a:hover {
  color: #EE872C;
}
@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-copyright {
  display: block;
  background-color: #000000;
  padding: 10px;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* ======================
   SPLASH
====================== */
.splash {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 60vh;
  overflow: hidden;
  background: #000;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.splash__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.splash__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 2rem;
}

.splash__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  color: #fff;
  padding: 0 20px;
  /* Button row – wraps on small screens */
}
.splash__inner h1 {
  font-family: "Barlow", "Roboto", sans-serif;
  font-size: clamp(2rem, 4.25vw, 3rem);
  font-weight: 350;
  line-height: 1.2em;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.splash__inner h1 strong {
  color: #EE872C;
  font-weight: 600;
}
.splash__inner p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
}
.splash__inner p:has(.btn) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

/* Responsive splash height – smaller on narrow viewports */
@media (max-width: 1024px) {
  .splash {
    min-height: 50vh;
  }
}
@media (max-width: 768px) {
  .splash {
    min-height: 45vh;
  }
  .splash__content p {
    font-size: 1.1rem;
  }
  .splash__inner .btn {
    padding: 0.5em 0.9em;
    font-size: 0.9rem;
  }
  .splash__inner .btn i {
    font-size: 0.85em;
  }
}
@media (max-width: 480px) {
  .splash {
    min-height: 40vh;
  }
  .splash__inner {
    padding: 0;
  }
  .splash__inner .btn {
    padding: 0.45em 0.75em;
    font-size: 0.85rem;
  }
  .splash__inner .btn i {
    font-size: 0.8em;
  }
}
.subsplash {
  height: 250px;
  width: 100%;
}
.subsplash .blur {
  height: 250px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.subsplash .blur .container {
  max-width: 1200px;
  height: 250px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
}
.subsplash .blur .container h1 {
  font-family: "Barlow", "Arial", "Helvetica", sans-serif;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  text-shadow: 0 4px 12px #080808;
}

h3.form-section-head {
  color: #EE872C;
  margin: 0 0 1em !important;
  padding: 0 0 4px !important;
  font-size: 19.2px;
  font-size: 1.2rem;
  border-bottom: solid 1px #969696 !important;
}

.form-group label {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000000;
  display: block;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: #000000;
  background-color: #FFFFFF;
  border: 0;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.075);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.075);
  padding: 8px 12px;
  font-size: 16px;
  font-size: 1rem;
  height: 40px;
}
.form-group textarea {
  height: 95px;
  min-height: 95px;
  resize: vertical;
}
.form-group i {
  color: #CC0000;
}

/* Form layout – responsive */
.lsse-form .form-submit {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .lsse-form .form-submit {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .lsse-form .lsse-form-submit {
    width: 100%;
    max-width: 100%;
    padding: 0.75em 1em;
  }
}

#lsseLocationsMap {
  -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.075);
}

.sidebar h3 {
  padding-top: 10px;
  color: #EE872C;
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: dashed 1px #CCCCCC;
}
.sidebar a.featured-job {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 0 5px 15px;
  margin-bottom: 15px;
  border-bottom: dashed 1px #CCCCCC;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar a.featured-job .job-link {
  display: block;
  flex: 1;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar a.featured-job .job-link span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar a.featured-job .job-link strong {
  display: block;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar a.featured-job:hover {
  color: #EE872C;
  padding: 0 15px 15px;
}
.sidebar a.featured-job:hover .job-link {
  color: #EE872C;
}
.sidebar a.featured-job:hover .job-link {
  color: #EE872C;
}
.sidebar a.featured-job .arrow {
  color: #EE872C;
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* ---------------------------------------------
   Six Blocks (Markets grid)
--------------------------------------------- */
.six-blocks {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 100px;
  align-items: stretch;
  /* Tablet: 2 columns */
  /* Mobile: 1 column */
}
.six-blocks .market-block {
  position: relative;
  display: block;
  width: calc(33.333% - 27px);
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: #FFFFFF;
  transform: scale(1);
  -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.six-blocks .market-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--block-bg) center center/cover no-repeat;
  z-index: 0;
}
.six-blocks .market-block:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.six-blocks .market-block__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(calc(100% - 80px));
  overflow: hidden;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.4) 75%, transparent 100%);
  z-index: 1;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.six-blocks .market-block:hover .market-block__panel {
  transform: translateY(0);
}
.six-blocks .market-block__content {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 14px;
  height: 80px;
}
.six-blocks .market-block__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #EE872C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  font-size: 1.35rem;
}
.six-blocks .market-block__label {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.six-blocks .market-block__excerpt {
  flex-shrink: 0;
}
.six-blocks .market-block__excerpt-inner {
  padding: 0.25rem 1.25rem 1rem;
  color: #FFFFFF;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 400;
  text-shadow: 0 0 8px #030303;
}
.six-blocks .market-block__excerpt-inner p {
  margin: 0;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .six-blocks {
    gap: 40px;
  }
  .six-blocks .market-block {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .six-blocks {
    gap: 40px;
  }
  .six-blocks .market-block {
    width: 100%;
  }
  .six-blocks .market-block__content {
    padding: 0.875rem 1rem;
  }
  .six-blocks .market-block__icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .six-blocks .market-block__label {
    font-size: 1rem;
  }
}

/* ---------------------------------------------
   Project list sidebar (thumbnail + title overlay)
--------------------------------------------- */
.project-list-sidebar__heading {
  margin: 0 0 1rem;
  padding: 0;
}

.project-list-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-list-sidebar__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: #FFFFFF;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
.project-list-sidebar__item:hover .project-list-sidebar__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5) 60%, transparent);
}

.project-list-sidebar__thumb {
  display: block;
  width: 100%;
  padding-bottom: 50%;
  background: var(--thumb, #e8e8e8) center center/cover no-repeat;
}

.project-list-sidebar__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4) 50%, transparent);
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.project-list-sidebar__title {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.project-list-sidebar__all {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  color: #EE872C;
  text-decoration: none;
}
.project-list-sidebar__all:hover {
  color: #cf7322;
}

/* Ensure thumbnails stay visible on mobile (sidebar in column layout) */
@media (max-width: 900px) {
  .project-list-sidebar__item {
    min-width: 0;
    width: 100%;
  }
  .project-list-sidebar__thumb {
    width: 100%;
    min-height: 160px;
    box-sizing: border-box;
  }
}
/* ---------------------------------------------
   Projects Page (filter list + grid)
--------------------------------------------- */
.projects-page-intro {
  padding: 1.5rem 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-page {
  padding: 0 20px 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-page__inner {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
}

.projects-page-filters {
  flex-shrink: 0;
  width: 200px;
}
.projects-page-filters .projects-page-filters__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.projects-page-filters .projects-page-filters__link {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
  text-align: left;
  background: transparent;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  color: #000000;
  font: inherit;
  font-size: 0.9375rem;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -moz-transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -ms-transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -o-transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.projects-page-filters .projects-page-filters__link:hover {
  background: rgba(238, 135, 44, 0.08);
  border-color: rgb(191.25, 191.25, 191.25);
}
.projects-page-filters .projects-page-filters__link.is-active {
  background: #EE872C;
  border-color: #EE872C;
  color: #FFFFFF;
}
.projects-page-filters .projects-page-filters__link.is-active:hover {
  background: #cf7322;
  border-color: #cf7322;
  color: #FFFFFF;
}
.projects-page-filters .projects-page-filters__count {
  opacity: 0.85;
  font-size: 0.875em;
}

.projects-page-grid {
  flex: 1;
  min-width: 0;
  position: relative;
}

.projects-page-card {
  position: relative;
  display: block;
  width: calc((100% - 40px) / 3);
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: #FFFFFF;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
.projects-page-card:hover .projects-page-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5) 60%, transparent);
}

.projects-page-card__thumb {
  display: block;
  width: 100%;
  padding-bottom: 62.5%;
  background: var(--thumb, #e8e8e8) center center/cover no-repeat;
}

.projects-page-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4) 50%, transparent);
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.projects-page-card__title {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Tablet: 2-col grid, filters still left */
@media (max-width: 992px) {
  .projects-page__inner {
    gap: 1.5rem;
  }
  .projects-page-filters {
    width: 180px;
  }
  .projects-page-card {
    width: calc((100% - 20px) / 2);
    margin-bottom: 20px;
  }
}
/* Mobile: stack filters above grid, keep 2-col thumbnails down to 600px */
@media (max-width: 768px) {
  .projects-page__inner {
    flex-direction: column;
    gap: 1.25rem;
  }
  .projects-page-filters {
    width: 100%;
  }
  .projects-page-filters .projects-page-filters__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .projects-page-filters .projects-page-filters__link {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
    padding: 0.4rem 0.65rem;
    font-size: 0.875rem;
  }
  .projects-page-grid {
    width: 100%;
    min-width: 0;
    /* So Isotope’s inline height is used; flex would otherwise force height to 0 in column layout */
    flex: 0 0 auto;
  }
  .projects-page-card {
    width: calc((100% - 20px) / 2);
    margin-bottom: 20px;
  }
}
/* 1 per row below 600px */
@media (max-width: 600px) {
  .projects-page-card {
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .projects-page-card__thumb {
    width: 100%;
    min-height: 200px;
    padding-bottom: 62.5%;
    box-sizing: border-box;
  }
}
html {
  font-size: 16px;
  box-sizing: border-box;
  min-height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: #FFFFFF;
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
  font-weight: 350;
  letter-spacing: 0.02em;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

main#main-body {
  z-index: 10;
  margin-top: -32px;
}
@media (max-width: 800px) {
  main#main-body {
    margin-top: 0;
  }
}

a, a:active, a:visited {
  color: #EE872C;
  text-decoration: none;
}
a:hover, a:active:hover, a:visited:hover {
  color: #cf7322;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 1em 0;
  color: #EE872C;
}

.container {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container h1, .container h2, .container h3, .container h4, .container h5 {
  margin: 0;
  padding: 1em 0;
  color: #EE872C;
}
.container p {
  margin: 0 0 1em;
}

.flex-container {
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.flex-container .container {
  width: auto;
  flex: 1;
}
.flex-container .sidebar {
  width: 300px;
}
.flex-container .sidebar .sidebar-featured-image {
  display: block;
  line-height: 0;
}
.flex-container .sidebar .sidebar-featured-image .sidebar-featured-image__img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-container .container {
    width: 100%;
  }
  .flex-container .sidebar {
    width: 100%;
    order: 2;
  }
}

.flex-3 {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
}
.flex-3 > div {
  flex: 1;
  min-width: 0;
}
@media (max-width: 900px) {
  .flex-3 {
    flex-direction: column;
    gap: 1.5rem;
  }
  .flex-3 > div {
    width: 100%;
  }
}

.flex-2 {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
}
.flex-2 > div {
  flex: 1;
  min-width: 0;
}
@media (max-width: 900px) {
  .flex-2 {
    flex-direction: column;
    gap: 1.5rem;
  }
  .flex-2 > div {
    width: 100%;
  }
}

header {
  margin: auto;
  max-width: 1200px;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media (max-width: 800px) {
  header {
    padding: 20px 10px;
    position: relative;
    z-index: 1001;
  }
}
header #logo {
  max-height: 60px;
}
header .ctas {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
}
header .ctas .cta {
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 8px 16px;
  border-radius: 6px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}
header .ctas .cta label {
  color: #969696;
}
header .ctas .cta i {
  color: #EE872C;
}
header .ctas .cta:hover {
  background-color: rgb(253.3, 243, 233.9);
  text-decoration: none;
}
@media (max-width: 800px) {
  header .ctas {
    display: none;
  }
}
header .fa-bars {
  display: none;
  font-size: 32px;
  font-size: 2rem;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
header .fa-bars:hover {
  color: #EE872C;
}
@media (max-width: 800px) {
  header .fa-bars {
    display: inline-block;
  }
}

@media (max-width: 800px) {
  body.nav-open header .fa-bars {
    color: #EE872C;
  }
}

.sidebar-logos-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.sidebar-logos-wrapper .sidebar-logo {
  width: calc(33% - 13px);
}
.sidebar-logos-wrapper .sidebar-logo img {
  max-width: 100%;
}

.gray-geo-bg {
  min-height: 400px;
  background: url("../img/bg-topo-gray.png") center top/cover no-repeat;
}
@media (max-width: 768px) {
  .gray-geo-bg .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 60px !important;
  }
}

.page-top {
  padding: 50px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.page-top h1 {
  font-size: 40px;
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
  color: #000000;
  font-weight: 500;
  padding: 0;
  line-height: 1em;
  margin: 0 0 12px;
  text-align: center;
}
.page-top h4 {
  color: #EE872C;
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 350;
  margin: 0 0 12px;
  padding: 0;
  line-height: 1em;
}
.page-top p {
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
  max-width: 700px;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  margin: 0 0 12px;
  padding: 0;
}

/* ======================
   LOGO
====================== */
.footer-brand img {
  max-width: 180px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer-brand img {
    margin: 0;
  }
}

/* ======================
   NAV LINKS
====================== */
/* ======================
   SOCIAL
====================== */
/* ======================
   COPYRIGHT
====================== */
.body-logos-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.body-logos-wrapper .body-logo {
  width: calc(20% - 24px);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
}
.body-logos-wrapper .body-logo img {
  max-width: 100%;
}

.sidebar h3 {
  margin-top: 15px;
}

ul, ol {
  margin: 0;
}

/*# sourceMappingURL=styles.css.map */
