/* Products index page */
.company-hero {
  position: relative;
  padding: 8px 0 80px 0;
  min-height: inherit;
  background: url(/assets/img/compnay-hero.svg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.company-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--n30);
  z-index: -1;
}

/* Breadcrumbs */
.breadcrumbs {
  position: fixed;
  top: 150px;
  left: 24px;
  z-index: 11;
  transition: .3s ease;
}

.breadcrumbs.fixed {
  padding: 4px 6px;
  top: 76px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: rgba(243, 248, 250, 0.38);
  backdrop-filter: blur(10px);
  /* filter: blur(20px); */
}

.breadcrumbs ol {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumbs ol li {
  color: var(--n100);
  font-size: 14px;
  font-family: 'Audi Light';
}

.breadcrumbs.dark ol li {
  color: var(--n500-a);
}

.breadcrumbs ol li a {
  display: flex;
  padding: 6px 8px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: 'Audi Normal';
  color: var(--n900);
  border-radius: 4px;
  transition: .5s ease;
}

.breadcrumbs ol li.active a {
  color: var(--n400);
}

.breadcrumbs ol li:hover a {
  background-color: var(--n30-a);
}

.breadcrumbs ol li:active a {
  background-color: var(--n50-a);
}

.breadcrumbs:not(fixed).dark {
  background-color: rgba(221, 231, 234, 0.38);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 3px;
}

.breadcrumbs ol li:last-child a {
  cursor: default;
}

.breadcrumbs ol li:last-child a:hover {
  background-color: transparent;
}

/* end Breadcrumbs */
.company-hero-content {
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.company-hero--headline {
  text-align: left;
  max-width: 70vw;
  font-size: 64px;
  font-family: 'Extended Bold';
  line-height: 130%;
  color: var(--n900);
}

.company-hero--desc {
  max-width: 50vw;
  font-size: 20px;
  font-family: 'Audi Normal';
  color: var(--n500);
  line-height: 140%;
}

.company-hero .twinit-circle {
  right: 5vw;
  bottom: 35vh;
}

.company-hero .twinit-circle::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-color: rgba(75, 198, 255, 0.22);
  border-radius: 50%;
  border: 1px solid rgba(84, 132, 255, 0.8);
  animation: twinitCircle 5s linear infinite;
  animation-delay: 1s;
}

.company-hero .twinit-circle::after {
  content: '';
  position: absolute;
  width: 300%;
  height: 300%;
  background-color: rgba(75, 198, 255, 0.22);
  border-radius: 50%;
  border: 1px solid rgba(84, 132, 255, 0.8);
  animation: twinitCircle 5s linear infinite;
}

.company-main section {
  padding: 120px 80px 80px 80px;
}

/* Facts */
.company-facts {
  padding: 80px 80px 80px 80px;
}
.facts-container {
  /* position: relative;
  display: flex;
  align-items: flex-start; */
  width: 100%;
  /* gap: 80px; */
  padding-left: 24px;
  padding-bottom: 24px;
  transition: 2s ease;
}

.facts-container::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  top: 40px;
  left: 0;
  background-color: var(--n50-a);
  z-index: -1;
  transition: 2s ease;
}

.facts-container.done::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  top: 40px;
  left: 0;
  background-color: var(--n50-a);
  z-index: -1;
}

.tl-title {
  margin-bottom: 40px;
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-family: 'Extended Bold';
  color: var(--n900);
}
.tl-title span {
  font-family: 'Extended Normal';
}
/* Timeline */
#company-timeline .splide__arrow--prev {
  left: -40px;
}

#company-timeline .splide__arrow--next {
  right: -40px;
}

#company-timeline .splide__track {
  padding: 40px 0;
}

.timeline-progress {
  background: var(--n30-a);
}

.timeline-progress-bar {
  background: var(--b300);
  height: 2px;
  transition: width 1400ms ease;
  width: 0;
}

.timeline-item {
  padding: 12px 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--n600);
  cursor: pointer;
  transition: .5s ease;
}

.timeline-item.is-active {
  color: var(--n800);
  transform: scale(1.2);
  background-color: var(--n10);
}

.timeline-item.is-active:hover {
  color: var(--b300);
}

.timeline-item:not(.is-active):hover {
  transform: translateY(-4px);
}

.tl__icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tl__year {
  margin-top: 8px;
  font-size: 14px;
  font-family: 'Extended Bold';
}

.tl__text {
  margin-top: 4px;
  font-size: 12px;
  line-height: 20px;
  font-family: 'Audi Normal';
  text-align: center;
}
.tl__text a {
  color: var(--b200);
  transition: .5s ease;
}
.tl__text a:hover {
  color: var(--b300);
  text-decoration: underline;
}

.timeline-item:nth-child(1) .tl__icon {
  background-color: var(--g200);
}

.timeline-item:nth-child(2) .tl__icon {
  background-color: var(--b200);
}

.timeline-item:nth-child(3) .tl__icon {
  background-color: var(--p200);
}

.timeline-item:nth-child(4) .tl__icon {
  background-color: var(--b300);
}

.timeline-item:nth-child(5) .tl__icon {
  background-color: var(--t200);
}

.timeline-item:nth-child(6) .tl__icon {
  background-color: var(--y300);
}

.timeline-item:nth-child(7) .tl__icon {
  background-color: var(--t200);
}

.timeline-item:nth-child(8) .tl__icon {
  background-color: var(--g200);
}

.timeline-item:nth-child(9) .tl__icon {
  background-color: var(--t200);
}
.timeline-item:nth-child(10) .tl__icon {
  background-color: var(--b200);
}
.timeline-item:nth-child(11) .tl__icon {
  background-color: var(--p200);
}
.timeline-item:nth-child(12) .tl__icon {
  background-color: var(--b300);
}
/* Timeline */

.fact-item {
  position: relative;
  display: flex;
  flex-direction: column;
  /* min-width: 15%; */
  gap: 12px;
}

.fact-item::before,
.fact-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--n10);
  border: 1px solid var(--n50);
  top: 32px;
  z-index: -1;
}

.fact-item::before {
  left: -8px;
}

.fact-item::after {
  background-color: var(--n0);
  right: -8px;
  /* opacity: .4; */
}

.fact-item--icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--n0);
  box-shadow: 0px 15px 40px 0px rgba(63, 73, 86, 0.11);
}

.fact-item--icon_box {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.fact-item:nth-child(1) .fact-item--icon_box {
  background-color: var(--g200);
}

.fact-item:nth-child(2) .fact-item--icon_box {
  background-color: var(--b300);
}

.fact-item:nth-child(3) .fact-item--icon_box {
  background-color: var(--y300);
}

.fact-item:nth-child(4) .fact-item--icon_box {
  background-color: var(--p200);
}

.fact-item .fact-item--icon_box {
  background-color: var(--b300);
}

.fact-item--title {
  margin-top: 16px;
  font-size: 18px;
  font-family: 'Extended Bold';
  color: var(--n900);
}

.fact-item--desc {
  font-size: 14px;
  line-height: 160%;
  font-family: 'Audi Normal';
  color: var(--n500);
}

/* end Facts */

/* Company Office */
.company-office {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5vw;
}

.company-office--meta {
  display: flex;
  flex-direction: column;
  max-width: 45vw;
  gap: 32px;
}

.company-office--meta h3 {
  font-size: 40px;
  color: var(--n900);
  font-family: 'Extended Bold';
}

.company-office--meta__map {
  display: flex;
  align-items: center;
  gap: 32px;
}

.company-office--meta img {
  display: block;
  border-radius: 8px;
  border: 4px solid var(--n0);
  width: 280px;
  height: 160px;
  transition: .5s ease;
}

.company-office--meta img:hover {
  box-shadow: 0px 11px 44px 0px rgba(11, 42, 95, 0.11);
  /* box-shadow: 0px 11px 44px 0px rgba(11, 42, 95, 0.22); */
  transform: translateY(-11px) scale(1.02);
}

.company-office--meta img:active {
  box-shadow: none;
  opacity: .8;
  transform: translateY(2px);
}

.company-office--meta__map--text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-office--meta__map--text h4 {
  font-size: 20px;
  color: var(--b300);
}

.company-office--meta__map--text p {
  font-size: 14px;
  line-height: 22px;
  color: var(--n400);
  font-family: 'Audi Normal';
}

.company-office--meta__map--text a {
  padding: 8px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--n20-a);
  transition: .3s ease;
}
.company-office--meta__map--text a svg path {
  transition: .5s ease;
}
.company-office--meta__map--text a:hover {
  background-color: var(--n30-a);
}

.company-office--meta__map--text a:active {
  transform: translateY(2px);
  color: var(--n20);
  background-color: var(--n400-a);
}
.company-office--meta__map--text a:active svg path {
  fill: var(--n10);
}

.company-office--image img {
  max-width: 40vw;
  height: auto;
  /* height: 420px; */
  border-radius: 12px;
}

/* end Company Office */

/* Values */
.company-values {
  background-color: var(--n0);
}

.company-values h2 {
  font-size: 48px;
  color: var(--n900);
  font-family: 'Extended Bold';
  text-align: center;
}

.company-section-dess {
  margin-top: 24px;
  font-size: 20px;
  line-height: 32px;
  color: var(--n500);
  font-family: 'Audi Normal';
  text-align: center;
}

.company-values h3 {
  padding-top: 80px;
  margin-top: 80px;
  border-top: 1px dashed var(--n100-a);
  font-size: 36px;
  color: var(--n900);
  font-family: 'Extended Bold';
  text-align: center;
}

.values-desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: var(--n500);
  font-family: 'Audi Normal';
  text-align: center;
}

.values-container {
  margin-top: 120px;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 80px;
}

.value-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10vh;
  border-bottom: 1px solid var(--n50-a);
  gap: 10vw;
  transition: .5s ease;
}

.value-item h4 {
  font-family: 'Extended Bold';
  font-size: 32px;
  color: var(--n900);
  white-space: nowrap;
  transition: .5s ease;
  position: relative;
}

.value-item h4::before {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  font-family: 'Extended Bold';
  font-size: 40px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--n50-a);
  transition: .7s ease;
}

.value-item:hover h4::before {
  top: 50px;
}

.value-item:nth-child(1) h4::before {
  content: '01';
}

.value-item:nth-child(2) h4::before {
  content: '02';
}

.value-item:nth-child(3) h4::before {
  content: '03';
}

.value-item:nth-child(4) h4::before {
  content: '04';
}

.value-item:nth-child(5) h4::before {
  content: '05';
}

.value-item h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: calc(100% - 52px);
  height: 2px;
  width: 0%;
  background-color: var(--n500);
  transition: .5s ease;
}

.value-item:hover h4::after {
  width: 100%;
}

.value-item--desc {
  width: 40vw;
  font-size: 18px;
  line-height: 155%;
  color: var(--n500);
  font-family: 'Audi Normal';
  transition: .5s ease;
}

.value-item:hover .value-item--desc {
  color: var(--n900);
}

/* end Values */

/* Team */
.company-team {
  padding-top: 40px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--n20);
}

.company-team--title {
  font-size: 18px;
  font-family: 'Extended Bold';
  color: var(--b300);
}
.team-certs {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  transition: .5s ease;
}
.team-certs a {
  display: inline-flex;
  position: relative;
}
.team-certs a[href="#no-link"] {
  cursor: default;
}

.team-certs a:before {
  content: attr(data-title);
  position: absolute;
  bottom: 32px;
  left: 50%;
  padding: 4px;
  min-width: 160px;
  text-align: center;
  border-radius: 2px;
  background-color: var(--n800-a);
  color: var(--n0);
  font-size: 11px;
  font-family: 'Audi Normal';
  opacity: 0;
  transform: translate(-50%, -20px);
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.team-certs a:hover:before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* .team-certs a:nth-child(5):hover::before {
  left: -50%;
} */
.salome .team-certs a:nth-child(1):before {
  left: 0;
  transform: translate(-20px, -20px);
}
.salome .team-certs a:nth-child(1):hover::before {
  left: 0;
  transform: translate(-20px, 0);
}
.salome .team-certs a:nth-child(5):before {
  left: -100px;
  transform: translate(-100px, -20px);
}
.salome .team-certs a:nth-child(5):hover::before {
  left: 0;
  transform: translate(-100px, 0);
}
.team-certs a img {
  width: 24px;
  height: 24px;
  transition: .5s ease;
}
.team-certs a img:hover {
  transform: scale(1.5) !important;
}
.team-certs a img:active {
  opacity: .8;
  transform: scale(1) !important;
}
.company-team--desc {
  margin-top: 4px;
  font-size: 48px;
  font-family: 'Extended Bold';
  color: var(--n900);
}

.company-team--container {
  margin-top: 120px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.company-team--item {
  position: relative;
  width: calc(32% - 12px);
  padding: 40px;
  /* background-color: var(--n0); */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  /* box-shadow: 0px 8px 32px rgba(11, 42, 95, 0.05); */
  border: 1px solid transparent;
  transition: border .5s ease;
}

.company-team--item:hover {
  border: 1px solid var(--n900);
}
.company-team--item:hover .team-certs {
  gap: 16px;
  position: absolute;
  bottom: 16px;
  left: 0;
  z-index: 999;
}
.company-team--item:hover .team-certs a img {
  transform: scale(1.2);
}
.company-team--item img {
  margin: 0 auto;
  text-align: center;
  opacity: .9;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  will-change: transform;
  border-radius: 50%;
  transition: .5s ease;
}

.company-team--item:hover img {
  opacity: 1;
  transform: scale(.5) translateY(-100px);
}

.company-team--item:hover .team-name,
.company-team--item:hover .team-position {
  transform: translateY(-88px);
}

.team-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-name {
  font-size: 16px;
  white-space: nowrap;
  font-family: 'Audi Bold';
  will-change: transform;
  transition: .5s ease;
}

.team-position {
  margin-top: 8px;
  font-size: 13px;
  color: var(--b400);
  font-family: 'Extended Bold';
  text-align: center;
  will-change: transform;
  transition: .5s ease;
}

.team-desc {
  position: absolute;
  padding: 12px 12px 64px 12px;
  bottom: -300px;
  left: 0;
  border-top: 1px solid var(--n900);
  background-color: var(--n0);
  backdrop-filter: blur(0px);
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  line-height: 155%;
  text-align: left;
  color: var(--n300);
  font-family: 'Audi Normal';
  transition: .5s ease;
}
.team-desc__edu {
  margin-top: 8px;
  padding-top: 8px;
  width: 100%;
  overflow: hidden;
  border-top: 1px dashed var(--n50);
}
.team-desc__edu--title {
  font-size: 11px;
  font-family: 'Audi Bold';
}
.team-desc__edu--list {
  display: flex;
  gap: 24px;
  list-style-type: disc;
  padding-left: 16px;
}
@media (width > 1401px) {
  .team-desc__edu--list {
    flex-direction: column !important;
    gap: 8px;
  }
}
.team-desc__edu--list li {
  font-size: 12px;
}
.company-team--item:hover .team-desc {
  /* height: 100%; */
  bottom: 0;
}

.company-team--item:hover .team-name {
  color: var(--b300);
}

.company-team--item:hover .team-position {
  color: var(--n700);
}

.company-team--item:hover .team-desc {
  color: var(--n900);
}

/* end Team */

/* Meet */
.meet {
  background-color: #202124;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  user-select: none;
}
.meet-bar {
  background: url('/assets/img/team/meet/meet-bar.svg') no-repeat;
  width: 100%;
  background-size: 100% auto;
  height: 40px;
}
.meet-footer {
  background: url('/assets/img/team/meet/meet-footer.png') no-repeat;
  width: 100%;
  background-size: 100% auto;
  min-height: 50px;
}
.meet-content {
  margin: 12px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.meet-content img {
  width: calc(33.3% - 24px);
  min-width: 100px;
  border-radius: 6px;
  border: 3px solid transparent;
  opacity: 1;
  will-change: transform;
  transition: .5s ease;
}
.meet-content img:hover {
  z-index: 88;
  transform: scale(1.1) !important; 
  border: 3px solid #729CEF;
}

/* Meet */

/* Hiring */
.company-hiring {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  background-color: var(--n10);
  border: 1px dashed var(--n50-a);
  padding: 32px 5vw;
  border-radius: 12px;
}

.company-hiring h2 {
  font-size: 32px;
  color: var(--n900);
  font-family: 'Extended Bold';
}

.company-hiring p {
  font-size: 16px;
  text-align: center;
  color: var(--n500);
  font-family: 'Audi Normal';
}

.company-hiring--link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 99px;
  background-color: var(--b300);
  color: var(--n0);
  font-size: 14px;
  padding: 0 16px;
  line-height: 40px;
  transition: .5s ease;
}

.company-hiring--link:hover {
  transform: translateY(-2px);
  background-color: var(--b500);
}

.company-hiring--link:active {
  transform: translateY(1px);
  background-color: var(--n700);
  color: var(--n40);
}

/* end Hiring */

/* Responsive */
@media (width > 1400px) {
  .company-team--item {
    width: calc(20% - 12px);
  }
}
@media (width < 1025px) {
  .company-hero {
    height: inherit;
    min-height: inherit;
    padding-bottom: 40px;
  }
  .company-hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .company-hero--headline {
    font-size: 32px;
    max-width: 100%;
  }
  .company-hero--desc {
    font-size: 18px;
    max-width: 100%;
  }
  .company-hero .twinit-circle {
    bottom: 24px;
  }
  .company-team--container {
    margin-top: 80px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .company-team--item {
    max-width: 100%;
    width: 100%;
    padding: 24px;
  }
  .team-position {
    text-align: center;
  }
}

@media (width < 768px) {
  .company-main section,
  .company-facts {
    padding: 40px 20px;
  }
  .tl-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .facts-container {
    padding-left: 0px;
  }
  #company-timeline .splide__arrow--prev {
    left: 0;
  }
  #company-timeline .splide__arrow--next {
    right: 0;
  }
  .timeline-item.is-active {
    transform: scale(1.02);
  }
  .company-team--desc {
    font-size: 24px;
  }
  .company-team--container {
    margin-top: 56px;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .company-team--item {
    max-width: 100%;
    width: 100%;
    padding: 24px;
  }
  .company-hiring {
    margin-top: 40px;
    padding: 24px 12px;
  }
  .company-hiring h2 {
    font-size: 24px;
  }
  .company-values h2 {
    font-size: 24px;
  }
  .values-container {
    margin-top: 80px;
  }
  .value-item {
    flex-direction: column;
  }
  .value-item--desc {
    width: 100%;
  }
  .value-item h4 {
    font-size: 20px;
    white-space: pre-line;
    word-break: keep-all;
  }
  .company-office {
    flex-direction: column;
    align-items: flex-start;
  }
  .company-office--meta {
    max-width: 100%;
    width: 100%;
  }
  .company-office--meta h3 {
    font-size: 24px;
  }
  .company-office--meta__map {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  .company-office--meta__map--text {
    align-items: center;
  }
  .company-office--meta__map--text p {
    text-align: center;
  }
  .company-office--image img {
    margin-top: 24px;
    width: 100%;
    height: auto;
  }
}
