.descProject-block {
    margin-top: var(--eighty);
    position: relative;
}

.descProject-block .descProject-inner {
    max-width: 1397px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0;
    position: relative;
    height: 100%;
}

.descProject-holder {
    padding-top: var(--sixty);
}

.descProject-block .descProject-photo {
    max-width: 830px;
    width: 100%;
    max-height: 478px;
    height: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
}

.descProject-block .descProject-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    border-radius: 10px;
}

.descProject-text__holder {
    position: relative;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bg-light);
    max-width: 830px;
    width: 100%;
    display: flex;
    margin-left: auto;
}

.descProject-text__holder-inner {
    display: flex;
    flex-direction: column;
    gap: var(--thirty);
    height: 100%;
    align-self: stretch;
    width: 100%;
    padding: var(--sixty);
}

.descProject-text__title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: var(--h3);
    line-height: 120%;
    color: var(--head);
}

.descProject-text {
    max-height: 290px;
    overflow: auto;
    padding-right: var(--sixty);
}

.descProject-text li,
.descProject-text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--1614);
    line-height: 150%;
    color: var(--main-text);
    margin-bottom: var(--fifteen);
}

.descProject-text ul {
    margin-top: var(--twenty);
}

@media(max-width:1450px) {
    .descProject-block .descProject-inner {
        padding: 0px 15px;
    }

    .descProject-photo {
        left: 15px !important;
    }
}

@media(max-width:900px) {
    .descProject-block .descProject-photo {
        position: unset;
        max-width: unset;
        width: 100%;
        margin-bottom: -20px;
    }

    .descProject-text__holder {
        width: 100%;
        max-width: unset;
    }
}