@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --hid-primary: #f58d77;
  --hid-primary-shade: #e47059;
  --hid-secondary: #132540;
  --hid-secondary-tint-1: #44edcf;
  --hid-secondary-shade-1: #13d1b0;
  --hid-tertiary: #00b3ff;
  --hid-background: #132540;
  --hid-white: #ffffff;
  --hid-title-font-color: #0e417c;
  --hid-title-fade-font-color: #4a5361;
  --hid-subtitle-font-color: #848484;
  --hid-body-font-color: #131313;
  --elixir-body-primary: "Inter", sans-serif;
  --elixir-body-secondary: "Inter", sans-serif;
  --elixir-body-tertiary: "Inter", sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  letter-spacing: 0;
}

::selection {
  background: var(--hid-secondary-shade-1);
  -webkit-text-fill-color: white;
}

::-moz-selection {
  background: var(--hid-secondary-shade-1);
  -webkit-text-fill-color: white;
}

::-webkit-selection {
  background: var(--hid-secondary-shade-1);
  -webkit-text-fill-color: white;
}

.font-primary {
  font-family: var(--elixir-body-primary);
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

.font-secondary {
  font-family: var(--elixir-body-secondary);
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

.font-tertiary {
  font-family: var(--elixir-body-tertiary);
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

.text-primary {
  color: var(--hid-primary) !important;
}

.text-primary-gradient {
  background: linear-gradient(90deg, #f58d77 0%, #4f90ac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-secondary {
  color: var(--hid-secondary) !important;
}

.text-body {
  color: var(--hid-body-font-color) !important;
}

.text-title {
  color: var(--hid-title-font-color) !important;
}

.text-grey {
  color: var(--hid-subtitle-font-color) !important;
}

.text-title-fade {
  color: var(--hid-title-fade-font-color) !important;
}

.btn {
  border-color: transparent;
  border-radius: 50px;
}

.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: none;
  border-color: transparent !important;
}

.btn-primary {
  color: #fff;
  background-color: var(--hid-primary);
  font-family: var(--elixir-body-tertiary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #fff;
  background-color: var(--hid-primary-shade);
}

.btn-default {
  color: var(--hid-primary);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  color: var(--hid-primary-shade);
  background-color: rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--hid-secondary);
  --swiper-navigation-size: 65px;
}

.btn-elixir-play {
  background-color: rgba(255, 255, 255, 0.5);
}

.btn-elixir-play:before {
  border-color: transparent;
}

#bp_loader {
  position: absolute;
  width: 80px !important;
  width: 80px !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

nav .container {
  display: flex;
  gap: 30px;
}

nav a {
  position: relative;
  padding: 8px 3px;
  display: none; /* todo: show if needed */
}

nav .active {
  /* color: var(--hid-secondary-shade-1) !important; */
}

@media (max-width: 991px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    height: 70px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
  nav > img {
    position: absolute;
    top: 20px;
    left: 15px;
    height: 38px;
  }
  nav .container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    padding: 16px;
    background: white;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.32s ease-in-out;
    max-width: 100%;
  }
  nav.active .container {
    transform: translateX(0);
    pointer-events: all;
    transition: transform 0.32s ease-in-out;
  }
  nav .container {
    flex-direction: column;
    padding-top: 50px;
  }
  nav button {
    position: fixed;
    right: 5px;
    outline: none;
    border: none;
    padding: 1% 1.5%;
    top: 10px;
    display: block;
    color: var(--white);
    background-color: var(--charcoal);
    pointer-events: all;
    cursor: pointer;
    z-index: 9999;
    display: none; /* todo: show if needed */
  }
  nav button div {
    transform: rotate(0) translateY(0);
    transition: width 0.18s ease-in-out, transform 0.18s ease-in-out;
    width: 50px;
    height: 2px;
    border-radius: 2px;
    background: var(--hid-primary-shade);
    margin: 15px auto;
  }
  nav button div:last-of-type {
    width: 40px;
  }
  nav.active button div:first-of-type {
    transform: rotate(40deg) translateY(10px);
    transition: width 0.18s ease-in-out, transform 0.18s ease-in-out;
    width: 40px;
  }
  nav.active button div:last-of-type {
    transform: rotate(-40deg) translateY(-11px);
    transition: width 0.18s ease-in-out, transform 0.18s ease-in-out;
    width: 40px;
  }
}

@media (min-width: 992px) {
  nav {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px;
  }
  nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
  nav .container > img {
    position: absolute;
    left: 15px;
    top: 15px;
  }
}

@media (min-width: 1400px) {
  nav .container {
    max-width: 1400px;
  }
}

#header-section {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

#header-section .jumbo-thumbnail::before {
  content: "";
  transform: translate(-19%, 0%) rotate(30deg) scale(1.8);
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  max-height: 1100px;
  max-width: 1100px;
  border-radius: 100%;
  background-color: var(--hid-primary);
  transform-origin: 0 100%;
  box-shadow: 0px 4px 79px 11px rgba(0, 0, 0, 0.03);
  z-index: -1;
}

.jumbo-thumbnail-inner {
  position: relative;
}

.jumbo-thumbnail-inner > img {
  max-width: 100%;
  filter: drop-shadow(38px 67px 92px rgba(63, 31, 25, 0.27));
  margin-bottom: 10%;
}

.jumbo-thumbnail-inner > img.jumbo-mobile {
  position: absolute;
  right: 7%;
  bottom: -8%;
  width: 22%;
  background: white;
  border-radius: 0.5vw;
  padding: 1.5% 0.3%;
  box-shadow: 0px 4px 79px 11px rgba(0, 0, 0, 0.03);
  filter: blur(0);
}

#header-section p em {
  color: var(--hid-secondary);
  font-style: normal;
}

@media (max-width: 991px) {
  .fs-1 {
    font-size: 20px !important;
  }
  .text-title {
    font-size: 38px !important;
  }
  .text-subtitle {
    font-size: 28px !important;
  }
  .btn-lg {
    padding: 0.5rem 3rem;
  }
}

@media (min-width: 992px) {
  #header-section h1 {
    font-size: 3dvh !important;
  }
  #header-section h2 {
    font-size: 4.5dvh !important;
    line-height: 5dvh !important;
  }
  #header-section h2 + p {
    font-size: 2.5dvh !important;
  }
  #header-section h3 {
    font-size: 2dvh !important;
  }
  #header-section h3 + p {
    font-size: 1.8dvh !important;
  }
}

@media (min-width: 1200px) {
  #header-section .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  #header-section .container {
    max-width: 1400px;
  }
}

@media (min-width: 1500px) {
  #header-section .container .col-lg-7 > * {
    width: calc(100% + 50px);
  }
}

@media (min-width: 1400px) {
  #header-section .container {
    max-width: 1400px;
  }
}

.video-section > .container {
  max-width: 900px;
}

.video-section .bg-holder::before {
  display: block;
  /* background-color: #4324c7; */
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  /* filter: blur(5px); */
  /* background-image: url(/assets/img/jumbo-1-0.png) !important; */
  background-size: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  /* transform: scale(1.1); */
}

.video-section .video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
}

.video-section .btn-elixir-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

@media (max-width: 575px) {
  .video-section .video .video-thumbnail {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
    height: 50vw;
    margin: 0;
    border-radius: 32px;
  }
  .video-section .video .video-thumbnail .bg-holder {
    border-radius: 0 !important;
  }
  .video-section .video .video-content .logo {
    width: auto !important;
    height: 50px !important;
    margin-left: auto;
    display: block;
  }
  .video-section .video strong {
    left: 1.8rem;
    right: auto;
    top: 25px;
  }
}

@media (min-width: 992px) {
  .video-section .video-content > div {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
  .video-section .video-content > div > * {
    flex: 1;
  }
  .video-section .video-content > div > p {
    font-size: 1.1rem !important;
  }
}

#features-section {
  overflow: hidden;
}

#features-section .features {
  position: relative;
}

#features-section .features .feature {
  position: absolute;
  top: 0;
  left: calc(var(--elixir-gutter-x) * 0.5);
  right: calc(var(--elixir-gutter-x) * 0.5);
  height: 100%;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 30px;
  /* background: blue !important; */
}

#features-section .features .feature.active {
  pointer-events: all;
  opacity: 1;
}

#features-section .features > .feature:first-child {
  position: static;
}

#features-section .feature .feature-image {
  position: relative;
  display: block;
  margin: 0 auto 30px;
  width: 100%;
  padding-bottom: calc(100% * 0.656);
  overflow: hidden;
}
#features-section .feature img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}

@media (min-width: 992px) {
  #features-section .feature .feature-image {
    width: 40vw;
    padding-bottom: calc(40vw * 0.66);
    overflow: hidden;
  }

  #features-section {
    background-repeat: no-repeat;
    background-position: 2vw 55vh;
    background-size: 80vw;
    background-image: url(/assets/img/features-bg.svg) !important;
  }
  #features-section h2 {
    font-size: 4.5dvh !important;
    line-height: 5dvh !important;
  }
  #features-section .feature .feature-destination {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    /* border: 1px solid red; */
  }
  #features-section .feature .feature-item {
    position: absolute;
    text-align: left;
    width: 20vw;
    left: 50%;
    top: 50%;
    margin-left: -10vw;
    padding: 10px;
  }
  #features-section .feature .feature-item h3 {
    font-size: 0.9vw !important;
    max-width: 18vw;
  }
  #features-section .feature .feature-item p {
    font-size: 0.7vw !important;
  }
  #features-section .feature .feature-items > .feature-item.feature-contextual-department {
    transform: translate(calc(-40vw / 2 - 20vw / 2 - 3vw), -28vh);
  }
  #features-section .feature .feature-contextual-department-destination {
    left: 8.5vw;
    top: 4.2vw;
    width: 10vw;
    height: 2.8vw;
  }
  #features-section .feature .feature-items > .feature-item.feature-summaries {
    transform: translate(calc(-40vw / 2 - 20vw / 2 - 3vw), -10vh);
  }
  #features-section .feature .feature-summaries-destination {
    left: 8.5vw;
    top: 6.5vw;
    width: 10vw;
    height: 2.8vw;
  }
  #features-section .feature .feature-items > .feature-item.feature-chat {
    transform: translate(calc(-40vw / 2 - 20vw / 2 - 3vw), 8vh);
  }
  #features-section .feature .feature-chat-destination {
    left: 3vw;
    top: 23.5vw;
    width: 5vw;
    height: 2.8vw;
  }
  #features-section .feature .feature-items > .feature-item.feature-filter {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -31vh);
  }
  #features-section .feature .feature-filter-destination {
    left: 8vw;
    top: 0.5vw;
    width: 21vw;
    height: 2.5vw;
  }
  #features-section .feature .feature-items > .feature-item.feature-alert {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -13vh);
  }
  #features-section .feature .feature-alert-destination {
    left: 31vw;
    top: 10vw;
    width: 6vw;
    height: 5vw;
  }
  #features-section .feature .feature-items > .feature-item.feature-cards {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), 3vh);
  }
  #features-section .feature .feature-cards-destination {
    left: 8vw;
    top: 12vw;
    width: 22vw;
    height: 4vw;
  }
  #features-section .feature .feature-items > .feature-item.feature-actions {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), 12vh);
  }
  #features-section .feature .feature-actions-destination {
    left: 31vw;
    top: 20vw;
    width: 8vw;
    height: 5vw;
  }
  #features-section .feature .feature-items > .feature-item.feature-snapshots {
    transform: translate(calc(-40vw / 2 - 20vw / 2 - 3vw), 8vh);
  }
  #features-section .feature .feature-snapshots-destination {
    left: 8vw;
    top: 10vw;
    width: 22vw;
    height: 4vw;
  }
  #features-section .feature .feature-items > .feature-item.feature-sort {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -1vh);
  }
  #features-section .feature .feature-sort-destination {
    left: 26vw;
    top: 18vw;
    width: 4vw;
    height: 4vw;
  }
  #features-section #feature-item-2.feature .feature-items > .feature-item.feature-alert {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -15.5vh);
  }
  #features-section #feature-item-2.feature .feature-alert-destination {
    left: 31vw;
    top: 10vw;
    width: 6vw;
    height: 5vw;
  }
  #features-section #feature-item-3.feature .feature-items > .feature-item.feature-alert {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -15.5vh);
  }
  #features-section #feature-item-3.feature .feature-alert-destination {
    left: 31vw;
    top: 10vw;
    width: 6vw;
    height: 5vw;
  }
  #features-section #feature-item-3.feature .feature-items > .feature-item.feature-alert {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -15.5vh);
  }
  #features-section #feature-item-3.feature .feature-alert-destination {
    left: 31vw;
    top: 3vw;
    width: 6vw;
    height: 5vw;
  }
  #features-section #feature-item-3.feature .feature-items > .feature-item.feature-sort {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -1vh);
  }
  #features-section #feature-item-3.feature .feature-sort-destination {
    left: 31vw;
    top: 10vw;
    width: 6vw;
    height: 5vw;
  }
  #features-section #feature-item-3.feature .feature-items > .feature-item.feature-actions {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), 12vh);
  }
  #features-section #feature-item-3.feature .feature-actions-destination {
    left: 31vw;
    top: 22vw;
    width: 8vw;
    height: 5vw;
  }
  #features-section #feature-item-4.feature .feature-items > .feature-item.feature-alert {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -15.5vh);
  }
  #features-section #feature-item-4.feature .feature-alert-destination {
    left: 31vw;
    top: 5vw;
    width: 6vw;
    height: 5vw;
  }
  #features-section #feature-item-4.feature .feature-items > .feature-item.feature-sort {
    transform: translate(calc(20vw / 2 + 40vw / 2 + 3vw), -1vh);
  }
  #features-section #feature-item-4.feature .feature-sort-destination {
    left: 31vw;
    top: 15vw;
    width: 6vw;
    height: 5vw;
  }

  #features-section::before {
    content: "";
    transform: translate(25%, 0%) rotateZ(128deg) scale(1.5);
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    margin-left: 50%;
    max-height: 35vw;
    max-width: 70vw;
    border-radius: 100%;
    background-color: var(--hid-primary);
    transform-origin: 0;
    box-shadow: 0px 4px 79px 11px rgba(0, 0, 0, 0.03);
    z-index: -1;
  }
}

#contact-section {
  background-color: var(--hid-background);
  color: var(--hid-background);
  max-height: 350px;
  min-height: 350px;
}

#contact-section p {
  font-size: 2.2vh !important;
  max-width: 600px;
  margin: 0 auto;
  color: #7a8ca8 !important;
}

#contact-section .btn {
  padding: 5px 50px;
}

@media (min-width: 992px) {
  #contact-section p {
    font-size: 2.2vh !important;
    max-width: 600px;
    margin: 0 auto;
  }
}

footer {
  background-color: var(--hid-background);
}

/* ----------- iPad Pro ----------- */
/* ----------- iPad Pro ----------- */
/* Portrait */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
}

html,
body {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

body {
  background: linear-gradient(171.71deg, #ffffff 46.66%, #febdb0 149.94%);
}

body::before {
  display: block;
  content: "";
  position: fixed;
  left: 0%;
  right: 0%;
  top: 0%;
  height: 10px;
  background: linear-gradient(90deg, #ff8672 0%, #c0e8fa 100%);
  z-index: 99999;
}

@media (max-width: 991px) {
  body::before {
    height: 7px;
  }
  svg.leader-line {
    display: none;
  }
}

@media (min-width: 992px) {
  .main > section {
    scroll-snap-align: start;
    min-height: 100dvh;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
4