/* CSS Reset */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --black: #3e3e3e;
  --white: #ffffff;
  --blue: #1893e1;
  --light-blue: #d1e9f9;
  --border: #d9d9d9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Mulish', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
pre {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1;
}

@media screen and (max-width: 960px) {
  h1,
  h2,
  h3 {
    line-height: 1.3;
  }
}
section,
header {
  width: 100%;
}
.section-wrap {
  position: relative;
  width: 100%;
  max-width: 124rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8rem;
  z-index: 100;
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: 1000000;
}
.header-wrap {
  width: 100%;
  max-width: 130rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1.4rem 2rem 2.1rem 2rem;
}
.first-section {
  margin-top: 14.5rem;
}
@media screen and (max-width: 480px) {
  .first-section {
    margin-top: 10rem;
  }
}
.logo {
  width: 100%;
  max-width: 27.6rem;
}
@media screen and (max-width: 480px) {
  .logo {
    max-width: 20rem;
  }
}
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.7rem;
}
.header-right-mob {
  display: none;
}
@media screen and (max-width: 1300px) {
  .header-right {
    display: none;
  }
  .header-right-mob {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    padding: 8rem 2rem 2rem 3rem;
    width: max-content;
    height: 100vh;
    background-color: var(--blue);
    z-index: 99999;
    border-left: 2px solid var(--white);
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
  }
}
.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
  }
}
.nav-link {
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 1.6rem;
  border-right: 1px solid var(--border);
}
@media screen and (max-width: 1300px) {
  .nav-link {
    color: var(--white);
    padding: 0;
    border-right: none;
  }
  .share {
    max-width: 20rem;
    margin-top: 2rem;
  }
}
.nav-link.is-active,
.nav-link.is-active .short-text,
.nav-link.is-active .full-text {
  color: #2bd6c8 !important;
}
.full-text {
  display: none;
}
.nav-link-extend:hover {
  .short-text {
    display: none;
  }
  .full-text {
    display: block;
  }
}
.barholder {
  display: none;
}
@media screen and (max-width: 1300px) {
  .barholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    z-index: 999999;
  }
}
.bar {
  width: 33px;
  height: 3px;
  background: var(--blue);
  transition: all 0.3s ease-in-out;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(0px, 6px);
  transform: rotate(-45deg) translate(-5px, 17px);
  background-color: var(--white);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(0px, -8px);
  transform: rotate(45deg) translate(1px, -12px);
  background-color: var(--white);
}
.toggle {
  transform: translateX(0%);
}

/* --- HEADER --- */
.hero {
  background: url(img/background.svg) no-repeat top center/cover;
  background-size: cover;
}
.hero-wrap {
  width: 100%;
  max-width: 140rem;
  padding: 3.5rem 3.3rem 8rem 3.3rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3.1rem;
}
@media screen and (max-width: 480px) {
  .hero-wrap {
    padding: 3.5rem 1.6rem 4rem 1.6rem;
    gap: 3.1rem;
  }
}
.h1 {
  max-width: 67.9rem;
  text-align: center;
  font-size: 6.4rem;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .h1 {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 480px) {
  .h1 {
    font-size: 3.4rem;
  }
}
.philosopher {
  color: var(--blue);
  font-family: 'Philosopher', sans-serif;
  font-style: italic;
  font-weight: 700;
}
.hero-images {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
}
.column {
  width: 23%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 780px) {
  .column {
    width: 30%;
  }
}
.column-offset {
  position: relative;
  margin-bottom: 9.7rem;
}
@media screen and (max-width: 780px) {
  .column-offset {
    margin-bottom: 0;
  }
}
.column-big {
  position: relative;
  width: 32%;
}
@media screen and (max-width: 780px) {
  .column-big {
    width: 40%;
  }
}
.image {
  width: 100%;
  height: auto;
}
.side-img {
  aspect-ratio: 238 / 464;
}
.side-img-mob {
  display: none;
}
@media screen and (max-width: 780px) {
  .side-column {
    display: none;
  }
  .side-img-mob {
    display: block;
  }
}
.square-img {
  aspect-ratio: 238 / 224;
}
.middle-top-img {
  aspect-ratio: 357 / 413;
}
.middle-bottom-img {
  aspect-ratio: 357 / 250;
}
.instagram-wrap {
  position: absolute;
  bottom: -98px;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
}
@media screen and (max-width: 1080px) {
  .instagram-wrap {
    bottom: -110px;
  }
}
.instagram-wrap-mob {
  display: none;
}
@media screen and (max-width: 780px) {
  .instagram-wrap {
    display: none;
  }
  .instagram-wrap-mob {
    display: flex;
    bottom: -65px;
  }
}
.see-more {
  color: var(--black);
  text-align: center;
  font-family: 'Philosopher', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 880px) {
  .see-more {
    font-size: 1.4rem;
  }
}
.instagram {
  color: var(--black);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.8rem 2.3rem;
  background-color: var(--light-blue);
  border-radius: 20px;
}
@media screen and (max-width: 880px) {
  .instagram {
    padding: 1.4rem 1.8rem;
    font-size: 1.4rem;
  }
}
.line {
  position: absolute;
  top: 7%;
  right: 4%;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card-back,
.flip-card-front {
  transition: opacity 0.5s;
}
.flip-card-back {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 1rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .flip-card-back {
    gap: 1rem;
  }
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card:hover .flip-card-back {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.flip-card:hover .flip-card-front {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.card-text {
  color: var(--white);
  text-align: center;
  font-size: 1.4rem;
  max-width: 24rem;
  line-height: 1.3;
}
@media screen and (max-width: 1250px) {
  .card-text {
    display: none;
  }
}
.card-name {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .card-name {
    font-size: 1.2rem;
  }
}
.card-mob-label {
  display: none;
}
@media screen and (max-width: 1250px) {
  .card-mob-label {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
  }
}

/* --- FACTS --- */
.facts {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 8rem;
  margin-top: 6.8rem;
}
@media screen and (max-width: 480px) {
  .facts {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 1120px) {
  .facts {
    flex-direction: column;
    max-width: 54.3rem;
  }
}
.facts-grid-groups {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 27.1rem 27.1rem;
  gap: 1.6rem;
}
@media screen and (max-width: 480px) {
  .facts-grid-groups {
    grid-template-rows: 22rem 22rem;
  }
}
.facts-grid-text {
  display: block;
  max-width: 22.6rem;
  font-size: 2rem;
}
.facts-grid-items {
  position: relative;
  background: var(--light-blue);
  border-radius: 20px;
  padding: 6.6rem 3rem 0 3rem;
  font-size: 2rem;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 480px) {
  .facts-grid-items {
    padding: 4rem 1.6rem 0 1.6rem;
    font-size: 1.6rem;
  }
}
.facts-grid-items:hover {
  cursor: pointer;
  background: rgba(24, 147, 225, 0.5);
}
.facts-grid-groups:first-child .facts-grid-items:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
}

.facts-grid-groups:first-child .facts-grid-items:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}

.facts-grid-groups:first-child .facts-grid-items:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

.facts-grid-groups:last-child .facts-grid-items:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}

.facts-grid-groups:last-child .facts-grid-items:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}

.facts-grid-groups:last-child .facts-grid-items:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}
.hands {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1120px) {
  .hands {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .hands {
    max-width: 20rem;
  }
}
.people {
  position: absolute;
  bottom: 0;
  left: 0;
}
/* --- CHALLENGE --- */
.challenge {
  width: 100%;
  background: url(img/background.svg) no-repeat center center;
  background-size: cover;
}
.challenge-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  margin-top: 9rem;
  margin-bottom: 18rem;
}
@media screen and (max-width: 1180px) {
  .challenge-wrap {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
}
.challenge-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4.6rem;
}
@media screen and (max-width: 1180px) {
  .challenge-left {
    max-width: 60rem;
  }
}
.h2 {
  color: var(--blue);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 580px) {
  .h2 {
    font-size: 2.4rem;
    text-align: center;
  }
}
.p {
  color: #000;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 580px) {
  .p {
    font-size: 1.6rem;
    text-align: center;
  }
}
.challenge-right {
  flex: 1;
}
.challenge-right img {
  width: 100%;
  max-width: 54.8rem;
  aspect-ratio: 548 / 319;
}
.articles {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem 2.3rem;
  flex-wrap: wrap;
  margin-top: 6.6rem;
}
@media screen and (max-width: 480px) {
  .articles {
    gap: 3rem 2rem;
  }
}
.article {
  width: 100%;
  max-width: 38.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}
@media screen and (max-width: 480px) {
  .article {
    gap: 2rem;
  }
}
.article h3 {
  text-align: left;
  color: var(--black);
  font-size: 2.4rem;
}
@media screen and (max-width: 480px) {
  .article h3 {
    font-size: 1.8rem;
  }
}
.article img {
  max-width: 38.4rem;
  aspect-ratio: 384 / 271;
  object-fit: cover;
  border-radius: 20px;
}
.literature {
  text-align: center;
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  margin: 13rem 0 1.5rem 0;
}
@media screen and (max-width: 480px) {
  .literature {
    font-size: 1.6rem;
    margin: 8rem 0 1.5rem 0;
  }
}
/* --- FOOTER --- */
.footer {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 6.5rem 0 7.7rem 0;
}
.footer-wrap {
  margin: 0 auto;
}
.footer-h3 {
  font-style: italic;
  font-family: 'philosopher', sans-serif;
  margin-top: 2.3rem;
}
.footer-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3.2rem;
  margin: 11.2rem 0;
}
@media screen and (max-width: 480px) {
  .footer-logos {
    margin: 8rem 0;
  }
}
.footer-p {
  color: var(--white);
}
@media screen and (max-width: 480px) {
  .footer-p {
    text-align: center;
  }
}
.footer-logos-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .footer-logos-wrap {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-logos-wrap img {
    transform: scale(0.8);
  }
}

/* --- FA --- */
.h1-long {
  max-width: 89rem;
}
.philosopher-normal {
  font-style: normal;
}
.p-wrap {
  max-width: 59.1rem;
  margin-top: 4.8rem;
  text-align: center;
}
.dna-1 {
  position: absolute;
  top: 21%;
  left: 5%;
}
.dna-2 {
  position: absolute;
  bottom: -53%;
  right: 1%;
}
.dna-3 {
  position: absolute;
  bottom: -23%;
  left: 2%;
}
.dna-4 {
  position: absolute;
  top: -1%;
  right: -8%;
}
.dna-5 {
  position: absolute;
  bottom: 22%;
  left: 1%;
}
.dna-6 {
  position: absolute;
  top: 24%;
  right: 3%;
}
@media screen and (max-width: 1180px) {
  .dna-1,
  .dna-2,
  .dna-3,
  .dna-4,
  .dna-5,
  .dna-6 {
    transform: scale(0.5);
  }
}
@media screen and (max-width: 1180px) {
  .dna-1,
  .dna-2,
  .dna-3,
  .dna-4,
  .dna-5,
  .dna-6 {
    transform: scale(0.5);
  }
}
@media screen and (max-width: 1030px) {
  .dna-1,
  .dna-2,
  .dna-3,
  .dna-4,
  .dna-5,
  .dna-6 {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .dna-1,
  .dna-3,
  .dna-5 {
    display: block;
    bottom: -150px;
    right: unset;
    top: unset;
    left: 50%;
    transform: translate(-50%, 0) scale(0.6);
  }
}
/* --- FA CARDS --- */
.fa-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin: 9.3rem 0 8rem 0;
}
@media screen and (max-width: 780px) {
  .fa-cards {
    flex-direction: column;
    margin: 8rem 0 4rem 0;
  }
}
.fa-card {
  position: relative;
  width: 100%;
  max-width: 28.7rem;
  min-height: 27.1rem;
  background-color: var(--light-blue);
  padding: 6.6rem 5.3rem 7.3rem 3rem;
  border-radius: 20px;
}
@media screen and (max-width: 780px) {
  .fa-card {
    padding: 6.6rem 4rem 4rem 3rem;
  }
}
.fa-card:hover {
  background: rgba(24, 147, 225, 0.5);
}
.fa-text {
  position: relative;
  z-index: 100;
}
.cloud-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.cloud-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
/* --- FA - SLIDER --- */
.fa-swiper {
  width: 100%;
  max-width: 95.4rem;
  margin: 6.8rem auto 8rem auto;
}
@media screen and (max-width: 780px) {
  .fa-swiper {
    margin: 4rem auto;
  }
}
.swiper-wrapper {
  width: 100%;
}
.swiper-slide {
  width: 100%;
  max-width: 95.4rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  background: rgba(24, 147, 225, 0.7);
}
.slide-top,
.slide-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.vh {
  height: 60.5rem;
}
@media screen and (max-width: 480px) {
  .vh {
    height: 62rem;
  }
}
.sma-wrapper .swiper-slide .vh {
  height: auto;
}
.slide-top {
  gap: 2.3rem;
  background-color: var(--blue);
  padding: 6.3rem 2rem;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 480px) {
  .slide-top {
    gap: 2rem;
    background-color: var(--blue);
    padding: 4rem 2rem;
  }
}
.h3 {
  color: var(--white);
  text-align: center;
  font-family: 'Philosopher', sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
}
@media screen and (max-width: 780px) {
  .h3 {
    font-size: 2.4rem;
  }
}
.p-slide {
  color: var(--white);
}
.p-slide-bottom {
  color: var(--white);
  padding: 3.8rem 0;
  text-align: center;
  max-width: 80%;
}
@media screen and (max-width: 980px) {
  .minh {
    min-height: 15rem;
  }
}
@media screen and (max-width: 720px) {
  .minh {
    min-height: 17.2rem;
  }
}
@media screen and (max-width: 480px) {
  .minh {
    min-height: unset;
  }
}
.als-slide-bottom {
  min-height: 30rem;
}
.divider {
  width: 100%;
  height: 1px;
  max-width: 75rem;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.35);
}
.swiper-pagination {
  position: relative !important;
  margin-top: 3rem !important;
}
.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  margin: 0 8px !important;
  background-color: transparent !important;
  border: 1px solid var(--blue) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--blue) !important;
  border: 1px solid var(--blue) !important;
  transform: none !important; /* Uklanja scaling efekt */
}
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: transparent !important;
}

.fa-background {
  width: 100%;
  position: relative;
}
.fa-background-img {
  position: absolute;
  z-index: 0;
  top: -516px;
}
.sma-background-img {
  position: absolute;
  z-index: 0;
  top: -364px;
}
.als-background-img {
  position: absolute;
  z-index: 0;
  top: -307px;
}
.info-background-img {
  position: absolute;
  z-index: 0;
  top: -130px;
}
.fa-columns {
  position: relative;
  width: 100%;
  max-width: 95.4rem;
  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 6.8rem;
  margin-bottom: 8rem;
  z-index: 100;
}
@media screen and (max-width: 780px) {
  .fa-columns {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.fa-column {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.fa-column:first-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.fa-column-top {
  width: 100%;
  background-color: var(--blue);
  padding: 6.4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.fa-column-top-left {
  border-radius: 20px 0 0 0;
}
@media screen and (max-width: 780px) {
  .fa-column-top-left {
    border-radius: 20px 20px 0 0;
  }
}
.fa-column-top-right {
  border-radius: 0 20px 0 0;
}
@media screen and (max-width: 780px) {
  .fa-column-top-right {
    border-radius: 20px 20px 0 0;
  }
}
@media screen and (max-width: 980px) {
  .fa-column-top-left,
  .fa-column-top-right {
    min-height: 28.5rem;
  }
}
@media screen and (max-width: 780px) {
  .fa-column-top-left,
  .fa-column-top-right {
    min-height: unset;
  }
}
.fa-column-bottom {
  flex: 1;
  width: 100%;
  background: rgba(24, 147, 225, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .fa-column-bottom {
    min-height: 27rem;
  }
}
.fa-column-bottom-left {
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 780px) {
  .fa-column-bottom-left {
    border-radius: 0 0 20px 20px;
  }
}
.fa-column-bottom-right {
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 780px) {
  .fa-column-bottom-right {
    border-radius: 0 0 20px 20px;
  }
}
.p-wrap-2 {
  max-width: 71.2rem;
  text-align: center;
  margin-top: 2.4rem;
  margin-bottom: 7rem;
}
.mt-48 {
  margin: 4.8rem 0 0 0;
}
.sma-h3 {
  max-width: 72rem;
  color: #000;
}
.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 7.7rem;
  margin-top: 4.2rem;
}
@media screen and (max-width: 780px) {
  .steps {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
    margin-top: 3.6rem;
  }
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.number {
  color: var(--blue);
  text-align: center;
  font-family: 'Philosopher', sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
}
.step-text-top {
  color: var(--blue);
  text-align: center;
  font-family: 'Philosopher', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.step-text-bottom {
  text-align: center;
  font-size: 2rem;
  margin-top: 2.2rem;
}
@media screen and (max-width: 780px) {
  .step-text-bottom {
    max-width: 28rem;
    font-size: 1.6rem;
    margin-top: 2.2rem;
  }
}
.info-h3 {
  max-width: 72rem;
  color: #000;
  margin-top: 8rem;
}
.info-cards {
  margin-bottom: 13rem;
}
.info-title {
  position: relative;
  z-index: 100;
  display: block;
  color: var(--blue);
  font-family: 'Philosopher', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.1rem;
}
.info-subtitle {
  position: relative;
  z-index: 100;
  font-size: 1.8rem;
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.info-card {
  padding: 3.7rem 3rem 3rem 3rem;
}
