@font-face {
  font-family: "Florencesans";
  src: url("../fonts/florencesans.ttf") format("ttf");
  font-weight: 400;
  font-display: swap;
}
.video {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}
.video__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-image: url(../images/icons/play-btn.svg);
  background-position: center;
  background-size: contain;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  .video__play-btn {
    width: 60px;
    height: 60px;
  }
}
.video__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.stats .container__column {
  justify-content: flex-start;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .stats .container__row {
    flex-direction: column;
  }
  .stats .container__row:has(.stats__cover-image) {
    display: none;
  }
}
.stats .container__row:last-child {
  height: 100%;
  flex: 1;
}
.stats .content-wrapper {
  position: relative;
  justify-content: center;
  border-radius: 30px;
  clip-path: border-box;
}
.stats .stats__cover-image {
  width: 100%;
  height: auto;
  position: absolute;
  animation: breathing 15s ease-in-out infinite;
}
.stats .stats__cover-image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1280px) {
  .stats .stats__cover-image {
    width: 100%;
    height: auto;
  }
}
.stats .content-wrapper__image {
  flex-direction: column;
  justify-content: flex-end;
  align-items: baseline;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #EFF1F4;
  background-color: rgba(239, 241, 244, 0.1);
  background-image: url(../images/pattern.svg);
  background-position: -100px -100px;
  transition: background-position 0.5s ease-in-out;
  clip-path: border-box;
}
@media screen and (max-width: 1280px) {
  .stats .content-wrapper__image {
    padding: 24px;
  }
}
.stats .content-wrapper__image:hover {
  background-position: -50px -50px;
}
.stats .content-wrapper__image::after {
  display: none;
}
.stats .content-wrapper__image::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 30px;
}
.stats__item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.stats__item--s {
  flex: 1;
  padding: 24px;
  gap: 24px;
  border-radius: 30px;
  background-color: rgba(239, 241, 244, 0.6);
  transition: background-color 0.1s ease-in-out;
}
.stats__item--s:hover {
  background-color: #EFF1F4;
}
.stats__item--s .stats__text {
  color: #1E338D;
}
.stats__item--l {
  gap: 40px;
}
.stats__item--l .stats__text {
  color: #132356;
}
.stats__icon {
  width: 72px;
  height: 72px;
  border: 2px solid #939DC9;
  border-radius: 20px;
  background-color: rgba(252, 252, 252, 0.8);
}
.stats__icon img {
  width: 100%;
  padding: 16px;
  margin: auto;
}
.stats__icon--l {
  width: 112px;
  height: 112px;
  border-color: #1E338D;
}
.stats__icon--l img {
  padding: 24px;
}
.stats__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stats a.stats__icon:hover {
  background-color: #FCFCFC;
  animation: icon-move 1s ease-in-out;
}

.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .features__list {
    grid-template-columns: repeat(3, 100%);
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 0 40px;
    scroll-padding: 0 40px;
  }
  .features__list::-webkit-scrollbar {
    display: none;
  }
}
.features__item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex: 1;
  height: 570px;
  padding: 40px;
  flex-direction: column;
  border-radius: 30px;
  clip-path: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .features__item {
    height: 500px;
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .features__item {
    scroll-snap-align: center;
    height: 360px;
  }
}
@media (max-width: 540px) {
  .features__item {
    height: 460px;
    padding: 16px;
  }
}
.features__item:hover .features__description {
  height: 100%;
  max-height: 300px;
  opacity: 1;
}
@media (max-width: 540px) {
  .features__item:hover .features__description {
    max-height: 400px;
  }
}
.features__item:hover .features__image::before {
  background: linear-gradient(180deg, rgba(19, 35, 86, 0.6) 0%, #132356 100%);
  opacity: 1;
}
.features__item:hover .features__image::after {
  opacity: 0;
}
.features__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s ease-in-out;
}
.features__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: all 0.6s ease-in-out;
  opacity: 0.8;
}
.features__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(19, 35, 86, 0.8) 0%, #132356 100%);
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}
.features__text {
  color: #FCFCFC;
}
.features__description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding-top: 12px;
  will-change: max-height, opacity;
}
.features__bullets {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .features__bullets {
    display: flex;
  }
}
@media (max-width: 540px) {
  .features__bullets {
    margin-top: 20px;
  }
}
.features__bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D2D6E8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
}
.features__bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.features__bullet:hover {
  background-color: #939DC9;
}
.features__bullet.active {
  background-color: #1E338D;
}
@media (max-width: 540px) {
  .features__bullet {
    width: 10px;
    height: 10px;
  }
  .features__bullet::after {
    width: 18px;
    height: 18px;
  }
}

.slogan {
  position: relative;
  height: 800px;
  overflow: hidden;
}
@media (max-width: 540px) {
  .slogan {
    display: none;
  }
}
.slogan .container.full-width {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.slogan img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(var(--parallax-offset, 0));
  transition: transform 0.1s linear;
}
.slogan .container--slogan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}
.slogan .slogan__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 570px;
  padding: 70px 30px;
  border-radius: 30px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 117.19%);
  backdrop-filter: blur(6.5px);
  transform: translateY(var(--text-offset, 0));
  transition: transform 0.1s linear;
}
.slogan .slogan__text p {
  color: #132356;
  text-align: right;
  font-size: 56px;
  font-weight: 300;
  line-height: 66px;
  text-transform: uppercase;
}

.associations .container {
  align-items: center;
}
.associations .content-wrapper__image {
  height: auto;
  transform: scale(1);
  transition: transform 10s ease-in-out, background-color 1s ease-in-out;
}
.associations .content-wrapper__image img {
  width: 100%;
}
.associations .content-wrapper__image .secondary-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
}
.associations .content-wrapper__image:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.associations .content-wrapper__image:hover .secondary-btn {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1024px) {
  .associations .content-wrapper__image img {
    opacity: 0.7;
  }
  .associations .content-wrapper__image .secondary-btn {
    visibility: visible;
    opacity: 1;
  }
}

.news__tabs {
  display: flex;
  flex-wrap: wrap;
}
.news label {
  order: 1;
  margin-right: 48px;
  cursor: pointer;
}
.news__content {
  order: 99;
  height: 460px;
  flex-grow: 1;
  width: 100%;
  position: relative;
  margin-top: 32px;
  clip-path: border-box;
  border-radius: 30px;
  background: #EFF1F4;
  display: none;
}
.news__content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 248px;
  background: linear-gradient(90deg, rgba(239, 241, 244, 0) 0%, #EFF1F4 84.15%);
}
.news__content > div {
  width: calc(100% - 48px);
  height: 100%;
  display: flex;
  margin: 0 16px;
  padding: 16px 0;
  align-items: stretch;
  gap: 16px;
  overflow: auto;
}
.news input[type=radio] {
  display: none;
}
.news input[type=radio]:checked + label,
.news input[type=radio] + label:hover {
  color: #1E338D;
  transition: color 0.3s;
}
.news input[type=radio]:checked + label + .news__content {
  display: block;
}
.news .news__item {
  display: flex;
  padding: 16px 16px 24px 16px;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
  border-radius: 20px;
  background: #FCFCFC;
}
.news .news__item:last-of-type {
  align-items: center;
  justify-content: center;
  margin-right: 260px;
}
.news .news__item:last-of-type .news__item-link {
  align-self: auto;
  width: 100%;
  justify-content: center;
}
.news .news__item:hover {
  box-shadow: 0 10px 14px 0 rgba(74, 58, 255, 0.01), 0 8px 16px 0 rgba(23, 15, 73, 0.03);
  transition: box-shadow 0.3s ease-in-out;
}
.news .news__item-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #939DC9;
}
.news .news__item-title {
  line-height: 30px;
  color: #1E338D;
}
.news .news__item-text {
  flex: 1;
  overflow: hidden;
  font-size: 16px;
  line-height: 26px;
}
.news .news__item-link {
  align-self: flex-end;
  padding: 0;
  width: 100%;
  justify-content: flex-end;
}
.news .news__item-link::before {
  display: none;
}

.instagram .instagram-images__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.instagram__icon {
  width: 60px;
  height: 60px;
  background-color: #132356;
  -webkit-mask: url("../images/icons/instagram.svg") no-repeat center/contain;
  mask: url("../images/icons/instagram.svg") no-repeat center/contain;
  display: inline-block;
}
.instagram .h1 span {
  color: #939DC9;
}
.instagram .instagram-post {
  border-radius: 30px;
  clip-path: border-box;
  overflow: hidden;
  aspect-ratio: 1/1;
  background-color: #132356;
  cursor: pointer;
}
.instagram .instagram-post:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.instagram .instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.instagram .instagram-post:hover img {
  opacity: 0.85;
}
@media (max-width: 1024px) {
  .instagram .instagram-images__wrapper {
    gap: 12px;
  }
  .instagram .instagram-post {
    border-radius: 20px;
  }
}
@media (max-width: 640px) {
  .instagram .instagram-images__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram .instagram-post:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/*# sourceMappingURL=homepage.css.map */
