#patients-results {
    margin-top: 10.5cqw;
    margin-right: 3.1cqw;
    margin-bottom: 12cqw;
    margin-left: 3.1cqw;
}

.patients-results__grid {
    /* display: grid; */
    /* grid-template-columns: 40% 60%; */

    display: flex;
}

.patients-results__left {
    padding-right: 95px;
    border-right: 1px solid rgba(37, 37, 37, 0.1);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 37cqw; /* 700px */
}

.patients-results__right {
    margin-left: 95px;

    width: calc(100% - 95px - 37cqw);
}

.patients-results__text-1 {
    font-weight: 400;
    font-size: 0.9cqw; /*16px*/
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: rgba(37, 37, 37, 0.6);
}

.patients-results__text-2 {
    font-weight: 500;
    font-size: 2.2cqw; /* 42px */
    line-height: 1.1;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #252525;

    margin-top: 1cqw; /*20px*/
}

.patients-results__text-2 span {
    font-style: italic;
    color: #911e45;
}

.patients-results__text-3 {
    font-weight: 400;
    font-size: 0.9cqw; /*16px*/

    line-height: 1.3;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #252525;

    margin-top: 2.1cqw; /*40px*/
}

.patients-results__btns {
    display: flex;

    margin-top: 20px;
}

.patients-results__btns a.btn {
    width: 230px;
    height: 54px;
    border-radius: 2px;
    background: #911e45;

    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.patients-results__btns a.btn:hover, .patients-results__btns a.btn:focus, .patients-results__btns a.btn:active {
    opacity: 0.7;
}

.results-slide {
    aspect-ratio: 355 / 462;
    max-width: 541px;
    max-height: 630px;
}

.results-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patients-results__left__results-navigation {
    display: flex;
    column-gap: 10px;
}

.patients-results__left__results-navigation > a {
    aspect-ratio: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(44, 44, 44, 0.1);

    background-image: url(../icons/slider-arrow-left.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.patients-results__left__results-navigation > a:hover, .patients-results__left__results-navigation > a:focus, .patients-results__left__results-navigation > a:active {
    border-color: #2c2c2c;
}

.patients-results__left__results-navigation > a.results-btn-next {
    transform: rotate(180deg);
}

@media (max-width: 1060px) {
    #patients-results {
        margin-top: 4.8cqw;
        margin-bottom: 9.6cqw;
        margin-right: 0;
    }

    .patients-results__left {
        row-gap: 20px;
        width: 50%;
        padding-right: 23px;
    }
    
    .patients-results__right {
        padding-left: 23px;
        margin: 0;
        width: 50%;
    }

    .patients-results__text-1 {
        font-size: 1.2cqw;
    }

    .patients-results__text-2 {
        font-size: 3cqw;

    }

    .patients-results__text-3 {
        font-size: 1.3cqw;
        margin-top: 1.9cqw;
    }

    .patients-results__btns {
        margin-top: 1.9cqw;
    }

    .patients-results__btns a.btn {
        width: 17cqw; /*180px*/
        height: 4.2cqw; /*44px*/
        font-size: 1.2cqw; /*12px*/
    }

    .patients-results__left__results-navigation > a {
        width: 4.8cqw;
        height: 4.8cqw;
    }
}

@media (max-width: 575px) {
    #patients-results {
        margin-top: 10.7cqw; /*40px*/
        margin-right: 3cqw; /*10px*/
        margin-left: 3cqw; /*10px*/
        margin-bottom: 21.2cqw; /*80px*/
    }
    
    .patients-results__grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .patients-results__mobile-text-1 {
        font-weight: 400;
        font-size: 3.3cqw; /*12px*/
        line-height: 1.1;
        letter-spacing: -0.06em;
        color: rgba(37, 37, 37, 0.6);

        text-align: center;
    }

    .patients-results__mobile-text-2 {
        font-weight: 500;
        font-size: 7cqw; /*26px*/
        line-height: 1.1;
        letter-spacing: -0.06em;
        text-transform: uppercase;
        text-align: center;
        color: #252525;

        margin-top: 2.9cqw; /*10px*/
    }

    .patients-results__mobile-text-2 span {
        font-style: italic;
        color: #911e45;
    }

    .patients-results__right {
        padding: 0;
        width: 100%;
        margin-top: 10.7cqw; /*40px*/
    }

    .patients-results__left {
        width: 100%;
        padding: 0;
        border: 0 none;
        flex-direction: column-reverse;
        row-gap: 4.2cqw; /*15px*/
    }

    .patients-results__left__results-navigation {
        column-gap: 1.4cqw; /*5px*/
        justify-content: center;
        margin-top: 5.5cqw; /*20px*/
    }

    .patients-results__left__results-navigation > a {
        width: 12.2cqw; /*45px*/
        height: 12.2cqw; /*45px*/
    }

    .patients-results__text-1 {
        display: none;
    }

    .patients-results__text-2 {
        display: none;
    }

    .patients-results__text-3 {
        font-weight: 400;
        font-size: 3.8cqw; /*14px*/
        line-height: 1.2;
        letter-spacing: -0.06em;
        text-transform: uppercase;
        text-align: center;
        color: #252525;
    }

    .patients-results__btns {
        margin-top: 4.2cqw; /*15px*/
        justify-content: center;
    }

    .patients-results__btns a.btn {
        width: 48cqw; /*180px*/
        height: 11.8cqw; /*44px*/
        border-radius: 2px;
        background: #911e45;

        font-weight: 500;
        font-size: 3.3cqw; /*12px*/
        line-height: 1.1;
        letter-spacing: -0.06em;
        text-transform: uppercase;
        color: #fff;
    }

    .patients-results__btns a.about-equipment {
        display: none;
    }
}