.what-we-stand {
    padding-top: 50px;

    background-color: var(--color-light);

    @media (max-width: 992px) {
        padding-top: 25px;
    }
}

.what-we-stand__title {
    text-align: start;

    @media (max-width: 992px) {
        font-size: 34px;
        line-height: 42px;
    }
}


.what-we-stand__row {
    margin-block: 100px;

    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    @media (max-width: 992px) {
        margin-top: 50px;
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }
}

.what-we-stand__photo {
    width: min(100%, 650px);
    height: 550px;

    border-radius: 20px;
    overflow: hidden;

    @media (max-width: 992px) {
        height: auto;
        aspect-ratio: 1;
    }

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

.what-we-stand__content-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: var(--color-primary);

    @media (max-width: 992px) {
        margin-top: 30px;
        margin-bottom: 20px;
    }
}

.what-we-stand__content-list {
    padding: 0;
    margin: 30px 0 0;

    list-style-position: inside;

    display: flex;
    flex-direction: column;
    gap: 15px;

    @media (max-width: 992px) {
        padding-left: 20px;
        list-style-position: outside;
        gap: 10px;
    }
}

.what-we-stand__content-item {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: var(--color-dark);

}

@media (min-width: 1024px) {
    .what-we-stand {
    }
}