.project-item {
    display: flex;
    justify-content: space-between;
    padding-top: 62px;
    padding-left: 170px;
    padding-right: 245px;
    border-top: 1px solid #ffffff80;
    padding-bottom: 68px;
    display: none;
}

.project-item.show {
    display: flex;
}

.project-number {
    font-size: 58px;
    line-height: 55px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 83.64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 700;
    height: fit-content;
    font-family: 'Hero';
    max-width: 65px;
    width: 100%;
}

.project-description {
    max-width: 411px;
    width: 100%;
    padding-left: 15px;
}

.project-title {
    max-width: 304px;
    width: 100%;
    margin: 0 50px;
}

.project-title h6 {
    margin: 0;
    color: #fff;
}

.project-description-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 24px;
    font-style: normal;
    font-weight: 300;
    font-family: 'Noto Sans';
}

.expanded .project-description-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.project-description .learn-more-link {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #03A696;
    position: relative;
}

.project-description .learn-more-link:after {
    content: '';
    position: absolute;
    background-image: url('./images/down.png');
    background-repeat: no-repeat;
    width: 15px;
    height: 9px;
    object-fit: cover;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
}

.expanded .project-description .learn-more-link:after {
    background-image: url('./images/up.png');
}

.project-item.expanded {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-color: #03A696;
}

.load-more-container .load {
    /* display: none; */
    width: 54px;
    height: 54px;
    opacity: 0;
}

.load-more-container .load-more-projects {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #03A696;
    opacity: 0;
}

.load-more-container.loading .load {
    /* display: block; */
    opacity: 1;
}

.load-more-container.loading .load-more-projects {
    opacity: 1;
}

.load-more-container {
    width: max-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-right: 60px;
    margin-top: 35px;
    margin-bottom: 100px;
}

@media(max-width: 1600px) {
    .project-item {
        padding-left: 55px;
        padding-right: 44px;
        padding-bottom: 66px;
    }

    .project-title {
        margin-left: 27px;
    }

    .project-description {
        padding: 0;
    }

    .load-more-container {
        padding-right: 0px;
        margin-top: 50px;
        margin-bottom: 110px;
    }
}

@media(max-width: 1200px) {
    .project-item {
        padding-left: 55px;
        padding-right: 44px;
        padding-bottom: 66px;
    }
}

@media(max-width: 1024px) {
    .project-item {
        padding-left: 36px;
        padding-right: 36px;
        padding-bottom: 66px;
    }
}

@media (max-width: 767px) {
    .project-item {
        flex-direction: column;
        padding-top: 38px;
        padding-bottom: 40px;
    }

    .project-number {
        font-size: 36px;
        line-height: 38px;
        margin-bottom: 40px;
    }

    .project-title {
        margin: 0;
        max-width: 100%;
        margin-bottom: 41px;
    }

    .project-title h6 {
        font-size: 18px;
        line-height: 22px;
    }

    .load-more-container {
        padding-right: 0px;
        margin-top: 31px;
        margin-bottom: 80px;
    }

    .project-description {
        max-width: 100%;
    }
}