.desc-block {
    margin-top: var(--eighty);
    position: relative;
    overflow: hidden;
}

.desc-block .desc-photo {
    position: absolute;
    left: 0;
    bottom: -60px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    border-radius: 10px;
    max-height: 576px;
    height: 100%;
    max-width: 496px;
    width: 40%;
}

.desc-block .desc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    border-radius: 10px;
}

.desc-text__holder-outer {
    background: var(--bg-light);
    border-radius: 10px;
    position: relative;
    max-width: 1290px;
    margin-left: auto;
    height: 100%;
    margin-bottom: 60px;
}

.desc-text__holder-inner {
    max-width: 814px;
    margin-left: auto;
    padding-top: var(--sixty);
    padding-bottom: var(--sixty);
    margin-right: var(--sixty);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-self: stretch;
    gap: var(--fourty);
}

.desc-block .desc-text {
    max-height: 368px;
    width: 100%;
    overflow: auto;
    padding-right: var(--sixty);
}

.desc-block p,
.desc-block li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--1614);
    line-height: 150%;
    color: var(--main-text);
    margin-bottom: var(--fifteen);
}

.desc-block ul {
    margin-top: var(--twenty);
}

@media(max-width:1450px) {
    .desc-block .desc-photo {
        position: unset;
        height: auto;
        align-self: stretch;
        width: 100%;
        background: var(--bg-light);
        /* border-radius: 10px 0px 0px 0px; */
        border-radius: 10px;
    }

    .desc-text__holder-outer {
        border-radius: 0px 10px 0px 10px;
    }

    .desc-block .desc-photo img {
        margin-top: var(--sixty);
    }

    .desc-text__holder-outer {
        margin-left: unset;
        max-width: unset;
    }

    .desc-text__holder-inner {
        max-width: unset;
        padding-left: 25px;
        padding-right: 15px;
    }

    .desc-outer {
        display: flex;
        flex-direction: row;
    }
}

@media(max-width:950px) {
    .desc-outer {
        flex-direction: column;
    }

    .desc-text__holder-outer {
        margin-bottom: unset;
    }

    .desc-block .desc-photo img {
        margin-top: unset;
    }

    .desc-block .desc-photo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -5px;
    }
}