/**********
HEADER
**********/
.header {
  width: 100%;
  height: 100vh;
  background-image: url('../assets/img/academy.jpg');
  background-position: center center;
  background-size: cover;
  padding-top: 30vh;
  padding-left: 10vw;
  color: #fff;
  position: relative;
}
.header::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(
    transparent,
    transparent 10%,
    rgba(0, 0, 0, 0.4) 20%,
    rgba(0, 0, 0, 0.5) 30%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.4) 80%,
    transparent 90%,
    transparent
  );
}
.header__head {
  width: 40vw;
  position: relative;
  z-index: 100;
}
.header__title {
  font-size: 2.3em;
  font-weight: 500;
  margin-bottom: 5vh;
}
.header__text {
  font-size: 1.1em;
  font-weight: 300;
  margin-bottom: 5vh;
}
.header__text strong {
  font-weight: 500;
  font-size: 1.1em;
}
.header__more {
  width: max-content;
  height: max-content;
  display: block;
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: 1vh 2.25vw;
  border-radius: 2rem;
  background-color: transparent;
  font-size: 1.3em;
  color: #fff;
  transition: background-color 700ms ease, color 700ms ease;
  font-weight: 500;
}
.header__more:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #111;
}
.header__bottom {
  display: grid;
  grid-template-columns: max-content 1fr 20% 15%;
  align-items: center;
  column-gap: 2vw;
}
.header__branding {
  width: 100%;
  height: auto;
}

/**********
FORMATIONS
**********/
.formations {
  padding: 15vh 0;
  background-color: #fff;
}
.formations__head {
  width: 70vw;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 8vh;
}
.formations__subtitle {
  font-size: 1.3em;
  text-transform: uppercase;
  color: #d29723;
  letter-spacing: 0.1em;
  font-weight: 300;
}
.formations__title {
  font-size: 1.9em;
  margin-bottom: 5vh;
}
.formations__text {
  font-size: 1.2em;
}
.formations__carousel {
  width: 70vw;
  height: 60vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 8vh;
}
.formations__container {
  width: 61vw;
  height: 100%;
}
.formations__inner {
  width: 100%;
  height: 100%;
}
.formations__arrow {
  width: 4.5vw;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 500ms ease;
}
.formations__arrow.carousel__arrow--prev {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.formations__arrow.carousel__arrow--next {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.formations__arrow:hover {
  background-color: rgba(210, 151, 35, 0.2);
}
.formations__arrow img {
  width: 1.5vw;
  height: auto;
}
.formations__slide {
  width: 61vw;
  height: 60vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 3vw;
  row-gap: 5vh;
  padding: 2.5vh 0.5vw;
}
.formations__card {
  width: 100%;
  height: 25vh;
  perspective: 70em;
}
.formations__card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1000ms ease;
  transform-style: preserve-3d;
}
.formations__card:hover .formations__card__inner {
  transform: rotateY(-0.5turn);
}
.formations__card__front,
.formations__card__back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.formations__card__back {
  transform: rotateY(0.5turn);
}
.formations__card__body {
  width: 100%;
  height: 100%;
  padding: 1vh 1vw;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  border-radius: 0.25rem;
  background-color: #fff;
  transform-style: preserve-3d;
  transform: rotateY(0);
}
.formations__card__body::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.25rem;
  z-index: 0;
}
.formations__card__name,
.formations__card__number {
  font-size: 1.3em;
  font-weight: 500;
  color: #fff;
  transform: translateZ(3rem);
  backface-visibility: hidden;
}
.formations__card__number {
  color: #d29723;
}
.formations__card__link {
  width: 2vw;
  height: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d29723;
  transform: translateZ(3rem);
  backface-visibility: hidden;
  margin-top: 1vh;
}
.formations__card__number--mobile,
.formations__card__link--mobile {
  display: none;
}
.formations__card__link img {
  width: 60%;
  height: auto;
}
.formations__more {
  text-transform: uppercase;
  border: 1px solid #111;
  padding: 0.5vh 1.5vw;
  border-radius: 2rem;
  background-color: transparent;
  font-size: 1em;
  color: #111;
  line-height: 3;
  transition: background-color 700ms ease, color 700ms ease;
  font-weight: 500;
  display: block;
  width: max-content;
  margin: 0 auto;
}
.formations__more:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/**********
STORY
**********/
.story {
  background-color: rgba(23, 16, 16, 0.95);
  padding: 10vh 10vw;
  display: flex;
  color: #fff;
}
.story__body {
  width: 37vw;
  margin-right: 5vw;
}
.story__title {
  font-size: 2.3em;
  font-weight: 700;
  margin-bottom: 5vh;
}
.story__text {
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 5vh;
}
.story__text strong {
  font-weight: 500;
  font-size: 1.1em;
}
.story__cover {
  width: 20vw;
  height: 55vh;
  position: relative;
}
.story__cover__img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-image: url('../assets/img/16408.png');
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 100;
}
.story__cover::after {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
  top: 10%;
  left: 10%;
  position: absolute;
  z-index: 0;
  content: '';
}
.story__cover__bands {
  width: 25vw;
  height: auto;
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
}

/**********
TESTIMONIES
**********/
.testimonies {
  width: 100%;
  height: auto;
  background-image: url('../assets/img/83847.jpg');
  background-position: center center;
  background-size: cover;
  padding-left: 10vw;
}
.testimonies__carousel {
  width: 33vw;
  height: auto;
  padding: 0 4.5vw;
  padding-top: 10vh;
  padding-bottom: 20vh;
  background-color: rgba(209, 151, 35, 0.8);
}
.testimonies__quotes {
  width: 4vw;
  height: auto;
}
.testimonies__container {
  width: 100%;
  height: 27vh;
  min-height: 30vh;
  margin-top: 4vh;
}
.testimonies__inner {
  width: 100%;
}
.testimonies__slide {
  width: 100%;
  height: max-content;
  padding: 0 0.5vw;
  color: #fff;
}
.testimonies__content {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 5vh;
}
.testimonies__name {
  font-size: 1.3em;
  font-weight: 500;
}
.testimonies__nav {
  position: absolute;
  bottom: 10vh;
  display: flex;
  transform: translateX(25%);
}
.testimonies__nav__item {
  width: 1vw;
  height: 1vw;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 100%;
}
.testimonies__nav__item.carousel__nav__item--current {
  background-color: #fff;
}
.testimonies__nav .testimonies__nav__item:not(:last-child) {
  margin-right: 0.5vw;
}

/**********
NEWS
**********/
.news {
  width: 100%;
  padding: 10vh 0;
}
.news__title {
  font-size: 1.9em;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 5vh;
}
.news__carousel {
  width: 65vw;
  height: 70vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 7vh;
}
.news__container {
  width: 55vw;
  height: 100%;
}
.news__inner {
  width: 100%;
  height: 100%;
}
.news__arrow {
  width: 4.5vw;
  height: 67vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.news__arrow.carousel__arrow--prev {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.news__arrow.carousel__arrow--next {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.news__arrow img {
  width: 1.5vw;
  height: auto;
}
.news__slide {
  width: 55vw;
  height: 70vh;
  display: grid;
  grid-template-columns: repeat(3, 13vw);
  justify-content: space-between;
  align-items: center;
  padding: 2.5vh 1vw;
}
.news__card {
  width: 100%;
  height: 35vh;
  position: relative;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #fff;
  transition: width 700ms ease, height 700ms ease, transform 700ms ease;
}
.news__card--first {
  align-self: flex-end;
}
.news__card--third {
  align-self: flex-start;
}
.news__card__cover {
  width: 100%;
  height: 50%;
  background-position: center center;
  background-size: cover;
  position: relative;
  transition: height 700ms ease;
}
.news__card__cover::after {
  width: 100%;
  height: 100;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  opacity: 0;
  transition: opacity 700ms ease;
  background: linear-gradient(
    transparent,
    transparent 10%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 0.7) 90%,
    rgba(0, 0, 0, 0.7)
  );
}
.news__card__body {
  width: 100%;
  height: auto;
  min-height: 50%;
  padding: 1.5vh 1vw;
  position: absolute;
  bottom: 0;
  left: 0;
  /* background-color: #fff; */
  transition: background-color 700ms ease, padding 700ms ease, color 700ms ease;
}
.news__card__name {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 3vh;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: font-size 700ms ease, margin-bottom 700ms ease;
}
.news__card__text {
  overflow: hidden;
  max-height: 0;
  font-size: 1em;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: max-height 700ms ease, margin-bottom 700ms ease;
}
.news__card__info {
  display: flex;
  transition: padding-right 700ms ease;
}
.news__card__info__elem {
  font-size: 1em;
  font-weight: 300;
  text-transform: uppercase;
}
.news__card__info__elem--right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.news__card__info__elem--right img {
  width: 1vw;
  height: auto;
  margin-right: 0.1vw;
}
.ml-xs {
  margin-left: 0.5vw;
}
.news__card__link {
  width: 5vh;
  height: 5vh;
  background-color: #d29723;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.news__card__link--mobile {
  width: 10vw;
  height: 10vw;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(-50%, -50%, 0);
  display: none;
}
.news__card__link img,
.news__card__link--mobile img {
  width: 50%;
  height: auto;
}
.news__card:hover {
  width: 18vw;
  height: 55vh;
}
.news__card--second:hover {
  transform: translateX(-2.5vw);
}
.news__card--third:hover {
  transform: translateX(-5vw);
}
.news__card:hover .news__card__cover {
  height: 100%;
}
.news__card:hover .news__card__cover::after {
  opacity: 1;
}
.news__card:hover .news__card__body {
  /* background-color: transparent; */
  color: #fff;
  padding-left: 1.5vw;
  padding-top: 1vh;
  padding-bottom: 2.5vh;
  padding-right: 4vw;
}
.news__card:hover .news__card__name {
  font-size: 1.4em;
  margin-bottom: 2vh;
  -webkit-line-clamp: 3;
}
.news__card:hover .news__card__text {
  max-height: 10vh;
  margin-bottom: 2vh;
}
.news__card:hover .news__card__info {
  padding-right: 2vw;
}
.news__card__link--in {
  animation: disappear 700ms ease forwards;
}
.news__card__link--out {
  animation: disappear-reverse 700ms ease forwards;
}
.news__more {
  text-transform: uppercase;
  border: 1px solid #111;
  padding: 0.5vh 1.5vw;
  border-radius: 2rem;
  background-color: transparent;
  font-size: 1em;
  color: #111;
  line-height: 3;
  transition: background-color 700ms ease, color 700ms ease;
  font-weight: 500;
  display: block;
  width: max-content;
  margin: 0 auto;
}
.news__more:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

@keyframes disappear {
  from {
    top: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  49% {
    top: 0;
    transform: translate3d(-50%, -50%, 0) scale(0);
  }
  51% {
    top: 100%;
    transform: translate3d(-50%, -50%, 0) scale(0);
  }
  to {
    top: 100%;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}
@keyframes disappear-reverse {
  from {
    top: 100%;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  49% {
    top: 100%;
    transform: translate3d(-50%, -50%, 0) scale(0);
  }
  51% {
    top: 0;
    transform: translate3d(-50%, -50%, 0) scale(0);
  }
  to {
    top: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

/**********
PARTNERS
**********/
.partners {
  background-color: #f1f1f1;
  padding: 10vh 0;
}
.partners__title {
  font-size: 1.9em;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 7vh;
}
.partners__container {
  width: 70vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 4vw;
  row-gap: 7vh;
  align-items: center;
}
.partners__item {
  width: 100%;
}
.partners__item img {
  width: 100%;
  height: auto;
  max-height: 15vh;
}

[data-device='mobile'] {
  display: none;
}

/**********
BUBBLES
**********/
.bubbles__item {
  border-radius: 100%;
  border: 5px solid #fff;
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  width: 7vw;
  height: 7vw;
  left: 90%;
  position: absolute;
  z-index: 2000;
  transition: all 500ms linear;
  cursor: pointer;
}
.bubbles__item:hover {
  box-shadow: 0 0.5rem 1rem rgb(210, 151, 35, 0.4);
}
.bubbles__item--sm {
  width: 8vw;
  height: 8vw;
  left: 15%;
  top: 75vh;
}
.bubbles__item--md {
  width: 9vw;
  height: 9vw;
  left: 30%;
  top: 5vh;
}
.bubbles__item--lg {
  width: 12vw;
  height: 12vw;
  left: 70%;
  top: 50vh;
}

/**********
NEWS MODAL
**********/
.news-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  padding-left: 15vw;
}
.news-modal__inner {
  width: 30vw;
  height: auto;
  background-color: #fff;
  border-radius: 0.25rem;
  position: relative;
  z-index: 100;
  opacity: 0;
  transform: translateY(-25%);
}
.news-modal--open {
  display: flex;
}
.news-modal--open > .news-modal__inner {
  animation: fadeModal 1000ms ease forwards;
}
.news-modal__close {
  width: 1.5vw;
  height: auto;
  position: absolute;
  right: 100%;
  top: 0;
  color: #fff;
  transform: translateX(-100%);
  cursor: pointer;
}
.news-modal__cover {
  width: 100%;
  height: 30vh;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  position: relative;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  overflow: hidden;
  padding-bottom: 2vh;
}
.news-modal__cover::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.05) 20%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.8) 80%,
    rgba(0, 0, 0, 1)
  );
}
.news-modal__name {
  font-size: 1.8em;
  font-weight: 500;
  color: #fff;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 100;
}
.news-modal__body {
  padding: 3vh 3vw;
  padding-bottom: 8vh;
}
.news-modal__date {
  color: #d29723;
  font-size: 1em;
  font-weight: 500;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 2vh;
}
.news-modal__author {
  font-size: 1.2em;
  font-weight: 500;
  width: 100%;
  padding: 1vh;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-bottom: 2vh;
}
.news-modal__summary {
  font-size: 1.2em;
  font-weight: 500;
}
.news-modal__link {
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d29723;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.news-modal__link > img {
  width: 40%;
  height: auto;
}

@keyframes fadeModal {
  from {
    opacity: 0;
    transform: translateY(-25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/**********
RESPONSIVE
**********/
@media only screen and (max-width: 1024px) {
  .header__head {
    width: 50vw;
  }
  .formations__head {
    width: 80vw;
  }
  .formations__carousel {
    width: 90vw;
  }
  .formations__container {
    width: 81vw;
  }
  .formations__slide {
    width: 81vw;
  }
  .formations__card:hover .formations__card__inner {
    transform: rotateY(0);
  }
  .formations__card__body {
    justify-content: space-between;
    padding: 5vh 1vw;
  }
  .formations__card__back {
    display: none;
  }
  .formations__card__number {
    display: block;
  }
  .formations__card__link {
    display: flex;
    width: 2.5vw;
    height: 2.5vw;
  }
  .formations__arrow:hover {
    background-color: transparent;
  }
  .story__body {
    width: 45vw;
    margin-right: 5vw;
  }
  .story__cover {
    width: 30vw;
  }
  .story__cover__bands {
    width: 35vw;
  }
  .testimonies__carousel {
    width: 40vw;
  }
  .testimonies__nav__item {
    width: 1.5vw;
    height: 1.5vw;
  }
  .news__carousel {
    width: 90vw;
  }
  .news__container {
    width: 80vw;
  }
  .news__slide {
    width: 80vw;
    grid-template-columns: repeat(3, 22vw);
    padding: 0;
    padding: 0 1.5vw;
  }
  .news__card,
  .news__card:hover {
    width: 100%;
    height: 55vh;
    font-size: 1.1em;
  }
  .news__card--second:hover {
    transform: translateX(0);
  }
  .news__card--third:hover {
    transform: translateX(0);
  }
  .news__card__cover {
    height: 100%;
  }
  .news__card__cover::after {
    opacity: 1;
  }
  .news__card__body,
  .news__card:hover .news__card__body {
    background-color: transparent;
    color: #fff;
    padding-left: 1.5vw;
    padding-top: 1vh;
    padding-bottom: 2.5vh;
    padding-right: 1.5vw;
  }
  .news__card__name {
    font-size: 1.4em;
    margin-bottom: 2vh;
  }
  .news__card__text {
    max-height: 10vh;
    margin-bottom: 2vh;
  }
  .news__card__info {
    padding-right: 2vw;
  }
  .news__card__link--in,
  .news__card__link--out {
    animation: none;
  }
  .news__card__link {
    width: 5vh;
    height: 5vh;
    top: 100%;
  }
  .partners__container {
    width: 80vw;
  }
  .news-modal {
    padding-left: 0;
  }
  .news-modal__inner {
    width: 40vw;
  }
}

@media only screen and (max-width: 768px) {
  .header__head {
    width: 80vw;
  }
  .formations__carousel {
    width: 95vw;
  }
  .formations__slide {
    grid-template-columns: repeat(2, 1fr);
  }
  [data-device='desktop'] {
    display: none;
  }
  [data-device='mobile'] {
    display: flex;
  }
  .formations__card__body {
    padding: 5vh 3vw;
  }
  .formations__card__number {
    font-weight: 700;
  }
  .formations__card__link {
    width: 5vw;
    height: 5vw;
  }
  .formations__arrow {
    width: 7vw;
  }
  .formations__arrow img {
    width: 3vw;
  }
  .testimonies {
    padding-left: 0;
  }
  .testimonies__carousel {
    width: 70vw;
    margin: 0 auto;
    padding-bottom: 10vh;
  }
  .testimonies__nav__item {
    width: 2vw;
    height: 2vw;
  }
  .news__carousel {
    width: 95vw;
    height: 80vh;
  }
  .news__slide {
    grid-template-columns: 1fr;
    height: 80vh;
    row-gap: 2.5vh;
    padding: 0 0.5vw;
  }
  .news__card {
    width: 100%;
    height: 25vh;
  }
  .news__card__body {
    padding: 1.5vh 2vw;
    padding-right: 15vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .news__arrow {
    width: 7vw;
    height: 80vh;
  }
  .news__arrow img {
    width: 3vw;
  }
  .news__card__link {
    display: none;
  }
  .news__card__name,
  .news__card__text {
    margin-bottom: 0;
  }
  .news__card__link--mobile {
    display: flex;
  }
  .news__card__info__elem--right img {
    width: 2vw;
    margin-right: 0.5vw;
  }
  .story__body {
    width: 80vw;
    margin-right: 0;
  }
  .story__cover {
    display: none;
  }
  .bubbles__item--sm {
    width: 15vw;
    height: 15vw;
    left: 15%;
    top: 80vh;
  }
  .bubbles__item--md {
    width: 18vw;
    height: 18vw;
    left: 30%;
    top: 10vh;
  }
  .bubbles__item--lg {
    width: 23vw;
    height: 23vw;
    left: 65%;
    top: 75vh;
  }
  .news-modal__inner {
    width: 60vw;
  }
  .news-modal__close {
    width: 4vw;
  }
  .news-modal__link {
    width: 5vw;
    height: 5vw;
  }
  .formations__arrow:hover {
    background-color: rgba(210, 151, 35, 0);
  }
}

@media only screen and (max-width: 420px) {
  .testimonies__nav__item {
    width: 3vw;
    height: 3vw;
  }
  .bubbles__item--sm {
    width: 20vw;
    height: 20vw;
    left: 15%;
    top: 80vh;
  }
  .bubbles__item--md {
    width: 23vw;
    height: 23vw;
    left: 30%;
    top: 10vh;
  }
  .bubbles__item--lg {
    width: 27vw;
    height: 27vw;
    left: 60%;
    top: 70vh;
  }
}
