:root {
  --color-primary: #c8d8e4;
  --color-primary-light: #f2f2f2;
  --color-primary-dark: #ba265d;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
  --box-shadow-dark: 0 3rem 6rem rgba(#222, 0.4);
  --box-shadow-light: 0 2rem 5rem rgba(#222, 0.06);
  --box-shadow-medium: 0 2rem 5rem rgba(#222, 0.2);
  --line: 1px solid var(--color-grey-light-2);
}

* {
  margin: 0;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 43.75em) {
  html {
    font-size: 43.75%;
  }
}
@media (max-width: 31.25em) {
  html {
    font-size: 37.5%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  background-color: --color-grey-light-3;
  color: var(--color-grey-dark-2);
  padding: 0 0.5%;
  position: absolute;
}
@media (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.heading--main {
  text-transform: uppercase;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #222;
  display: inline-block;
  opacity: 0;
}
.heading--main.is-visible {
  opacity: 1;
  animation: moveDown 0.9s ease-out 0.25s backwards;
}

.heading--secondary {
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  line-height: 3.2rem;
  color: var(--color-grey-dark-1);
  display: inline-block;
  margin-bottom: 2rem;
  text-align: center;
}
.heading--secondary--1 {
  letter-spacing: 5px;
}
@media (max-width: 37.5em) {
  .heading--secondary {
    font-size: 2rem;
    letter-spacing: 0.75px;
  }
}

.heading--tertiary {
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  line-height: 3.2rem;
  color: var(--color-grey-dark-3);
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
  opacity: 0;
}
.heading--tertiary.is-visible {
  opacity: 1;
  animation: moveInLeft 0.9s ease-out 0.25s backwards;
}

.heading--fourth {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 5px;
  font-weight: 600;
  line-height: 3.2rem;
  color: #222;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: left;
  margin-left: 1rem;
  opacity: 0;
  will-change: transform, opacity;
}
.heading--fourth.is-visible {
  opacity: 1;
  animation: moveInLeft 0.8s ease-out 0.2s backwards;
}

.heading--fifth {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 2.8rem;
  letter-spacing: 4px;
  font-weight: 400;
  line-height: 2.8rem;
  color: #fff;
  display: inline-block;
  text-align: center;
  opacity: 0;
}
@media (max-width: 37.5em) {
  .heading--fifth {
    font-size: 2.4rem;
  }
}
.heading--fifth.is-visible {
  opacity: 1;
  animation: moveDown 0.9s ease-out 0.25s backwards;
}

.header {
  background-color: #222;
  position: relative;
}

.values {
  padding-top: 10rem;
  padding-bottom: 7rem;
}
.values__heading-cont {
  text-align: center;
}
.values__container {
  background-image: linear-gradient(
      to right,
      rgba(200, 216, 228, 0.801),
      rgba(242, 242, 242, 0.808)
    ),
    url(../img/business.jpg);
  background-size: cover;
  height: 72rem;
  -webkit-clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 62.5em) {
  .values__container {
    flex-direction: column;
    height: 200rem;
    padding: 3rem 0;
  }
}
@media (max-width: 56.25em) {
  .values__container {
    height: 220rem;
  }
}
@media (max-width: 43.75em) {
  .values__container {
    height: 230rem;
  }
}
@media (max-width: 31.25em) {
  .values__container {
    height: 240rem;
  }
}
@media (max-width: 23.44em) {
  .values__container {
    height: 250rem;
  }
}
.values__value {
  flex: 0 0 25%;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2rem 5rem rgba(34, 34, 34, 0.3);
  text-align: center;
  opacity: 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (max-width: 62.5em) {
  .values__value {
    width: 40%;
    border-radius: 3px;
  }
  .values__value:first-child {
    margin-top: 6rem;
  }
  .values__value:last-child {
    margin-bottom: 6rem;
  }
}
@media (max-width: 50em) {
  .values__value {
    width: 58%;
  }
}
@media (max-width: 37.5em) {
  .values__value {
    width: 65%;
  }
}
.values__value.is-visible {
  opacity: 1;
  animation: moveInLeft 0.9s ease-out 0.25s backwards;
}
.values__value:hover {
  transform: translateY(-1rem);
  box-shadow: 0 3rem 6rem rgba(34, 34, 34, 0.5);
}
.values__paragraph {
  font-size: 1.6rem;
  color: var(--color-grey-dark-1);
  font-family: "Roboto", sans-serif;
}
@media (max-width: 56.25em) {
  .values__paragraph {
    font-size: 2rem;
  }
}
@media (max-width: 43.75em) {
  .values__paragraph {
    font-size: 2.2rem;
  }
}
.values__image {
  width: 100%;
  height: autos;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.values__content {
  padding: 4rem;
}

.pitch-decks {
  padding-top: 6rem;
}
.pitch-decks__heading-cont {
  text-align: center;
}
.pitch-decks__card-cont {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 75em) {
  .pitch-decks__card-cont {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.stories {
  position: relative;
  margin-top: 7rem;
  padding: 2rem 0;
}
@media (max-width: 62.5em) {
  .stories {
    padding: 0.5rem 0;
  }
}
.stories__story {
  margin: 3rem auto;
  padding: 2rem;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  color: var(--color-grey-dark-2);
  transform: skewX(-12deg);
  display: flex;
  align-items: center;
}
@media (max-width: 75em) {
  .stories__story {
    margin: 3rem auto;
    padding: 4.5rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 62.5em) {
  .stories__story {
    width: 80%;
    transform: skewX(0);
  }
}
@media (max-width: 50em) {
  .stories__story {
    flex: 0 0 42%;
  }
}
.stories__story::before {
  content: "\201C";
  position: absolute;
  top: -1.7rem;
  left: 0.5rem;
  font-size: 14rem;
  color: #ddd;
  font-family: sans-serif;
  line-height: 1;
}
.stories__shape {
  margin-left: 5rem;
  float: left;
  transform: skewX(12deg) translateY(-2.5rem);
  text-align: center;
  margin-top: 2.5%;
  margin-right: 5rem;
}
@media (max-width: 75em) {
  .stories__shape {
    width: 13rem;
    height: 13rem;
  }
}
@media (max-width: 62.5em) {
  .stories__shape {
    transform: skewX(0) translateY(-2.5rem);
  }
}
@media (max-width: 50em) {
  .stories__shape {
    margin-right: 3rem;
  }
}
@media (max-width: 37.5em) {
  .stories__shape {
    display: none;
  }
}
.stories__image {
  height: 6rem;
  width: 6rem;
  border-radius: 3px;
}
.stories__caption {
  text-align: center;
}
.stories__span {
  display: block;
  opacity: 0;
  transition: opacity 0.8s 0.3s ease-in;
}
.stories__span.is-visible {
  opacity: 1;
}
.stories__span--2 {
  font-style: italic;
  font-size: 1.2rem;
}
.stories__paragraph {
  font-size: 1.6rem;
  color: var(--color-grey-dark-1);
  font-family: "Roboto", sans-serif;
  opacity: 0;
}
.stories__paragraph.is-visible {
  opacity: 1;
  animation: moveInLeft 0.9s ease-out 0.25s backwards;
}
.stories__paragraph--identifier {
  text-align: right;
  margin-top: 2rem;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 37.5em) {
  .stories__paragraph--identifier {
    visibility: visible;
  }
}
.stories__paragraph--identifier.is-visible {
  opacity: 1;
  animation: moveDown 0.9s ease-out 0.25s backwards;
}

.about,
.clients {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 56.25em) {
  .about,
  .clients {
    flex-direction: column;
  }
}

.industries {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 5rem;
  height: fit-content;
  opacity: 0;
  transition: opacity 0.8s 0.5s ease-in-out;
}
@media (max-width: 75em) {
  .industries {
    padding: 4rem;
  }
}
.industries__container {
  width: 100%;
  padding: 10rem 8rem;
  padding-bottom: 5rem;
  box-shadow: 0 3rem 6rem rgba(34, 34, 34, 0.15);
}
@media (max-width: 75em) {
  .industries__container {
    padding: 9rem 7rem;
  }
}
@media (max-width: 56.25em) {
  .industries__container {
    padding: 8rem 3rem;
    padding-bottom: 2.5rem;
    box-shadow: none;
  }
}
@media (max-width: 43.75em) {
  .industries__container {
    padding: 5rem 1rem;
    padding-bottom: 2rem;
  }
}
.industries.is-visible {
  opacity: 1;
}
.industries__row {
  display: flex;
  justify-content: space-between;
  padding: 0 3%;
}
.industries__row:not(:last-child) {
  margin-bottom: 12rem;
}
.industries__item {
  flex: 0 0 12%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  transition: all 0.4s;
}
@media (max-width: 56.25em) {
  .industries__item {
    flex: 0 0 10%;
  }
}
@media (max-width: 43.75em) {
  .industries__item {
    flex: 0 0 9%;
  }
}
@media (max-width: 37.5em) {
  .industries__item {
    flex: 0 0 8%;
  }
}
.industries__item:hover {
  transform: scale(1.1);
}
.industries__item:hover .industries__icon {
  fill: #0047ab;
}
.industries__icon {
  display: inline-block;
  margin: 0 auto;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 2rem;
  fill: #6495ed;
}
@media (max-width: 75em) {
  .industries__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.7rem;
  }
}
@media (max-width: 43.75em) {
  .industries__icon {
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1.5rem;
  }
}
.industries__paragraph {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
}

.form__container {
  background-image: linear-gradient(to right bottom, #122a73, #c8d8e4);
  margin-top: 8rem;
  padding: 3% 0;
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: -1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contacts {
  display: flex;
  justify-content: space-between;
}
.contacts__details {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
  padding: 5rem 12rem;
}
@media (max-width: 75em) {
  .contacts__details {
    padding: 5rem 10rem;
  }
}
@media (max-width: 62.5em) {
  .contacts__details {
    padding: 5rem 8rem;
  }
}
.contacts__address-cont {
  display: flex;
}
.contacts__address {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.6rem;
  font-family: "Raleway", sans-serif;
  color: #333;
}
@media (max-width: 43.75em) {
  .contacts__address {
    border-right: 3px dotted #52ab98;
    padding-right: 3rem;
  }
}
@media (max-width: 37.5em) {
  .contacts__address {
    display: none;
  }
}
.contacts__icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: #333;
  transform: translateY(3px);
}
@media (max-width: 43.75em) {
  .contacts__icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media (max-width: 37.5em) {
  .contacts__icon {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.contacts__icon--mail {
  width: 2.4rem;
  height: 2.4rem;
  transform: translate(-3px, 5px);
  fill: #333;
}
@media (max-width: 43.75em) {
  .contacts__icon--mail {
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media (max-width: 37.5em) {
  .contacts__icon--mail {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.contacts__icon--whatsapp {
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(2px);
  fill: #333;
}
@media (max-width: 43.75em) {
  .contacts__icon--whatsapp {
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media (max-width: 37.5em) {
  .contacts__icon--whatsapp {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.contacts__span {
  font-size: 1.4rem;
  line-height: 2.6rem;
  font-family: "Raleway", sans-serif;
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 43.75em) {
  .contacts__span {
    font-size: 1.6rem;
  }
}
@media (max-width: 37.5em) {
  .contacts__span {
    font-size: 2rem;
  }
}
.contacts__span--title-1 {
  transform: translateX(-1rem);
}
.contacts__phone-email {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 37.5em) {
  .contacts__phone-email {
    flex-direction: row;
    width: 100%;
  }
}
@media (max-width: 43.75em) {
  .contacts__phone-email {
    flex-direction: column;
  }
}
.contacts__paragraph {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.6rem;
  font-family: "Raleway", sans-serif;
  color: #333;
  margin-bottom: 0.5rem;
}
@media (max-width: 43.75em) {
  .contacts__paragraph {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 37.5em) {
  .contacts__paragraph {
    font-size: 2rem;
  }
}
@media (max-width: 31.25em) {
  .contacts__paragraph {
    margin-bottom: 3rem;
  }
}

.vision {
  padding: 10rem 0;
}

.slideshow {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.slideshow__item {
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: cycleImages 31s infinite;
}
.slideshow__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 31s infinite;
}
.slideshow__item:nth-child(1),
.slideshow__item:nth-child(1) img {
  animation-delay: 0s;
}
.slideshow__item:nth-child(2),
.slideshow__item:nth-child(2) img {
  animation-delay: 10s;
}
.slideshow__item:nth-child(3),
.slideshow__item:nth-child(3) img {
  animation-delay: 20s;
}
.slideshow__item--text {
  width: 35%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5rem 4rem;
}
.slideshow__item--text h5 {
  font-size: 3.5rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2.5rem;
}
.slideshow__item--text p {
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  line-height: 2.8rem;
  color: #f2f2f2;
}

@keyframes cycleImages {
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}

@keyframes zoom {
  100% {
    transform: scale(1.3);
  }
}

@media screen and (max-width: 1000px) {
  .slideshow__item--text {
    max-width: 70%;
    padding: 4rem 2rem;
  }
  .slideshow__item--text h5 {
    font-size: 2.5rem;
  }
  .slideshow__item--text p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 700px) {
  .slideshow {
    height: 92vh;
  }
  .slideshow__item--text {
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    top: initial;
    transform: initial;
    bottom: 0;
  }
  .slideshow__item--text h5 {
    font-size: 3rem;
  }
  .slideshow__item--text p {
    font-size: 2.2rem;
    line-height: 4rem;
  }
}

.navbar {
  position: fixed;
  background-color: rgba(34, 34, 34, 0.4);
  width: 99%;
  padding: 3rem 1rem;
  margin-left: 0.5%;
  overflow: visible;
  z-index: 20;
  box-shadow: var(--box-shadow-dark);
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem;
  align-items: center;
}
@media (max-width: 56.25em) {
  .navbar {
    margin-left: 0;
    width: 100%;
  }
}
.navbar__logo--link {
  text-transform: uppercase;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 3px;
  text-decoration: none;
}
@media (max-width: 43.75em) {
  .navbar__logo--link {
    font-size: 1.9rem;
    letter-spacing: 2.5px;
  }
}
@media (max-width: 37.5em) {
  .navbar__logo--link {
    font-size: 1.8rem;
    letter-spacing: 2.2px;
  }
}
@media (max-width: 23.44em) {
  .navbar__logo--link {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
}
.navbar__span-1 {
  letter-spacing: 3px;
  border-right: 2px solid #fff;
  margin-right: 1rem;
}
@media (max-width: 31.25em) {
  .navbar__span-1 {
    display: none;
  }
}
.navbar__items {
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar__item:not(:last-child) {
  margin-right: 2rem;
}
.navbar__item a {
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: capitalize;
}
@media (max-width: 37.5em) {
  .navbar__item a {
    font-size: 1.4rem;
    letter-spacing: 0.5;
  }
}
.navbar__item a:hover {
  transition: all 0.3s;
  color: #ddd;
}

.card {
  flex: 0 0 25%;
  perspective: 150rem;
  -moz-perspective: 150rem;
  height: 58rem;
  position: relative;
}
.card__side {
  color: #222;
  font-size: 3rem;
  height: 58rem;
  transition: all 1s ease;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 3rem 6rem rgba(34, 34, 34, 0.2);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #2b6777, #c8d8e4);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #52ab98, #c8d8e4);
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #122a73, #c8d8e4);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0deg);
}
.card__picture {
  background-size: cover;
  height: 25rem;
  background-blend-mode: screen;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
.card__picture--1 {
  background-image: linear-gradient(to right bottom, #2b6777, #c8d8e4),
    url(../img/eyewear.jpg);
}
.card__picture--2 {
  background-image: linear-gradient(to right bottom, #52ab98, #c8d8e4),
    url(../img/childrenswear.jpg);
}
.card__picture--3 {
  background-image: linear-gradient(to right bottom, #122a73, #c8d8e4),
    url(../img/coffee.jpg);
}
.card__heading {
  font-size: 2.6rem;
  line-height: 5rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  text-align: center;
  width: 43%;
  margin: 0 auto;
  margin-top: 4rem;
}
.card__heading-span {
  display: inline-block;
  padding: 1rem 1.5rem;
}
.card__heading-span--1 {
  background-image: linear-gradient(
    to right bottom,
    rgba(43, 103, 119, 0.85),
    rgba(200, 216, 228, 0.85)
  );
}
.card__heading-span--2 {
  background-image: linear-gradient(
    to right bottom,
    rgba(82, 171, 152, 0.85),
    rgba(200, 216, 228, 0.85)
  );
}
.card__heading-span--3 {
  background-image: linear-gradient(
    to right bottom,
    rgba(43, 103, 119, 0.85),
    rgba(18, 42, 115, 0.85)
  );
}
.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.6rem;
  line-height: 4rem;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-grey-light-4);
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  color: #fff;
}
.card__cta--price-box {
  text-align: center;
}
.card__cta--price-desc {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.card__cta--price-desc:not(:last-child) {
  margin-bottom: 1.5rem;
}
.card__cta--price-value {
  margin-top: 3rem;
  margin-bottom: 5rem;
  font-size: 6rem;
  font-weight: 100;
}
@media (max-width: 75em) {
  .card {
    height: auto;
    position: relative;
    border-radius: 3px;
    box-shadow: 0 3rem 6rem rgba(34, 34, 34, 0.2);
    width: 50%;
    margin-bottom: 8rem;
  }
  .card__picture {
    height: 36rem;
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0);
    -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    padding: 10rem 0;
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__details {
    padding: 3rem;
    padding-bottom: 5rem;
  }
  .card__cta {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    width: 100%;
  }
  .card__cta--price-box {
    margin-bottom: 3rem;
  }
  .card__cta--price-value {
    font-size: 4rem;
  }
}
@media (max-width: 43.75em) {
  .card {
    width: 70%;
  }
}
@media (max-width: 37.5em) {
  .card {
    width: 80%;
  }
}

.span-step {
  display: inline-block;
  padding: 0.2rem 1rem;
}
.span-step--1 {
  transform: translate(0.5rem);
}
.span-step--2 {
  transform: translateX(-1.5rem);
}
.span-step--3 {
  transform: translateX(0.7rem);
}

.show-modal {
  font-size: 2rem;
  font-weight: 600;
  padding: 1.75rem 3.5rem;
  margin: 5rem 2rem;
  border: none;
  background-color: #fff;
  color: #444;
  border-radius: 10rem;
  cursor: pointer;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

p {
  font-size: 1.8rem;
}

/* -------------------------- */
/* CLASSES TO MAKE MODAL WORK */
.hidden {
  display: none;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 95vh;
  background-color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 50;
  overflow: scroll;
}
@media (max-width: 50em) {
  .modal {
    height: fit-content;
  }
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 40;
}
.modal__canvas {
  display: block;
  margin: auto;
  margin-top: 4rem;
}
.modal__error {
  background-color: orangered;
  color: #fff;
  padding: 1rem;
}

.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  text-align: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  background-color: #fff;
  cursor: pointer;
  border: none;
}
@media (max-width: 31.25em) {
  .btn,
  .btn:link,
  .btn:visited {
    font-size: 1.4rem;
  }
}
@media (max-width: 23.44em) {
  .btn,
  .btn:link,
  .btn:visited {
    margin-bottom: 2rem;
  }
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(34, 34, 34, 0.2);
}

.btn::after {
  transform: scaleX(1.3) scaleY(1.5);
  opacity: 0;
}

.btn:active,
.btn:focus {
  transform: translate(-1px);
  box-shadow: 0 5px 10px rgba(34, 34, 34, 0.2);
  outline: none;
}

.btn--white {
  background-color: #fff;
  color: var(--color-grey-dark-1);
}
.btn--white::after {
  background-color: #fff;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn--animated {
  animation: moveUp 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-text:link,
.btn-text:visited {
  font-size: 1.6rem;
  color: #c8d8e4;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #c8d8e4;
  padding: 3px;
  transition: all 0.2;
}

.btn-text:hover {
  background-color: #c8d8e4;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(34, 34, 34, 0.15);
  transform: translateY(-2px);
}

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(34, 34, 34, 0.15);
  transform: translateY(0);
}

.bg-video {
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.bg-video__content {
  object-fit: cover;
  width: 100%;
  height: 130rem;
}

.information__detail {
  flex: 0 0 40%;
  margin-top: 4rem;
}
@media (max-width: 56.25em) {
  .information__detail {
    width: 70%;
    margin-top: 0;
  }
}

.information__paragraph {
  font-size: 2rem;
  color: var(--color-grey-dark-1);
  font-family: "Roboto", sans-serif;
  line-height: 3.4rem;
  border-left: 3px dotted #52ab98;
  margin-bottom: 5rem;
  padding-left: 5rem;
  opacity: 0;
  will-change: opacity, animation;
}
.information__paragraph.is-visible {
  opacity: 1;
  animation: moveInLeft 0.8s ease-out 0.2s backwards;
}

.information__image {
  width: 50rem;
  height: auto;
  flex: 0 0 40%;
  box-shadow: 0rem 3rem 6rem rgba(34, 34, 34, 0.4);
  opacity: 0;
  transition: opacity 0.8s ease-out 0.8s;
}
@media (max-width: 56.25em) {
  .information__image {
    width: 70%;
  }
}
.information__image.is-visible {
  opacity: 1;
}

.info-form {
  width: 65%;
}
.info-form__input,
.info-form__text-area {
  width: 100%;
  border-radius: 3px;
  border: 2px solid var(--color-grey-light-4);
  margin-bottom: 4rem;
  background-color: transparent;
  color: #fff;
  padding-left: 1.5rem;
  transition: all 0.3s;
}
.info-form__input:focus,
.info-form__text-area:focus {
  outline: none;
  box-shadow: 0 3rem 6rem rgba(34, 34, 34, 0.6);
}
.info-form__input:focus:invalid,
.info-form__text-area:focus:invalid {
  border: 2px solid #faa0a0;
}
.info-form__input:focus:valid,
.info-form__text-area:focus:valid {
  border: 2px solid #b8d8be;
}
.info-form__input::-webkit-input-placeholder,
.info-form__text-area::-webkit-input-placeholder {
  color: #fff;
}
.info-form__input {
  height: 6rem;
  font-size: 1.6rem;
  font-family: "Raleway", sans-serif;
}
.info-form__text-area {
  padding-top: 1.5rem;
  font-size: 1.6rem;
  font-family: "Raleway", sans-serif;
}
.info-form__btn-cont {
  text-align: right;
}
@media (max-width: 56.25em) {
  .info-form__btn-cont {
    text-align: center;
  }
}

.segway__detail {
  background-image: url(../img/vision.jpg);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.segway__image {
  width: 50%;
  height: auto;
  box-shadow: 0 3rem 6rem rgba(34, 34, 34, 0.4);
}

.segway__text-cont {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.segway__span {
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  line-height: 9rem;
  display: block;
  color: #fff;
}

.top-bar {
  padding: 2rem;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: fixed;
  /* Set the navbar to fixed position */
  top: 0;
  /* Position the navbar at the top of the page */
  width: 100%;
  /* Full width */
}
.top-bar__btn {
  background-color: #52ab98;
  color: #fff;
  outline: none;
  border: none;
  border-radius: 3px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  padding: 1rem 2rem;
  margin-right: 1.5rem;
  cursor: pointer;
}
.top-bar__btn:hover {
  background-color: #2b6777;
  transition: all 0.3s;
}
@media (max-width: 50em) {
  .top-bar__btn {
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    font-size: 1.4rem;
  }
}
.top-bar__close-modal {
  font-size: 3rem;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
  margin-right: 1rem;
}

.modal-cont {
  position: relative;
}

.lang-menu {
  text-align: center;
  font-weight: bold;
  position: relative;
}
.lang-menu:hover ul {
  display: block;
}
.lang-menu__image {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.lang-menu__text {
  font-size: 1.6rem;
}
.lang-menu__dropdown {
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  position: absolute;
  top: 2.7rem;
  right: -1.6rem;
  width: fit-content;
  border-radius: 3px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  display: none;
}
.lang-menu__dropdown--link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 5px 10px;
  color: #333;
  font-size: 1.2rem;
}
.lang-menu__dropdown--image {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.lang-menu:hover {
  display: block;
}
.lang-menu ul li {
  list-style: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem;
}

.lang-menu .selected-lang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2;
  cursor: pointer;
}

.lang-menu ul li:hover {
  background-color: #f2f2f2;
  transition: all 0.3s;
}

.lang-menu:hover ul {
  display: block;
}

.u-center-text {
  text-align: center;
}

.u-right-text {
  text-align: right;
  margin-right: 3rem;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem;
}

.u-margin-top-small {
  margin-top: 2rem;
}

.u-margin-top-medium {
  margin-top: 4rem;
}

.u-margin-top-big {
  margin-top: 8rem;
}

.u-margin-top-huge {
  margin-top: 10rem;
}

@keyframes moveDown {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  80% {
    opacity: 0.5;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveUp {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  80% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    opacity: 0.5;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    opacity: 0.5;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
