/*------------- CARDS -------------*/
.section__cards{

    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 80px 0px;

}
.section__cards__content{

    display: block;
    max-width: 1380px;
    height: auto;
    padding: 0px 20px;
    margin: 0px auto;

}
.section__cards__content__header{

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;

}
.section__cards__content__header__info{

    display: block;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;

}
.section__cards__content__header__info__title{

    display: block;
    width: 100%;
    height: auto;
    font-size: 32px;
    font-weight: 500;
    color: #000000;

}
.section__cards__content__header__info__paragraph{

    display: block;
    width: 100%;
    height: auto;
    color: #000000;
    margin-top: 10px;

}
.section__cards__content__header__button{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin: auto 0px;
    padding: 15px 20px;
    background-color: #ffffff;
    text-decoration: none;
    border: 1px solid #000000;

}
.section__cards__content__header__button__span{

    display: block;
    margin: 0px;
    padding: 0px;
    color: #000000;
    font-size: 16px;
    white-space: nowrap;
    text-decoration: none;

}
.section__cards__content__header__button__svg{

    display: block;
    width: auto;
    height: 14px;
    fill: #000000;
    margin-left: 10px;

}
.section__cards__content__nav{

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    height: auto;
    margin: 0px;
    margin-top: 40px;
    padding: 0px;

}
.cards_project_nav{

    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));

}
.section__cards__content__nav__item{

    display: block;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;

}
.section__cards__content__nav__item__media{

    display: block;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin: 0px;
    padding: 0px;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 1px #e0e0e0;

}
.section__cards__content__nav__item__media__img{

    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;

}
.cards_media_project{

    height: 0px;
    padding-top: 56.25%;
    aspect-ratio: auto;

}
.section__cards__content__nav__item__info{

    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0px;
    padding: 20px;
    border: 0px;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;

}
.section__cards__content__nav__item__info__tag{

    display: block;
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 400;
    color: #b89359;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}
.section__cards__content__nav__item__info__title{

    display: block;
    width: 100%;
    height: auto;
    padding: 0px;
    margin: auto 0px;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;

}
.section__cards__content__nav__item__info__paragraph{

    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    text-decoration: none;

}
.section__cards__content__nav__item__info__location{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;

}
.section__cards__content__nav__item__info__location__svg{

    display: block;
    width: 15px;
    fill: #656565;
    height: auto;
    margin: 0px;
    padding: 0px;

}
.section__cards__content__nav__item__info__location__span{

    display: block;
    width: calc(100% - 20px);
    height: auto;
    font-size: 14px;
    font-weight: 400;
    color: #656565;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;

}
.section__cards__content__nav__item__button{

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 15px 20px;
    background-color: #b89359;

}
.section__cards__content__nav__item__button__span{

    display: block;
    margin: 0px;
    padding: 0px;
    color: #ffffff;
    font-size: 16px;
    white-space: nowrap;

}
.section__cards__content__nav__item__button__svg{

    display: block;
    width: auto;
    height: 14px;
    fill: #ffffff;
    margin-left: 10px;

}
@media screen and (max-width: 768px){

    .section__cards__content__header{
        
        grid-template-columns: 1fr;

    }

}
@media screen and (max-width: 468px){

    .section__cards__content__nav,
    .cards_project_nav{

        grid-template-columns: 1fr;

    }
    

}
/*------------- CARDS -------------*/