/*
 * Combined CSS for About Pages
 * Includes: page-about.php, page-about_who-we-are.php, page-contacts.php
 * 
 * Structure:
 * 1. Base/Common Styles
 * 2. Page-specific Styles (using body classes)
 * 3. Responsive Styles
 */

/* ===== BASE/COMMON STYLES ===== */

/* Hero Section Base */
.about-hero {
  position: relative;
  background: var(--Content-inverse, #FFFFFF);
  text-align: center;
  overflow: hidden;
  border-radius: var(--border-radius-md, 8px);
  padding-bottom: 0;
}
.about-hero.hero .btn {
  width: auto;
}

/* .about-hero__decoration {
  position: absolute;
  background: var(--Content-brand, #5257FF);
  filter: blur(80px);
  opacity: 0.1;
  z-index: 1;
} */


.about-hero .container {
  padding: 156px var(--padding-xl, 48px);
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-foundation-s32, 32px);
  position: relative;
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-foundation-s16, 16px);
  max-width: 952px;
}

/* .about-hero__title {
  font-weight: 500;
  font-size: var(--Typeface-font-size-5xl, 48px);
  line-height: 1.25;
  color: var(--Content-brand, #382DDD);
  margin: 0;
} */

.about-hero__description {
  font-weight: 450;
  font-size: var(--Typeface-font-size-body-base, 16px);
  line-height: 1.5;
  color: var(--Content-regular, #475569);
  margin: 0;
}

.about-hero__actions {
  display: flex;
  gap: var(--gap-foundation-s16, 16px);
}


/* Button Icon Base */
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--Background-default);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-icon--small {
  width: 32px;
  height: 32px;
  padding: 4px;
}

.btn-icon svg {
  color: var(--Content-brand);
  width: 24px;
  height: 24px;
}

.btn-icon:hover {
  background: var(--Borders-dividers-secondary);
}

/* ===== PAGE-SPECIFIC STYLES ===== */

/* === PAGE ABOUT === */
body.page-about .hero-section--about {
  position: relative;
  background: #FFFFFF;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
  padding-bottom: 0;
}

body.page-about .hero-section--about .container:before {
  position: absolute;
  content:"";
  top: 0;
  height: 100%;
  background-position: top center;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/hero_about.png);
  width: 100vw;
  left: calc((100% - 100vw) / 2);
}



body.page-about .hero-section--about .about-hero__title {
  color: #382DDD;
}

body.page-about .hero-section--about .about-hero__description {
  color: #475569;
}


/* Content Section - About */
body.page-about .content-section--about .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  background: #FFFFFF;
  border-radius: 8px;
}

body.page-about .content-section--about .content-section__main {
  display: flex;
  align-items: center;
  gap: 32px;
}

body.page-about .content-section--about .content-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}


body.page-about .content-section--about .content-section__description {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: #475569;
}

body.page-about .content-section--about .content-section__description p {
  margin: 0 0 16px 0;
}

body.page-about .content-section--about .content-section__description p:last-child {
  margin-bottom: 0;
}

body.page-about .content-section--about .content-section__image {
  max-width: 330px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
}

body.page-about .content-section--about .content-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Statistics - About */
body.page-about .content-section--about .content-section__statistics {
  display: flex;
  gap: 32px;
  border-top: 1px solid #E2E8F0;
  padding-top: 48px;
}

 .factoid {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;;
  text-align: center;
}

 .factoid__number {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  color: #475569;
}

 .factoid__label {
  font-weight: 450;
  font-size: 14px;
  line-height: 1.43;
  color: #475569;
  text-align: left;
}


/* career page */
 .careers-section .container {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

/* Careers Section - About */
 body.page-about .careers-section .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}



 .careers-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.careers-section__header--center {
    align-items: center;
    flex-direction: column;
    /* text-align: center; */
}

@media (min-width:769px) {
  .careers-section__header-sticky {
    position: sticky;
    top: 200px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}


 .careers-section__description {
    color: var(--Content-primary, #1E293B);
    font-size: var(--Typeface-font-size-body-large, 18px);
    font-style: normal;
    font-weight: 450;
    line-height: var(--Typeface-line-height-body-large, 28px); /* 155.556% */
    max-width: 80%;
    text-align: left;
}
.careers-section__header--center .careers-section__description {
    /* text-align: center; */
}
 .careers-section__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}


 .careers-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.careers-section__slider .carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px;
}

.careers-section__slider .carousel-item:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

 .careers-slider {
  flex: 1;
  height: 416px;
  position: relative;
  overflow: hidden;
}

 .careers-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 630px !important;
  height: 416px;
}

 .careers-slider .swiper-slide img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

 .careers-slider .swiper-slide-active img {
  opacity: 1;
}

 .careers-slider .swiper-slide:not(.swiper-slide-active) img {
  opacity: 0.6;
}

 .careers-slider__gradient {
  position: absolute;
  top: 0;
  width: 197px;
  height: 416px;
  pointer-events: none;
  z-index: 2;
}

 .careers-slider__gradient--left {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

 .careers-slider__gradient--right {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Career Values Section  */
.career-values__cards {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 48px;

  flex-direction: column;
  position: relative;
}

.career-values__card {
  flex: 1;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 24px;
  /* min-height: 260px; */
  transition: all 0.3s ease;
   box-shadow: 0 6px 13px 0 rgba(32, 30, 59, 0.04), 0 1.809px 3.919px 0 rgba(32, 30, 59, 0.03), 0 0.751px 1.628px 0 rgba(32, 30, 59, 0.02), 0 0.272px 0.589px 0 rgba(32, 30, 59, 0.01);
}
.career-values__card:nth-child(2n + 1) .career-values__card-desc {
    color: #fff;
}

.career-values__card:nth-child(1) {
  background: var(--Surface-brand, #382DDD);
}
.career-values__card:nth-child(2) {
  background: var(--Fill-neutral-lighter, #F8FAFC);
}
.career-values__card:nth-child(3) {
  background: var(--Background-inverse, #334155);
}
.career-values__card:nth-child(4) {
  background: var(--Fill-neutral-blank, #FFF);

}



@media (min-width: 769px) {

  .careers-section__header--center {
    position: sticky;
    top: 120px;
}

  .career-values__card {

    position: sticky;
    top: 250px;
  }

  .career-values__card_2 {
    top: 315px;
  }
  .career-values__card_3 {
    top: 380px;
  }

  .page-career .career-values__card {
    top: 190px;
  }
  .page-career .career-values__card_2 {
    top: 270px;
  }
   .page-career .career-values__card_3 {
    top: 350px;
  }
   .page-career .career-values__card_4 {
    top: 440px;
  }
}

.career-values__card:hover {
  /* box-shadow: 0 4px 12px rgba(56, 45, 221, 0.1);
  transform: translateY(-2px); */
}


.career-values__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-values__card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--Primary-500);
  stroke-width: 2px;
  fill: none;
}
.career-values__card-title {
  display: flex;
  gap: 16px;
  align-items: center;
}
.career-values__card-title h3 {
  color: var(--Content-primary, #1E293B);
  font-family: var(--Typeface-family-Brand, "TT Firs Neue Variable");
  font-size: var(--Typeface-font-size-2xl, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Typeface-line-height-xl, 32px); /* 133.333% */
}


.career-values__cards .career-values__card:nth-child(2n + 1) .career-values__card-title h3 {
    color: #fff;
}

body.page-about .carousel-indicator {
  display: flex;
  gap: 0;
}

body.page-about .carousel-indicator-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 4px;
  width: 38px;
  height: auto;
  cursor: pointer;
  position: relative;
}

body.page-about .carousel-indicator-item::after {
  content: '';
  width: 32px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

body.page-about .carousel-indicator-item--active .carousel-indicator-item__progress {
  display: block;
}

body.page-about .carousel-indicator-item__progress {
  display: none;
  width: 22px;
  height: 4px;
  background: #382DDD;
  border-radius: 8px 0 0 8px;
  position: absolute;
  top: 12px;
  left: 4px;
}

/* Contacts Section - About */
body.page-about .contacts-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 32px;
}


body.page-about .contacts-grid {
  display: flex;
  gap: 32px;
}

body.page-about .contact-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 24px;
  height: 176px;
  display: flex;
  align-items: stretch;
}

body.page-about .contact-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}


body.page-about .contact-card__title {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #1E293B;
  margin: 0;
  flex: 1;
  padding-right: 36px;
}

body.page-about .contact-card__email {
  color: #382DDD;
}

/* === PAGE WHO WE ARE === */

body.page-who-we-are .about-hero > .container:before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    background-position: top center;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/hero_whowe.svg);
    width: 100vw;
    left: calc((100% - 100vw) / 2);
}



body.page-who-we-are .content-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: #FFFFFF;
  border-radius: 8px;
}

body.page-who-we-are .content-section__images {
  position: relative;
  flex: 1;
  height: auto;
  flex-shrink: 0;
}



body.page-who-we-are .content-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


body.page-who-we-are .content-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}



body.page-who-we-are .content-section__description {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: #475569;
}



body.page-who-we-are .content-section__description p:last-child {
  margin-bottom: 0;
}

/* Timeline Section - Who We Are */
body.page-who-we-are .about-timeline__header {
  margin-bottom: 32px;
}



body.page-who-we-are .about-timeline__description {
  font-weight: 450;
  font-size: 18px;
  line-height: 1.56;
  color: #475569;
  max-width: 431px;
  margin: 8px 0 0;
}

body.page-who-we-are .about-timeline__slider-wrapper {
  position: relative;
  overflow: hidden;
}

body.page-who-we-are .about-timeline__slider {
  overflow: hidden;
}

body.page-who-we-are .about-timeline__slider .swiper-wrapper {
  align-items: stretch;
}

body.page-who-we-are .about-timeline__slider .swiper-slide {
  width: auto;
/*  margin-right: 32px;*/
  padding-bottom: 32px;
}

body.page-who-we-are .timeline-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 320px;
  min-height: 100%;
  box-sizing: border-box;
}

body.page-who-we-are .timeline-card__header {
  display: flex;
  align-items: center;
  width: 100%;
}

body.page-who-we-are .timeline-card__year {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;
  color: #1E293B;
  white-space: nowrap;
  flex-shrink: 0;
}

body.page-who-we-are .timeline-card__line {
  flex: 1;
  height: 1px;
  background: #E2E8F0;
/*  margin-left: 8px;*/
}

body.page-who-we-are .timeline-card__content {
  padding-right: 32px;
  flex: 1;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  body.page-who-we-are .about-timeline__slider .swiper-slide:last-child .timeline-card__content {
    padding-right: 36px;
  }
  body.page-who-we-are .about-timeline__slider .swiper-slide:last-child .timeline-card {
    width: 360px;
    padding-right: 40px;
  }
}

body.page-who-we-are .timeline-card__content p {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: #1E293B;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

body.page-who-we-are .about-timeline__gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 104px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 2;
}

body.page-who-we-are .about-timeline__navigation {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

body.page-who-we-are .timeline-nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.page-who-we-are .timeline-nav-btn:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

body.page-who-we-are .timeline-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

body.page-who-we-are .timeline-nav-btn svg {
  width: 24px;
  height: 24px;
}


.principles-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
  gap: 8px;
}
.principles-section__title {
  text-align: center;
}

.principles-section__desc {
  max-width: 80%;
  color: var(--Content-primary, #1E293B);
  font-size: var(--Typeface-font-size-body-large, 18px);
  font-weight: 450;
  line-height: var(--Typeface-line-height-body-large, 28px); 
}

.principles-grid {
  display: flex;
  gap: 16px;
  max-width: 1280px;
  margin: 32px auto 0;
}


.principle-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.principle-card:hover {
    box-shadow: 0 4px 12px rgba(56, 45, 221, 0.1);
    transform: translateY(-2px);
}

/* new block only desktop*/
@media (min-width: 768px) {
  .principles-section__two .principles-grid {
    gap: 32px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .principles-section__two .principle-card {
    flex: calc(50% - 16px);
    padding: 24px;
  }
}


.principle-card__icon {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.principle-card__icon svg {
  width: 100%;
  height: 100%;
}

.principle-card__heading {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.33;
  color: #1E293B;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
}

.principle-card__description {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: #1E293B;
  margin: 0;
  position: relative;
  z-index: 2;
}

.principle-card__description ul li:first-child {
    padding-top: 0;
}

/* Team Section - Who We Are */
body.page-who-we-are .team-section__title {
 
  text-align: center;
  margin-bottom: 32px;
}

body.page-who-we-are .team-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 24px;
}

body.page-who-we-are .team-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

body.page-who-we-are .team-column:nth-child(even) {
  margin-top: 48px;
}

body.page-who-we-are .team-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
 
}

body.page-who-we-are .team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.page-who-we-are .team-card__image {
  width: 100%;
  height: 302px;
  overflow: hidden;
}

body.page-who-we-are .team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body.page-who-we-are .team-card:hover .team-card__image img {
  transform: scale(1.05);
}

body.page-who-we-are .team-card__info {
  padding: 8px 16px;
}

body.page-who-we-are .team-card__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #1E293B;
}

body.page-who-we-are .team-card__position {
  font-weight: 450;
  font-size: 14px;
  line-height: 1.43;
  color: #475569;
  margin: 0;
}

/* === PAGE CONTACTS === */
body.page-contacts .about-hero > .container:before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    background-position: top center;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/hero_contacts.png);
    width: 100vw;
    left: calc((100% - 100vw) / 2);
}
body.page-contacts .contact-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

body.page-contacts .contact-card {
  background: white;
  border: 1px solid var(--Borders-dividers-secondary);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 280px;
}

body.page-contacts .contact-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

body.page-contacts .contact-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

body.page-contacts .contact-card h3.contact-card__title {
  color: var(--Content-primary);
}

body.page-contacts .contact-card__content {
  display: flex;
  flex-direction: column;
}

body.page-contacts .contact-card__description {
  font-weight: 450;
  font-size: 18px;
  line-height: 1.56;
  color: var(--Content-primary);
  margin: 0;
}

.contact-cards .contact-card__mail-copy {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-cards .contact-card__mail-copy svg {
  cursor: pointer;
}
body.page-contacts .contact-card__email {
  font-weight: 450;
  font-size: 18px;
  line-height: 1.56;
  color: var(--Content-brand);
  text-underline-position: from-font;
  width: fit-content;
}

body.page-contacts .contact-card__email:hover {
  text-decoration: underline;
}

body.page-contacts .contact-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.page-contacts .contact-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--Background-default);
  flex-shrink: 0;
}

body.page-contacts .contact-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-contacts .contact-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

body.page-contacts .contact-card__author-name {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: var(--Content-primary);
}

body.page-contacts .contact-card__author-role {
  font-weight: 450;
  font-size: 12px;
  line-height: 1.33;
  color: var(--Content-regular);
}

/* Additional Contacts - Contacts */
body.page-contacts .additional-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 32px;
}

body.page-contacts .additional-contact {
  background: white;
  border: 1px solid var(--Borders-dividers-secondary);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: stretch;
  gap: 16px;
}

body.page-contacts .additional-contact--service-desk {
  background: var(--Content-brand);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
}

body.page-contacts .additional-contact.additional-contact--service-desk h3.additional-contact__title {
  color: white;
}

body.page-contacts .additional-contact__icon {
  width: 72px;
  height: 72px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.page-contacts .additional-contact__icon svg {
  color: var(--Content-primary);
  width: 32px;
  height: 32px;
}

body.page-contacts .additional-contact__content {
  flex: 1;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: space-between;
}

body.page-contacts .additional-contact__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

body.page-contacts .additional-contact h3.additional-contact__title {
  color: var(--Content-primary);
  margin: 0;
}

body.page-contacts .additional-contact__email {
  font-weight: 450;
  font-size: 18px;
  line-height: 1.56;
  color: var(--Content-brand);
  text-decoration: none;
}

body.page-contacts .additional-contact__email:hover {
  text-decoration: underline;
}

body.page-contacts .additional-contact__content .btn {
  width: 100%;
}

/* LinkedIn Section - Contacts */
.linkedin-block {
  background: #0E2450;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  min-height: 296px;
  max-width: 1116px;
  margin: 0 auto;
}

.linkedin-block__content {
  flex: 1;
  padding: 48px 0 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: white;
  justify-content: space-between;
}

.linkedin-block h3.linkedin-block__title {
  color: white;
}
.linkedin-block h2.linkedin-block__title {
  color: white;
}

.linkedin-block__description {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: white;
  margin: 8px 0 0;
}
.btn-white {
    background: white;
}

.linkedin-block__image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.linkedin-block__image{
  background: url(https://vietnam16-wordpress-4.tw1.ru/wp-content/uploads/2025/10/career.png) no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}
.linkedin-block__image img {
  display: none;
  width: 550px;
  height: 100%;
  right: 0;
  object-fit: cover;
}

.linkedin-block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 181px;
  height: 100%;
  background: linear-gradient(-90deg, rgba(14, 36, 80, 0) 0%, rgba(14, 36, 80, 1) 90%);
}

/* Company Group - Contacts */
body.page-contacts .company-group h2.whoSuitable__title {
  margin-bottom: 32px;
}

body.page-contacts .company-group .company-group__list {
  display: flex;
  flex-direction: column;
  max-width: 576px;
}

body.page-contacts .company-group .company-item {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: var(--Content-brand);
  padding: 8px 16px;
  border-bottom: 1px solid var(--Borders-dividers-secondary);
  min-height: 64px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

body.page-contacts .company-group .company-item:hover {
  background: var(--Background-default);
  color: var(--Content-primary);
}

body.page-contacts .company-group .company-item.active {
  background: var(--Background-default);
  color: var(--Content-primary);
}

body.page-contacts .company-group .company-item span {
  flex: 1;
}

body.page-contacts .company-group .whoSuitable__right {
  border-radius: 8px;
  overflow: hidden;
  height: 432px;
}

body.page-contacts .company-group .whoSuitable__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Russia Office - Contacts */
body.page-contacts .russia-office__content {
  background: white;
  border-radius: 8px;
  display: flex;
  gap: 32px;
  padding: 48px;
}

body.page-contacts .russia-office__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}


body.page-contacts .russia-office__address {
  font-weight: 450;
  font-size: 24px;
  line-height: 1.33;
  color: var(--Content-primary);
  margin: 0;
}

body.page-contacts .russia-office__map {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

body.page-contacts .russia-office__map img {
  width: 100%;
  height: 432px;
  object-fit: cover;
}

/* ===== RESPONSIVE STYLES ===== */

/* Large screens */
@media (max1-width: 1200px) {
  .about-hero .container {
    padding: 120px var(--gap-foundation-s32, 32px) 60px;
  }
  
 
  /* About page responsive */
  body.page-about .content-section--about .container {
    padding: 32px;
  }
  
  body.page-about .content-section--about .content-section__main {
    flex-direction: column;
    gap: 40px;
  }
  
  body.page-about .content-section--about .content-section__image {
    width: 100%;
    max-width: 100%;
  }
  
  body.page-about .content-section--about .content-section__statistics {
    flex-wrap: wrap;
    gap: 24px;
  }
  
   .factoid {
    flex: 1 1 calc(50% - 12px);
    min-width: 150px;
  }
  

  
 
 
  
  /* Who we are responsive */
  body.page-who-we-are .content-section .container {
    padding: 32px;
    flex-direction: column;
    gap: 40px;
  }

  
  body.page-who-we-are .content-section__title {
    font-size: 32px;
    text-align: center;
  }
  
  
  
  .principles-grid {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
  }
  
  .principle-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 280px;
  }
  
 
  
  body.page-who-we-are .team-grid {
    max-width: 100%;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  

  
 
  
  /* Contacts responsive */

  
  
  body.page-contacts .company-group {
    margin-bottom: 60px;
  }
  
  body.page-contacts .company-group .company-group__list {
    width: 100%;
  }
}

/* Medium screens */
@media (max-width: 768px) {
  .about-hero .container {
    padding: 80px var(--gap-foundation-s24, 24px);
  }
  
  /* .about-hero__title {
    font-size: var(--Typeface-font-size-3xl, 32px);
  } */
  
  .about-hero__description {
    font-size: var(--Typeface-font-size-body-small, 14px);
  }
  .about-hero .hero__title {
    text-align: center;
  }
  
  
  
  /* About page responsive */
  body.page-about .content-section--about .container {
    padding: 16px;
    margin: 16px;
  }
  body.page-about .content-section--about .content-section__content {
      gap: 16px;
  }

  body.page-about .contacts-grid {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 60px;
  }
  body.page-about .contacts-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  body.page-about .contacts-section__header a.btn {
    position: absolute;
    bottom: 0;
    width: calc(100% - 32px);
  }
  

  body.page-about .content-section--about .content-section__image {
    width: 100%;
    max-width: 100%;
  }

  body.page-about .content-section--about .content-section__main{
    flex-direction: column-reverse;;
    gap: 32px;
  }
  
  
  body.page-about .content-section--about .content-section__statistics {
      display: flex;
        flex-wrap: wrap;
        gap: 32px;
        padding: 6px 0 6px;
  }
  
  .factoid {
    flex: 1 1 calc(50% - 32px);
  }

 .factoid__number {
    font-size: var(--Typeface-font-size-4xl, 28px);
    line-height: var(--Typeface-line-height-2xl, 36px);
  }

  body.page-about .careers-section .container {
    gap: 16px;
  }
  .careers-section .container {
      flex-direction: column;
  }
  .careers-section__header-sticky {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .careers-section__header a.btn {
    position: absolute;
    bottom: 16px;
    width: calc(100% - 32px);
  }
 
  .page-about .careers-section__slider {
    width: 100%;
    margin-bottom: 60px; 
  }


  .careers-section__description {
    max-width: 100%;
    text-align: left;
  }
 
  .careers-slider {
    border-radius: 8px;
  }
  .careers-section__slider .carousel-item,
  .careers-slider__gradient--left, 
  .careers-slider__gradient--right {
    display: none;
  }
  .careers-slider {
    height: auto;
  }
  .careers-slider .swiper-slide {
    width: 100% !important;
    height: auto;
  }


  .career-values__cards {
    flex-direction: column;
    margin-bottom: 18px;
  }

  
  /* Who we are responsive */
  body.page-who-we-are .content-section .container {
    margin: 16px;
    flex-direction: column;
    padding: 16px;
    gap: 32px;

  }
  
  
  
  body.page-who-we-are .content-section__title {
    font-size: 28px;
  }
  
  body.page-who-we-are .content-section__description {
    font-size: 14px;
  }
  
  body.page-who-we-are .about-timeline__title {
    font-size: 32px;
  }
  
  body.page-who-we-are .about-timeline__description {
    font-size: 16px;
  }
  
  body.page-who-we-are .timeline-card {
    width: 280px;
  }
  body.page-who-we-are .about-timeline__slider .swiper-slide:last-child .timeline-card {
    margin-right: 42px;
  }
  
  body.page-who-we-are .timeline-card__content {
    padding-right: 12px;
  }
  
  body.page-who-we-are .about-timeline__gradient {
    width: 68px;
    height: 300px;
  }


  .principles-section__header {
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .principles-section__desc {
    max-width: 100%;
    font-size: 16px;
    text-align: left;
  }
  .principles-section__title {
    text-align: left;
  }
  
  .principles-grid {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
  
  .principle-card {
    flex: none;
  }
  
  .principle-card__icon {
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
  }
  

  
  body.page-who-we-are .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  body.page-who-we-are .team-column {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  
  body.page-who-we-are .team-column:nth-child(even) {
    margin-top: 0;
  }

  body.page-who-we-are .team-card {
    flex: 1;
  }
  body.page-who-we-are .team-card__image {
    height: 100%;
  }
  
  body.page-who-we-are .team-card__name {
    font-size: 12px;
  }
  body.page-who-we-are .team-card__position {
    font-size: 12px;
    color: var(--Content-secondary, #94A3B8);
  }
  body.page-who-we-are .team-card__info {
    padding: 8px;
  }

  
  /* Contacts responsive */

  body.page-contacts .contact-cards__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.page-contacts .additional-contacts {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
 .linkedin-block {
    flex-direction: column-reverse;
    padding-left: 0;
  }
  
  .linkedin-block__content {
    padding: 32px;
  }
  body.page-contacts .contact-card {
    padding: 16px;
    min-height: auto;
  }
  
  body.page-contacts .contact-card h3.contact-card__title {
    font-size: 20px;
    line-height: 1.4;
  }
  
  body.page-contacts .contact-card__description {
    font-size: 16px;
  }
  
  body.page-contacts .additional-contacts {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  

  
  .linkedin-block__content {
      padding: 16px;
      margin-top: 16px;
      gap: 16px;
  }
  .linkedin-block__image {
      background: unset;
  }
  .linkedin-block__image img {
      display: block;
      width: 115%;
      margin-left: -15%;
  }
  .linkedin-block__overlay {
      position: absolute;
      top: unset;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: linear-gradient(178deg, rgba(14, 36, 80, 0) 0%, rgba(14, 36, 80, 1) 90%);
  }

  .linkedin-block__content a.btn {
      width: 100%;
  }
  
  body.page-contacts .additional-contact {
    padding: 16px;
    min-height: 126px;
  }
  
  body.page-contacts .additional-contact h3.additional-contact__title {
    font-size: 20px;
    line-height: 1.4;
  }
  body.page-contacts .additional-contact__icon {
    width: 54px;
    height: 54px;
  }
  body.page-contacts .company-group .whoSuitable__title,
  body.page-contacts .russia-office__title {
    font-size: 32px;
  }
  
  body.page-contacts .company-group .company-item {
    font-size: 16px;
    padding: 20px 16px;
    min-height: 64px;
  }
  body.page-contacts .company-group .whoSuitable__right {
    height: auto;
  }
  body.page-contacts .company-group .whoSuitable__right.active img{
    display: block;
  }
  
  body.page-contacts .russia-office__address {
    font-size: 18px;
  }

  
  body.page-contacts .russia-office__content {
    flex-direction: column;
    padding: 16px;
  }


  .contact-cards .contact-card__mail-copy svg {
    display: none;
  }
}

/* Small screens */


/* ===== CAREER PAGE STYLES ===== */
/* Hero Section - Career */

/*body.page-career .career-hero > .container:before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    background-position: top center;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/hero_career.png);
    width: 100vw;
    left: calc((100% - 100vw) / 2);
}*/

body.page-career .career-hero .career-hero__content:before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    background-position: center;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/hero_career.png);
    width: 100vw;
    left: calc((100% - 100vw) / 2);
}

body.page-career .career-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0 120px;
}

body.page-career .career-hero__content + .hero__counters {
  margin-top: 0;
}
body.page-career .career-hero.hero {
  padding-bottom: 24px;
}

/* body.page-career .career-hero__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: var(--Content-primary);
  margin-bottom: 24px;
}
 */

body.page-career .career-hero__description {
  font-weight: 450;
  font-size: 18px;
  line-height: 1.5;
  color: var(--Content-regular);
  margin-bottom: 32px;
}

/* Safety Section - Career */


body.page-career .safety-section__content {
  display: flex;
  gap: 32px;
}

body.page-career .safety-section__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  flex: 0 0 413px;
}

body.page-career .safety-section__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

body.page-career .safety-section__right {
  flex: 1;
}

body.page-career .safety-section__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-career .safety-section__row {
  display: grid;
  gap: 16px;
}

body.page-career .safety-section__row--two {
  grid-template-columns: 1fr 1fr;
}

body.page-career .safety-section__row--three {
  grid-template-columns: 1fr 1fr 1fr;
}

body.page-career .safety-section__row--three .safety-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

body.page-career .safety-card {
  position: relative;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 240px;
}

body.page-career .safety-card:hover {
  box-shadow: 0 4px 12px rgba(56, 45, 221, 0.1);
  transform: translateY(-2px);
}

body.page-career .safety-card__icon {
  position: absolute;
  top: -10px;
  right: -26px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

body.page-career .safety-card__content {
  position: relative;
  z-index: 2;
}

body.page-career .safety-card__content h3.safety-card__title {
  color: var(--Content-primary);
  margin-bottom: 16px;
}

body.page-career .safety-card__description {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: var(--Content-primary);
}

/* Responsive - Career */
@media (max-width: 1024px) {
  body.page-career .safety-section__content {
    flex-direction: column;
    gap: 32px;
  }
  
  body.page-career .safety-section__left {
    flex: none;
    max-width: 600px;
    margin: 0 auto;
  }
  
 
}

@media (max-width: 768px) {



  body.page-career .career-hero.hero .btn {
    width: auto;
  }
  body.page-career .career-hero .hero__title {
    text-align: center;
  }
   .career-hero .hero__counters {
      flex-direction: column;
      flex-wrap: wrap;
      gap: 32px;
   }
  .career-hero .hero__conter {
    flex: 1 1 calc(50% - 32px);
  }
  
  body.page-career .safety-card__icon {
    right: -8px;
    width: 120px;
    height: 120px;
  }


  body.page-career .safety-card__content h3.safety-card__title {
    font-size: 20px;
    line-height: 28px;
  }

  body.page-career .safety-card {
      min-height: unset;
  }

  body.page-career .safety-section__content {
      gap: 16px;
  }

  body.page-career .safety-section__row--two,
  body.page-career .safety-section__row--three {
        grid-template-columns: 1fr;
  }

}

/* ===== WHY US PAGE STYLES ===== */
/* Hero Section - Why Us */
body.page-why-us .why-us-hero > .container:before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    background-position: top center;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/hero_whyare.svg);
    width: 100vw;
    left: calc((100% - 100vw) / 2);
}

body.page-why-us .why-us-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}

body.page-why-us .why-us-hero__text {
  margin-bottom: 40px;
}


body.page-why-us .why-us-hero__description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--Content-regular);
  margin: 0;
}

body.page-why-us .why-us-hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

#advantages .container {
    flex-direction: column;
}
#advantages careers-section__title,
#advantages .careers-section__header--center {
  text-align: center;
}

#advantages .career-values__cards {
  margin-bottom: 0;
}
#advantages .career-values__card {
    flex-direction: row;
    gap: 32px;
}
#advantages .career-values__card-title {
  margin-bottom: 8px;
}
.career-values__card-right {
    min-width: 310px;
    border-left: 1px solid var(--Borders-dividers-secondary, #E2E8F0);
    padding-left: 16px;
}
.career-values__card-statistics {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
#advantages .career-values__card:nth-child(1) .factoid > * {
  color:#fff;
}
#advantages .career-values__card:nth-child(2) .factoid > * {
   color:#1E293B;
}
#advantages .career-values__card:nth-child(3) .factoid > * {
   color:#fff;
}
@media (max-width: 768px) {
  #advantages .container {
    flex-direction: column;
    gap: 16px;
  }

  #advantages .careers-section__header--center {
    align-items: flex-start;
    text-align: left;
  }


  .career-values__card {
    
    gap: 16px;
    padding: 16px;
  }
  #advantages .career-values__card {
    flex-direction: column;
    gap: 24px;
  }
  .career-values__card-title h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .career-values__card-icon {
    width: 24px;
    height: 24px;
  }
  
  #advantages .career-values__card-right {
      border-left: none;
      border-top: 1px solid var(--Borders-dividers-secondary, #E2E8F0);
      padding: 16px 0;

      min-width: 100%;
  }

}

/* Clients Section - Why Us */
body.page-why-us .clients__text-content {
  flex: 1;
}



body.page-why-us .clients__text-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--Content-regular);
}

body.page-why-us .clients__text-content p:last-child {
  margin-bottom: 0;
}

/* Responsive - Why Us */
@media (max-width: 1024px) {
  body.page-why-us .why-us-hero__content {
    padding: 60px 0 80px;
  }
  
  /* body.page-why-us .why-us-hero__title {
    font-size: 48px;
  } */
  
  /* body.page-why-us .why-us-hero__description {
    font-size: 18px;
  } */
}

@media (max-width: 768px) {

  body.page-why-us .why-us-hero__content {
    padding: 80px 0 60px;
  }

  body.page-why-us .why-us-hero__content  .hero__title {
    text-align: center;
  }
  
  /* body.page-why-us .why-us-hero__title {
    font-size: 36px;
  }
  
  body.page-why-us .why-us-hero__description {
    font-size: 16px;
  } */
  
  /* body.page-why-us .why-us-hero__description br {
    display: none;
  } */
}

/* ===== COMPREHENSIVE SUPPORT SECTION ===== */
.comprehensive-support .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.comprehensive-support__title {
  text-align: center;
}


.comprehensive-support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.support-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}


.support-card__icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
body.page-template-page-why-us .support-card__title {
  color: #1E293B;
}

.support-card__description {
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

/* Responsive for Comprehensive Support */
@media (max-width: 1024px) {
  .comprehensive-support .container {
    padding: 32px;
  }
  
  .comprehensive-support__title {
    font-size: 32px;
  }
  
  .comprehensive-support__grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .comprehensive-support .container {
    padding: 24px;
    margin: 16px;
  }
  
  .comprehensive-support__title {
    font-size: 28px;
  }
  
  .comprehensive-support__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .support-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .support-card__icon {
    width: 72px;
    height: 72px;
  }
  

  
  .support-card__description {
    font-size: 14px;
  }
}

/* ========================================
   UNIVERSAL ANIMATION SYSTEM
   Автоматические анимации через data-атрибуты
   ======================================== */

/* Базовый класс для всех анимаций */
.animate {
  opacity: 0;
  transition: 
    opacity var(--animate-duration, 600ms) ease-out var(--animate-delay, 0ms),
    transform var(--animate-duration, 600ms) ease-out var(--animate-delay, 0ms);
  will-change: opacity, transform;
}

/* Активное состояние - когда элемент появился в viewport */
.animate.animated {
  opacity: 1;
  transform: none !important;
}

/* ========================================
   ТИПЫ АНИМАЦИЙ
   ======================================== */

/* Slide Up - появление снизу вверх */
.animate-slide-up {
  transform: translateY(30px);
}

/* Slide Down - появление сверху вниз */
.animate-slide-down {
  transform: translateY(-30px);
}

/* Slide Left - появление справа налево */
.animate-slide-left {
  transform: translateX(50px);
}

/* Slide Right - появление слева направо */
.animate-slide-right {
  transform: translateX(-50px);
}

/* Fade - только появление без движения */
.animate-fade {
  transform: none;
}

/* Scale - увеличение */
.animate-scale {
  transform: scale(0.9);
}

/* Scale Up - уменьшение */
.animate-scale-up {
  transform: scale(1.1);
}

/* Rotate - поворот */
.animate-rotate {
  transform: rotate(-5deg);
}

/* Комбинированные анимации */
.animate-slide-up-scale {
  transform: translateY(30px) scale(0.95);
}

.animate-slide-left-fade {
  transform: translateX(50px);
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* Отключение анимаций для пользователей с чувствительностью к движению */
@media (prefers-reduced-motion: reduce) {
  .animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ========================================
   LEGACY SUPPORT (для обратной совместимости)
   ======================================== */

/* Старые классы для совместимости с существующим кодом */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }
.animate-delay-7 { transition-delay: 0.7s; }
.animate-delay-8 { transition-delay: 0.8s; }


