html {
  font-size: 62.5%; /* 10px = 1rem */
}
/* Reset */
a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  appearance: none;
  background: none;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Fonts */

:root {
  font-family: var(--fontFamily);
}

/* If Variable fonts are supported. options not working. */
@supports (font-variation-settings: normal) {
  :root {
    --fontFamily: var(--fontFamilyVar);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 90, "GRAD" 0, "XOPQ" 96,
      "XTRA" 468, "YOPQ" 79, "YTAS" 750, "YTDE" -203, "YTFI" 738, "YTLC" 514,
      "YTUC" 712;
  }
}
h1,
h2,
h3,
h4,
h5 {
  padding-top: 1.4em;
}
h1,
.head-1 {
  font-size: var(--text-head-1);
  font-weight: var(--text-weight-700);
  font-variation-settings: "wght" var(--text-weight-700);
}
h2,
.head-2 {
  font-size: var(--text-head-2);
  font-weight: var(--text-weight-700);
  font-variation-settings: "wght" var(--text-weight-700);
}
h3,
.head-3 {
  font-size: var(--text-head-3);
  font-weight: var(--text-weight-700);
  font-variation-settings: "wght" var(--text-weight-600);
}
.h4,
.head-4 {
  font-size: var(--text-head-4);
  font-weight: var(--text-weight-700);
  font-variation-settings: "wght" var(--text-weight-600);
}
.text-body {
  font-size: var(--text-body);
  font-weight: var(--text-weight-400);
  line-height: var(--text-height-normal);
  font-variation-settings: "wght" var(--text-weight-400);
}
p {
  margin-top: 0.2em;
  margin-bottom: 1.1em;
}
.semi-bold {
  font-weight: var(--text-weight-600);
  font-variation-settings: "wght" var(--text-weight-600);
}
.bold {
  font-weight: var(--text-weight-700);
  font-variation-settings: "wght" var(--text-weight-700);
}
.tall {
  line-height: var(--text-height-tall);
}
.center-text {
  text-align: center;
}
ul {
  display: block;
  margin: var(--min-flex-gap-24);
}
li {
  display: list-item;
  margin: var(--min-flex-gap-24);
  list-style-position: outside;
  text-align: left;
}
.link-work {
  color: var(--color-link);
  font-size: var(--text-body);
  font-weight: var(--text-weight-700);
  text-decoration: underline;
}

/* Buttons */

.action-button {
  background: var(--color-link);
  border-color: var(--color-link);
  border-radius: 4.8rem;
  border-style: solid;
  padding: var(--flex-gap-16) var(--flex-gap-48) var(--flex-gap-16)
    var(--flex-gap-48);
  display: flex;
  flex-direction: row;
  gap: var(--gap-8);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0.8rem 0.8rem 2rem 0rem rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  text-align: center;
  font-size: var(--text-button-large);
  font-weight: var(--text-weight-900);
  position: relative;
}
.special-background {
  background: var(
    --gradient-dark,
    linear-gradient(94.89deg, rgba(4, 21, 35, 1) 0%, rgba(35, 115, 159, 1) 100%)
  );
}

/* Colors */

.page .theme-dark,
.page .theme-dark a {
  color: var(--color-white);
}
.page .theme-light,
.page .theme-light a {
  color: var(--color-black);
}

/* Page */
body {
  /* fade in */
  animation: fade-in 1s forwards;
  visibility: hidden;
  opacity: 0;
}
@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.abyss {
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: var(--flex-gap-128);
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.page {
  background: var(--color-white);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  gap: var(--flex-gap-48);
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  max-width: 192rem;
  min-width: 32rem;
  position: relative;
  box-shadow: 0rem 0rem 12rem 0rem rgba(0, 0, 0, 0.08);
}
.sections-tight {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
}
.section-inset {
  width: 90%;
  max-width: var(--content-max-inset);
}

.gradient-line-wide {
  margin: var(--flex-gap-32) 0;
  display: block;
  border: none;
  height: 1px;
  width: 100%;
  background-image: linear-gradient(
    to right,
    transparent,
    var(--color-black-disabled),
    transparent
  );
}

.gradient-line-tall {
  margin: 0 var(--flex-gap-16);
  display: block;
  border: none;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(
    to top,
    transparent,
    var(--color-black-disabled),
    transparent
  );
}

/* Links */

.page a {
  color: var(--color-link);
  transition: transform 0.25s ease-in-out;
}
.page a:hover:not(.hover-tilt) {
  transform: perspective(900px) scale(1.1) translateY(-2px);
}
a.nocolor {
  color: var(--color-black);
}
.hover-tilt,
.hover-tilt-low {
  transition: transform 0.25s ease-in-out;
  perspective-origin: center 90%;
  cursor: pointer;
}
@media (prefers-reduced-motion) {
  .hover-tilt {
    transition: none;
  }
  .page a {
    transition: none;
  }
  .popup-visible {
    transition: none;
  }
}
.hover-tilt:hover {
  transform: perspective(900px) translateY(-8px) rotateX(-12deg);
}
.hover-tilt-low:hover {
  transform: perspective(1200px) translateY(-6px) rotateX(-10deg);
}
.overlay-backdrop,
.popup-item {
  display: none;
}
.overlay-backdrop.overlay-visible {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(0.8rem);
  backdrop-filter: blur(0.8rem);
  z-index: 7;
}
.toggle-popup.popup-visible,
.popup-item.popup-visible {
  position: fixed;
  top: var(--gap-96);
  margin: 0 auto;
  max-height: 90dvh;
  overflow-y: auto;
  scrollbar-color: var(--color-black-disabled) transparent;
  padding: var(--flex-gap-48);
  background-color: var(--color-white);
  box-shadow: var(--shadow-product-image-box-shadow);
  border-radius: var(--flex-gap-32);
  transition: transform 0.25s ease-in-out;
  animation: fade-in 0.5s forwards ease-in-out;
  cursor: pointer;
  z-index: 8;
}
.popup-item.popup-visible {
  display: block;
  max-width: 95dvw;
}
.popup-item img {
  max-width: 100%;
  height: auto;
}
.toggle-popup.popup-visible::after,
.popup-item.popup-visible::after {
  content: url("/images/icon-close.svg");
  position: absolute;
  right: var(--min-flex-gap-16);
  top: var(--min-flex-gap-16);
}
.toggle-popup.popup-visible:hover,
.popup-item.popup-visible:hover {
  transform: perspective(900px) scale(1.02) translateY(-2px);
}

/* Cards */

.card-title {
  font-size: var(--text-card-title);
  line-height: var(--text-height-normal);
  font-weight: var(--text-weight-600);
}
.card-description {
  font-size: var(--text-card-tagline);
  line-height: var(--text-height-tall);
  font-weight: var(--text-weight-400);
}
.list-cards ul {
  display: block;
  margin-left: var(--gap-16);
  margin-bottom: var(--gap-16);
}
.list-cards li {
  display: list-item;
  margin-left: var(--gap-16);
  margin-bottom: var(--gap-16);
  list-style-position: outside;
  text-align: left;
}
.card-thumbnail {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28.8rem;
  position: relative;
}
.card-logo {
  display: flex;
  width: 100%;
  padding: 0 var(--gap-16);
  flex-shrink: 0;
  justify-content: center;
}
.card-footer {
  border-radius: 0rem 0rem 1rem 1rem;
  flex-shrink: 0;
  width: 32rem;
  height: 2.1rem;
  position: relative;
}

/* Nav bar */

.nav-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  height: 6rem;
  position: fixed;
  top: 0rem;
  width: 100%;
  max-width: 192rem;
  min-width: 32rem;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(1.6rem);
  backdrop-filter: blur(1.6rem);
  box-shadow: 0rem 0.8rem 1.6rem 0rem rgba(0, 0, 0, 0.16);
  z-index: 10;
}
.nav-links {
  display: flex;
  flex-direction: row;
  gap: var(--flex-gap-48);
  align-items: center;
  justify-content: center;
  margin-right: var(--flex-gap-48);
  text-align: center;
  font-size: clamp(1.6rem, 1.2rem + 1.25vw, 2.4rem);
  line-height: 2rem;
  font-weight: 700;
}
.nav-links a {
  color: var(--color-black);
}
.nav-selected {
  -webkit-box-shadow: inset 0px -2px 0px 0px var(--color-black-disabled);
  -moz-box-shadow: inset 0px -2px 0px 0px var(--color-black-disabled);
  box-shadow: inset 0px -2px 0px 0px var(--color-black-disabled);
  padding-bottom: 6px;
  margin-bottom: -6px;
}
.logo-resources-online {
  width: 19.2rem;
  height: 3.9rem;
  margin-left: var(--flex-gap-32);
}
.contact-tab {
  background: var(--color-link);
  border-radius: 0rem 0rem 4.6rem 4.6rem;
  padding: 0.4rem 2.4rem 0.4rem 2.4rem;
  display: flex;
  flex-direction: row;
  gap: var(--flex-gap-4);
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  margin-right: var(--flex-gap-48);
  top: 6rem;
}
.info-ronline-com {
  color: var(--color-white);
  text-align: center;
  font-family: "Roboto-Bold", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 700;
  position: relative;
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.hero.home {
  min-height: 30rem;
  margin-top: 6rem;
  margin-bottom: -7.7rem;
}
.hero.services {
  min-height: 36rem;
}
.hero.team {
  min-height: 39rem;
}
.hero.careers {
  min-height: 51rem;
}
@media (max-height: 640px) {
  .hero.home,
  .hero.services,
  .hero.team,
  .hero.careers {
    min-height: 99vh;
  }
}
.hero-image {
  position: absolute;
  right: 0%;
  left: 0%;
  bottom: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: ellipse(100% 58% at 30% 39%);
}
.megahero .hero-image {
  object-position: 100% 12%;
  clip-path: none;
}
.hero-text-block {
  border-radius: var(--flex-gap-32);
  padding: var(--min-flex-gap-24) var(--min-flex-gap-24) var(--min-flex-gap-24)
    var(--min-flex-gap-24);
  display: flex;
  flex-direction: column;
  gap: var(--min-flex-gap-16);
  align-items: center;
  position: relative;
  margin-left: 7%;
  width: clamp(40rem, 37.6rem + 7.5vw, 52rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(1.2rem);
  backdrop-filter: blur(1.2rem);
  font-weight: var(--text-weight-500);
  transition: 0.25s ease-in-out translate;
}
@media (max-width: 500px) {
  .hero-text-block {
    border-radius: 100%;
    justify-content: center;
    margin-left: 0;
    height: 60vw;
    min-height: 288px;
    width: 60vw;
    min-width: 288px;
    translate: 0 10%;
  }
  .hero.services {
    min-height: 45rem;
  }
  .hero {
    justify-content: center;
  }
  .hero.home {
    margin-bottom: 0;
  }
}
.hero-title {
  text-align: center;
  font-size: var(--text-hero-title);
  font-weight: var(--text-weight-600);
  position: relative;
  align-self: stretch;
}
.hero-tagline {
  text-align: center;
  font-size: var(--text-hero-tagline);
  position: relative;
  align-self: stretch;
}

/* Forms */

.contact-form {
  display: flex;
  flex-direction: row;
  gap: var(--min-flex-gap-16);
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-shrink: 0;
  width: 90%;
  max-width: 115.5rem;
  text-align: left;
  font-size: var(--text-body);
  line-height: var(--text-height-tall);
  position: relative;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--min-flex-gap-24);
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  min-width: 28.8rem;
  max-width: 64rem;
  position: relative;
}
.contact-description {
  font-weight: 400;
}
.contact-email {
  color: var(--color-link);
  font-weight: 700;
}
.contact-phone {
  font-weight: 700;
}
.contact-address {
  font-weight: 400;
}
.form-contain {
  display: flex;
  flex-direction: column;
  gap: var(--gap-16);
  justify-content: flex-start;
  flex: 1;
  min-width: 28.8rem;
  max-width: 64rem;
  position: relative;
}
.form-credit {
  position: absolute;
  height: 80px;
  width: 100%;
  background-color: var(--color-white);
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: var(--text-smallest);
}

/* Footer */

.footer {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--flex-gap-64) var(--flex-gap-64) 0 0;
  padding: var(--flex-gap-64) var(--flex-gap-96) var(--flex-gap-48)
    var(--flex-gap-96);
  display: flex;
  flex-direction: column;
  gap: var(--min-flex-gap-64);
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  max-width: 192rem;
  position: relative;
  overflow: hidden;
}
.footer-head {
  display: flex;
  flex-direction: row;
  gap: var(--min-flex-gap-32);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-self: stretch;
  position: relative;
}
.footer-title {
  text-align: left;
  font-size: var(--text-display);
  line-height: var(--text-height-normal);
  font-weight: var(--text-weight-800);
}
.button-inverse {
  background: var(--color-white);
  border-color: var(--color-white);
  text-transform: uppercase;
}
.rule {
  background: var(--color-white);
  align-self: stretch;
  flex-shrink: 0;
  height: 0.1rem;
  position: relative;
}
.footer-body {
  display: flex;
  flex-direction: row;
  gap: var(--min-flex-gap-32);
  row-gap: var(--min-flex-gap-48);
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: var(--gap-8);
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  font-size: var(--text-body);
  line-height: var(--text-height-tall);
  font-weight: var(--text-weight-400);
}
.footer .nav-links {
  font-size: var(--text-head-4);
  line-height: var(--text-height-flush);
  font-weight: var(--text-weight-700);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.footer-last {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: var(--flex-gap-64);
  align-self: stretch;
  font-size: var(--text-small);
  line-height: var(--text-height-tall);
  font-weight: var(--text-weight-400);
}
