/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
:root {
  --size-9xl: 60px;
  --size-8xl: 48px;
  --size-7xl: 45px;
  --size-6xl: 36px;
  --size-5xl: 32px;
  --size-4xl: 30px;
  --size-3xl: 28px;
  --size-2xl: 24px;
  --size-xl: 20px;
  --size-lg: 18px;
  --size-base: 16px;
  --size-sm: 14px;
  --size-xs: 12px;
  --size-heading-1: var(--size-6xl);
  --size-heading-2: var(--size-6xl);
  --size-heading-3: var(--size-2xl);
  --size-heading-4: var(--size-sm);
  --size-heading-5: var(--size-xs);
  --letter-spacing-1: -1.75px;
  --letter-spacing-2: 0.5%;
  --line-height-1: var(--size-7xl);
  --line-height-2: var(--size-5xl);
  --line-height-3: var(--size-2xl);
  --line-height-4: var(calc(var(--size-xl) + 2px));
  --line-height-5: var(--size-xl);
  --line-height-6: var(--size-base);
  --line-height-7: var(--size-sm);
}
@media screen and (min-width: 768px) {
  :root {
    --size-heading-1: var(--size-8xl);
    --size-heading-3: var(--size-2xl);
    --size-heading-4: var(--size-base);
    --size-heading-5: var(--size-sm);
    --line-height-1: var(--size-7xl);
  }
}
@media screen and (min-width: 1180px) {
  :root {
    --size-heading-1: var(--size-9xl);
    --size-heading-2: var(--size-8xl);
    --size-heading-3: var(--size-4xl);
    --line-height-1: var(--size-9xl);
    --line-height-2: calc(var(--size-6xl) + 4px);
  }
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  /* Fonts */
  --font-inter: "Inter", sans-serif;
  /* Colors */
  --highlight-darkest: #1688e8;
  --highlight-dark: #2897ff;
  --highlight-medium: #6fbaff;
  --highlight-light: #b3daff;
  --highlight-lightest: #eaf2ff;
  --neutral-light-darkest: #c5c6cc;
  --neutral-light-dark: #d4d6dd;
  --neutral-light-medium: #e8e9f1;
  --neutral-light-light: #f8f9fe;
  --neutral-light-lightest: #ffffff;
  --neutral-dark-darkest: #1f2024;
  --neutral-dark-dark: #2f3036;
  --neutral-dark-medium: #494a50;
  --neutral-dark-light: #71727a;
  --neutral-dark-lightest: #8f9098;
  --support-success-dark: #298267;
  --support-success-medium: #3ac0a0;
  --support-success-light: #e7f4e8;
  --support-warning-dark: #e86339;
  --support-warning-medium: #ffb37c;
  --support-warning-light: #fff4e4;
  --support-error-dark: #ed3241;
  --support-error-medium: #ff616d;
  --support-error-light: #ffe2e5;
  --shadow-md: 0px 4px 8px -2px rgba(17, 24, 39, 0.1), 0px 2px 4px -2px rgba(17, 24, 39, 0.06);
  --shadow-base: 0 1px 6px rgba(0, 0, 0, 0.08);
  /* Border radiuses */
  --radius-2xl: 100px;
  --radius-xl: 70px;
  --radius-lg: 40px;
  --radius-base: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  /* Gaps */
  /* Paddings */
}

body {
  font-size: var(--size-base);
  line-height: calc(var(--size-xl) + 2px);
  width: 100%;
  font-family: var(--font-inter);
  background-color: var(--neutral-dark-dark);
  color: var(--neutral-light-dark);
}

img {
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  background-color: transparent;
  cursor: pointer;
}

button,
input,
select {
  border: none;
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--neutral-dark-darkest);
}

h1 {
  font-weight: 700;
  font-size: var(--size-heading-1);
  letter-spacing: var(--letter-spacing-1);
  line-height: var(--line-height-1);
}
@media screen and (min-width: 768px) {
  h1 {
    line-height: var(--size-9xl);
  }
}
@media screen and (min-width: 1180px) {
  h1 {
    line-height: 1.2;
  }
}

h2 {
  font-weight: 700;
  font-size: var(--size-heading-2);
  letter-spacing: var(--letter-spacing-1);
  line-height: var(--line-height-1);
}

h3 {
  font-weight: 600;
  font-size: var(--size-heading-3);
  line-height: var(--line-height-2);
}

h4 {
  font-weight: 600;
  font-size: var(--size-heading-4);
}

h5 {
  font-weight: 600;
  font-size: var(--size-heading-5);
}

.container {
  padding: 0 16px;
  max-width: 1216px;
  margin: auto auto;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    padding: 0;
  }
}

.button {
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
}
.button--primary {
  background-color: var(--highlight-darkest);
  color: var(--neutral-light-lightest);
}

.button--secondary {
  background-color: transparent;
  color: var(--highlight-darkest);
  border: 1px solid var(--highlight-darkest);
}

.header {
  background-color: #f6f9ff;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.header__container {
  padding: 16px 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: start;
}
@media screen and (min-width: 768px) {
  .header__container {
    padding: 20px 40px;
    grid-template-columns: 1fr auto auto;
  }
}
@media screen and (min-width: 1180px) {
  .header__container {
    grid-template-columns: auto auto 1fr;
    gap: 32px;
  }
}
.header__logo {
  width: 128px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 155px;
  }
}
.header__burger-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1180px) {
  .header__burger-button {
    display: none;
  }
}
.header__links {
  display: none;
}
@media screen and (min-width: 1180px) {
  .header__links {
    display: block;
  }
}
.header__links-container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 8px;
}
.header__links-container a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--neutral-dark-darkest);
  white-space: nowrap;
  padding: 4px 40px;
}
.header__links-container a.active {
  color: var(--highlight-darkest);
}
.header__links-container > li:last-child {
  display: none;
}
.header__play-store {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__play-store {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1180px) {
  .header__play-store {
    justify-self: flex-end;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background-image: url("../assets/hero-bg-mobile.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f2f7ff;
}
@media screen and (min-width: 620px) {
  .hero {
    background-image: url("../assets/hero-bg-tablet.svg");
  }
}
@media screen and (min-width: 1180px) {
  .hero {
    background-image: url("../assets/hero-bg-tablet.svg");
  }
}
.hero::before {
  content: url("../assets/decorative-blue-circle.svg");
  position: absolute;
  right: -70px;
  top: 190px;
  -webkit-filter: blur(80px);
  filter: blur(80px);
  display: none;
}
@media screen and (min-width: 768px) {
  .hero::before {
    right: -20px;
    top: 140px;
  }
}
@media screen and (min-width: 1180px) {
  .hero::before {
    -webkit-filter: blur(90px);
    filter: blur(90px);
    right: 0;
  }
}
.hero__container {
  min-height: 713px;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .hero__container {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 58px;
    min-height: 836px;
  }
}
@media screen and (min-width: 1180px) {
  .hero__container {
    min-height: 735px;
    padding-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.hero__copy {
  padding-bottom: 40px;
  display: grid;
  justify-items: start;
  gap: 32px;
  max-width: 442px;
  z-index: 5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero__copy {
    max-width: 688px;
    padding-bottom: 58px;
  }
}
@media screen and (min-width: 1180px) {
  .hero__copy {
    padding-bottom: 0;
  }
}
.hero__text {
  display: grid;
  gap: 8px;
}
.hero__text span {
  white-space: nowrap;
}
@media screen and (min-width: 1180px) {
  .hero__text span {
    white-space: wrap;
  }
}
.hero__text p {
  color: var(--neutral-dark-darkest);
  font-size: var(--size-lg);
  line-height: var(--size-3xl);
}
@media screen and (min-width: 768px) {
  .hero__text p {
    font-size: 20px;
  }
}
.hero__skew {
  width: 0;
  height: 0;
  border-left: 110vw solid transparent;
  border-bottom: 35vh solid var(--neutral-dark-dark);
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}
.hero__skew::before {
  background: url("../assets/decorative-lines.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  bottom: 0;
  width: 110vw;
  display: block;
  position: absolute;
}
.hero__img {
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: clamp(320px, 70vw, 488px);
  height: clamp(302px, 60vw, 470px);
  display: block;
}
@media screen and (min-width: 1180px) {
  .hero__img {
    position: static;
    bottom: auto;
    top: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
    -ms-flex-item-align: end;
    align-self: flex-start;
    max-width: 600px;
    height: 1000px;
  }
}

.advantages__container {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
  display: grid;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .advantages__container {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 64px;
  }
}
@media screen and (min-width: 1180px) {
  .advantages__container {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.advantages__copy {
  display: grid;
  gap: 16px;
  max-width: 688px;
  margin: 0 auto;
}
@media screen and (min-width: 1180px) {
  .advantages__copy {
    max-width: 100%;
  }
}
.advantages__copy h2 {
  color: var(--neutral-light-lightest);
}
@media screen and (min-width: 768px) {
  .advantages__copy h2 span {
    white-space: nowrap;
  }
}
.advantages__copy p {
  font-size: var(--size-lg);
  line-height: var(--size-3xl);
}
.advantages__items {
  display: grid;
  gap: 48px;
  max-width: 688px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .advantages__items {
    gap: 64px;
  }
}
@media screen and (min-width: 1180px) {
  .advantages__items {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 34px;
  }
}
.advantages__item img {
  width: 168px;
  height: 160px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .advantages__item img {
    width: 250px;
    height: 250px;
  }
}
.advantages__item div {
  display: grid;
  gap: 8px;
}
.advantages__item h3 {
  color: var(--neutral-light-lightest);
}
@media screen and (min-width: 1180px) {
  .advantages__item h3 span {
    white-space: nowrap;
  }
}

.objectives__container {
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .objectives__container {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 64px;
  }
}
@media screen and (min-width: 1180px) {
  .objectives__container {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.objectives__copy {
  position: relative;
}
.objectives__copy img {
  width: 95px;
  height: 78px;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .objectives__copy img {
    width: 119px;
    height: 98px;
  }
}
.objectives__copy h2 {
  color: var(--neutral-light-lightest);
  position: absolute;
  bottom: 0;
  left: 24px;
}
.objectives__group {
  display: grid;
  gap: 30px;
}
.objectives article {
  background-color: var(--neutral-light-lightest);
  color: var(--neutral-dark-darkest);
  padding: 32px;
  border-radius: var(--radius-sm);
  display: grid;
  gap: 32px;
}
.objectives__vision {
  text-align: justify;
}
.objectives__vision div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}
.objectives__mission {
  text-align: left;
}

.accordion {
  display: grid;
  gap: 16px;
}
.accordion__item {
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--neutral-light-dark);
  display: grid;
  gap: 0;
}
.accordion__item.active .accordion__collapse {
  grid-template-rows: auto;
}
.accordion__item button {
  padding: 16px;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 24px;
  text-align: left;
}
.accordion__item h4 {
  font-size: 16px;
  line-height: auto;
}
.accordion__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion__collapse {
  display: grid;
  grid-template-rows: 0;
  overflow: hidden;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.accordion__body {
  display: grid;
  grid-template-columns: auto 48px;
  padding: 0 0 16px 16px;
}
.accordion__answer {
  text-align: justify;
}

.features {
  background-color: var(--neutral-light-lightest);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.features__container {
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  gap: 48px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .features__container {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 64px;
  }
}
@media screen and (min-width: 1180px) {
  .features__container {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.features h2 {
  max-width: 670px;
  justify-self: center;
}
@media screen and (min-width: 1180px) {
  .features h2 {
    max-width: 864px;
  }
}
.features__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 300px));
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .features__items {
    gap: 64px;
  }
}
@media screen and (min-width: 1180px) {
  .features__items {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 30px;
  }
}
.features__item {
  color: var(--neutral-dark-light);
  display: grid;
  justify-items: center;
  gap: 24px;
}
.features__item div {
  display: grid;
  gap: 8px;
}

.team {
  background-color: var(--neutral-light-lightest);
  -webkit-border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  -moz-border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  -ms-border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  -o-border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.team__container {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .team__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1180px) {
  .team__container {
    padding-bottom: 96px;
    padding-top: 96px;
  }
}
.team h2 {
  text-align: center;
}
.team__actions {
  display: none;
}
@media screen and (min-width: 768px) {
  .team__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 24px;
  }
}
.team__actions button {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  display: grid;
  place-items: center;
  background-color: var(--highlight-lightest);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.team__actions button.active {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.team__actions button svg {
  fill: var(--highlight-darkest);
}
.team__company {
  margin-top: 25px;
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .team__company {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .team__company {
    margin-bottom: 82px;
  }
}
.team__staffs {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  gap: 12px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.team__staffs::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .team__staffs {
    gap: 16px;
    -ms-scroll-snap-type: none;
    scroll-snap-type: none;
    overflow: hidden;
  }
}
.team__staff {
  overflow: hidden;
  position: relative;
  padding: 20px;
  width: 90%;
  height: 468px;
  border-radius: var(--radius-sm);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: -webkit-gradient(linear, left top, right top, from(rgb(242, 247, 255)), to(rgba(242, 247, 255, 0)));
  background: linear-gradient(to right, rgb(242, 247, 255), rgba(242, 247, 255, 0));
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}
.team__staff-info {
  font-weight: 600;
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .team__staff-info {
    opacity: 0;
  }
}
@media screen and (min-width: 1180px) {
  .team__staff-info {
    gap: 8px;
  }
}
.team__staff-info span {
  font-size: 12px;
  color: var(--highlight-darkest);
  letter-spacing: 0.6px;
}
@media screen and (min-width: 1180px) {
  .team__staff-info span {
    font-size: 16px;
  }
}
.team__staff-info p {
  font-size: 24px;
  color: var(--neutral-dark-darkest);
}
@media screen and (min-width: 768px) {
  .team__staff-info p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1180px) {
  .team__staff-info p {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .team__staff {
    width: 100%;
    -webkit-box-flex: 0.5;
    -ms-flex: 0.5;
    flex: 0.5;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    cursor: pointer;
  }
  .team__staff.active {
    -webkit-box-flex: 2.5;
    -ms-flex: 2.5;
    flex: 2.5;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  .team__staff.active .team__staff-info {
    display: grid;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in 0.4s;
    transition: opacity 0.3s ease-in 0.4s;
  }
}
.team__staff::before {
  content: url("../assets/decorative-green-circle.svg");
  position: absolute;
  bottom: 20px;
  left: -20px;
  display: block;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}
.team__staff::after {
  content: url("../assets/decorative-blue-circle.svg");
  position: absolute;
  top: 6px;
  right: -30px;
  display: block;
  -webkit-filter: blur(65px);
  filter: blur(65px);
}
.team__staff img {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  max-width: 130%;
}
@media screen and (min-width: 768px) {
  .team__staff img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 326px;
  }
}

.people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px 16px;
}
@media screen and (min-width: 768px) {
  .people {
    gap: 24px;
  }
}
@media screen and (min-width: 1180px) {
  .people {
    gap: 64px 24px;
  }
}
.people__person {
  overflow: hidden;
  display: grid;
  gap: 24px;
  width: calc(50% - 8px);
}
@media screen and (min-width: 768px) {
  .people__person {
    width: calc(33.3333333333% - 16px);
  }
}
@media screen and (min-width: 1180px) {
  .people__person {
    width: calc(20% - 20px);
  }
}
.people__person-info {
  display: grid;
  gap: 8px;
  text-align: center;
}
.people__person-info span {
  color: var(--neutral-dark-light);
}
.people__person img {
  border-radius: var(--radius-sm);
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .people__person img {
    height: 200px;
  }
}

.supportedBy {
  background-color: var(--neutral-light-lightest);
}
.supportedBy__container {
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .supportedBy__container {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 64px;
  }
}
@media screen and (min-width: 1180px) {
  .supportedBy__container {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media screen and (min-width: 768px) {
  .supportedBy__supporters {
    gap: 64px 24px;
  }
}
.supportedBy h2 {
  text-align: center;
}

.cta {
  background-color: var(--highlight-dark);
}
@media screen and (min-width: 1180px) {
  .cta {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
  }
}
.cta__copy {
  padding-top: 48px;
  padding-bottom: 48px;
}
.cta__copy-container {
  background-color: var(--highlight-darkest);
}
@media screen and (min-width: 768px) {
  .cta__copy {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1180px) {
  .cta__copy {
    padding: 130.5px 136px;
  }
}
.cta__copy h2 {
  color: var(--highlight-lightest);
}
.cta__copy p {
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 40px;
  font-size: var(--size-lg);
  line-height: var(--size-3xl);
}
.cta__copy img {
  width: 185px;
  height: 55px;
}
.cta__app-preview {
  padding-top: 64px;
  background-color: var(--highlight-dark);
  -ms-flex-item-align: end;
  align-self: end;
}
@media screen and (min-width: 768px) {
  .cta__app-preview {
    padding-top: 88px;
  }
}
.cta__app-preview img {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 435px;
}

.slogan {
  background-color: var(--neutral-light-lightest);
}
.slogan__container {
  padding-top: 28px;
  padding-bottom: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .slogan__container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.slogan h3 {
  color: var(--highlight-darkest);
}
@media screen and (min-width: 768px) {
  .slogan h3 {
    font-weight: 700;
    font-size: var(--size-heading-2);
    letter-spacing: var(--letter-spacing-1);
    line-height: var(--line-height-1);
  }
}
.slogan span {
  color: #01c980;
}

.footer h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #ede9fe;
}
.footer__container {
  padding-top: 48px;
  padding-bottom: 48px;
  color: #d1d5db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1180px) {
  .footer__container {
    padding-top: 96px;
    padding-bottom: 96px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.footer__company {
  font-size: 14px;
  line-height: 20px;
  display: grid;
  gap: 32px;
}

.footer__supporters {
  display: grid;
  gap: 16px;
}
.footer__supporters ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.footer__supporters img {
  height: 102px;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .footer__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 80px;
  }
}
.footer__links-group {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 1180px) {
  .footer__links-group {
    gap: 24px;
  }
}
.footer__links-group ul {
  display: grid;
  gap: 12px;
}
.footer__links-group a {
  font-size: var(--size-base);
  line-height: calc(var(--size-xl) + 2px);
}
