body.page-id-289 .page-title {
    margin-bottom: var(--fifty);
}

.aboutBanner-block .aboutBanner-holder {
    border: 1px solid var(--bg-dark);
    border-radius: 10px;
    padding: 5px;
    background: var(--card);
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--thirty);
}

.aboutBanner-photo {
    width: 100%;
    max-height: 400px;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
}

.aboutBanner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    border-radius: 10px;
}

.aboutBanner-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--thirty);
    padding-bottom: var(--twentyFive);
    padding-left: var(--twentyFive);
    padding-right: var(--twentyFive);
}

.aboutBanner-advantage {
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-self: stretch;
}

.aboutBanner-advantage__inner {
    display: flex;
    flex-direction: row;
    padding: var(--twenty);
    width: 100%;
    height: 100%;
    align-self: stretch;
    gap: var(--twenty);
    align-items: center;
}

.aboutBanner-advantage__icon {
    width: clamp(3.125rem, 2.75rem + 1.875vw, 5rem);
    height: clamp(3.125rem, 2.75rem + 1.875vw, 5rem);
    display: flex;
    align-items: center;
    place-content: center;
    border-radius: 10px;
    background: var(--card);
    flex-shrink: 0;
}

.aboutBanner-advantage__icon>* {
    max-width: var(--5040);
    max-height: var(--5040);
    width: fit-content;
    height: fit-content;
    display: flex;
    margin: auto auto;
}

.aboutBanner-advantage__name,
.aboutBanner-advantage__name>* {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--1614);
    line-height: 150%;
    color: var(--main-text);
}

.aboutBanner-advantage__name>* {
    color: var(--accent);
}

@media(max-width:1100px) {
    .aboutBanner-advantages {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:750px) {
    .aboutBanner-advantage__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:550px) {
    .aboutBanner-advantages {
        grid-template-columns: 1fr;
        gap: 10px var(--thirty);
    }
}