@font-face {
  font-family: neue;
  src: url(../fonts/NeueMachina-Medium.9b0d1b5.woff);
}
@font-face {
  font-family: neue-reg;
  src: url(../fonts/NeueMachina-Regular.37d032e.woff);
}
@font-face {
  font-family: neue-light;
  src: url(../fonts/PPNeueMachina-InktrapLight.otf);
}
@font-face {
  font-family: nbi;
  src: url(../fonts/NBInternational.071ca39.woff2);
}
@font-face {
  font-family: nbi-bold;
  src: url(../fonts/NBInternational-Bold.1b215f4.woff2);
}
@font-face {
  font-family: nbi-light;
  src: url(../fonts/NBInternational-Light.1f26714.woff2);
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --clr-primary: #FFD93D;
  --clr-secondary: #267af3;
  --clr-text: #121722;
  --fs-700: 8.125rem;
  --fs-600: 6.25rem;
  --fs-500: 4.625rem;
  --fs-450: 2rem;
  --fs-400: 1.5625rem;
  --fs-300: 1.375rem;
  --fs-250: 1.3125rem;
  --fs-200: 1.25rem;
  --fs-100: 1.125rem;
  --fs-50: 0.9375rem;
  --test: clamp(25rem, 26.316vw + 8.125rem, 39.375rem);
}

body {
  font-family: neue;
  color: var(--clr-text);
}

.container {
  width: 80%;
  margin-inline: auto;
}

h2 {
  font-size: 67px;
  font-family: neue-reg;
  text-align: center;
  line-height: 1.35;
}

.primary-btn {
  font-family: nbi;
  border: none;
  outline: none;
  background-color: var(--clr-secondary);
  color: white;
  padding: 0.8em 1.5em;
  line-height: 1;
  border-radius: 100px;
  font-size: clamp(1.1875rem, 0.875rem + 0.625vw, 1.5rem);
  cursor: pointer;
}

.card-wrapper {
  cursor: pointer;
  position: relative;
  width: var(--test);
  height: var(--test);
}

.card-wrapper.hover .card-top .side {
  transform: rotateX(0deg);
}

.card-wrapper.hover .card-top .side:after {
  opacity: 0;
  transition-delay: 0.2s;
}

.card-wrapper.hover .card-main .side:after {
  opacity: 1;
}

.card-wrapper.hover .card-main .side2 {
  transform: rotateY(-90deg) translateX(250px);
}

.card-wrapper.hover .card-main .side1 {
  transform: rotateY(-90deg) translateX(-250px);
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--test);
  height: var(--test);
  transition: 0.5s linear all;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background-size: 500px 350px;
}

.card h2 {
  color: white;
  font-family: sans-serif;
  width: 200%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .side {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: var(--test);
  transition: 0.5s linear transform;
  transition: 1s cubic-bezier(0.5, -0.03, 0.58, 1.08) transform;
}

.card .side:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 1s cubic-bezier(0.5, -0.03, 0.58, 1.08) opacity;
}

.card .side1 {
  background-position: 0% 40%;
}

.card .side2 {
  background-position: 100% 40%;
}

.card .side2 h2 {
  transform: translateX(-50%);
}

.card.card-main {
  transform-origin: bottom;
}

.card.card-main .side {
  background-image: url(../images/1.png);
}

.card.card-main .side1 {
  transform-origin: left;
}

.card.card-main .side2 {
  transform-origin: right;
}

.card.card-main .side:after {
  opacity: 0;
}

.card.card-main .side1:after {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
}

.card.card-main .side2:after {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
}

.card.card-top {
  transform-origin: bottom;
}

.card.card-top .side1 {
  transform-origin: right;
  transform: rotateY(-90deg) translateX(-250px);
}

.card.card-top .side1:after {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.card.card-top .side2 {
  transform-origin: left;
  transform: rotateY(-90deg) translateX(-250px);
}

.card.card-top .side2:after {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.card.card-top .side {
  background-image: url(../images/idea-hover.png);
}

.style-3,
.style-4,
.style-5,
.style-6 {
  position: relative;
}
.style-3::before,
.style-4::before,
.style-5::before,
.style-6::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 2px;
  border-radius: 4px;
  background-color: var(--clr-secondary);
  bottom: -4px;
  left: -5%;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
}
.style-3:hover::before,
.style-4:hover::before,
.style-5:hover::before,
.style-6:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.style-4::before {
  height: 1px;
  background-color: var(--clr-text);
  bottom: 0px;
}

.style-5::before {
  background-color: var(--clr-text);
  bottom: -4px;
  width: 106%;
  left: -3%;
}

.style-6::before {
  background-color: var(--clr-text);
  bottom: 0px;
}

.line {
  overflow: hidden;
}

.scrollReveal,
h1,
h2 {
  transform-origin: left;
}
.scrollReveal .line-wrapper,
h1 .line-wrapper,
h2 .line-wrapper {
  overflow: hidden;
}
h1 .line-wrapper {
    line-height: .9;
}
.scrollReveal .line,
h1 .line,
h2 .line {
  transform-origin: left;
}
.scrollReveal .line .word,
h1 .line .word,
h2 .line .word {
  transform-origin: left;
}

.pReveal {
  transform-origin: left;
}

.btnReveal {
  transform-origin: left;
}
.btnReveal.addTransition {
  transition: all 0.25s ease-in-out;
}

.pin-spacer {
  width: max-content !important;
}
.pin-spacer .main-text {
  width: max-content !important;
  min-width: max-content !important;
}

#logo {
  font-size: 2.5rem;
  text-transform: none;
}
#logo svg {
  width: 130px;
}
#logo svg g {
  transition: 0.15s ease-out;
}
#logo span {
  color: var(--clr-secondary);
}
header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  line-height: 1;
  transition: 0.3s;
  padding-top: 70px;
  padding-bottom: 40px;
  z-index: 1000;
}
header.mobile-open.mobile-open {
  background-color: var(--clr-secondary) !important;
  box-shadow: none !important;
  padding-top: 35px !important;
}
header.mobile-open.mobile-open .header-container a {
  color: white;
}
header.mobile-open.mobile-open .header-container a span {
  color: var(--clr-primary) !important;
}
header.mobile-open.mobile-open .header-container svg > g:not(:nth-child(5)) {
  fill: white;
  stroke: white;
}
header.mobile-open.mobile-open .header-container svg > g:nth-child(5) {
  fill: var(--clr-primary);
  stroke: var(--clr-primary);
}
header.onScroll {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(17, 23, 35, 0.02), 0 2px 4px -1px rgba(19, 22, 35, 0.04);
}
header.onScroll label {
  background-color: var(--clr-secondary);
}
header.onScroll label svg path {
  stroke: white !important;
}
header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-container a {
  text-decoration: none;
  color: var(--clr-text);
  text-transform: uppercase;
  font-size: 14px;
  transform-origin: left;
}
header .header-container nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
header .header-container .user-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header-container .user-actions > a {
  font-family: nbi;
  text-transform: none;
  padding: 0.7em 1.45em;
  padding-top: 0.6em;
  border: 2px solid var(--clr-secondary);
  border-radius: 100px;
  line-height: 1;
  font-size: 15px;
  transform-origin: left;
}
header .header-container .user-actions > a.addTransition {
  transition: 0.25s;
}
header .header-container .user-actions .login {
  color: var(--clr-secondary);
}
header .header-container .user-actions .login:hover {
  color: white;
  background-color: var(--clr-secondary);
}
header .header-container .user-actions .get-started {
  color: white;
  background-color: var(--clr-secondary);
}
header .header-container .user-actions .get-started:hover {
  color: var(--clr-secondary);
  background-color: transparent;
}

.mobile-menu {
  background-color: var(--clr-secondary);
  width: 100%;
  position: fixed;
  z-index: 900;
  display: none;
}
.mobile-menu .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100dvh;
  margin-top: 9rem;
}
.mobile-menu a {
  font-size: 8vw;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-menu .user-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 160px;
  margin-top: 5rem;
}
.mobile-menu .user-actions a {
  color: var(--clr-text);
  background-color: var(--clr-primary);
  font-size: 17px;
  border-radius: 100px;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  width: 100%;
  padding: 1em 2em;
  min-width: max-content;
  font-family: nbi;
}

#hero {
  width: 100%;
  height: 100vh;
  background-color: var(--clr-primary);
  padding-top: 5rem;
  position: relative;
  min-height: 800px;
}
#hero .container {
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#hero .container h1 {
  text-transform: uppercase;
  font-size: clamp(2.9375rem, 1.8333rem + 4.4167vw, 6.25rem);
  font-family: neue-reg;
  max-width: 11ch;
  line-height: 1.15;
  overflow: hidden;
}
#hero .container h1 span {
  color: var(--clr-secondary);
}
#hero .container h1 .line {
  overflow: hidden;
}
#hero .container h1 .word {
  transform-origin: left;
}
#hero .container .subtitle {
  font-size: clamp(1.0625rem, 0.875rem + 0.375vw, 1.25rem);
  font-family: nbi-light;
  max-width: 40vw;
}
#hero .container .subtitle .line {
  transform-origin: left;
}
#hero .container > img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 630px;
}
#hero .container .card-wrapper {
  position: absolute;
  right: 7%;
  bottom: 0;
  max-width: 630px;
  pointer-events: none;
}
#hero .container #cta {
  margin-top: 3.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: neue-light;
  transform-origin: left;
}
#hero .container #cta.addTransition {
  transition: 0.5s;
}
#hero .container #cta img {
  filter: invert(1);
  width: clamp(1.938rem, 1.138vw + 1.674rem, 2.813rem);
}
#hero .container #cta:hover {
  box-shadow: 20px 20px 60px #c5a84a, -20px -20px 60px #ffe464;
}

#about-us {
  padding-top: clamp(6.25rem, 7.273vw + 2.614rem, 11.25rem);
  padding-bottom: clamp(2.5rem, 2.727vw + 1.136rem, 4.375rem);
}
#about-us .container h2 {
  max-width: 22ch;
  margin-inline: auto;
  font-weight: 100;
  font-size: clamp(2.5rem, 0.25rem + 4.5vw, 4.75rem);
}
#about-us .container p {
  font-family: nbi-light;
  text-align: center;
  font-size: clamp(1.125rem, 0.875rem + 0.5vw, 1.375rem);
  line-height: 1.3;
  margin-top: 1.09em;
}
#about-us .container p span {
  color: var(--clr-secondary);
  display: block;
  font-family: nbi-light;
}

.info-section {
  padding-top: 12.5rem;
  position: relative;
}
.info-section .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.info-section .container .left-side {
  padding: clamp(5.563rem, 5.647vw + 2.739rem, 10.625rem);
  padding-right: clamp(7.5rem, 4.167vw + 6.458rem, 10.625rem);
  padding-left: 20%;
  background-color: var(--clr-primary);
  position: relative;
}
.info-section .container .left-side .sub-title {
  text-transform: uppercase;
  font-size: var(--fs-50);
  margin-bottom: 2.125rem;
}
.info-section .container .left-side .title {
  font-size: clamp(2.4375rem, 0.3125rem + 4.25vw, 4.5625rem);
  margin-bottom: 0.335em;
  line-height: 1.2;
  font-family: neue-light;
}
.info-section .container .left-side p {
  font-size: clamp(1.0625rem, 1rem + 0.125vw, 1.125rem);
  margin-bottom: 1em;
  font-family: nbi-light;
}
.info-section .container .left-side a {
  background-color: var(--clr-text);
  border: 2px solid var(--clr-text);
  border-radius: 100px;
  color: white;
  text-decoration: none;
  font-size: clamp(1.0625rem, 1rem + 0.125vw, 1.125rem);
  font-family: nbi;
  padding: 0.89em 2.78em;
  margin-top: 3rem;
  display: block;
  width: max-content;
}
.info-section .container .left-side a:hover {
  background-color: transparent;
  color: var(--clr-text);
}
.info-section .container .left-side::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-color: var(--clr-primary);
  z-index: -1;
}
.info-section .container .right-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.info-section .container .right-side > div:nth-child(2),
.info-section .container .right-side > div:nth-child(3) {
  background: #ffd93d26;
}
.info-section .container .right-side > div:nth-child(4) {
  background: #fffdf5;
}
.info-section .container .right-side .box {
  padding: 60px;
  padding-inline: clamp(2.188rem, 2.083vw + 1.667rem, 3.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info-section .container .right-side .box .icon-1 svg {
  display: none;
  transform: translate3d(-20px, -20px, 0px) !important;
}
.info-section .container .right-side .box .title {
  max-width: 150px;
  font-size: clamp(1.1875rem, 0.8125rem + 0.75vw, 1.5625rem);
  line-height: 1.1;
  font-family: neue-light;
}
.info-section .container .right-side .box .info {
  font-family: nbi-light;
  margin-top: 1.0625rem;
  color: #959697;
  line-height: 1.1;
}
.info-section svg {
  width: clamp(15.625rem, 13vw + 9.125rem, 23.75rem);
  position: absolute;
  top: 0%;
  left: 0;
  right: 0;
  margin: auto;
}
.info-section svg #mask g {
  transform: translateY(46px);
  stroke: black;
  stroke-width: 0px;
}
.info-section svg image {
  width: 250px;
}
.info-section svg path {
  fill: white;
  stroke: black;
  stroke-width: 95px;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.info-section svg path.startAnimation {
  animation-name: svgAnim;
}

#sectors {
  padding: 90px 0px;
  padding-top: clamp(1.25rem, 11.785vw - 6.307rem, 5.625rem);
}
#sectors .h3-wrapper {
  padding: clamp(1.25rem, 8vw - 2.75rem, 6.25rem) 0;
  padding-top: clamp(0.75rem, 8vw - 2.75rem, 6.25rem);
  border-top: 1px solid #1217223d;
  border-bottom: 1px solid #1217223d;
}
#sectors .h3-wrapper h3 {
  font-size: clamp(2.9375rem, -0.375rem + 6.625vw, 6.25rem);
  line-height: 0;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--clr-text);
  font-family: neue-reg;
  font-weight: 400;
}
#sectors .tag-list span {
  font-family: "neue-light";
}

#companies {
  padding-top: clamp(0rem, 33.67vw - 21.591rem, 12.5rem);
}
#companies .container .left-side {
  background-color: var(--clr-secondary);
}
#companies .container .left-side > * {
  color: white;
}
#companies .container .right-side > div:nth-child(2) {
  background: none;
}
#companies .container .right-side > div:nth-child(3) {
  background: #d4e6ff8f;
}
#companies .container .right-side > div:nth-child(4) {
  background: #e8eff763;
}

#choose-us {
  min-height: 100dvh;
  text-align: center;
}
#choose-us .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 100px;
  padding-bottom: 52vh;
  position: relative;
}
#choose-us .container .main-text {
  position: absolute;
  top: 40vh;
}
#choose-us .container .main-text h2 {
  font-size: clamp(3.6875rem, -0.75rem + 8.875vw, 8.125rem);
  font-weight: normal;
}
#choose-us .container .main-text p {
  font-size: clamp(1.125rem, 0.875rem + 0.5vw, 1.375rem);
  font-family: nbi-light;
  font-weight: 100;
  color: #6f7075;
  max-width: 28ch;
  line-height: 1.2;
  margin: 0 auto;
  transform-origin: left;
  margin-top: 0.8em;
}
#choose-us .container .why-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  top: 0;
}
#choose-us .container .why-boxes .whybox {
  background: rgba(255, 217, 61, 0.9);
  backdrop-filter: blur(8px);
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 300px;
  min-height: 380px;
  height: max-content;
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: clamp(7.5rem, 14.458vw + 4.292rem, 18.75rem);
  min-width: 230px;
}
#choose-us .container .why-boxes .whybox svg {
  width: clamp(3.625rem, 6.091vw + 1.722rem, 7.813rem);
  margin: 0 auto;
}
#choose-us .container .why-boxes .whybox .title {
  font-size: clamp(1.3125rem, 0.625rem + 1.375vw, 2rem);
  font-weight: 500;
  font-family: neue;
  line-height: 1.1;
  margin-bottom: 0.95em;
}
#choose-us .container .why-boxes .whybox .subtitle {
  font-size: clamp(1.125rem, 0.9375rem + 0.375vw, 1.3125rem);
  font-weight: 400;
  font-family: nbi;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.5em;
  margin-top: 1.8em;
}
#choose-us .container .why-boxes .whybox p {
  font-size: clamp(1.125rem, 1rem + 0.25vw, 1.25rem);
  font-weight: 300;
  font-family: nbi-light;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
#choose-us .container .why-boxes > div:nth-child(1) {
  margin-top: 17.5%;
}
#choose-us .container .why-boxes > div:nth-child(2) {
  margin-top: 49%;
}
#choose-us .container .why-boxes > div:nth-child(3) {
  margin-top: 10.5%;
}
#choose-us .container .extra-padding {
  padding-bottom: 10vh;
}

footer {
  padding-top: clamp(4.375rem, 7.661vw + 2.555rem, 10.313rem);
  background-color: var(--clr-primary);
}
footer .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .container h2 {
  font-size: clamp(3.4375rem, 0.625rem + 5.625vw, 6.25rem);
  line-height: 1.05;
  font-weight: normal;
  color: var(--clr-text);
  max-width: 13ch;
  text-transform: uppercase;
}
footer .container h2 span {
  color: var(--clr-secondary);
}
footer .container p {
  font-family: nbi-light;
  font-size: clamp(1.0625rem, 1rem + 0.125vw, 1.125rem);
  max-width: 41ch;
  margin-top: 1.5em;
}
footer .footer-text {
  margin-top: clamp(1.563rem, 3.629vw + 0.701rem, 4.375rem);
  position: relative;
}
footer .footer-text a {
  margin-top: 5rem;
  background-color: var(--clr-secondary);
  border-radius: 100px;
  height: clamp(5.063rem, 7.115vw + 4.885rem, 12rem);
  width: clamp(14.375rem, 22.179vw + 13.821rem, 36rem);
  display: block;
  overflow: hidden;
  margin: auto;
  inset: 0;
  position: absolute;
  z-index: 1;
  transition: 0.2s;
}
footer .footer-text a:hover {
  background-color: #1e62c4;
}
footer .footer-text a .h3-wrapper {
  position: absolute;
  margin: 0;
  inset: 0;
  display: flex;
  place-items: center;
}
footer .footer-text a .h3-wrapper .scroller .scroller__inner h3 {
  color: white;
}
footer .footer-text h3 {
  font-size: clamp(3rem, 1.9167rem + 4.3333vw, 6.25rem);
  font-weight: 100;
  font-family: neue-reg;
  text-transform: uppercase;
  color: rgba(23, 28, 41, 0.1);
}
footer .container--footer {
  margin-top: 3.125rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: neue-reg;
  font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.25rem);
}
footer .container--footer a {
  text-decoration: none;
  color: var(--clr-text);
}
footer .last-part {
  background-color: #ebbc24;
  padding: 6.25rem 0px;
  margin-top: 5rem;
}
footer .last-part .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-family: nbi-light;
}
footer .last-part .container .address {
  justify-self: flex-start;
  text-align: left;
}
footer .last-part .container > a {
  justify-self: flex-end;
  font-weight: bold;
  font-family: nbi;
  color: var(--clr-text);
}
footer .last-part .container .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
footer .last-part .container .links a {
  text-decoration: none;
  color: var(--clr-text);
}
footer .last-part .container * {
  font-family: nbi-light;
  text-decoration: none;
}

.scroller.scroller-balls {
  margin-bottom: calc(0px - clamp(2.813rem, 2.917vw + 2.083rem, 5rem));
}
.scroller.scroller-balls div {
  width: clamp(9.375rem, 8.333vw + 7.292rem, 15.625rem);
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: white;
  font-size: var(--fs-400);
  font-weight: 100;
  font-family: neue-reg;
  display: grid;
  place-items: center;
  background-position: center !important;
  background-size: cover !important;
  overflow: hidden;
  position: relative;
  animation: rotate 90s linear infinite;
}
.scroller.scroller-balls div::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 29, 40, 0.2);
}
.scroller.scroller-balls div span {
  position: relative;
  z-index: 10;
  color: white;
}
.scroller.scroller-balls .healthcare {
  background: url(https://images.unsplash.com/photo-1505576399279-565b52d4ac71?q=80&w=2187&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}
.scroller.scroller-balls .e-commerce {
  background: url(https://images.unsplash.com/photo-1522204523234-8729aa6e3d5f?q=80&w=2340&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}
.scroller.scroller-balls .transportation {
  background: url(https://images.unsplash.com/photo-1488263590619-bc1fff43b6c1?q=80&w=2148&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  animation-direction: alternate-reverse;
}
.scroller.scroller-balls .education {
  background: url(https://images.unsplash.com/photo-1568667256549-094345857637?q=80&w=2215&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  animation-direction: alternate-reverse;
}
.scroller.scroller-balls .scroller__inner {
  gap: 50rem;
  animation: scroll-balls 80s linear infinite !important;
}
.scroller.scroller-balls .scroller__inner--delay {
  animation: scroll-balls 80s -20s linear infinite !important;
}

.scroller-balls-bottom {
  margin-bottom: 0px;
  margin-top: calc(0px - clamp(4.063rem, 2.917vw + 3.333rem, 6.25rem));
}

.scroller__inner {
  padding-block: 3rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
}

.scroller[data-animated=true] {
  overflow: hidden;
}

.scroller[data-animated=true] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller[data-direction=left] {
  --_animation-direction: forwards;
}

.scroller[data-speed=fast] {
  --_animation-duration: 20s;
}

.scroller[data-speed=middle] {
  --_animation-duration: 50s;
}

.scroller[data-speed=slow] {
  --_animation-duration: 70s;
}

.scroller[data-speed=veryslow] {
  --_animation-duration: 5s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 5rem));
  }
}
@keyframes scroll-balls {
  to {
    transform: translate(calc(-50% - 25rem));
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
label {
  display: block;
  cursor: pointer;
  position: relative;
  max-width: 150px;
  max-height: 150px;
  background: white;
  width: 55px;
  height: 55px;
  border-radius: 100%;
}
label input {
  pointer-events: none;
  display: none;
}

.menu--1 path {
  fill: none;
  stroke: var(--clr-secondary);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  --length: 0;
  --offset: -50;
  stroke-dasharray: var(--length) var(--total-length);
  stroke-dashoffset: var(--offset);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), stroke 0s;
}

circle {
  fill: #fff3;
  opacity: 0;
}

label:hover circle {
  opacity: 1;
}

.cross input:checked + svg .line--1,
.cross input:checked + svg .line--3 {
  --length: 22.627416998;
}

.cross input:checked + svg .line--2 {
  --length: 0;
}

.back input:checked + svg .line--1,
.back input:checked + svg .line--3 {
  --length: 8.602325267;
}

.menu--1 {
  display: none;
}

.menu--1 svg {
  transform: rotate(90deg);
}

.menu--1 .line--1,
.menu--1 .line--3 {
  --total-length: 126.64183044433594;
}

.menu--1 .line--2 {
  --total-length: 70;
}

.menu--1 input:checked + svg .line--1,
.menu--1 input:checked + svg .line--3 {
  --offset: -94.1149185097;
}

.menu--1 input:checked + svg .line--2 {
  --offset: -50;
}

@keyframes svgAnim {
  from {
    stroke-width-color: 95px;
  }
  to {
    stroke-width: 0px;
  }
}
.lottie {
  width: clamp(3.75rem, 3.396rem + 1.417vw, 4.813rem);
}

.lottie-1 {
  width: clamp(3.438rem, 2.917rem + 2.083vw, 5rem);
}

.lottie-2 {
  width: clamp(3.75rem, 3.125rem + 2.5vw, 5.625rem);
}

.lottie-4 {
  width: clamp(3.125rem, 2.604rem + 2.083vi, 4.688rem);
}

.lottie-5 {
  width: clamp(2.813rem, 2.438rem + 1.5vi, 3.938rem);
}

@media only screen and (max-width: 1350px) {
  .container {
    width: 85%;
  }

  #choose-us .container {
    padding-inline: 0px;
  }
}
@media only screen and (max-width: 1110px) {
  .info-section .container .left-side {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media only screen and (max-width: 980px) {
  header .header-container nav,
header .header-container .user-actions {
    display: none;
  }

  .menu--1 {
    display: block;
  }

  header {
    padding-top: 35px;
  }

  header.onScroll {
    padding: 10px 0px !important;
  }

  #hero {
    padding-top: 7.5rem;
  }
  #hero .container {
    height: auto;
  }

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

  .info-section .container .right-side > div:nth-child(3) {
    background: #fffdf5;
  }

  .info-section .container .right-side > div:nth-child(1) {
    display: none;
  }

  .info-section .container .right-side .box {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  #companies .container .right-side > div:nth-child(2) {
    display: none;
  }

  #choose-us .container .why-boxes {
    flex-direction: column;
    gap: 3.75rem;
  }

  #choose-us .container .why-boxes .whybox {
    margin: 0 !important;
  }

  #choose-us .container {
    gap: 3.75rem;
  }
  #choose-us .container .why-boxes-1 > *:nth-child(even) {
    align-self: flex-end;
  }
  #choose-us .container .why-boxes-2 > *:nth-child(odd) {
    align-self: flex-end;
  }
  #choose-us .container .why-boxes-3 > *:nth-child(even) {
    align-self: flex-end;
  }

  .info-section .container .right-side {
    grid-template-rows: 1fr;
  }

  #choose-us .container {
    padding: 100px 0px !important;
    padding-bottom: 30px !important;
  }

  footer .last-part .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  #hero .container {
    height: 100%;
    justify-content: flex-start;
  }

  #hero .container .card-wrapper {
    bottom: 0;
  }

  :root {
    --test: clamp(21rem, 26.316vw + 8.125rem, 39.375rem);
  }

  #hero {
    min-height: 650px;
  }

  #hero .container .subtitle {
    max-width: 50vw;
  }

  #hero .container {
    padding-top: 0px;
  }

  #choose-us .container .why-boxes .whybox {
    padding: 40px 20px;
    min-height: auto;
  }

  #logo {
    font-size: 2.5rem;
  }

  .scroller.scroller-balls .scroller__inner {
    gap: 30rem;
  }
}
@media only screen and (max-width: 780px) {
  .info-section svg {
    width: 220px;
    right: 2rem;
    left: unset;
  }
}
@media only screen and (max-width: 680px) {
  .info-section .container .right-side {
    grid-template-columns: 1fr;
  }

  .info-section .container .right-side > div:nth-child(4) {
    background: #ffd93d26;
  }

  footer .last-part .container {
    flex-direction: column;
    justify-content: center;
  }

  footer .last-part .container .address {
    text-align: center;
  }

  footer .last-part .container {
    gap: 1.5rem;
  }

  footer .last-part {
    padding-top: 38px;
    padding-bottom: 60px;
  }

  footer .container--footer > div:nth-child(1) {
    display: none;
  }

  footer .container--footer {
    justify-content: center;
    margin-top: 1.5rem;
  }

  footer .last-part {
    margin-top: 2.5rem;
  }

  label {
    width: 43px;
    height: 43px;
  }

  #logo {
    font-size: 2.2rem;
  }

  #hero {
    padding-top: 7.5rem;
  }

  #hero .container .card-wrapper {
    position: relative;
    margin-top: 2.4rem;
    order: 2;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  #hero .container #cta {
    margin-top: 2rem;
    margin-inline: auto;
  }

  :root {
    --test: clamp(14rem, 34.5vw + 8.125rem, 39.375rem);
  }

  #hero {
    min-height: 810px;
    height: calc(100vh - 55px);
  }

  #hero .container .card-wrapper {
    right: 0;
    margin-inline: auto;
  }

  .scroller.scroller-balls .scroller__inner {
    gap: 15rem;
  }

  .scroller.scroller-balls .scroller__inner--delay {
    animation: scroll-balls 80s -15s linear infinite !important;
  }

  .scroller.scroller-balls div {
    font-size: var(--fs-200);
  }

  .mobile-menu a {
    font-size: 12vw;
  }

  #logo svg {
    width: 110px;
  }
}
@media only screen and (max-width: 500px) {
  #hero .container .subtitle {
    display: none;
  }

  #hero {
    min-height: 660px;
  }

  .info-section svg {
    width: 190px;
    right: 1rem;
    left: unset;
    top: 2rem;
  }
}
@media only screen and (min-height: 870px) {
  #hero .container h1 {
    font-size: clamp(3.5rem, 1.8333rem + 4.4167vw, 6.25rem);
  }
}
@media only screen and (min-height: 800px) {
  #hero {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 1026px) and (min-height: 1000px) {
  #hero {
    max-height: 800px;
  }

  #hero .container {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 770px) and (min-height: 1000px) {
  #hero {
    max-height: 850px;
  }
}

/*# sourceMappingURL=style.css.map */
