@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

::-webkit-scrollbar {
  width: 6px !important;
}

::-webkit-scrollbar-track {
  background: white !important;
}

::-webkit-scrollbar-thumb {
  background: #d69b2a !important;
}

body,
html {
  font-family: "Work Sans", sans-serif !important;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 28px;
  color: #111;
}

/*********************************
*           POP-UP               *
*********************************/
.pop-up {
  position: absolute;
  z-index: 9000;
  right: 0;
  top: 0;
  font-size: 1rem;
  display: flex;
  flex-direction: row-reverse;
}

.pop-up__head {
  width: 2.5vw;
  height: auto;
  background-color: #d29723;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

.pop-up__head__text {
  padding-top: 1vh;
  font-size: 1.2em;
  font-weight: 500;
  transform-origin: center 0;
  transform: translateX(40%) rotate(0.25turn) translateX(200%);
}

.pop-up__head__text img {
  width: 0.75vw;
  margin-left: 1.5vw;
}

.pop-up__body {
  width: 20vw;
  background-color: #fff;
  padding: 2vh 1vw;
  display: grid;
  grid-template-rows: repeat(3, 10vh) 2vh;
  border-top-left-radius: 0.2em;
  border-bottom-left-radius: 0.2em;
  transform: translateX(100%);
  position: relative;
  z-index: 10;
  transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}

.pop-up--open .pop-up__body {
  transform: translateX(0);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.pop-up__news {
  width: 100%;
  height: 100%;
  display: flex;
  color: #111;
  text-decoration: none;
  padding: 0.5vh 0;
}

.pop-up__news:hover {
  color: #111;
  text-decoration: none;
}

.pop-up__news__cover {
  width: 6vw;
  height: 90%;
  background-position: center center;
  background-size: cover;
}

.pop-up__news__body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0.5vw;
  padding-left: 1.5vw;
}

.pop-up__news__name {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pop-up__news__name:hover {
  text-decoration: underline;
}

.pop-up__news__date {
  font-size: 0.9em;
  font-weight: 300;
}

.pop-up__more {
  color: #d29723;
  text-align: right;
  text-decoration: none;
}

.pop-up__more:hover {
  color: #d29723;
  text-decoration: underline;
}

/*********************************
*           HEADER               *
*********************************/
.header {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  position: relative;
  background-image: url("../assets/img/entreprise.jpg");
  background-size: cover;
  background-position: center center;
  z-index: 10;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    transparent,
    transparent 20%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.4) 70%,
    transparent 80%,
    transparent
  );
}

.header__brand {
  position: absolute;
  top: 5vh;
  left: 5vw;
}

.header__brand img {
  width: 17vw;
}

.header__content {
  position: relative;
  z-index: 100;
  color: white;
  text-align: center;
}

.header__title {
  font-size: 3.3em;
  font-weight: 100;
  line-height: 1.5em;
  animation: fade 1500ms forwards;
  animation-delay: 400ms;
  opacity: 0;
  margin-bottom: 3vh;
}

.header__title strong {
  font-size: 1.2em;
  animation-delay: 400ms;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header__nav {
  color: #e0e0e0;
  animation: fade 1500ms forwards;
  animation-delay: 600ms;
  opacity: 0;
}

.header__nav span {
  font-size: 1em;
  font-weight: 400;
  margin-right: 0.75vw;
}

.header__nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  font-weight: 300;
}

.header__nav a:not(:last-child) {
  margin-right: 0.75vw;
}

.header__nav a:hover {
  color: #d29723;
}

@keyframes fade {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*********************************
*           GOALS                *
*********************************/
.goals {
  width: 100vw;
  max-width: 100vw;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  padding: 18vh 0;
}

.goals__overlay {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 90%;
  background-image: url("../assets/svg/home-page-onde.svg");
  background-size: cover;
  background-position: center center;
}

.goals__earth {
  position: absolute;
  top: 10%;
  right: 0;
  width: 45vw;
  height: 45vw;
  background-image: url("../assets/svg/home-page-globe.svg");
  background-size: cover;
  background-position: center center;
}

.goals__card {
  width: 0;
  background-color: #fff;
  position: relative;
  z-index: 50;
  border-left: solid 10px #222;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
}

.goals__card:not(:last-child) {
  margin-bottom: 4vh;
}

.goals__card--first {
  animation: animationFirstGoalCard 2500ms ease forwards;
}

@keyframes animationFirstGoalCard {
  from {
    width: 0;
    opacity: 0;
    margin-left: 0;
  }
  40% {
    width: 10px;
    opacity: 1;
    margin-left: 7vw;
  }
  to {
    width: 23vw;
    opacity: 1;
    margin-left: 7vw;
  }
}

.goals__card--second {
  animation: animationSecondGoalCard 3000ms ease forwards;
}

@keyframes animationSecondGoalCard {
  from {
    width: 0;
    opacity: 0;
    margin-left: 0;
  }
  40% {
    width: 10px;
    opacity: 1;
    margin-left: 27vw;
  }
  to {
    width: 23vw;
    opacity: 1;
    margin-left: 27vw;
  }
}

.goals__card--third {
  animation: animationThirdGoalCard 3500ms ease forwards;
}

@keyframes animationThirdGoalCard {
  from {
    width: 0;
    opacity: 0;
    margin-left: 0;
  }
  40% {
    width: 10px;
    opacity: 1;
    margin-left: 47vw;
  }
  to {
    width: 23vw;
    opacity: 1;
    margin-left: 47vw;
  }
}

.goals__card__body {
  min-height: 22vh;
  width: 100%;
  padding: 2vh 3vw;
  padding-right: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.goals__card__icon {
  margin-left: -1vw;
}

.goals__card__icon img {
  width: 5vw;
}

.goals__card__text {
  color: #d29723;
  font-size: 1.53em;
  line-height: 1.35em;
}

/*********************************
*            ACTIVITIES          *
*********************************/
.activities {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  font-size: 1rem;
  position: relative;
}

.activities__main {
  width: 100%;
  height: 100%;
  display: flex;
}

.activities__header {
  font-size: 3.5em;
  position: absolute;
  top: 10vh;
  left: 7vw;
  z-index: 200;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.8em;
}
.activities__header:hover {
  color: #fff;
  text-decoration: underline;
}

.activities__activity {
  height: 100%;
  width: calc(100% / 3);
  background-position: 30% center;
  background-size: cover;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activities__activity::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 50;
}

.activities__activity:nth-child(1) {
  background-image: url("../assets/img/network.jpg");
  background-position: 70% center;
}

.activities__activity:nth-child(2) {
  background-image: url("../assets/img/K-56-Top-T-012124.jpg");
}

.activities__activity:nth-child(3) {
  background-image: url("../assets/img/ID4H1A4865@2x.jpeg");
}

.activities__activity--hovered::after {
  visibility: hidden;
}

.activities__activity--hovered .activities__title {
  font-size: 2em;
}

.activities__activity--hovered .activities__button {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.activities__content {
  color: #fff;
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 30em;
  margin-top: 10em;
}

.activities__icon {
  width: 8em;
  height: 8em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
}

.activities__icon img {
  width: 8em;
}

.activities__title {
  font-weight: 600;
  text-align: center;
  transition: 500ms;
  text-transform: uppercase;
}

.activities__button {
  color: #d29723;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 2em;
  font-size: 1.3em;
  padding: 0.5em 1.8em;
  transition: 500ms;
  font-weight: 500;
  transform: translateY(-75%);
  opacity: 0;
  visibility: hidden;
}

.activities__button:hover {
  transform: translateY(-10%);
  color: #d29723;
  text-decoration: none;
}

.activities__button span {
  margin-right: 0.5em;
}

.activities__button img {
  width: 0.5vw;
}

.activities__footer {
  width: 50%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vh;
}

.activities__footer__text {
  font-size: 1.5em;
  font-weight: 500;
}

/*********************************
*           PARTNERS             *
*********************************/
.partners {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  font-size: 1rem;
  position: relative;
  z-index: 10;
}

.partners__cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("../assets/img/partenaire@2x.png");
  background-size: cover;
  background-position: center center;
  z-index: 20;
}

.partners__content {
  position: relative;
  z-index: 100;
  width: 50%;
  height: 100%;
  background-color: #d29723;
  padding: 25vh 7vw;
  color: #fff;
}

.partners__body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partners__title {
  align-self: flex-start;
  font-size: 3.3em;
  font-weight: 500;
  transition: 800ms ease-out;
  opacity: 0;
  transform: translateX(-100%);
}

.partners__text {
  align-self: flex-end;
  text-transform: uppercase;
  font-size: 2.3em;
  line-height: 1.8em;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: 800ms ease-out;
  opacity: 0;
  transform: translateX(-100%);
}

.partners__text strong {
  font-weight: 500;
}

.partners--fade-in {
  opacity: 1;
  transform: translateX(0);
}

.partners__button {
  width: 4em;
  height: 4em;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__button:hover {
  animation: rotatingButton 800ms ease-in-out forwards;
}

.partners__button img {
  width: 1.5em;
}

@keyframes rotatingButton {
  from {
    transform: translateX(-50%) rotate(0);
  }
  30% {
    transform: translateX(-50%) rotate(-70deg);
  }
  to {
    transform: translateX(-50%) rotate(180deg);
  }
}

/*********************************
*           TESTIMONIES          *
*********************************/
.testimonies {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  font-size: 1rem;
  background: linear-gradient(90deg, #fff, #ddd);
  position: relative;
  z-index: 20;
  overflow: hidden;
  padding: 15vh 0;
}

.testimonies__main {
  width: 40vw;
  height: 100%;
  margin-left: 7vw;
  display: flex;
  flex-direction: column;
}

.testimonies__title {
  font-size: 3.5em;
  font-weight: 600;
  line-height: 1.8em;
  margin-bottom: 3vh;
}

.testimonies__quotes {
  width: 5vw;
  display: block;
  margin-bottom: 3vh;
}

.testimonies__content {
  height: 100%;
  width: 100%;
  position: relative;
}

.testimonies__container {
  width: 100%;
  height: 100%;
}

.testimonies__list {
  width: 100%;
  height: 100%;
}

.testimonies__testimony {
  width: 100%;
  height: 100%;
  padding: 2vh 7vw;
}

.testimonies__text {
  font-size: 1.4em;
  line-height: 1.5em;
  margin-bottom: 5vh;
}

.testimonies__author {
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.1em;
  -webkit-box-reflect: below 0
    linear-gradient(transparent, transparent 40%, rgba(0, 0, 0, 0.5));
}

.testimonies__author strong {
  color: #d29723;
}

.testimonies__nav {
  position: absolute;
  top: 100%;
  display: flex;
  left: 50%;
  transform: translateX(-100%);
  z-index: 200;
}

.testimonies__nav__item {
  width: 1vw;
  height: 1vw;
  border-radius: 100%;
  border: 1px solid #d29723;
  cursor: pointer;
}

.testimonies__nav__item:not(:last-child) {
  margin-right: 0.5vw;
}

.testimonies__nav .carousel__nav__item--current {
  background-color: #d29723;
}

.testimonies__bands {
  width: 40vw;
  height: 40vw;
  background-image: url("../assets/svg/bandes.svg");
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 50vw;
  bottom: 25vh;
  z-index: 50;
}

.testimonies__guy {
  width: 35vw;
  height: 110vh;
  background-image: url("../assets/img/homme.png");
  background-position: center center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(25%) translateY(10%);
  z-index: 100;
}

/*********************************
*             NEWS               *
*********************************/
.news {
  width: 100vw;
  max-width: 100vw;
  font-size: 1rem;
  padding: 15vh 7vw;
  padding-right: 15vw;
  background-color: #111;
  color: #fff;
}

.news__title {
  font-size: 3.5em;
  font-weight: 500;
  margin-bottom: 7vh;
  line-height: 1.8em;
  display: block;
  color: #fff;
  text-decoration: none;
}

.news__title:hover {
  text-decoration: underline;
}

.news__carousel {
  width: 100%;
  height: 50vh;
}

.news__container {
  width: 70vw;
  height: 100%;
}

.news__inner {
  width: 100%;
  height: 100%;
}

.news__slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3vw;
}

.news__item {
  width: 30vw;
  height: max-content;
}

.news__item--left {
  align-self: flex-start;
}
.news__item--right {
  align-self: flex-end;
}

.news__item__cover {
  width: 60%;
  height: 20vh;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.news__item__button {
  width: 3.5em;
  height: 3.5em;
  background-color: #d29723;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate3d(-50%, -50%, 0);
}

.news__item__button:hover {
  animation: animationButton 800ms ease-in-out;
}

.news__item__button img {
  width: 1em;
}

@keyframes animationButton {
  from {
    transform: translate3d(-50%, -50%, 0) rotate(0);
  }
  30% {
    transform: translate3d(-50%, -50%, 0) rotate(-70deg);
  }
  to {
    transform: translate3d(-50%, -50%, 0) rotate(180deg);
  }
}

.news__item__body {
  color: #fff;
  width: 100%;
  padding-top: 7vh;
}

.news__item__title {
  font-size: 1.8em;
  font-weight: 300;
  margin-bottom: 2vh;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news__item__text {
  font-size: 1.2em;
  font-weight: 200;
  line-height: 1.5em;
}

.news__more {
  width: 3vw;
  height: 3vw;
  position: absolute;
  right: 0;
  top: 50%;
  animation: bounce 1000ms infinite;
  transform-origin: center bottom;
  cursor: pointer;
}

.news__more img {
  width: 3vw;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, -50%, 0);
  }
  40%,
  43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(2em, -50%, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(1em, -50%, 0);
  }
  90% {
    transform: translate3d(0.2em, -50%, 0);
  }
}

.arrow__cta--mobile {
  display: none;
}

@media only screen and (max-width: 1366px) {
  .pop-up {
    font-size: 0.71rem;
  }

  .header {
    font-size: 0.71rem;
  }

  .goals {
    font-size: 0.71rem;
  }

  .activities {
    font-size: 0.71rem;
  }

  .partners {
    font-size: 0.71rem;
  }

  .testimonies {
    font-size: 0.71rem;
  }

  .news {
    font-size: 0.71rem;
  }
}

@media only screen and (max-width: 1280px) {
  .pop-up {
    font-size: 0.66rem;
  }

  .header {
    font-size: 0.66rem;
  }

  .goals {
    font-size: 0.66rem;
  }

  .activities {
    font-size: 0.66rem;
  }

  .partners {
    font-size: 0.66rem;
  }

  .testimonies {
    font-size: 0.66rem;
  }

  .news {
    font-size: 0.66rem;
  }
}

@media only screen and (max-width: 1024px) {
  .pop-up {
    display: none;
  }

  .header {
    font-size: 0.53rem;
  }
  .header__title,
  .header__nav {
    animation: none;
    opacity: 1;
  }

  .goals {
    font-size: 0.53rem;
  }
  .goals__card {
    opacity: 1;
    width: 23vw;
  }
  .goals__card--first--mobile {
    margin-left: 7vw;
  }
  .goals__card--second--mobile {
    margin-left: 27vw;
  }
  .goals__card--third--mobile {
    margin-left: 47vw;
  }

  .activities {
    font-size: 0.53rem;
  }
  .activities__header:hover {
    text-decoration: none;
  }
  .activities__activity::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .activities__activity--hovered::after {
    visibility: visible;
  }
  .activities__title {
    font-size: 2em;
  }
  .activities__button {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    font-size: 1.5em;
  }
  .activities__button img {
    width: 1vw;
  }
  .activities__button:hover {
    transform: translateY(0);
  }

  .partners {
    font-size: 0.53rem;
  }
  .partners__content {
    padding: 30vh 7vw;
  }
  .partners__title {
    font-size: 3.8em;
    opacity: 1;
    transform: translateX(0);
  }
  .partners__text {
    font-size: 2.6em;
    opacity: 1;
    transform: translateX(0);
  }
  .partners__button {
    width: 5vw;
    height: 5vw;
    box-shadow: 0 0 30px 0 rgba(210, 151, 35, 0.2);
  }
  .partners__button:hover {
    animation: none;
  }
  .partners__button img {
    width: 2.5vw;
  }

  .testimonies {
    font-size: 0.53rem;
  }
  .testimonies__text {
    font-size: 1.6em;
  }
  .testimonies__author {
    font-size: 1.5em;
  }

  .news {
    font-size: 0.53rem;
  }
  .news__title:hover {
    text-decoration: none;
  }
  .news__item__title {
    font-size: 1.6em;
  }
  .news__item__text {
    font-size: 1.4em;
  }

  .arrow__cta--mobile {
    display: inline-block;
    width: 2vw;
    height: 2vw;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    font-size: 1rem;
  }
  .header__brand {
    left: 10vw;
  }
  .header__brand img {
    width: 30vw;
  }
  .header__title {
    font-size: 2.8em;
    padding: 0 10vw;
    margin-bottom: 10vh;
  }

  .goals {
    font-size: 1rem;
    padding: 10vh 0;
  }
  .goals__earth {
    display: none;
  }
  .goals__card {
    width: 80vw;
  }
  .goals__card--first--mobile,
  .goals__card--second--mobile,
  .goals__card--third--mobile {
    margin-left: 0;
    margin: 0 auto;
  }
  .goals__card__body {
    min-height: 0;
    width: 100%;
    padding: 5vh 5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .goals__card__icon {
    margin-left: 0;
  }
  .goals__card__icon img {
    width: 15vw;
  }
  .goals__card__text {
    width: 50vw;
    font-size: 1.8em;
    text-align: left;
  }

  .activities {
    font-size: 1rem;
    height: auto;
  }
  .activities__header {
    position: static;
    width: 100vw;
    background-color: #d29723;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh 0;
  }
  .activities__header > .arrow__cta--mobile {
    width: 5vw;
    height: 5vw;
    margin-right: 5vw;
  }
  .activities__main {
    width: 100%;
    height: auto;
    display: block;
  }
  .activities__activity {
    width: 100%;
    height: auto;
    padding: 5vh 0;
  }
  .activities__content {
    height: auto;
    margin: 0;
  }
  .activities__footer {
    position: static;
    width: 100vw;
    background-color: #fff;
    transform: translateX(0);
  }
  .activities__icon {
    width: 15vw;
    height: 15vw;
    margin-bottom: 4vh;
  }
  .activities__icon img {
    width: 14vw;
  }
  .activities__title {
    margin-bottom: 4vh;
  }
  .activities__button {
    font-size: 1.5em;
    padding: 1vh 4vw;
  }
  .activities__button img {
    width: 2vw;
  }

  .partners {
    font-size: 1rem;
  }
  .partners__content {
    padding: 15vh 7vw;
    padding-right: 3vw;
    color: #fff;
  }
  .partners__body {
    justify-content: center;
  }
  .partners__title {
    font-size: 2.8em;
    margin-bottom: 5vh;
  }
  .partners__text {
    font-size: 1.6em;
  }
  .partners__button {
    width: 8vw;
    height: 8vw;
  }
  .partners__button img {
    width: 4vw;
  }

  .testimonies {
    font-size: 1rem;
  }
  .testimonies__guy,
  .testimonies__bands {
    display: none;
  }
  .testimonies__main {
    width: 100vw;
  }
  .testimonies__quotes {
    width: 10vw;
  }
  .testimonies__content {
    margin-left: -7vw;
  }
  .testimonies__testimony {
    padding: 5vh 10vw;
  }
  .testimonies__text {
    font-size: 1.6em;
  }
  .testimonies__author {
    font-size: 1.5em;
  }
  .testimonies__nav {
    transform: translateX(-50%);
  }
  .testimonies__nav__item {
    width: 4vw;
    height: 4vw;
  }
  .testimonies__nav__item:not(:last-child) {
    margin-right: 2vw;
  }

  .news {
    font-size: 1rem;
    padding-right: 5vw;
  }
  .news__title {
    width: 100vw;
    display: flex;
    align-items: center;
    padding: 2vh 0;
  }
  .news__title > .arrow__cta--mobile {
    width: 5vw;
    height: 5vw;
    margin-right: 5vw;
  }
  .news__carousel {
    height: 80vh;
  }
  .news__container {
    width: 80vw;
  }
  .news__slide {
    flex-direction: column;
  }
  .news__item {
    width: 100%;
  }
  .news__more {
    width: 5vw;
    height: 5vw;
  }
  .news__more img {
    width: 5vw;
  }
}

@media only screen and (max-width: 420px) {
  .header {
    font-size: 0.54rem;
  }
  .goals {
    font-size: 0.54rem;
  }
  .activities {
    font-size: 0.54rem;
  }
  .partners {
    font-size: 0.54rem;
  }
  .testimonies {
    font-size: 0.54rem;
  }
  .news {
    font-size: 0.54rem;
  }
}
