

/* Start:/team.css?17809081325678*/
.fm-team-header {
    position: relative;
    overflow: hidden;
}

.fm-team-header:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 30%, rgba(243, 57, 41, 0.28), transparent 34%), radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.12), transparent 28%);
    pointer-events: none;
}

.fm-team-page {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}

.fm-team-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 30px;
}

.fm-team-hero__content,
.fm-team-hero__note,
.fm-team-card,
.fm-team-values {
    border: 1px solid var(--divider-color);
    box-shadow: 0 20px 70px rgba(36, 36, 36, 0.06);
}

.fm-team-hero__content {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
    background: var(--white-color);
    padding: 55px;
}

.fm-team-hero__content .section-title {
    margin-bottom: 0;
}

.fm-team-hero__content .section-title h2 {
    max-width: 880px;
}

.fm-team-hero__content .section-title p {
    max-width: 760px;
    font-size: 18px;
}

.fm-team-hero__note {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(145deg, var(--accent-color), var(--accent-secondary-color));
    padding: 40px;
    color: var(--white-color);
}

.fm-team-hero__note:before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.fm-team-hero__note span {
    position: relative;
    display: block;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.86);
}

.fm-team-hero__note strong {
    position: relative;
    display: block;
    font-size: 64px;
    line-height: 0.95em;
    letter-spacing: -0.04em;
    color: var(--white-color);
    margin-bottom: 18px;
}

.fm-team-hero__note p {
    position: relative;
    line-height: 1.55em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.fm-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.fm-team-card {
    overflow: hidden;
    border-radius: 28px;
    background: var(--white-color);
}

.fm-team-card__photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 4.65;
    background: var(--secondary-color);
}

.fm-team-card__photo:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(36, 36, 36, 0.22));
    pointer-events: none;
}

.fm-team-card__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
}

.fm-team-card:hover .fm-team-card__photo img {
    transform: scale(1.04);
}

.fm-team-card__body {
    position: relative;
    padding: 28px 30px 30px;
}

.fm-team-card__body span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 40px;
    border-radius: 14px;
    background: var(--secondary-color);
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 20px;
}

.fm-team-card__body h3 {
    font-size: 22px;
    line-height: 1.22em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fm-team-card__body p {
    line-height: 1.4em;
    color: var(--text-color);
    margin: 0;
}

.fm-team-values {
    border-radius: 30px;
    background: var(--white-color);
    padding: 45px;
}

.fm-team-values__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.fm-team-values__list div {
    border-radius: 20px;
    background: var(--secondary-color);
    padding: 28px;
    text-align: center;
}

.fm-team-values__list b {
    display: block;
    font-size: 34px;
    line-height: 1.1em;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.fm-team-values__list span {
    display: block;
    line-height: 1.35em;
    color: var(--primary-color);
}

@media only screen and (max-width: 1199px) {
    .fm-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 991px) {
    .fm-team-page {
        padding: 70px 0;
    }

    .fm-team-hero {
        grid-template-columns: 1fr;
    }

    .fm-team-hero__content,
    .fm-team-hero__note {
        min-height: auto;
    }

    .fm-team-hero__content,
    .fm-team-values {
        padding: 34px;
    }

    .fm-team-values__list {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .fm-team-page {
        padding: 50px 0;
    }

    .fm-team-hero,
    .fm-team-grid {
        gap: 20px;
        margin-bottom: 20px;
    }

    .fm-team-grid {
        grid-template-columns: 1fr;
    }

    .fm-team-hero__content,
    .fm-team-hero__note,
    .fm-team-card,
    .fm-team-values {
        border-radius: 20px;
    }

    .fm-team-hero__content,
    .fm-team-hero__note,
    .fm-team-values {
        padding: 24px;
    }

    .fm-team-hero__content .section-title p {
        font-size: 16px;
    }

    .fm-team-hero__note strong,
    .fm-team-values__list b {
        font-size: 34px;
    }

    .fm-team-card__body {
        padding: 24px;
    }

    .fm-team-card__body h3 {
        font-size: 20px;
    }
}

/* End */
/* /team.css?17809081325678 */
