#first_section_page_project {
    min-height: 630px;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

#first_section_page_project .container {
    position: relative;
    z-index: 1;
}

#first_section_page_project .img__project {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    bottom: 0;
    z-index: 0;
}

#content_news {
    padding: 90px 0;
}

#other_news {
    padding: 0 0 120px;
}

#other_news .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.grid__whit__card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.grid__whit__card .card {
    background-color: #fff;
    border: none;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 25px 2px rgba(106, 129, 140, 0.1);
    display: flex;
    flex-direction: column;
    align-items: start;
}

.grid__whit__card .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.grid__whit__card .card .title__card {
    margin: 20px 0 15px !important;
    font-weight: 700;
}

.grid__whit__card .card p:not(.small__text) {
    margin-bottom: 80px;
}

.grid__whit__card .card .button {
    margin-top: auto;
}

.grid__whit__card .card .bottom__info__news {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    margin-top: auto;
}

.grid__whit__card .card .bottom__info__news .small__text {
    font-size: 16px;
    font-weight: 400;
    color: #6D6D6D;
}








@media screen and (max-width: 992px) {
    #first_section_page_project {
        padding: 80px 0 0;
        min-height: 480px;
    }

    #first_section_page_news::before {
        width: 190%;
        left: -40%;
    }

    #content_news {
        padding: 40px 0 60px;
    }

    #other_news {
        padding: 0 0 60px;
    }

    #other_news .container {
        gap: 20px;
    }

    .grid__whit__card {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .grid__whit__card .card {
        padding: 20px;
    }

    .grid__whit__card .card .title__card {
        margin: 20px 0 15px;
    }

    .grid__whit__card .card .main__text {
        margin-bottom: 32px;
    }
}