.team {
    background: var(--ocre-light);
    position: relative;
    overflow-x: hidden;
}

.team--container {
    padding: 56px 0 40px;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .team--container {
        padding: 104px 0 30px;
        padding-inline: 42px;
    }
}

.team--echo {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1920px;
    overflow: hidden;
}

.team--echo span {
    display: block;
    border-radius: 50%;
    border: 1px solid #D29105;
    width: 100%;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: team-echo 16s ease-out infinite;
    opacity: 0;
}

.team--echo span:nth-child(1) {
    animation-delay: 0s;
}

.team--echo span:nth-child(2) {
    animation-delay: 4s;
}

.team--echo span:nth-child(3) {
    animation-delay: 8s;
}

.team--echo span:nth-child(4) {
    animation-delay: 12s;
}

.team--header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    text-wrap: balance;
    max-width: 810px;
    margin-inline: auto;
    padding-inline: 16px;
}

@media screen and (min-width: 842px) {
    .team--header {
        padding-inline: 0;
    }
}

.team--header strong {
    color: var(--framb-mid);
}

.team--wrapper {
    height: clamp(240px, 20vh, 550px);
    max-height: 200px;
    width: 100%;
    position: relative;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 450px) {
    .team--wrapper {
        height: clamp(240px, 20vh, 450px);
        max-height: 450px;
    }
}

@media screen and (min-width: 600px) {
    .team--wrapper {
        height: clamp(240px, 30vh, 450px);
    }
}

@media screen and (min-width: 992px) {
    .team--wrapper {
        height: 550px;
        max-height: 550px;
    }
}

.team--wrapper img {
    height: 100%;
    width: calc(100% - 32px);
    margin-inline: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 16px;
}

@media screen and (min-width: 992px) {
    .team--wrapper img {
        max-height: none;
    }
}

@media screen and (min-width: 1312px) {
    .team--wrapper img {
        width: 100%;
    }
}

@media screen and (min-width: 992px) {
    .team--wrapper .swiper {
        position: inherit;
    }
}

@media screen and (min-width: 992px) {
    .team--wrapper .swiper-wrapper {
        position: absolute;
        top: 0;
    }
}

.team--wrapper .redirect {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 56px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    padding: 4px 24px 4px 4px;
    width: 230px;
    height: auto;
    transition: background 0.3s ease;
}

@media screen and (min-width: 992px) {
    .team--wrapper .redirect {
        position: absolute;
        width: -moz-max-content;
        width: max-content;
    }
}

@media (hover: hover) {
    .team--wrapper .redirect {
        text-decoration: none;
    }

    .team--wrapper .redirect:hover {
        background: var(--framb-light);
    }
}

.team--wrapper .redirect img {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.team--wrapper .redirect .inner {
    display: flex;
    flex-direction: column;
}

.team--wrapper .redirect .name {
    color: var(--grey);
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.15px;
}

.team--wrapper .redirect .role {
    color: var(--framb-dark);
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    .team--wrapper .redirect:nth-child(1) {
        top: 0;
        left: 112px;
        transform: translateY(-50%);
    }

    .team--wrapper .redirect:nth-child(2) {
        top: 0;
        right: 112px;
        transform: translateY(-50%);
    }

    .team--wrapper .redirect:nth-child(3) {
        bottom: 110px;
        left: -18px;
    }

    .team--wrapper .redirect:nth-child(4) {
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
    }

    .team--wrapper .redirect:nth-child(5) {
        top: 190px;
        right: -40px;
    }
}

@media screen and (max-width: 991px) {
    .team--slider {
        position: absolute;
        bottom: -32px;
        width: 100%;
    }
}

.team--bg {
    height: 140px;
    width: 100%;
    background-color: var(--framb);
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.team--bg::before {
    content: "";
    background: url("../images/pattern.svg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    pointer-events: none;
}

@media screen and (min-width: 450px) {
    .team--bg {
        height: 200px;
    }
}

@media screen and (min-width: 600px) {
    .team--bg {
        height: 230px;
    }
}

@keyframes team-echo {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

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