.aboutUs-block {
    padding-top: var(--eighty);
    margin-top: var(--eighty);
    position: relative;
    background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.aboutUs-block .aboutUs-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--fourty);
}

.aboutUs-content__holder {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: var(--sixty);
}

.aboutUs-photo {
    max-width: 410px;
    width: 100%;
    height: 100%;
    max-height: 339px;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}

.aboutUs-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    border-radius: 10px;
}

.aboutUs-text {
    width: 100%;
}

.aboutUs-text p>*,
.aboutUs-text li>*,
.aboutUs-text h1>*,
.aboutUs-text h2>*,
.aboutUs-text h3>*,
.aboutUs-text h4>*,
.aboutUs-text h5>*,
.aboutUs-text h6>* {
    color: var(--accent);
}

.aboutUs-text strong {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: var(--h5);
    line-height: 120%;
    color: var(--accent);
}

.aboutUs-text>*:has(>*) {
    margin-bottom: var(--fifty);
}

.aboutUs-text p,
.aboutUs-text li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--1614);
    line-height: 150%;
    color: var(--head);
    margin-bottom: var(--fifteen);
}

.aboutUs-text h1+p,
.aboutUs-text h2+p,
.aboutUs-text h3+p,
.aboutUs-text h4+p,
.aboutUs-text h5+p,
.aboutUs-text h6+p {
    margin-bottom: 4px;
}

.aboutUs-text p+h1,
.aboutUs-text p+h2,
.aboutUs-text p+h3,
.aboutUs-text p+h4,
.aboutUs-text p+h5,
.aboutUs-text p+h6 {
    margin-bottom: var(--thirty);
}

.aboutUs-text p+p {
    margin-bottom: unset !important;
    margin-top: var(--fifteen);
}

@media(max-width:900px) {
    .aboutUs-content__holder {
        flex-direction: column;
    }

    .aboutUs-photo {
        margin-right: auto;
    }
}