:root {
  --fs-base: 0.625rem;
  --fs-h1: 4.3rem;
  --fs-h2: 3.6rem;
  --fs-h3: 2.6rem;
  --fs-h4: 1.8rem;
  --fs-body: 1.8rem;
  --fs-body-sm: 1.6rem;
}

@media only screen and (min-width: 48em) {
  :root {
    --fs-h1: 6rem;
    --fs-h2: 4rem;
    --fs-h3: 3rem;
  }
}

@media only screen and (min-width: 62em) {
  :root {
    --fs-h1: 5rem;
  }
}

@media only screen and (min-width: 73.4375em) {
  :root {
    --fs-h1: 6rem;
  }
}

@media only screen and (min-width: 87.5em) {
  :root {
    --fs-h1: 6.5rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent !important;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgb(222, 222, 222);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(180, 180, 180);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(155, 155, 155);
}

html {
  font-family: "Space Grotesk", serif;
  font-size: var(--fs-base);
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #000;
  font-size: var(--fs-body);
  line-height: 1.5;
}

ul {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

input {
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
}

fieldset,
textarea {
  border: none;
  outline: none;
  resize: none;
}

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

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

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

p {
  font-size: inherit;
  color: inherit;
}

.u-heading-lg {
  font-size: var(--fs-h1);
  line-height: 1.28;
}

.u-heading-md {
  background-color: #B9FF66;
  -webkit-border-radius: 0.7rem;
  -moz-border-radius: 0.7rem;
  border-radius: 0.7rem;
  font-size: var(--fs-h2);
  margin-inline: auto;
  width: max-content;
}

.u-heading-sm {
  font-size: var(--fs-h4);
}

.u-title {
  border-radius: 0.7rem;
  font-size: var(--fs-h3);
  width: max-content;
}

.u-text-primary {
  background-color: #B9FF66;
}

.u-text-secondary {
  background-color: #fff;
}

.u-section-header {
  align-items: center;
  display: grid;
  gap: 3.2rem;
  margin-block-end: 6.4rem;
  text-align: center;
  max-width: 50rem;
  margin-inline: auto;
}

@media only screen and (min-width: 62em) {
  .u-section-header {
    grid-template-columns: auto 1fr;
    text-align: left;
    max-width: 100%;
    margin-inline: 0;
  }

  .u-section-header>p {
    max-width: 58rem;
  }
}

.u-seperator {
  border: 0.1rem solid #191A23;
  width: 100%;
}

.btn {
  align-items: center;
  display: inline-flex;
  font-size: 2rem;
  justify-content: center;
  overflow: hidden;
  position: relative;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.btn__text {
  -moz-transition: color 0.35s ease;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
  z-index: 2;
}

.btn__slide {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  transform: translateX(-101%);
  -moz-transition: transform 0.35s ease;
  -webkit-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
  width: 100%;
  z-index: 1;
}

.btn--primary {
  background-color: #191A23;
  border: 0.1rem solid #191A23;
  color: #fff;
}

.btn--primary .btn__slide {
  background-color: #B9FF66;
}

.btn--primary:hover .btn__slide {
  transform: translateX(0);
}

.btn--primary:hover .btn__text {
  color: #191A23;
}

.btn--secondary {
  background-color: #B9FF66;
  border: 0.1rem solid #191A23;
  color: #000;
}

.btn--secondary .btn__slide {
  background-color: #191A23;
}

.btn--secondary:hover .btn__slide {
  transform: translateX(0);
}

.btn--secondary:hover .btn__text {
  color: #fff;
}

.btn--outline {
  border: 0.1rem solid #191A23;
  color: #000;
}

.btn--outline .btn__slide {
  background-color: #B9FF66;
}

.btn--outline:hover .btn__slide {
  transform: translateX(0);
}

.btn--outline:hover .btn__text {
  color: #191A23;
}

.btn--sm {
  -moz-border-radius: 1.4rem;
  -webkit-border-radius: 1.4rem;
  border-radius: 1.4rem;
  padding: 2rem 3.6rem;
}

.btn--link:hover {
  opacity: 0.9;
}

.btn--link:hover .btn__icon {
  transform: rotate(0deg);
}

.btn--round {
  border-radius: 999px;
}

.btn__icon {
  align-items: center;
  display: flex;
  font-size: 2.5rem;
  justify-content: center;
  margin-inline: 1.2rem 0;
  -moz-transition: transform 0.25s ease;
  -webkit-transition: transform 0.25s ease;
  transition: transform 0.25s ease;
  transform: rotate(-30deg);
}

.btn__icon--round {
  border-radius: 999px;
  height: 4.1rem;
  margin-inline: 0 1.2rem;
  width: 4.1rem;
}

.btn__icon--primary {
  background-color: #191A23;
  color: #B9FF66;
}

.btn__icon--secondary {
  background-color: #fff;
  color: #000;
}

.card {
  border: 0.1rem solid #191A23;
  -webkit-border-radius: 4.5rem;
  -moz-border-radius: 4.5rem;
  border-radius: 4.5rem;
  box-shadow: 0rem 0.5rem 0rem #191A23;
}

.card--primary {
  background-color: #191A23;
}

.card--secondary {
  background-color: #B9FF66;
}

.card--light {
  background-color: #F3F3F3;
}

.form__action {
  font-size: 1.6rem;
}

.form__radio {
  left: 0;
  opacity: 0;
  position: absolute;
  visibility: hidden;
}

.form__radio-label {
  cursor: pointer;
  gap: 1.2rem;
  position: relative;
}

.form__radio-label::before {
  border: 0.1rem solid #191A23;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 2.8rem;
  width: 2.8rem;
}

.form__radio-label::after {
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 1.6rem;
  left: 0.6rem;
  position: absolute;
  top: 0.6rem;
  width: 1.6rem;
}

.form__radio:checked+label::after {
  background-color: #B9FF66;
}

.form__group:not(:last-child) {
  margin-block-end: 2rem;
}

.form__label {
  font-size: 1.4rem;
  margin-block-end: 1.2rem;
}

.form__control {
  border: 0.1rem solid #191A23;
  -webkit-border-radius: 1.4rem;
  -moz-border-radius: 1.4rem;
  border-radius: 1.4rem;
  height: 6rem;
  padding-inline: 2rem;
}

.form__control ::placeholder {
  color: #898989;
}

.form__control--text {
  height: 100%;
  padding-block: 2rem;
  width: 100%;
}

.owl-dots {
  display: none;
}

.owl-item {
  height: auto !important;
  display: flex;
}

.item {
  width: 100%;
}

.testimonials__carousel {
  padding-block-end: 6.4rem;
  position: static;
}

.testimonials__carousel .owl-nav {
  bottom: 5.2rem;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

@media only screen and (min-width: 48em) {
  .testimonials__carousel .owl-nav {
    bottom: 4.5rem;
  }
}

@media only screen and (min-width: 73.4375em) {
  .testimonials__carousel .owl-nav {
    bottom: 5.8rem;
  }
}

.testimonials__carousel .owl-nav button.owl-prev,
.testimonials__carousel .owl-nav button.owl-next {
  color: #fff;
  font-size: 2rem;
}

@media only screen and (min-width: 48em) {

  .testimonials__carousel .owl-nav button.owl-prev,
  .testimonials__carousel .owl-nav button.owl-next {
    font-size: 2.8rem;
  }
}

.testimonials__carousel .owl-nav button.owl-prev:hover,
.testimonials__carousel .owl-nav button.owl-next:hover {
  background-color: transparent;
}

.testimonials__carousel .owl-nav button.owl-next {
  transform: translateX(11rem);
}

@media only screen and (min-width: 48em) {
  .testimonials__carousel .owl-nav button.owl-next {
    transform: translateX(20rem);
  }
}

.testimonials__carousel .owl-nav button.owl-prev {
  transform: translateX(-11rem);
}

@media only screen and (min-width: 48em) {
  .testimonials__carousel .owl-nav button.owl-prev {
    transform: translateX(-20rem);
  }
}

.testimonials .owl-dot.active path {
  fill: #B9FF66;
}

.l-flex,
.l-flex-jb-center,
.l-flex-jb,
.l-flex-ac,
.l-flex-col-center,
.l-flex-col,
.l-flex-center {
  display: flex;
}

.l-flex-center {
  align-items: center;
  justify-content: center;
}

.l-flex-col {
  flex-direction: column;
}

.l-flex-col-center {
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.l-flex-ac {
  align-items: center;
}

.l-flex-jb {
  align-items: center;
  justify-content: space-between;
}

.l-flex-jb-center {
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-width: 62em) {
  .l-flex-md-row {
    flex-direction: row;
  }
}

.l-grid,
.l-grid-col-1 {
  display: grid;
}

.l-grid-col-1 {
  grid-template-columns: 1fr;
}

@media only screen and (min-width: 48em) {
  .l-grid-md-col-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 73.4375em) {
  .l-grid-lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-container {
  padding-block: 3.2rem;
  padding-inline: 2rem;
}

.l-container-case {
  padding-block: 3.2rem;
}

@media only screen and (min-width: 35.9375em) {

  .l-container,
  .l-container-header,
  .l-container-nav {
    margin-inline: auto;
    max-width: 54rem;
  }
}

@media only screen and (min-width: 48em) {

  .l-container,
  .l-container-header,
  .l-container-nav {
    max-width: 70rem;
    padding-inline: 0;
  }
}

@media only screen and (min-width: 62em) {
  .l-container {
    padding-block: 8rem;
  }

  .l-container,
  .l-container-header,
  .l-container-companies,
  .l-container-case {
    max-width: 94rem;
  }

  .l-container-nav {
    all: unset;
  }
}

@media only screen and (min-width: 73.4375em) {

  .l-container,
  .l-container-header,
  .l-container-companies,
  .l-container-case {
    max-width: 114rem;
  }
}

@media only screen and (min-width: 87.5em) {

  .l-container,
  .l-container-header,
  .l-container-companies,
  .l-container-case {
    max-width: 134rem;
  }
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

.header__container {
  padding: 2rem;
}

@media only screen and (min-width: 48em) {
  .header__container {
    padding-inline: 0;
  }
}

@media only screen and (min-width: 73.4375em) {
  .header__logo {
    width: 18rem;
  }
}

.header__nav {
  background: #fff;
  height: 0.2rem;
  left: 0;
  padding-inline: 2rem;
  position: absolute;
  top: 7rem;
  -moz-transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  width: 100%;
  visibility: hidden;
  z-index: 5;
}

@media only screen and (min-width: 62em) {
  .header__nav {
    all: unset;
  }
}

.header__nav--open {
  height: 100vh;
  opacity: 1;
  padding-block: 2rem;
  -moz-transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  visibility: visible;
}

@media only screen and (min-width: 62em) {
  .header__nav--open {
    all: unset;
  }
}

.header__nav--open .header__item {
  opacity: 1;
  transform: scale(1) translateY(0px);
  -moz-transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  visibility: visible;
}

.header__nav--open .header__item:nth-child(1) {
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
}

.header__nav--open .header__item:nth-child(2) {
  -webkit-transition-delay: 0.18s;
  transition-delay: 0.18s;
}

.header__nav--open .header__item:nth-child(3) {
  -webkit-transition-delay: 0.22s;
  transition-delay: 0.22s;
}

.header__nav--open .header__item:nth-child(4) {
  -webkit-transition-delay: 0.26s;
  transition-delay: 0.26s;
}

.header__nav--open .header__item:nth-child(5) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.header__nav--open .header__item:nth-child(6) {
  -webkit-transition-delay: 0.34s;
  transition-delay: 0.34s;
}

.header__list {
  padding-inline-start: 3.2rem;
}

.header__item {
  border-bottom: 1px solid #aaa;
  opacity: 0;
  padding-block: 2rem;
  transform: scale(1.15) translateY(-30px);
  transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  visibility: hidden;
}

.header__item:nth-child(1) {
  -webkit-transition-delay: 0.33s;
  transition-delay: 0.33s;
}

.header__item:nth-child(2) {
  -webkit-transition-delay: 0.26s;
  transition-delay: 0.26s;
}

.header__item:nth-child(3) {
  -webkit-transition-delay: 0.19s;
  transition-delay: 0.19s;
}

.header__item:nth-child(4) {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
}

.header__item:nth-child(5) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.header__item:nth-child(5) {
  border: none;
}

.header__item:last-child {
  border: none;
  padding-block-start: 4rem;
}

@media only screen and (min-width: 62em) {
  .header__item {
    all: unset;
  }
}

@media only screen and (min-width: 62em) {
  .header__item:not(:last-child) {
    margin-inline-end: 1.6rem;
  }
}

@media only screen and (min-width: 73.4375em) {
  .header__item:not(:last-child) {
    margin-inline-end: 3.6rem;
  }
}

.header__link {
  font-size: 2rem;
  font-weight: 500;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header__link:hover {
  opacity: 0.6;
}

@media only screen and (min-width: 62em) {
  .header__link {
    font-weight: 400;
  }
}

.header__btn--mobile {
  width: 100%;
}

@media only screen and (min-width: 62em) {
  .header__btn--mobile {
    display: none;
  }
}

.header__btn--desktop {
  display: none;
}

@media only screen and (min-width: 62em) {
  .header__btn--desktop {
    display: inline-flex;
    padding: 1.4rem 2rem;
  }
}

.header__menu {
  height: 2rem;
  position: relative;
  width: 2.6rem;
}

@media only screen and (min-width: 62em) {
  .header__menu {
    display: none;
  }
}

.header__menu--active .header__bar--1 {
  transform: rotate(45deg);
}

.header__menu--active .header__bar--2 {
  opacity: 0;
}

.header__menu--active .header__bar--3 {
  transform: rotate(-45deg);
}

.header__bar {
  background-color: #191A23;
  -moz-border-radius: 0.7rem;
  -webkit-border-radius: 0.7rem;
  border-radius: 0.7rem;
  display: block;
  height: 0.3rem;
  margin-block-end: 0.5rem;
  -moz-transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  transform-origin: 0.2rem center;
  width: 100%;
}

.hero {
  margin-block-start: 8.8rem;
}

.hero__container {
  gap: 2rem;
}

@media only screen and (min-width: 48em) {
  .hero__container {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 62em) {
  .hero__container {
    align-items: center;
    gap: 0 6rem;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "heading banner" "block banner";
    padding-block: 7.2rem;
  }
}

@media only screen and (min-width: 73.4375em) {
  .hero__container {
    column-gap: 12.8rem;
  }
}

@media only screen and (min-width: 62em) {
  .hero__heading {
    grid-area: heading;
    margin-block-end: 3.6rem;
  }
}

.hero__btn {
  margin-block-start: 4rem;
  width: 100%;
}

@media only screen and (min-width: 62em) {
  .hero__btn {
    width: auto;
  }
}

.hero__banner {
  max-width: 70rem;
  width: 100%;
}

@media only screen and (min-width: 62em) {
  .hero__banner {
    grid-area: banner;
    max-width: 100%;
  }
}

.hero__img {
  width: 100%;
}

.hero__text-block {
  height: 100%;
}

@media only screen and (min-width: 62em) {
  .hero__text-block {
    grid-area: block;
  }
}

.companies {
  overflow: hidden;
  padding-block: 3.2rem;
  width: 100%;
}

@media only screen and (min-width: 62em) {
  .companies__container {
    margin-inline: auto;
  }
}

.companies__list {
  gap: 2rem;
}

@media only screen and (min-width: 62em) {
  .companies__list {
    align-items: center;
  }
}

.companies__item {
  gap: 4rem;
  width: max-content;
}

@media only screen and (min-width: 62em) {
  .companies__item {
    width: 100%;
  }

  .companies__item--2 {
    display: none;
  }
}

.companies__marquee {
  gap: 4rem;
}

@media only screen and (min-width: 62em) {
  .companies__marquee {
    justify-content: space-between;
  }

  .companies__marquee--hidden {
    display: none;
  }
}

.companies__marquee--1 {
  animation: move 25s linear infinite;
}

@media only screen and (min-width: 62em) {
  .companies__marquee--1 {
    animation: unset;
    justify-content: space-between;
    transform: translateX(0);
    width: 100%;
  }
}

.companies__marquee--2 {
  animation: move 25s linear infinite reverse;
}

@media only screen and (min-width: 62em) {
  .companies__marquee--2 {
    animation: unset;
  }
}

.companies__img {
  filter: grayscale(1);
  height: 100%;
  -moz-transition: filter 0.35s ease;
  -webkit-transition: filter 0.35s ease;
  transition: filter 0.35s ease;
  width: 11rem;
}

.companies__img:hover {
  filter: grayscale(0);
}

@media only screen and (min-width: 73.4375em) {
  .companies__img {
    width: 13rem;
  }
}

@keyframes move {
  from {
    transform: translate(0%);
  }

  to {
    transform: translate(calc(-100% - 4rem));
  }
}

.services__list {
  gap: 3.2rem;
}

.services__item {
  min-height: 30.2rem;
  padding: 4.8rem;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.services__item:hover {
  box-shadow: 0rem 1.5rem 0rem #191A23;
  transform: translateY(-1rem);
}

.services__content,
.services__cover {
  position: relative;
  width: 50%;
}

.services__content {
  align-items: flex-start;
}

.services__btn {
  margin-block-start: auto;
}

.services__btn-text {
  display: none;
}

@media only screen and (min-width: 62em) {
  .services__btn-text {
    display: block;
  }

  .services__btn-text--light {
    color: #fff;
  }
}

.services__img {
  bottom: 0;
  max-width: 20rem;
  position: absolute;
  right: 0;
  transform: scale(1.1);
  width: 100%;
}

@media only screen and (min-width: 62em) {
  .proposal__container {
    align-items: center;
    column-gap: 12rem;
    justify-content: space-between;
  }
}

.proposal__content {
  padding: 4.8rem;
}

@media only screen and (min-width: 62em) {
  .proposal__content {
    padding-inline: 0;
    width: 50%;
  }
}

.proposal__heading {
  font-size: 3rem;
  max-width: 100%;
}

.proposal__description {
  padding-block: 2rem;
}

.proposal__btn {
  width: 100%;
}

@media only screen and (min-width: 62em) {
  .proposal__btn {
    width: auto;
  }
}

@media only screen and (min-width: 62em) {
  .proposal__cover {
    width: 50%;
  }
}

.proposal__img {
  display: none;
}

@media only screen and (min-width: 62em) {
  .proposal__img {
    display: block;
    width: calc(100% - 13.5rem);
  }
}

.case__container {
  margin-inline: auto;
  padding-inline: 0;
}

.case__header {
  padding-inline: 2rem;
}

@media only screen and (min-width: 62em) {
  .case__wrapper {
    background-color: #191A23;
    -webkit-border-radius: 4.5rem;
    -moz-border-radius: 4.5rem;
    border-radius: 4.5rem;
    padding: 4.8rem 0;
  }
}

@media only screen and (min-width: 62em) {
  .case__wrapper {
    padding: 6.8rem 2rem;
  }
}

@media only screen and (min-width: 62em) {
  .case__carousel {
    display: flex;
  }
}

.case__item {
  background-color: #191A23;
  -webkit-border-radius: 4.5rem;
  -moz-border-radius: 4.5rem;
  border-radius: 4.5rem;
  color: #fff;
  margin-inline: 2rem;
  padding: 4rem 4.8rem;
}

@media only screen and (min-width: 62em) {
  .case__item {
    border-radius: 0;
    margin-inline: 0;
    padding: 0 4rem;
  }

  .case__item:not(:last-child) {
    border-right: 1px solid #afafaf;
  }
}

@media only screen and (min-width: 73.4375em) {
  .case__item {
    padding-inline: 4.8rem;
  }
}

@media only screen and (min-width: 87.5em) {
  .case__item {
    padding-inline: 6.4rem;
  }
}

.case__link {
  color: #B9FF66;
  margin-block-start: 3.2rem;
}

@media only screen and (min-width: 62em) {
  .process__header {
    max-width: 80rem;
  }
}

@media only screen and (min-width: 62em) {
  .process__headline {
    background-color: #B9FF66;
    -webkit-border-radius: 0.7rem;
    -moz-border-radius: 0.7rem;
    border-radius: 0.7rem;
    display: flex;
    gap: 1.2rem;
  }
}

.process__list {
  gap: 2rem;
}

@media only screen and (min-width: 73.4375em) {
  .process__list {
    gap: 3.2rem;
  }
}

.process__item {
  padding: 3.2rem;
  -webkit-transition: background 0.35s ease;
  -moz-transition: background 0.35s ease;
  transition: background 0.35s ease;
}

.process__item--open {
  background-color: #B9FF66;
}

.process__item--open .process__content {
  height: auto;
  gap: 2.4rem;
  opacity: 1;
  padding-block: 2.4rem;
}

.process__item--open .process__bar::before {
  transform: rotate(180deg);
}

@media only screen and (min-width: 62em) {
  .process__item {
    padding: 4rem 6rem;
  }
}

.process__panel {
  gap: 2.4rem;
}

.process__title-block {
  gap: 2.4rem;
  width: 80%;
}

.process__content {
  height: 0rem;
  gap: 0;
  opacity: 0;
  overflow: hidden;
  padding-block: 0;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.process__number {
  font-size: 3rem;
}

@media only screen and (min-width: 48em) {
  .process__number {
    font-size: 3.6rem;
  }
}

@media only screen and (min-width: 73.4375em) {
  .process__number {
    font-size: 6rem;
  }
}

@media only screen and (min-width: 48em) {
  .process__title {
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 73.4375em) {
  .process__title {
    font-size: 3rem;
  }
}

.process__btn {
  height: 3rem;
  margin-inline-start: auto;
  width: 3rem;
}

.process__btn:hover {
  background-color: #fff;
}

@media only screen and (min-width: 62em) {
  .process__btn {
    height: 5.8rem;
    width: 5.8rem;
  }
}

.process__bar {
  background-color: #191A23;
  height: 0.3rem;
  position: relative;
  width: 1.5rem;
}

.process__bar::before {
  background-color: #191A23;
  bottom: 0;
  content: "";
  height: inherit;
  left: 0;
  position: absolute;
  right: 0;
  transform: rotate(270deg);
  transform-origin: center center;
  -webkit-transition: transform 0.35s ease;
  -moz-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
  top: 0;
  width: inherit;
}

@media only screen and (min-width: 62em) {
  .process__bar {
    height: 0.4rem;
    width: 2rem;
  }
}

.team__list {
  gap: 3.2rem;
}

@media only screen and (min-width: 48em) {
  .team__list {
    gap: 2.4rem;
  }
}

@media only screen and (min-width: 62em) {
  .team__list {
    gap: 4rem;
  }
}

.team__item {
  cursor: auto;
  gap: 2rem;
  padding: 4rem 3.6rem;
  -moz-transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.team__item:hover {
  background-color: #B9FF66;
  box-shadow: 0rem 1.5rem 0rem #191A23;
  transform: translateY(-1rem);
}

@media only screen and (min-width: 48em) {
  .team__item {
    padding: 4rem 2.4rem;
  }
}

.team__about {
  position: relative;
}

.team__info {
  align-self: flex-end;
  font-size: var(--fs-body-sm);
  margin-inline-start: 2rem;
}

.team__link {
  background-color: #191A23;
  color: #B9FF66;
  height: 3.4rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 3.4rem;
}

.team__btn {
  margin-block-start: 4rem;
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .team__btn {
    align-self: flex-end;
    max-width: 25rem;
  }
}

.testimonials__wrapper {
  background-color: #191A23;
  -webkit-border-radius: 4.5rem;
  -moz-border-radius: 4.5rem;
  border-radius: 4.5rem;
  padding-block: 4rem 6rem;
  position: relative;
}

@media only screen and (min-width: 73.4375em) {
  .testimonials__wrapper {
    padding-block: 7.2rem;
  }
}

.testimonials__item {
  max-width: 30rem;
  margin-inline: auto;
}

@media only screen and (min-width: 25em) {
  .testimonials__item {
    max-width: 35rem;
  }
}

@media only screen and (min-width: 35.9375em) {
  .testimonials__item {
    max-width: 45rem;
  }
}

@media only screen and (min-width: 48em) {
  .testimonials__item {
    max-width: 60rem;
  }
}

@media only screen and (min-width: 62em) {
  .testimonials__item {
    max-width: 68rem;
  }
}

.testimonials__content {
  border: 0.1rem solid #B9FF66;
  -webkit-border-radius: 4.5rem;
  -moz-border-radius: 4.5rem;
  border-radius: 4.5rem;
  color: #fff;
  font-size: var(--fs-body-sm);
  padding: 3.2rem;
  position: relative;
}

@media only screen and (min-width: 73.4375em) {
  .testimonials__content {
    font-size: 1.8rem;
  }
}

.testimonials__content::after {
  background-color: #191A23;
  bottom: -0.8rem;
  border: 0.1rem solid #B9FF66;
  clip-path: polygon(100% -35%, 21% 18%, 100% 100%);
  content: "";
  height: 3.8rem;
  left: 3.8rem;
  position: absolute;
  transform: rotate(134deg);
  width: 6.4rem;
}

.testimonials__info {
  color: #fff;
  margin-block-start: 4.8rem;
  margin-inline-start: 6rem;
}

.testimonials__name {
  color: #B9FF66;
}

.testimonials__btn-group {
  gap: 2rem;
  margin-block-start: 3.2rem;
  margin-inline: auto;
  max-width: 15rem;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 62em) {
  .contact__header {
    max-width: 60rem;
  }
}

.contact__content {
  margin-inline: auto;
  max-width: 55rem;
}

@media only screen and (min-width: 62em) {
  .contact__content {
    justify-content: space-between;
    gap: 14rem;
    max-width: 100%;
    padding-inline-start: 10rem;
    padding-block: 6.4rem 4rem;
  }
}

@media only screen and (min-width: 62em) {
  .contact__form {
    width: 50%;
  }
}

@media only screen and (min-width: 35.9375em) {
  .contact__form-wrapper {
    padding: 4rem;
  }
}

@media only screen and (min-width: 62em) {
  .contact__form-wrapper {
    padding-inline: 0;
    padding-block-start: 0;
  }
}

.contact__form-action {
  gap: 4rem;
  margin-block-end: 3.6rem;
}

.contact__btn {
  margin-block-start: 2.4rem;
  width: 100%;
}

@media only screen and (min-width: 62em) {
  .contact__btn {
    margin-block-start: 0;
  }
}

@media only screen and (min-width: 62em) {
  .contact__cover {
    width: 50%;
  }
}

.contact__img {
  display: none;
  width: 100%;
}

@media only screen and (min-width: 62em) {
  .contact__img {
    display: block;
    height: 58rem;
    margin-inline-start: auto;
    max-width: 35rem;
    object-fit: cover;
  }
}

.footer {
  color: #fff;
}

.footer__container {
  padding-inline: 0;
  padding-block-end: 0;
}

.footer__logo {
  margin-inline: auto;
}

@media only screen and (min-width: 62em) {
  .footer__logo {
    margin-inline: 0;
  }
}

.footer__wrapper {
  background-color: #191A23;
  gap: 3.6rem;
  text-align: center;
  padding: 4.8rem 2rem 3.2rem;
}

@media only screen and (min-width: 35.9375em) {
  .footer__wrapper {
    -moz-border-radius: 4.5rem;
    -webkit-border-radius: 4.5rem;
    border-radius: 4.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media only screen and (min-width: 48em) {
  .footer__wrapper {
    padding-inline: 6rem;
  }
}

@media only screen and (min-width: 62em) {
  .footer__wrapper {
    gap: 6.4rem 0;
    grid-template-columns: 0.75fr 1fr 0.5fr;
  }
}

@media only screen and (min-width: 73.4375em) {
  .footer__wrapper {
    padding-block: 5.2rem;
  }
}

.footer__list {
  gap: 1.6rem;
  font-size: var(--fs-body-sm);
}

@media only screen and (min-width: 62em) {
  .footer__list {
    flex-direction: row;
  }
}

@media only screen and (min-width: 73.4375em) {
  .footer__list {
    gap: 4rem;
  }
}

.footer__link {
  opacity: 1;
  -moz-transition: color 0.35s ease;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}

.footer__link:is(:hover, :active) {
  color: #B9FF66;
}

@media only screen and (min-width: 62em) {
  .footer__link {
    text-decoration: underline;
  }
}

@media only screen and (min-width: 73.4375em) {
  .footer__link {
    font-size: 1.8rem;
    text-decoration: underline;
  }
}

.footer__nav-social {
  grid-row: 5/5;
}

@media only screen and (min-width: 62em) {
  .footer__nav-social {
    grid-row: auto;
    justify-self: self-end;
  }
}

.footer__brand {
  background-color: #fff;
  color: #000;
  height: 3rem;
  width: 3rem;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer__brand:not(:last-child) {
  margin-inline-end: 2rem;
}

.footer__brand:hover {
  background-color: #B9FF66;
  color: #000;
}

.footer__info {
  font-size: var(--fs-body-sm);
}

@media only screen and (min-width: 62em) {
  .footer__info {
    text-align: left;
  }
}

@media only screen and (min-width: 73.4375em) {
  .footer__info {
    font-size: 1.8rem;
  }
}

.footer__contact {
  margin-block: 1.6rem;
}

.footer__tag {
  align-self: center;
  background-color: #B9FF66;
  -moz-border-radius: 0.7rem;
  -webkit-border-radius: 0.7rem;
  border-radius: 0.7rem;
  color: #000;
  font-weight: 500;
  line-height: normal;
  margin-block-end: 3.2rem;
  padding: 0.8rem;
  width: max-content;
}

@media only screen and (min-width: 62em) {
  .footer__tag {
    align-self: flex-start;
  }
}

.footer__form {
  background-color: #292A32;
  -moz-border-radius: 1.4rem;
  -webkit-border-radius: 1.4rem;
  border-radius: 1.4rem;
  padding: 3.2rem;
  min-width: 20rem;
}

@media only screen and (min-width: 62em) {
  .footer__form {
    padding: 6.4rem 4rem;
    grid-column: 2/span 2;
    height: max-content;
    max-width: 45rem;
    margin-inline-start: auto;
    width: 100%;
  }
}

@media only screen and (min-width: 73.4375em) {
  .footer__form {
    max-width: 55rem;
  }
}

@media only screen and (min-width: 87.5em) {
  .footer__form {
    max-width: 65rem;
  }
}

.footer__group {
  gap: 1.2rem;
}

@media only screen and (min-width: 62em) {
  .footer__group {
    flex-direction: row;
  }
}

.footer__control {
  border-color: #fff;
  color: #fff;
}

.footer__control::placeholder {
  color: #fff;
}

.footer__btn {
  border-color: #B9FF66;
  width: 100%;
}

.footer__btn .btn__slide {
  background-color: #fff;
}

.footer__btn:hover .btn__text {
  color: #000;
}

.footer__tc {
  font-size: var(--fs-body-sm);
  gap: 1.6rem;
}

@media only screen and (min-width: 62em) {
  .footer__tc {
    align-items: flex-start;
    gap: 0;
    grid-column: 1/span 3;
  }
}

@media only screen and (min-width: 73.4375em) {
  .footer__tc {
    font-size: 1.8rem;
  }
}

.footer__seperator {
  border-color: #fff;
}

@media only screen and (min-width: 62em) {
  .footer__seperator {
    margin-block-end: 4.8rem;
  }
}

.footer__copy {
  gap: 1.2rem;
}

@media only screen and (min-width: 62em) {
  .footer__copy {
    flex-direction: row;
    gap: 4rem;
  }
}