.lcompany {
    position: relative;
    padding-top: clamp(90px, 9vw, 130px);
    margin-bottom: 186px;
    background: #20242b;
}

.lcompany__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.lcompany__card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 56px);
    background: #F4F4F4;
    transform: translateY(146px);
}

.lcompany__person {
    display: grid;
    align-content: end;
    margin-top: -76px;
    transform: translateX(24px);
}

.lcompany__person-photo {
}

.lcompany__person-img {
    display: block;
    width: 100%;
    height: auto;
}

.lcompany__person-meta {
    position: absolute;
    bottom: 32px;
    left: 48px;
    color: #fff;
    max-width: 170px;
}

.lcompany__person-name {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.2;
}

.lcompany__person-role {
    margin-top: 6px;
    font-size: 17px;
    line-height: 1.35;
    opacity: 0.8;
}

.lcompany__content {
    padding: 60px 56px 56px 0;
}

.lcompany__title {
    margin: 0 0 6px;
    color: #363636;
}

.lcompany__title .accent,
.lcompany__title b,
.lcompany__title strong {
    color: var(--gold);
    font-weight: inherit;
}

.lcompany__subtitle {
    margin-bottom: 12px;
    font-size: clamp(16px, 1.1vw, 20px);
    color: #3E3E3E;
}

.lcompany__reqs {
    margin: 0 0 clamp(32px, 3vw, 40px);
    padding-left: 20px;
    display: grid;
    font-size: clamp(13px, 1vw, 14px);
    color: rgba(84, 84, 84, 0.9);
    line-height: 1.3;
}

.lcompany__reqs li {
    list-style: disc;
}

.lcompany__banks-label {
    margin-bottom: 12px;
    font-size: clamp(18px, 1vw, 20px);
    color: #303030;
}

.lcompany__banks {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 784px;
}

.lcompany__banks .swiper {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.lcompany__banks .swiper-slide {
    width: 104px;
}

.lcompany__bank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 64px;
    border: 1px solid #e9e9e9;
    background: #fff;
}

.lcompany__bank-img {
    max-width: 78%;
    max-height: 58%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lcompany__banks-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 0;
    color: #303030;
    cursor: pointer;
    transition: 0.3s;
}

.lcompany__banks-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lcompany__banks-arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
}

.lcompany__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: rgba(104, 104, 104, 0.8);
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
}

.lcompany__link:hover {
    color: var(--gold);
}

@media (width < 1280px) {
    .lcompany__card {
        grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    }

    .lcompany__content {
        padding: 32px 32px 32px 0;
    }

    .lcompany__person {
        transform: unset;
    }
}

@media (width < 992px) {
    .lcompany {
        padding-top: 0;
        background: #f5f5f5;
        margin-bottom: 0;
    }

    .lcompany__content {
        padding: 60px 0 24px;
    }

    .lcompany__card {
        grid-template-columns: 1fr;
        gap: 0;
        transform: unset;
    }

    .lcompany__person {
        display: none;
    }

    .lcompany__bg {
        position: static;
    }

    .lcompany__bg-img {
        height: 250px;
    }
}

@media (width < 768px) {
    .lcompany__banks .swiper-slide {
        width: 88px;
    }
    
    .lcompany__bank {
        width: 120px;
        height: 56px;
    }

    .lcompany__banks-arrow {
        width: 36px;
        height: 36px;
    }
}
