:root {
  --gold: #ffd030;
  --gold-btn: #f8b932;
  --gold-hover: #eaac02;
  --black: #000;
  --dark: #070707;
  --gray-bg: #212121;
  --text: #fff;
  --muted: #e2f0f6;
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 10000;
  background: #ffd030;
  color: #000;
  padding: 8px 14px;
  font-weight: 700;
}

.skip-link:focus {
  top: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0;
  background: var(--gold);
  z-index: 9999;
}

/* Header */
.site-header {
  background: #000;
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 1050;
}

.site-header .navbar {
  padding: 0;
}

.site-header .navbar .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 72px;
  width: auto;
  display: block;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  color: #fff !important;
  padding: 6px 12px !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-toggler {
  border: 0;
  color: var(--gold);
  font-size: 28px;
  align-self: center;
}

@media (min-width: 992px) {
  .site-header .navbar-collapse {
    flex-grow: 1;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .navbar-brand {
    order: 1;
  }

  .site-header .btn-contact {
    order: 2;
  }

  .navbar-toggler {
    order: 3;
  }

  .navbar-collapse {
    order: 4;
    flex-basis: 100%;
  }
}

.btn-contact {
  background: var(--gold-btn);
  color: #000;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 10px 24px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  line-height: 1;
  white-space: nowrap;
}

.btn-contact:hover {
  background: #fff;
  color: #000;
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 0.8s ease, transform 8s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.5);
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.39);
}

.hero-caption {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-caption h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 8px;
}

.hero-caption p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  margin: 0;
  max-width: 820px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.67);
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.81);
}

.hero-arrow.prev {
  left: 15px;
}

.hero-arrow.next {
  right: 15px;
}

/* Company overview */
.overview {
  background: url("../assets/images/jessica-lewis-DeyfdybVQhA-unsplash.jpg") center / cover fixed no-repeat;
  position: relative;
  padding: 54px 20px;
  margin-top: 30px;
  color: #fff;
}

.overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.67);
}

.overview .container {
  position: relative;
  z-index: 1;
  max-width: 1002px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.gold-line {
  display: inline-block;
  height: 3px;
  width: 70px;
  background: var(--gold);
}

.overview h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 4.1px;
  color: #e2f0f6;
  margin: 0;
}

.overview p {
  font-size: 1.1em;
  font-weight: 500;
  color: #fff;
}

/* Hover cards */
.hover-card {
  position: relative;
  overflow: hidden;
  margin: 10px 0 25px;
}

.hover-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.hover-card .caption {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.57);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  transform: translateY(-20px);
  opacity: 0.95;
}

.hover-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hover-card p {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

/* Services split */
.services-split {
  display: flex;
  margin-top: 28px;
}

.services-title-col {
  background: #212121;
  width: 22%;
  padding: 10% 10% 10% 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  border-right: 1px solid #2d2d2d;
}

.services-title-col h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  text-align: right;
  margin: 0;
}

.services-title-col .gold-line {
  width: 100%;
  height: 1.7px;
  margin-top: 15px;
}

.services-grid-col {
  width: 78%;
  background: url("../assets/images/pattern1-1.jpg") center / cover no-repeat;
  position: relative;
}

.services-grid-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(66, 66, 66, 0.25);
}

.services-grid {
  position: relative;
  z-index: 1;
  background: #212121;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-item {
  padding: 5% 10%;
  color: #fff;
}

.service-item i {
  font-size: 29px;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.service-item h3 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 9px;
}

.service-item p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

/* CTA bar */
.cta-bar {
  background: #070707;
  border-left: 5px solid var(--gold);
  color: #fff;
  padding: 33px;
  margin: 20px 0;
}

.cta-bar h2 {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 6px 0 0;
}

.btn-cta {
  background: var(--gold);
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 21px 55px 20px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-shadow: 19px 19px 40px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.btn-cta:hover {
  background: #060606;
  color: #fff;
  border-color: var(--gold-hover);
}

/* Logos */
.logos-wrap {
  padding: 40px 0 70px;
  position: relative;
}

.logo-track {
  display: flex;
  overflow: hidden;
}

.logo-track-inner {
  display: flex;
  animation: logo-scroll 22s linear infinite;
}

.logo-track img {
  width: 220px;
  height: 128px;
  object-fit: contain;
  margin: 0 15px;
  flex-shrink: 0;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Footer */
.site-footer {
  background: url("../assets/images/tomasz-frankowski-kBUfvkbFIoE-unsplash.jpg") center / cover no-repeat;
  position: relative;
  padding: 88px 0 60px;
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-title {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.footer-line {
  width: 15%;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

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

.footer-list li {
  margin-bottom: 8px;
}

.footer-list i {
  color: var(--gold);
  margin-right: 8px;
  width: 19px;
}

.footer-list a,
.footer-list span {
  color: #fff;
}

.social-links a {
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
}

address {
  font-style: normal;
}

.copyright-bar {
  background: #000;
  color: #fffafa;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding: 14px 0;
}

.copyright-bar a {
  color: #ffff00;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f9f4f4;
  color: #000;
  border: 3px solid var(--gold);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1040;
}

.back-to-top.show {
  display: flex;
}

/* Inner page hero */
.page-hero {
  min-height: 400px;
  background: linear-gradient(180deg, #000 48%, var(--gold) 100%);
  position: relative;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hands-typing-code-on-laptop.jpg") center / cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: lighten;
  filter: saturate(0%);
}

.page-hero h1 {
  font-family: "Palanquin Dark", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9em;
  letter-spacing: 4px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-hero .white-line {
  width: 9%;
  height: 4px;
  background: #fff;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* About */
.about-body {
  background: url("../assets/images/Untitled-design-27.png") bottom center / contain no-repeat;
  padding: 0 0 8em;
}

.about-body h2,
.strategy-card h2,
.tech-copy h2,
.careers-hero-title {
  font-family: "Palanquin Dark", sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9em;
  letter-spacing: 2px;
}

.gold-rule {
  width: 9%;
  height: 6px;
  background: var(--gold);
  margin: 12px 0 24px;
}

.about-copy {
  font-size: 1.1em;
  font-weight: 500;
  border-right: 3px solid var(--gold);
  padding-right: 5em;
}

.strategy-wrap {
  background: url("../assets/images/people-2557396_1280.jpg") center / cover fixed no-repeat;
  position: relative;
  padding: 0 0 4em;
  color: #fff;
}

.strategy-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.67);
}

.strategy-card {
  background: #fff;
  color: #000;
  border-radius: 6px;
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.13);
  padding: 1em;
  margin-top: -10%;
  position: relative;
  z-index: 1;
}

.strategy-card h2 {
  font-size: 2rem;
}

.strategy-text {
  position: relative;
  z-index: 1;
  padding: 3em 1em 1em 4em;
  font-size: 1.1em;
  font-weight: 500;
}

.strategy-text p {
  border-right: 3px solid var(--gold);
  padding-right: 4em;
}

/* Services page */
.svc-intro {
  padding: 50px 0 100px;
}

.svc-intro img {
  width: 100%;
}

.svc-intro-card {
  background: #fff;
  box-shadow: 0 5px 50px rgba(33, 33, 33, 0.15);
  padding: 40px;
  margin-left: -80px;
  margin-top: 60px;
}

.svc-intro-card h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.svc-card {
  background: #282828;
  border: 1px solid rgba(255, 255, 255, 0.17);
  padding: 20px;
  margin: 20px;
  text-align: center;
  color: #fff;
}

.svc-card img {
  width: 100%;
  margin-top: -80px;
  margin-bottom: 16px;
}

.svc-card h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.4em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.svc-card .gold-line {
  width: 66px;
  height: 3px;
  margin: 10px auto 16px;
}

.help-block {
  padding: 60px 0;
}

.help-block h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
}

.fun-card {
  background-size: cover;
  background-position: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 60px 18px;
}

.fun-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000ad;
}

.fun-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  margin: 0;
}

.section-split-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 43px 0 20px;
}

.section-split-head .gold-line {
  flex: 0 0 10%;
  height: 4px;
}

.section-split-head h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.bordered-copy {
  border-right: 3px solid var(--gold);
  padding-right: 20px;
  font-size: 15px;
}

/* Careers */
.careers-banner {
  min-height: 360px;
  background: linear-gradient(180deg, #000 48%, var(--gold) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.careers-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hands-typing-code-on-laptop.jpg") center / cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: lighten;
}

.careers-banner h1 {
  font-family: "Palanquin Dark", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  position: relative;
  z-index: 1;
}

.careers-list-wrap {
  background: #111;
  color: #fff;
  padding: 50px 0 80px;
  position: relative;
}

.careers-list-wrap h2 {
  font-size: 1.75rem;
  font-weight: 800;
}

.careers-list-wrap ul {
  list-style: none;
  padding: 0;
}

.careers-list-wrap li {
  margin-bottom: 8px;
}

.careers-list-wrap li i {
  color: var(--gold);
  margin-right: 8px;
}

.skills-row,
.qual-row {
  padding: 50px 0;
}

.skills-row h2,
.qual-row h2,
.positions h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.qual-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.qual-item i {
  color: var(--gold);
  font-size: 28px;
}

.resume-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.resume-cta .btn-contact {
  margin-top: 12px;
  display: inline-block;
}

.positions {
  padding: 50px 0;
}

/* Contact */
.contact-grid {
  padding: 70px 0;
}

.contact-grid h3 {
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-box {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-box .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: #111;
  color: #fff;
  padding: 40px;
}

.contact-form-wrap .form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #555;
  border-radius: 0;
  color: #fff;
  margin-bottom: 18px;
  padding: 14px 4px;
}

.contact-form-wrap .form-control::placeholder {
  color: #bbb;
}

.contact-form-wrap .btn {
  width: 100%;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  border: 0;
  padding: 14px;
}

.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.captcha-image {
  height: 56px;
  width: 180px;
  background: #1a1a1a;
  border: 1px solid #444;
  flex-shrink: 0;
}

.captcha-refresh {
  background: transparent;
  border: 1px solid #555;
  color: var(--gold);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.captcha-refresh:hover {
  border-color: var(--gold);
  color: #fff;
}

.captcha-input {
  flex: 1;
  margin-bottom: 0 !important;
  text-transform: uppercase;
}

.form-status {
  min-height: 1.25em;
  margin: 0 0 12px;
  font-size: 14px;
}

.form-status.is-success {
  color: #8fd19e;
}

.form-status.is-error {
  color: #ff8a8a;
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 52px;
  }

  .site-header .navbar .container-fluid {
    row-gap: 8px;
  }

  .site-header .btn-contact {
    margin-left: auto;
    margin-right: 8px;
  }

  .hero-slider {
    height: 480px;
  }

  .hero-caption h2 {
    font-size: 1.5rem;
  }

  .hero-caption p {
    font-size: 0.95rem;
  }

  .services-split {
    flex-direction: column;
  }

  .services-title-col,
  .services-grid-col {
    width: 100%;
  }

  .services-title-col {
    align-items: center;
    padding: 60px 30px;
  }

  .services-title-col h2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .page-hero h1,
  .about-body h2,
  .careers-banner h1 {
    font-size: 2rem;
    text-align: center;
  }

  .svc-intro-card {
    margin-left: 0;
  }

  .about-copy,
  .strategy-text p {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-bar h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .hero-arrow {
    display: none;
  }

  .captcha-row {
    flex-wrap: wrap;
  }

  .captcha-input {
    flex-basis: 100%;
  }
}
