@font-face {
  font-family: "Gramatika";
  src: url("/assets/fonts/gramatika-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gramatika";
  src: url("/assets/fonts/gramatika-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gramatika";
  src: url("/assets/fonts/gramatika-black.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #2f2b36;
  --yellow: #e0d119;
  --contact-gray: #9b9b9b;
  --privacy-bg: #f7f7f7;
  --page-width: 1440px;
  --copy-left: 150px;
  --copy-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translate(-50%, -43%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Gramatika", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  overflow-x: hidden;
}

main,
.site-footer {
  transition: opacity 350ms cubic-bezier(0.37, 0, 0.63, 1), transform 350ms cubic-bezier(0.37, 0, 0.63, 1);
}

body.page-exit main,
body.page-exit .site-footer {
  opacity: 0;
  transform: translateY(10px);
}

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

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

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateY(-120%);
  background: #fff;
  color: #000;
  padding: 8px 12px;
  font: 14px Arial, sans-serif;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 55px 0 45px;
  background: #fff;
  transition: transform 300ms linear;
}

.brand {
  display: block;
  width: 207px;
  height: 62px;
}

.brand img {
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 10px;
  font-size: 18px;
  line-height: 27px;
  color: var(--ink);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--yellow);
}

.mobile-menu-toggle,
.mobile-menu,
.mobile-menu-close,
.mobile-menu-nav {
  display: none;
}

@media (min-width: 901px) {
  .mobile-menu-toggle,
  .mobile-menu,
  .mobile-menu-close,
  .mobile-menu-nav {
    display: none !important;
    visibility: hidden !important;
  }
}

.home-hero {
  position: relative;
  height: 820px;
  overflow: hidden;
}

.home-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  transition: transform 1200ms cubic-bezier(0.37, 0, 0.63, 1);
}

.js.motion-ready .home-hero img {
  transform: scale(1);
}

.home-hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(916px, 72vw);
  margin: 0;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 55px;
  line-height: 55px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  animation: heroTextIn 900ms cubic-bezier(0.37, 0, 0.63, 1) 220ms forwards;
}

.intro-center {
  height: clamp(375px, 23.9vw, 388px);
  padding-top: 80px;
  text-align: center;
}

.intro-center h1 {
  margin: 0 auto;
  width: min(62.5vw, calc(100% - 80px));
  font-size: 40px;
  line-height: 60px;
  font-weight: 500;
}

.intro-center p {
  width: min(47.64vw, calc(100% - 80px));
  margin: 20px auto 0;
  font-size: 19px;
  line-height: 30.4px;
}

.about-collage {
  position: relative;
  width: 65vw;
  height: 47.9vw;
  margin: clamp(-190px, -11.7vw, -150px) auto 0;
}

.about-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
}

.about-collage .worker {
  top: 17.39%;
  left: 30.02%;
  width: 40.06%;
  height: 76.96%;
  object-position: 28% 47%;
}

.about-collage .coal {
  top: 31.88%;
  left: 0;
  width: 35.36%;
  height: 32.9%;
  object-position: 50% 50%;
}

.about-collage .crops {
  top: 49.13%;
  left: 64.64%;
  width: 35.36%;
  height: 32.9%;
  object-position: 31% 30%;
}

.tailored {
  padding-top: 120px;
  padding-bottom: 96px;
}

.tailored-inner {
  width: 84.72vw;
  max-width: calc(100% - 120px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tailored-copy {
  width: 27.64vw;
}

.tailored h2 {
  margin: 0 0 22px;
  font-size: 36px;
  line-height: 54px;
  font-weight: 500;
}

.tailored p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
}

.tailored-side {
  width: 17.99vw;
  height: 12.36vw;
  object-fit: cover;
  object-position: 30% 30%;
  border-radius: 8px;
  opacity: 0;
  transform: translate3d(58px, 0, 0);
  will-change: opacity, transform;
}

.image-band {
  position: relative;
  height: 466px;
  overflow: hidden;
}

.image-band img,
.band-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.band-video {
  display: block;
}

.wide-copy {
  width: calc(100% - 300px);
  margin-left: var(--copy-left);
}

.about-copy {
  padding-top: 56px;
  padding-bottom: 64px;
}

.about-copy h2,
.best h2 {
  margin: 0 0 34px;
  font-size: 40px;
  line-height: 60px;
  font-weight: 500;
}

.about-copy p,
.best p {
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 32px;
}

.products-intro {
  width: min(1300px, calc(100% - 300px));
  margin-left: auto;
  margin-right: auto;
  padding-top: 172px;
  min-height: clamp(654px, 44.86vw, 727px);
}

.products-intro h1 {
  margin: 0 0 17px;
  font-size: 50px;
  line-height: 75px;
  font-weight: 500;
}

.products-intro p {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
}

.products-intro p + p {
  margin-top: 0;
}

.lng-feature {
  position: relative;
  height: clamp(687px, 47.75vw, 774px);
  width: 100%;
  margin: 0;
}

.lng-copy {
  position: absolute;
  top: clamp(86px, 6vw, 97px);
  left: clamp(86px, 6vw, 97px);
  width: min(494px, 31vw);
  opacity: 0.07;
  will-change: opacity;
}

.lng-copy h2 {
  margin: 0 0 26px;
  font-size: 36px;
  line-height: 46.8px;
  font-weight: 500;
  color: #000;
}

.lng-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 25.6px;
}

.lng-images {
  position: absolute;
  top: clamp(86px, 6vw, 97px);
  right: clamp(86px, 6vw, 97px);
  display: grid;
  grid-template-columns: repeat(3, clamp(257px, 17.94vw, 291px));
  column-gap: 20px;
}

.lng-images img {
  width: clamp(257px, 17.94vw, 291px);
  height: clamp(360px, 25vw, 405px);
  object-fit: cover;
  border-radius: 8px;
}

.lng-images .gas {
  margin-top: clamp(154px, 10.75vw, 174px);
}

.lng-images .engineer {
  margin-top: clamp(77px, 5.37vw, 87px);
  object-position: 74% 44%;
}

.lng-images .ship {
  object-position: center center;
}

.industry-grid {
  width: auto;
  max-width: none;
  margin: 50px clamp(45px, 3.125vw, 51px) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.industry-card {
  min-height: clamp(438px, 30.51vw, 494px);
  padding: 40px;
  border: 1px solid #000;
  border-radius: 20px;
  background: #fff;
}

.industry-card h3 {
  margin: 0 0 57px;
  font-size: 21px;
  line-height: 29.4px;
  font-weight: 500;
}

.industry-card p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 25.6px;
}

.best {
  width: min(1300px, calc(100% - 300px));
  margin: 104px auto 0;
  padding-top: 166px;
  padding-bottom: 166px;
}

.best h2 {
  font-size: 50px;
  line-height: 75px;
}

.privacy-title {
  padding: 28px 0 86px 45px;
}

.privacy-title h1 {
  margin: 0;
  font-size: 61.875px;
  line-height: 93px;
  font-weight: 700;
}

.privacy-card {
  width: calc(100% - 180px);
  min-height: 2065px;
  background: var(--privacy-bg);
  padding: 70px 0 72px 41px;
}

.privacy-content {
  width: 754px;
  max-width: calc(100% - 82px);
}

.privacy-content h1 {
  margin: 0 0 72px;
  font-size: 40px;
  line-height: 60px;
  font-weight: 500;
}

.privacy-content h2 {
  margin: 0 0 16px 39px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}

.privacy-content h3 {
  margin: 0;
  font-size: 15px;
  line-height: 27px;
  font-weight: 700;
}

.privacy-content p,
.privacy-content li {
  font-size: 15px;
  line-height: 27px;
}

.privacy-content p {
  margin: 0 0 27px;
}

.privacy-content ul {
  margin: -20px 0 27px 19px;
  padding: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 442px;
}

.contact-details {
  min-height: 442px;
  padding: 58px 50px 48px;
  color: #fff;
  background: var(--yellow);
}

.contact-details a {
  display: inline-block;
  margin-bottom: 54px;
  color: #fff;
  font-size: 56.25px;
  line-height: 67.5px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-details p {
  margin: 0;
  font-size: 20.25px;
  line-height: 28.35px;
}

.contact-form-wrap {
  min-height: 442px;
  padding: 31px 31px 64px;
  background: #000;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 20px;
}

.field {
  display: grid;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #fff;
  font-size: 14px;
  line-height: 17px;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  outline: none;
  background: #1b1b1b;
  color: #fff;
  font: 16px/20px "Gramatika", Arial, sans-serif;
  padding: 8px 12px;
}

.field input {
  height: 36px;
}

.field textarea {
  height: 75px;
  resize: vertical;
}

.phone-row {
  display: grid;
  grid-template-columns: 1fr;
}

.country-code,
.iti__flag-container,
.iti__country-list {
  display: none !important;
}

.iti {
  width: 100%;
}

.iti input[type="tel"] {
  padding-left: 12px !important;
}

.submit-button {
  grid-column: 1 / -1;
  height: 43px;
  margin-top: 4px;
  border: 1px solid #fff;
  border-radius: 100px;
  background: transparent;
  color: #fff;
  font: 16px/20.8px "Gramatika", Arial, sans-serif;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.submit-button:hover {
  background: #fff;
  color: #000;
}

.site-footer {
  position: relative;
  min-height: 207px;
  padding-top: 39px;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 22.4px;
}

.footer-logo {
  position: absolute;
  left: 45px;
  top: 92px;
  width: 108px;
}

.footer-logo img {
  width: 100%;
}

.footer-powered {
  position: absolute;
  left: 45px;
  bottom: 16px;
  width: 124px;
}

.footer-links {
  position: absolute;
  left: 405px;
  top: 39px;
  display: grid;
}

.footer-nav {
  position: absolute;
  left: 765px;
  top: 39px;
  display: grid;
}

.footer-links a,
.footer-nav a {
  width: max-content;
}

.footer-links a:hover,
.footer-nav a:hover {
  color: var(--yellow);
}

@media (min-width: 901px) and (max-width: 1500px) {
  .about-copy {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .products-intro {
    padding-top: 104px;
  }

  .lng-feature {
    margin-top: 0;
  }

  .industry-grid {
    margin-top: 50px;
  }

  .best {
    margin-top: 104px;
    padding-top: 166px;
    padding-bottom: 166px;
  }
}

@media (max-width: 900px) {
  .site-header {
    justify-content: center;
    padding: 21px 0 0;
  }

  .brand {
    width: 249px;
    height: 67px;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu-toggle {
    position: absolute;
    top: 43px;
    right: 27px;
    display: flex;
    width: 34px;
    height: 34px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 27px;
    height: 2px;
    margin-left: auto;
    background: var(--ink);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: block;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-close {
    position: absolute;
    top: 86px;
    right: 31px;
    display: block;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-close span {
    position: absolute;
    top: 16px;
    left: 5px;
    width: 25px;
    height: 2px;
    background: var(--ink);
    transform-origin: center;
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu-nav {
    display: grid;
    justify-items: center;
    gap: 17px;
    padding-top: 157px;
  }

  .mobile-menu-nav a {
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    color: var(--ink);
  }

  .mobile-menu-nav a:hover {
    color: var(--yellow);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .home-hero {
    height: 722px;
  }

  .home-hero h1 {
    width: 79vw;
    font-size: 40px;
    line-height: 40px;
  }

  .intro-center {
    height: 260px;
    padding-top: 15px;
  }

  .intro-center h1 {
    width: calc(100% - 115px);
    font-size: 40px;
    line-height: 60px;
  }

  .intro-center p {
    width: calc(100% - 140px);
    margin-top: 12px;
    font-size: 19px;
    line-height: 30.4px;
  }

  .about-collage {
    width: 658px;
    height: 475px;
    margin: 0 auto;
  }

  .about-collage .worker {
    top: 0;
    left: 151px;
    width: 246px;
    height: 348px;
  }

  .about-collage .coal {
    top: 53px;
    left: 0;
    width: 176px;
    height: 121px;
  }

  .about-collage .crops {
    top: 157px;
    left: 371px;
    width: 176px;
    height: 121px;
  }

  .tailored {
    padding-top: 24px;
    padding-bottom: 102px;
    margin-top: -105px;
  }

  .tailored-inner {
    width: calc(100% - 100px);
    max-width: none;
  }

  .tailored-copy {
    width: 345px;
  }

  .tailored h2 {
    font-size: 30px;
    line-height: 45px;
  }

  .tailored-side {
    width: 224px;
    height: 154px;
  }

  .wide-copy {
    width: calc(100% - 96px);
    margin-left: 48px;
  }

  .about-copy {
    padding-top: 92px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }

  .products-intro {
    width: calc(100% - 101.8px);
    padding-top: 0;
    height: 549.8px;
  }

  .products-intro h1 {
    font-size: 75.3176px;
    line-height: 113px;
    margin-bottom: 11.8px;
  }

  .products-intro p {
    font-size: 15px;
    line-height: 24px;
  }

  .lng-feature {
    width: calc(100% - 122px);
    height: 485px;
    margin: 75.6px 61px 0;
  }

  .lng-copy {
    top: 0;
    width: 100%;
  }

  .lng-copy h2 {
    font-size: 42px;
    line-height: 54.6px;
  }

  .lng-images {
    top: 328px;
    left: 0;
    right: auto;
    grid-template-columns: repeat(3, 202px);
    column-gap: 20px;
  }

  .lng-images img {
    width: 202px;
    height: 300px;
  }

  .lng-images .gas {
    margin-top: 146px;
  }

  .lng-images .engineer {
    margin-top: 73px;
  }

  .industry-grid {
    width: calc(100% - 96px);
    max-width: none;
    margin: 424px 48px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .industry-card {
    min-height: 380px;
    padding: 40px;
  }

  .industry-card h3 {
    font-size: 18px;
    line-height: 25.2px;
  }

  .industry-card p {
    font-size: 15px;
    line-height: 24px;
  }

  .best {
    margin-top: 104px;
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .best h2 {
    margin-bottom: 15px;
    font-size: 50px;
    line-height: 75px;
  }

  .best p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 24px;
  }

  .contact-details {
    padding: 58px 40px 35px;
  }

  .contact-details a {
    font-size: 25px;
    line-height: 30px;
  }

  .contact-details p {
    font-size: 17px;
    line-height: 23.8px;
  }

  .contact-form-wrap {
    padding: 31px;
  }

  .site-footer {
    min-height: 274px;
  }

  .footer-logo {
    left: auto;
    right: 40px;
    top: 216px;
  }

  .footer-powered {
    left: auto;
    right: 40px;
    bottom: 18px;
  }

  .footer-links {
    left: 419px;
  }

  .footer-nav {
    left: 40px;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 110px;
    padding-top: 27px;
  }

  .brand {
    width: 215px;
    height: 55px;
  }

  .home-hero {
    height: 714px;
  }

  .home-hero h1 {
    width: 61vw;
    font-size: 40px;
    line-height: 40px;
  }

  .intro-center {
    height: 328px;
    padding-top: 20px;
  }

  .intro-center h1 {
    width: calc(100% - 43px);
    font-size: 40px;
    line-height: 40px;
  }

  .intro-center p {
    width: calc(100% - 40px);
    margin-top: 20px;
    font-size: 16px;
    line-height: 25.6px;
  }

  .about-collage {
    width: 350px;
    height: 552px;
    margin: 0 auto;
  }

  .about-collage .crops {
    top: 0;
    left: 192px;
    width: 145px;
    height: 108px;
  }

  .about-collage .worker {
    top: 60px;
    left: 50px;
    width: 257px;
    height: 397px;
  }

  .about-collage .coal {
    top: 398px;
    left: 12px;
    width: 145px;
    height: 108px;
  }

  .tailored {
    padding-top: 25px;
    padding-bottom: 100px;
    margin-top: 0;
  }

  .tailored-inner {
    width: calc(100% - 64px);
    display: block;
  }

  .tailored-copy {
    width: 100%;
  }

  .tailored h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .tailored p {
    font-size: 15px;
    line-height: 24px;
  }

  .tailored-side {
    width: 100%;
    height: 222px;
    margin-top: 29px;
  }

  .image-band {
    height: 466px;
  }

  .wide-copy {
    width: calc(100% - 64px);
    margin-left: 32px;
  }

  .about-copy {
    padding-top: 48px;
    padding-bottom: 56px;
    margin-bottom: 0;
  }

  .about-copy h2 {
    margin-bottom: 36px;
    font-size: 28px;
    line-height: 42px;
  }

  .about-copy p,
  .best p {
    font-size: 15px;
    line-height: 24px;
  }

  .products-intro {
    width: calc(100% - 64px);
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }

  .products-intro h1 {
    font-size: 32.1628px;
    line-height: 48px;
    margin-bottom: 6px;
  }

  .products-intro p {
    font-size: 15px;
    line-height: 24px;
  }

  .lng-feature {
    width: calc(100% - 78px);
    height: 1750px;
    margin: 80px 39px 0;
  }

  .lng-copy h2 {
    font-size: 22px;
    line-height: 28.6px;
  }

  .lng-copy {
    top: -174px;
    left: 0;
    width: 100%;
    text-align: left;
  }

  .lng-copy p {
    font-size: 16px;
    line-height: 25.6px;
  }

  .lng-images {
    top: 231px;
    left: 0;
    right: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .lng-images img {
    width: 312px;
    height: 450px;
  }

  .lng-images .gas,
  .lng-images .engineer {
    margin-top: 0;
  }

  .industry-grid {
    width: calc(100% - 96px);
    margin: 0 48px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card {
    min-height: 420px;
    padding: 60px 10px 28px;
  }

  .industry-card h3 {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 32px;
  }

  .industry-card p {
    font-size: 16px;
    line-height: 25.6px;
  }

  .best {
    padding-top: 260px;
    padding-bottom: 70px;
    margin-bottom: -190px;
  }

  .best h2 {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 42px;
  }

  .products-intro ~ .best p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 24px;
  }

  .products-intro + .lng-feature {
    margin: 249.2px 39px 0;
  }

  .products-intro ~ .industry-grid {
    margin: 10px 48px 0;
    row-gap: 20px;
  }

  .products-intro ~ .best {
    width: calc(100% - 96px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding-top: 112px;
    padding-bottom: 49px;
  }

  .products-intro ~ .best h2 {
    margin-bottom: 7.5px;
  }

  .privacy-title {
    padding: 20px 0 40px 30px;
  }

  .privacy-title h1 {
    font-size: 42px;
    line-height: 63px;
  }

  .privacy-card {
    width: 100%;
    min-height: auto;
    padding: 48px 20px 60px;
  }

  .privacy-content {
    width: 100%;
    max-width: none;
  }

  .privacy-content h1 {
    margin-bottom: 45px;
  }

  .privacy-content h2 {
    margin-left: 0;
    font-size: 24px;
    line-height: 36px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-details {
    min-height: 236px;
    padding: 58px 30px 35px;
  }

  .contact-details a {
    margin-bottom: 28px;
    font-size: 26px;
    line-height: 31.2px;
  }

  .contact-form-wrap {
    min-height: 428px;
    padding: 47px 31px;
  }

  .contact-form {
    column-gap: 32px;
  }

  .site-footer {
    min-height: 260px;
    padding-top: 0;
  }

  .footer-links {
    left: 0;
    right: 0;
    top: 31px;
    justify-items: center;
    text-align: center;
    line-height: 20px;
  }

  .footer-nav {
    display: none;
  }

  .footer-logo {
    left: 50%;
    right: auto;
    top: 147px;
    width: 168px;
    transform: translateX(-50%);
  }

  .footer-powered {
    left: 28px;
    right: auto;
    bottom: 24px;
    width: 124px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .home-hero img,
  .tailored-side,
  .lng-copy {
    opacity: 1;
    transform: none;
  }

  .home-hero h1 {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
