:root,
[data-theme="dark"] {
  --brand: #fe2d76;
  --primary: #121621;
  --secondary: #1f232d;
  --tertiary: #181d29;
  /* --secondary: #181d29; */
  --contrast: #e1e1e1;
  --text: #c4c4c4;
  --gray: #636065;
  --border: #efefef2b;
  --brandFilter: invert(39%) sepia(99%) saturate(4706%) hue-rotate(323deg) brightness(103%) contrast(99%);
  /* --gradient: linear-gradient(145deg,
      hsl(339deg 99% 59%) 1%,
      hsl(345deg 100% 63%) 28%,
      hsl(351deg 100% 66%) 38%,
      hsl(357deg 100% 69%) 45%,
      hsl(4deg 100% 69%) 51%,
      hsl(10deg 100% 68%) 56%,
      hsl(16deg 100% 67%) 61%,
      hsl(21deg 100% 66%) 66%,
      hsl(26deg 100% 64%) 71%,
      hsl(31deg 100% 63%) 77%,
      hsl(35deg 100% 61%) 83%,
      hsl(39deg 99% 59%) 100%); */
  --shadow: 5px 5px 5px #050608;
  --outer: 11px 11px 22px #121621, -11px -11px 22px #121621;
  --inner: inset 12px 12px 12px #21252933, inset -12px -12px 12px #121621;
  --map: url("/assets/img/arrive-map-dark.webp");
  --cubic-bezier: 0.3s cubic-bezier(0.25, 1, 0.5, 1); /* Adjust the cubic-bezier values */
  --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1); /* Adjust the cubic-bezier values */
  --nav-transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
}
[data-theme="light"] {
  --brand: #fe2d76;
  --primary: #f1f1f1;
  --secondary: #ebecf0;
  --tertiary: #fcfcfc;
  --contrast: #212529;
  --text: #404347;
  --gray: #636065;
  --border: #2125292b;
  --brandFilter: invert(39%) sepia(99%) saturate(4706%) hue-rotate(323deg)
    brightness(103%) contrast(99%);
  --shadow: 5px 5px 5px #c4c4c4;
  --outer: 11px 11px 22px #c8c9cc, -11px -11px 22px #ffffff;
  --inner: inset 12px 12px 12px #21252933, inset -12px -12px 12px #ffffff;
  --map: url("/assets/img/arrive-map-light.webp");
}

/* @font-face {
  font-family: 'Poppins';
  src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Karla';
  src: url("/assets/fonts/Karla-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Cabin';
  src: url("/assets/fonts/Cabin-VariableFont_wdth\,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
} */

html,
body,
* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: var(--primary);
  color: var(--text);
  min-height: 100vh;
}

/* Bootstrap resets */
@media (min-width: 1650px) and (max-width: 1921px) {
  nav .container,
  nav .container-lg,
  nav .container-xl,
  #breadcrumbs .container,
  #breadcrumbs .container-lg,
  #breadcrumbs .container-xl {
    max-width: 90%;
  }
}
@media (min-width: 1921px) {
  #breadcrumbs .container,
  #breadcrumbs .container-lg,
  #breadcrumbs .container-md,
  #breadcrumbs .container-sm,
  #breadcrumbs .container-xl,
  #breadcrumbs .container-xxl,
  nav .container,
  nav .container-lg,
  nav .container-md,
  nav .container-sm,
  nav .container-xl,
  nav .container-xxl {
    max-width: 1800px;
  }
}
.nav-link:focus,
.nav-link:hover {
  color: currentColor;
}

.btn {
  color: currentColor;
}
.btn:hover {
  color: currentColor;
  opacity: 0.7;
}

svg {
  width: auto;
}

/* Google Material Font Icons */
.material-sys-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}
.material-symbols-outlined {
  vertical-align: middle;
}

.icon {
  width: 15px;
  height: auto;
  vertical-align: middle;
}
[data-theme="dark"] .icon {
  filter: invert();
}

.bg-light {
  background-color: var(--primary) !important;
}

.brand {
  color: var(--brand);
}

.content a {
  border-bottom: 1px solid var(--contrast);
  transition: var(--transition);
}

.content a:hover {
  border-color: var(--brand);
}

section {
  display: flex;
  flex-direction: column;
  padding: 100px 0;
  z-index: 2;
}

.hashtag {
  color: var(--brand);
  opacity: 0.8;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  section {
    padding: 40px 0;
  }
}

section.info {
  overflow: hidden;
}

section.info img {
  border-radius: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
  color: var(--contrast);
}

h1 {
  font-size: 4.5rem;
  line-height: 1.4;
  display: flex;
}


.homepage h1 {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
}

.homepage h3 {
  margin-top: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--contrast);
  font-size: 2.5rem;
}

/* BS Resets */

.btn {
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}

.relative {
  position: relative;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: inherit;
}
h1 b {
  font-weight: 500;
}
p {
  font-size: 1.3rem;
}
p,
li {
}
ul li p,
ol li p {
}
li {
  overflow-wrap: break-word;
}
@media screen and (max-width: 991px) {
  p,
  li {
    font-size: 0.85rem;
  }
}

/* Buttons */
.bg-light .arrow {
  color: var(--contrast);
}
.bg-light .arrow:hover {
  color: var(--contrast);
  opacity: 0.7;
}
.arrow {
  position: relative;
  padding-left: 0;
  padding-right: 0px;
  background: none;
  color: #fff;
  width: fit-content;
}
.cta:hover .arrow,
.arrow:hover {
  background: none;
  border: none;
  color: var(--primary);
}
.arrow:focus,
.arrow:focus-visible {
  border-radius: 0;
  border: none;
  outline: none;
  box-shadow: none;
}
.arrow:before {
  /* content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMyIDMyIiAgaWQ9ItCh0LvQvtC5XzEiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIiAgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBhdGggY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzIsMTYuMDA5YzAtMC4yNjctMC4xMS0wLjUyMi0wLjI5My0wLjcxNCAgbC05Ljg5OS05Ljk5OWMtMC4zOTEtMC4zOTUtMS4wMjQtMC4zOTQtMS40MTQsMGMtMC4zOTEsMC4zOTQtMC4zOTEsMS4wMzQsMCwxLjQyOGw4LjE5Myw4LjI3NUgxYy0wLjU1MiwwLTEsMC40NTItMSwxLjAxICBzMC40NDgsMS4wMSwxLDEuMDFoMjcuNTg2bC04LjE5Miw4LjI3NWMtMC4zOTEsMC4zOTQtMC4zOSwxLjAzNCwwLDEuNDI4YzAuMzkxLDAuMzk0LDEuMDI0LDAuMzk0LDEuNDE0LDBsOS44OTktOS45OTkgIEMzMS44OTQsMTYuNTM0LDMxLjk5NywxNi4yNzQsMzIsMTYuMDA5eiIgZmlsbD0iIzEyMTMxMyIgZmlsbC1ydWxlPSJldmVub2RkIiBpZD0iQXJyb3dfRm9yd2FyZCIvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjwvc3ZnPg=="); */
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
  content: "\e86b";
  font-size: 150%;
  color: currentColor;
  position: absolute;
  top: 50%;
  right: -30px;
  width: 20px;
  -webkit-transform: translate(0, -50%) rotate(90deg);
  transform: translate(0, -50%) rotate(90deg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
article a:hover ~ div a .arrow:before,
.cta:hover .arrow:before,
.arrow:hover:before {
  -webkit-transform: translate(7px, -50%) rotate(90deg);
  transform: translate(7px, -50%) rotate(90deg);
}
h5.btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
h5.btn:hover {
  color: var(--text);
  opacity: 0.7;
}
h5.btn:before {
  font-size: 125%;
}

/* Logo */

/* Nav */

.navbar {
  height: var(--navbar-height);
  transition: var(--nav-transition);
  background: none;
}
body:not(.scrolled) .navbar {
  --contrast: #e1e1e1;
  --primary: #121621;
  --border: #efefef2b;
}

.navbar-brand svg {
  height: 100%;
  padding: 5px 0;
  color: var(--contrast);
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  transition: var(--nav-transition);
  margin-right: 3rem;
  height: 5rem;
}
.scrolled .navbar .navbar-brand {
  height: 4rem;
}

.navbar ul {
  padding: 10px 0;
}

li.nav-item {
  font-size: 1.3rem;
  padding: 0 15px;
  opacity: 1;
}

li.nav-item a {
  font-weight: 500;
  color: var(--contrast);
}

li.nav-item a:hover {
  color: var(--contrast);
  opacity: 0.7;
}

.nav-btn {
  border: 1px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  height: 50px;
  width: 50px;
  color: var(--contrast) !important;
  opacity: 1;
  font-size: 1.2rem;
}
.nav-btn:hover {
  opacity: 0.7;
}

.download-btn {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding: 10px 1rem !important;
  z-index: 2;
  width: fit-content;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: var(--primary) !important;
  background: var(--contrast);
}

.download-icon {
  position: relative;
  transition: top 0.3s cubic-bezier(0.25, 1, 0.5, 1); /* Adjust the cubic-bezier values */
  top: 0;
  font-size: 1.8rem !important;
}
.download-btn:hover .download-icon {
  top: 3px;
}

.download-btn span {
  line-height: 1;
  letter-spacing: 2px;
  font-size: 0.7rem;
}
.download-btn span b {
  letter-spacing: 2px;
  font-size: 1.3rem;
}

[data-theme="light"] .download-btn {
  color: var(--brand);
}

.bg-gradient {
  position: relative;
  border-radius: 100px;
  background-color: var(--secondary);
  padding: 0.5rem 1rem;
}

.bg-gradient:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(352deg, #b5b5b5 -20%, #ffffff 74%);
  transform: translate3d(0px, 0px, 0) scale(1.08);
  filter: blur(5px);
  opacity: 1;
  transition: opacity 0.3s;
  border-radius: inherit;
}

/* Neumorphism */
.neu-inner,
.neu-outer {
  position: relative;
  z-index: 1;
}

.neu-inner:after,
.neu-outer:after,
.neu-inner:before,
.neu-outer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

/* neu Outer */
.neu-outer:after {
  background: var(--secondary);
  box-shadow: var(--outer);
  opacity: 1;
}

.neu-outer:before {
  background: var(--secondary);
  box-shadow: var(--inner);
}

a.neu-outer:hover:after {
  opacity: 0;
}

a.neu-outer:hover:before {
  opacity: 1;
}

/* neu Inner */
.neu-inner {
  background: #f1f1f1;
  box-shadow: inset 12px 12px 12px #21252933, inset -12px -12px 12px #ffffff;
}

/*
* Prevents issues when the parent creates a
* stacking context. (For example, using the transform
* property )
*/
.bg-gradient::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
}

/* Navbar Scrolled */

body,
body.scrolled {
  --navbar-height: 65px;
}
@media screen and (min-width: 991px) {
  body {
    --navbar-height: 100px;
  }
  body.scrolled {
    --navbar-height: 85px;
  }
}

.nav-expanded,
.scrolled .navbar {
  height: var(--navbar-height);
  background-color: var(--primary);
}
.nav-expanded:before,
.scrolled .navbar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  opacity: 0.2;
  z-index: -1;
}
.scrolled .navbar li.nav-item a.nav-link {
  color: var(--contrast);
  z-index: 1;
}
.scrolled .navbar .download-btn {
  /* border: 2px solid transparent; */
}
li.nav-item a.download-btn:hover {
  opacity: 1;
}

@media screen and (max-width: 1300px) {
  .nav-item .nav-link {
    font-size: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .nav-top {
    flex: 0 0 100%;
    z-index: 2;
  }
  .nav-expanded,
  .scrolled .nav-expanded {
    height: 100%;
    min-height: 100%;
  }
  .nav-expanded {
    height: 100%;
  }
  .navbar-brand svg {
    max-height: 50px;
  }
  .scrolled .navbar .navbar-brand svg {
    max-height: 45px;
  }
  .nav-item .nav-link {
    font-size: 1.5rem;
  }
  .download-btn {
    font-size: 1.5rem;
  }
  .navbar-collapse {
    position: fixed;
    width: 100%;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
  }
  .navbar-collapse.show {
    min-height: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 1;
  }
  .navbar-collapse ul.navbar-nav {
    position: relative;
    top: var(--navbar-height);
  }
  .navbar-collapse ul.navbar-nav li {
    opacity: 0;
  }
  .navbar-collapse.show ul.navbar-nav li {
    opacity: 1;
    transition: var(--transition);
  }
  .navbar-collapse.show ul.navbar-nav li:nth-of-type(1) {
    transition-delay: 0.06s;
  }
  .navbar-collapse.show ul.navbar-nav li:nth-of-type(2) {
    transition-delay: 0.12s;
  }
  .navbar-collapse.show ul.navbar-nav li:nth-of-type(3) {
    transition-delay: 0.18s;
  }
  .navbar-collapse.show ul.navbar-nav li:nth-of-type(4) {
    transition-delay: 0.24s;
  }
  .navbar-collapse.show ul.navbar-nav li:nth-of-type(5) {
    transition-delay: 0.3s;
  }
}

/* Hamburger */

.navbar-toggler {
  padding-left: 0;
}

.navbar-toggler,
.navbar-toggler:focus {
  border: 0;
  outline: none;
  box-shadow: none;
  transform: scaleX(-1);
}

/* Define the shape and color of the hamburger lines */
.navbar-toggler span {
  display: block;
  background-color: var(--contrast);
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: var(--transition);
  transform-origin: center left;
}

/* top line needs a little padding */
.navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}

/**
 * Animate collapse into X.
 */

/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
  width: auto;
}

/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
  width: auto;
}

/**
 * Animate collapse open into hamburger menu
 */

/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
  width: 80%;
}

/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
  opacity: 1;
}

/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
  width: 60%;
}

.navbar-toggler span:nth-child(4) {
  transform: translate(0%, 0%) rotate(0deg);
  visibility: hidden;
  width: 50px;
}

/* Scroller */
.scroller-wrap {
  background-color: transparent;
  z-index: 15;
  top: var(--navbar-height);
  transition: var(--nav-transition);
  /* margin-top: -200px;
  margin-bottom: 200px; */
  height: 0;
}
.scrolled .scroller-wrap {
  max-width: 100%;
}
.scroller {
  width: 0%;
  height: 7px;
  background-color: var(--brand);
  z-index: 10;
  position: relative;
  transition: 1s ease;
}
@media screen and (max-width: 768px) {
  .scroller {
    height: 4px;
  }
}

/* Scroll trigger neccessary as intersection observer
cannot see scroller-wrap position sticky. */
.scroller-trigger {
  position: absolute;
  margin-top: calc(-1px - (2 * var(--navbar-height)));
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  /* background: #e5e5e50d; */
}

@media screen and (max-width: 768px) {
  .scroller-wrap {
    max-width: 80%;
  }
}

/* Breadcrumbs */
#breadcrumbs {
  position: relative;
  z-index: 9;
  top: calc(10px + var(--navbar-height));
  opacity: 0.75;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 90%;
  background: var(--secondary);
  padding: 0.5rem;
}
.current-breadcrumb {
  font-weight: 300;
}

/* Hero */
.hero {
  background-color: var(--secondary);
  overflow-x: hidden;
}
.heading-container {
  z-index: 1;
  height: calc(100vh + 25px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.heading-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.65);
  width: 100%;
}
[data-theme="dark"] .heading-container:before {
  filter: brightness(0.55);
}
.homepage .hero h1 {
  font-weight: 800;
  letter-spacing: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  font-size: 10vw;
}
.hero h1 {
  position: relative;
}
.hero h1 span {
  z-index: 1;
}
.asterisk {
  color: var(--brand);
  font-weight: 900;
  font-size: 115%;
}
.hero h1 b {
  margin-left: 1.5rem;
}
.homepage .hero h2 {
  z-index: 2;
  margin-top: 1rem;
  white-space: nowrap;
  font-size: 2.5vw;
}
[data-theme="light"] .hero {
  --contrast: #e1e1e1;
}
.homepage .hero h1,
.homepage .hero h2 {
  color: var(--contrast);
  text-shadow: 2px 2px rgb(18 22 33 / 43%);
}

@media (min-width: 1400px) {
  .homepage .hero h1 {
    font-size: 10rem;
  }
  .homepage .hero h2 {
    font-size: 2.2rem;
    letter-spacing: 10px;
  }
}

@media (min-width: 1200px) {
  .homepage h1 {
    font-size: 4.5rem;
    line-height: 4.3rem;
  }
  .homepage .h3,
  .homepage h3 {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 991px) {
  .heading-container {
    height: 80vh;
  }
  .homepage h1 {
    font-size: 8.5vw;
    padding: 0 2vw;
  }
  .hero h2 {
    font-size: 7vw;
  }
  .homepage h3 {
    font-size: 4vw;
  }
  .homepage .hero h2 {
    letter-spacing: 2px;
    font-size: 3vw;
  }
  .homepage h4 {
    font-size: 3.8vw;
  }
}

@media screen and (max-width: 768px) {
  .homepage .hero h1 {
    font-size: 10vw;
    padding: 5px 10px;
    letter-spacing: 0.6rem;
  }
  .homepage .hero h1 b {
    margin-left: 0.75rem;
  }
}

/* CTA Section */
section.cta-section {
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  section.cta-section {
    contain: layout;
  }
}

.cta-wrapper {
  position: relative;
  z-index: 5;
  padding-bottom: 4rem;
  background-color: var(--tertiary);
  filter: drop-shadow(var(--shadow));
  display: flex;
  justify-content: center;
  height: 100vh;
  @media (min-width: 768px){
    height: 70vh;
  }
}
[data-theme="light"] .cta-wrapper {
  background-color: var(--brand);
}
@media screen and (min-width: 768px) {
  .cta-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cta-wrapper:before,
.cta-wrapper:after {
  content: "";
  position: absolute;
  top: calc(1px - 6vw);
  left: 0;
  width: 100%;
  height: 6vw;
  background-color: inherit;
  clip-path: polygon(0% 6vw, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}
.cta-wrapper:after {
  top: calc(100% - 1px);
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 6vw), 0% 100%);
}
.cta-wrapper h1 {
  font-size: 4.5rem;
  line-height: 1.2;
}
.cta-wrapper h5 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 1.2rem;
}
.cta-wrapper h5 span {
  font-size: 250%;
  line-height: 0;
}
.cta-wrapper img {
  max-width: 100%;
  border-radius: 5px;
  max-height: 550px;
  width: auto;
  object-fit: contain;
  z-index: 1;
}

.cta-section p,
.cta-section h1,
.cta-section h2,
.cta-section h5 {
  color: var(--primary);
}

[data-theme="dark"] .cta-section h1,
[data-theme="dark"] .cta-section h2,
[data-theme="dark"] .cta-section p,
[data-theme="dark"] .cta-section h5 {
  color: var(--contrast);
}
.cta-section img.topRight {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.cta-atropos {
  position: absolute !important;
  top: -25px;
  right: 0;
}

.atropos-inner {
  overflow: visible !important;
}

@media screen and (max-width: 1200px) {
  .cta-wrapper h1 {
    font-size: 8.5vw;
  }

  .cta-wrapper img {
    max-height: 70%;
    height: 100%;
  }
}

.cta-section {
  padding-top: 0;
}
@media screen and (max-width: 991px) {
  .cta-section h2 {
    font-size: 6.5vw;
  }

  .cta-atropos {
    position: relative !important;
    margin-bottom: -200px;
    top: 0;
  }

  .cta-wrapper img {
    max-height: 400px;
    height: 100%;
  }
}

@media screen and (max-width: 500px) {
  .cta-atropos {
    pointer-events: none;
  }
}

/* CTA */

.cta {
  z-index: 99;
}

@media screen and (max-width: 991px) {
  .cta {
    overflow: hidden;
  }
}

.cta,
.cards {
  border-radius: 10px;
  padding: 50px 50px;
  position: relative;
  width: 100%;
}

.cards {
  padding: 40px;
  display: grid;
  grid-template-rows: auto auto 1fr 1fr;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .cards {
    max-width: 450px;
  }
}
.cards:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--tertiary);
  opacity: 0.85;
  z-index: -1;
}

.cards h4 {
  color: var(--text);
}
.cards h3 {
  color: var(--brand);
  margin-bottom: 2.5rem;
  margin-top: 0;
}

.cards p {
  font-size: 1rem;
  color: var(--text);
  opacity: 1;
}

.cards .sub {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  opacity: 0.85;
}

.cards a {
  position: relative;
}

.cards a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 100%;
  background: var(--brand);
  transition: var(--transition);
}

.cards:hover a:after,
.cards a:hover:after {
  bottom: -7px;
  height: 4px;
}

.offset {
  border-radius: 10px;
  padding: 50px 50px;
  margin-top: -150px;
  position: relative;
  z-index: 1;
}

.atParent {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 400px;
  width: 400px;
}

.cta h3 span {
  opacity: 0.72;
  font-weight: 300;
}

.disclaimer h4 {
  letter-spacing: 2px;
}

.disclaimer p {
  max-width: 100%;
}

.cta-alt p {
}

@media screen and (max-width: 1200px) {
  .atParent {
    height: 350px;
    width: 350px;
    left: 45%;
    top: 60%;
  }
}

@media screen and (max-width: 991px) {
  .atParent {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: none;
  }
}

/* Untangle Section */
section.untangle {
  background-color: var(--secondary);
  padding-bottom: 0;
}

section.untangle h3 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--contrast);
}

section.untangle h4 {
  margin-top: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--contrast);
  opacity: 0.85;
}

/* User Map */
.user-map {
  background-color: var(--secondary);
  padding-top: 80px;
}

.user-map .map-container {
}

.user-map .map-container {
  position: relative;
  background-image: var(--map);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  z-index: 1;
}

[data-theme="light"] .user-map h2 {
  color: var(--brand);
}
.user-map h2 {
  color: var(--contrast);
  padding: 0 25px;
  white-space: nowrap;
  font-size: 3vw;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.dots {
  position: absolute;
  width: 2.5%;
  height: auto;
  max-width: 25px;
  aspect-ratio: 1;
  background-color: var(--brand);
  border-radius: 100px;
  padding: 0;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  .user-map h2 {
    margin-top: -50px;
    font-size: 1rem;
    white-space: normal;
  }
}

/* Get Started */
.get-started {
  position: relative;
  z-index: 10;
}

.get-started:before {
  content: "";
  background-image: url("/assets/img/Arrive-Rabbit-Large.webp");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: -35% center;
  object-fit: contain;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.15;
  z-index: -1;
}
[data-theme="dark"] .get-started:before {
  filter: invert(1);
}

/* Spinner */

.spinner {
  border: 25px solid #f3f3f3;
  border-radius: 50%;
  border-top: 25px solid var(--brand);
  width: 220px;
  height: 220px;
  -webkit-animation: spin 5s linear infinite;
  /* Safari */
  animation: spin 5s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Slider */
.brands-slider {
  overflow: hidden;
  max-width: 1400px;
  z-index: 10;
  padding-top: 2rem;
  padding-bottom: 4rem;
  @media (min-width: 768px) {
    padding-top: 150px;
    padding-bottom: 200px;
  }
}
.brands-slider li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-slider img {
  height: 60px;
  object-fit: contain;
  filter: contrast(1) brightness(1.5);
}
[data-theme="light"] .brands-slider img {
  filter: none;
}
@media (max-width: 991px) {
  .brands-slider img {
    max-width: 115px;
    height: auto;
  }
}

/* Solution */
.solution img.overtop {
  position: absolute;
  top: 50px;
  left: 80px;
  height: 100%;
  width: auto;
}

/* Accordion Binning */

.accordion-body {
  padding: 0;
  max-width: 700px;
}

.accordion-item {
  background: none;
  border: none;
  li {
    font-size: 0.85rem;
    @media (min-width: 991px) {
      font-size: 1.3rem;
    }
  }
}

.accordion-item h5 {
  text-transform: initial;
  letter-spacing: initial;
  padding-right: 2rem;
  font-size: 1.5rem;
}

.accordion-item h6 {
  font-family: "Poppins";
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: initial;
  text-transform: initial;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--contrast);
  padding-left: 0;
}

.accordion-button::after {
  transition: var(--transition);
}
.accordion-button:not(.collapsed)::after {
  transform: scaleY(-1);
  background-image: none;
}

.accordion-button:hover:after {
  color: var(--brand);
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-button:after {
  font-size: 1.7rem;
}

.accordion-button:after {
  font-family: "Material Symbols Outlined";
  font-weight: 600;
  content: "\e5cf";
  background-image: none;
  width: auto;
  height: auto;
  position: absolute;
  right: 5px;
}

@media screen and (min-width: 991px) {
  .accordion-button:after {
    font-size: 3rem;
  }

  .accordion-item h5 {
    font-size: 2.5rem;
  }
}

/* Legal */
.legal {
  margin-top: 40px;
}
.footer-logo svg {
  max-height: 40px;
}

.footer p {
  font-size: 1rem;
}

.footer .socials a {
  color: var(--contrast);
  padding-left: 1rem;
}

.footer .socials a i {
  font-size: 2rem;
}

/* BS Equal Cols*/
/* .row.equal-cols {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row.equal-cols:before,
.row.equal-cols:after {
  display: block;
}
.row.equal-cols > [class*="col-"] {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.row.equal-cols > [class*="col-"] > * {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
} */

@media screen and (min-width: 991px) {
  /* Scrollbars */

  ::-webkit-scrollbar {
    height: 9px;
    /* height of horizontal scrollbar ← You're missing this */
    width: 9px;
    /* width of vertical scrollbar */
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--secondary);
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--contrast);
  }

  ::-webkit-scrollbar-thumb:horizontal {
    background: var(--contrast);
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--brand);
  }
}
