h2 {
    font-family: RobotoBold;
    font-size: 1.8rem;
}
.equipe {
    color: var(--grey-1);
}
.equipe-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.equipe-wrap > div {
    width: 100%;
}
.equipe-main {
    display: flex;
    gap: 1rem;
    margin-top: -3rem;
    justify-content: flex-end;
}
.equipe-cell {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.equipe-img {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex: 1 1 400px;
}
.equipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.equipe-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    max-width: 450px;
}
.name {
    text-transform: uppercase;
    font-family: RobotoSemiBold;
}
.role {
    font-style: italic;
}
.timeline-section {
    padding: 5rem 3rem !important;
}
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
    width: 100%;
}
.container {
  padding: 10px 50px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(-30px);
}
.container.show {
  animation: movedown 1s ease forwards;
}
@keyframes movedown {
    from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0px);
      }
}
.container h4 {
    color: var(--white-1);
    font-size: 1.4rem;
    font-family: RobotoSemiBold;
}
.container p {
    color: var(--white-1);
}
.text-box {
    padding: 20px 30px;
    background-color: transparent;
    color: black;
    position: relative;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 15px;
}
.left-container {
    left: 0;
}
.right-container {
    left: 50%;
}
.container-img img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    min-height: 300px;
}
.container-img.top img {
    object-position: top;
}
.white-circle {
    position: absolute;
    background-color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10;
}
.right-container .white-circle {
    left: -20px;
}
.date {
    position: absolute;
    right: -64px;
    top: 42px;
    z-index: 10;
    width: max-content;
}
.right-container .date {
    left: -64px;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background-color: #FFFFFF;
    top: 0;
    left: 50%;
    margin-left: -3px;
    animation: moveline 6s linear forwards;
}
@keyframes moveline {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
.left-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #FFFFFF;
    right: -15px;
}
.right-container-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #FFFFFF;
    left: -15px;
}
.section-2 {
    background-color: var(--grey-1);
}
.questions-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    color: var(--grey-1);
}
.questions-wrap > div {
    width: 100%;
}
.questions-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.accordion-wrap {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.accordion-item {
    border-bottom: 1px solid var(--grey-1);
}
.accordion-header {
    cursor: pointer;
    padding: 0.6rem 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.accordion-header span:first-child {
    transition: transform 0.3s ease;
}
.accordion-header svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.accordion-item.active .accordion-header span:first-child {
    transform: rotate(45deg);
}
.accordion-item:not(.active) .accordion-header:hover {
  color: var(--grey-2);
}
.accordion-item:not(.active) .accordion-header:hover svg {
  fill: var(--grey-2);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1rem;
}
.accordion-content p {
    font-size: 0.95rem;
}
.accordion-item.active .accordion-content {
    max-height: 800px;
    padding: 1rem;
}



