@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap");

:root {
  --black: #0d0d0d;
  --deep: #000000;
  --red: #ff0000;
  --text: #33353c;
  --muted: #9e9e9e;
  --white: #ffffff;
  --wrap: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  background: #fff;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--black);
}

.top-strip {
  height: 24px;
  background: #000;
}

.top-strip .wrap {
  width: 92%;
  max-width: 1340px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 12px;
  height: 12px;
  color: #fff;
}

.main-nav {
  height: 70px;
  width: 100%;
  background: var(--black);
}

.nav-inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 203px;
  height: auto;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 37px;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-menu > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-menu a,
.drop-toggle {
  color: #fff;
  font: inherit;
  text-transform: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.desktop-menu a:hover,
.drop-toggle:hover {
  color: #d8d8d8;
}

.desktop-menu a.contact-link {
  display: block;
  min-width: 159px;
  padding: 19px 30px !important;
  color: #fff !important;
  text-align: center;
  background: var(--red) !important;
}

.contact-link:hover,
.button:hover,
.submit:hover {
  color: var(--red) !important;
  background: #fff !important;
}

.has-dropdown .drop-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}

.submenu {
  position: absolute;
  top: 70px;
  left: -16px;
  min-width: 240px;
  display: none;
  margin: 0;
  padding: 20px 0;
  list-style: none;
  background: var(--black);
  border-top: 3px solid var(--red);
}

.has-dropdown:hover .submenu,
.has-dropdown.open .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.3;
  text-transform: none;
  white-space: nowrap;
}

.mobile-bar,
.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  height: 589px;
  overflow: hidden;
  color: #fff;
  background: #080808;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  background-position: center;
  background-size: cover;
}

.slide.active {
  opacity: 1;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.54) 50%, rgba(0, 0, 0, 0.86) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 78%;
  max-width: var(--wrap);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 20px;
}

.hero h1 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.button,
.submit {
  display: inline-block;
  padding: 8px 50px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--red);
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: color 300ms ease, background-color 300ms ease;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.active {
  background: #fff;
}

.wide-image img {
  width: 100%;
  height: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 4px solid #333;
  margin-bottom: 79px;
}

.service-tile {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.service-tile + .service-tile {
  border-left: 4px solid #fff;
}

.service-tile img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.service-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px 30px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.service-tile:hover .service-caption {
  opacity: 1;
  transform: translateY(0);
}

.service-caption h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.service-caption p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
}

.read-more {
  color: #fff;
  font-weight: 700;
}

.experience {
  min-height: 825px;
  padding: 12% 0;
  background: url("../images/IMAGE1-min.jpg") center / cover no-repeat;
}

.experience .wrap {
  width: 80%;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.experience-panel {
  grid-column: 2;
  padding: 36px 41px 42px;
  color: #fff;
  background: var(--black);
}

.experience h2,
.panel-card h2 {
  margin: 0 0 8px;
  color: inherit;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.red-rule {
  width: 89px;
  height: 6px;
  margin: 0 0 25px;
  background: var(--red);
}

.experience p {
  margin: 0 0 26px;
  font-size: 20px;
  line-height: 1.9;
}

.cta {
  padding: 12px 0 20px;
  color: #fff;
  background: #000;
}

.cta .wrap {
  width: 80%;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
}

.cta p {
  margin: 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.8;
}

.cta .button {
  justify-self: start;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 26px;
  font-weight: 600;
}

.page-main {
  background: #fff;
}

.wrap {
  width: 80%;
  max-width: var(--wrap);
  margin: 0 auto;
}

.page-title {
  padding: 66px 0 74px;
  text-align: center;
}

.page-title .eyebrow {
  margin: 0 0 15px;
  color: #1b2435;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-title h1 {
  margin: 0;
  color: var(--text);
  font-size: 68px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
}

.title-rule,
.footer-rule {
  position: relative;
  height: 1px;
  margin-top: 40px;
  background: var(--muted);
}

.title-rule::after,
.footer-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  width: 132px;
  height: 5px;
  background: var(--red);
  transform: translateX(-50%);
}

.intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  padding-bottom: 86px;
}

.intro-row p,
.plain-copy p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.8;
}

.intro-row img {
  width: 100%;
  margin-top: 0;
}

.feature-band {
  background: var(--black);
  overflow: hidden;
}

.feature-band .wrap {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.feature-band.image-left {
  background-position: left center;
}

.feature-band.image-right {
  background-position: right center;
}

.feature-img {
  min-height: 650px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-card {
  padding: 58px 64px;
  color: var(--text);
  background: #fff;
}

.panel-card h2 {
  color: var(--text);
  font-size: 46px;
}

.panel-card p,
.panel-card li,
.panel-card dd {
  font-size: 16px;
  line-height: 1.65;
}

.panel-card ul {
  margin: 24px 0 0 36px;
  padding: 0;
  list-style: none;
}

.panel-card li {
  margin-bottom: 6px;
}

.panel-card dl {
  margin: 20px 0 0;
}

.panel-card dt {
  margin-top: 12px;
  font-size: 19px;
  font-weight: 700;
}

.panel-card dd {
  margin: 0 0 6px 28px;
}

.plain-copy {
  padding: 44px 0 60px;
}

.clients-image {
  width: 92%;
  margin: 28px auto 58px;
}

.about-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 28px 0 86px;
}

.about-row p {
  font-size: 22px;
  line-height: 1.9;
}

.about-logo {
  width: 360px;
  margin: 0 auto;
}

.contact-copy {
  width: 86%;
  margin: -34px auto 62px;
  text-align: center;
  font-size: 22px;
  line-height: 1.9;
}

.contact-form {
  width: 700px;
  max-width: 100%;
  margin: 0 auto 88px;
}

.field {
  margin-bottom: 38px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #101727;
  font-size: 20px;
  line-height: 1.4;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  padding: 17px 11px;
  color: #5e6670;
  background: #e7e7e7;
  font: inherit;
  font-size: 18px;
  line-height: 1.4;
}

.field textarea {
  min-height: 200px;
  resize: vertical;
}

.submit-row {
  text-align: right;
}

.submit {
  min-width: 150px;
  padding: 14px 44px;
  font-size: 22px;
}

.site-footer {
  background: var(--black);
  color: #fff;
}

.footer-rule {
  width: 80%;
  max-width: var(--wrap);
  margin: 0 auto;
  background: #4b4b4b;
}

.footer-rule::after {
  top: -1px;
  width: 100%;
  max-width: 1100px;
  height: 5px;
}

.footer-widgets {
  width: 80%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 72px 0 86px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 70px;
}

.footer h3,
.footer-col h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 13px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.5;
}

.newsletter p {
  margin: 0 0 6px;
  color: #fff;
  font-size: 19px;
  line-height: 1.65;
}

.newsletter h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.search-form {
  display: flex;
  width: 100%;
  margin: 0 0 25px;
}

.search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 13px;
  font: inherit;
  font-size: 16px;
}

.search-form button {
  border: 0;
  padding: 0 18px;
  color: #777;
  background: #ddd;
  font-family: inherit;
}

.footer-bottom {
  display: none;
  padding: 15px 0;
  color: #d4d4d4;
  background: rgba(255, 255, 255, 0.32);
  font-size: 14px;
  line-height: 1.4;
}

.footer-bottom .wrap {
  width: 80%;
  max-width: var(--wrap);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
}

@media (max-width: 980px) {
  body {
    font-size: 18px;
  }

  .top-strip,
  .desktop-menu {
    display: none;
  }

  .main-nav {
    height: 38px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .logo img {
    width: 93px;
  }

  .mobile-bar {
    display: block;
  }

  .mobile-toggle {
    display: block;
    border: 0;
    padding: 4px;
    color: #00a6e7;
    background: transparent;
    font-size: 21px;
    line-height: 1;
  }

  .mobile-panel {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 20px 18px;
    background: var(--black);
    border-top: 3px solid var(--red);
  }

  .mobile-panel.open {
    display: block;
  }

  .mobile-panel a,
  .mobile-services-toggle {
    display: block;
    width: 100%;
    padding: 10px 0;
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
  }

  .mobile-submenu {
    display: none;
    padding-left: 16px;
  }

  .mobile-submenu.open {
    display: block;
  }

  .mobile-submenu a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    text-transform: none;
  }

  .hero {
    height: 190px;
  }

  .hero-content {
    width: 88%;
    justify-content: flex-start;
    padding-top: 58px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.1;
    max-width: 280px;
  }

  .hero .button {
    padding: 5px 36px;
    font-size: 11px;
  }

  .hero-dots {
    bottom: 13px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    border-top: 0;
    margin-bottom: 48px;
  }

  .service-tile,
  .service-tile img {
    min-height: 0;
    height: auto;
  }

  .service-tile + .service-tile {
    border-left: 0;
  }

  .service-caption {
    display: none;
  }

  .experience {
    min-height: 780px;
    padding: 38px 0;
    background-position: center;
  }

  .experience .wrap {
    width: 82%;
    display: block;
  }

  .experience-panel {
    width: 100%;
    padding: 18px 24px 24px;
  }

  .experience h2,
  .panel-card h2 {
    font-size: 32px;
  }

  .experience p {
    font-size: 16px;
    line-height: 1.8;
  }

  .experience .button {
    padding: 5px 24px;
    font-size: 12px;
  }

  .cta {
    padding: 20px 0 26px;
  }

  .cta .wrap {
    width: 80%;
    display: block;
  }

  .cta p {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .cta .button {
    padding: 6px 24px;
    font-size: 14px;
  }

  .wrap,
  .footer-widgets,
  .footer-rule {
    width: 80%;
  }

  .page-title {
    padding: 45px 0 44px;
  }

  .page-title h1 {
    font-size: 44px;
    line-height: 1.05;
  }

  .page-title .eyebrow {
    font-size: 16px;
  }

  .title-rule {
    margin-top: 26px;
  }

  .intro-row,
  .about-row,
  .feature-band .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-row {
    padding-bottom: 50px;
  }

  .feature-band .wrap {
    width: 100%;
    min-height: 0;
  }

  .feature-img {
    min-height: 0;
    height: auto;
  }

  .panel-card {
    margin: 0 auto;
    padding: 36px 30px;
    width: 80%;
  }

  .plain-copy {
    padding: 34px 0 44px;
  }

  .about-row {
    padding: 0 0 50px;
  }

  .about-row p {
    font-size: 18px;
  }

  .about-logo {
    width: 260px;
  }

  .contact-copy {
    width: 80%;
    margin-top: -12px;
    font-size: 18px;
  }

  .footer-widgets {
    padding: 42px 0 56px;
    display: block;
  }

  .footer-col {
    margin-bottom: 42px;
  }

  .newsletter h3 {
    font-size: 42px;
  }
}

@media (max-width: 430px) {
  .nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wide-image img {
    min-height: 49px;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 32px;
    max-width: 205px;
  }

  .page-title h1 {
    font-size: 40px;
  }

  .clients-image {
    width: 100%;
  }

  .contact-form {
    width: 80%;
  }
}
