:root {
    --font-poppins: "Poppins", sans-serif;
    --font-playfair-display: "Playfair Display", sans-serif;
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --text-body: #262626;
    --theme-dark: #262626;
    --theme-dark-rgb: 38, 38, 38;
    --goldern-yellow: #C9AF68;
    --goldern-yellow-rbg: 201, 175, 104;
    --goldern-light: #F9F7F4;
    --white: #fff;
    --error-text: #BF481B;
    --black: #000;
    --transition: all 400ms ease-in-out;
    --golden-gradient: linear-gradient(180deg, #F9F7F4 0%, #FFF 100%);
    
}

.our-project-wrap{
    padding: 70px 0;
    margin-bottom: 90px;
}
.our-project-wrap .project-filters:not(:last-child),
.our-project-wrap .section-title:not(:last-child){
    margin-bottom: 40px;
}
.our-project-wrap .project-filters ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -7px;
    flex-wrap: wrap;
}

.our-project-wrap .project-filters ul li{
    margin: 0 15px 7px 15px;
    position: relative;
    padding: 0 0 0 15px;
    list-style: none;
}
.our-project-wrap .project-filters ul li::before{
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #B19777;
}

.our-project-wrap .project-filters ul li a{
    color: #262626;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-500);
    line-height: normal;
    text-transform: uppercase;
}

.our-project-wrap .project-filters ul li a.active,
.our-project-wrap .project-filters ul li a:hover{
    color: var(--goldern-yellow);
}

.project-items-wrap .row {
    margin-left: -10px;
    margin-right: -10px;
}
.project-items-wrap .row > * {
    padding-left: 10px;
    padding-right: 10px;
}

.project-items-wrap{
    margin-bottom: -40px;
}

.project-items-box{
    margin-bottom: 40px;
}
.project-items-box a{
    display: flex;
    flex-direction: column;
    color: var(--theme-dark);
}
.project-items-box a .img-wrap{
    overflow: hidden;
    width: 100%;
    height: 377px;
    margin-bottom: 16px;
    background-color: var(--goldern-yellow);
}
.project-items-box a .img-wrap img{
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform: scale(1.01);
}
.project-items-box a:hover .img-wrap img {
    transform: scale(1.06);
}
.project-items-box a .content-wrap h5{
    margin-bottom: 7px;
    text-transform: uppercase;
    color: #262626;
    font-size: 18px;
    font-style: normal;
    font-weight: var(--fw-600);
    line-height: normal;
    transition: var(--transition);
}
.project-items-box a:hover .content-wrap h5{
    color: var(--goldern-yellow);
}
.project-items-box a .content-wrap .date{
    color: var(--goldern-yellow);
    font-family: var(--font-poppins);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--fw-600);
    line-height: normal;
    position: relative;
}
.project-items-box a .content-wrap .date {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}
.project-items-box a:hover .content-wrap .date{
    color: var(--theme-dark);
}
.project-items-box a .content-wrap .date::after {
    background-image: url(../images/arrow-right-black.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    content: "";
    display: inline-block;
    margin-left: 17px;
    position: relative;
    top: 0;
    height: 14.73px;
    width: 24px;
    transition: var(--transition);
}

.project-filters-cpt{
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #EEE;
    margin-bottom: 50px;
}
.project-filters-cpt .filter-left-links{
    flex-grow: 1;
    margin-bottom: -1px;
}
.project-filters-cpt .filter-left-links ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

.project-filters-cpt .filter-left-links ul li{
    list-style-type: none;
    margin-left: 0;
}
.project-filters-cpt .filter-left-links ul li:not(:last-child){
    margin-right: 20px;
}
.project-filters-cpt .filter-left-links ul li a{
    display: flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    color: #767676;
    font-family: var(--font-poppins);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--fw-600);
    line-height: 26px; /* 130% */
    position: relative;
}
.project-filters-cpt .filter-left-links ul li a::before{
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #121C28;
    transition: var(--transition);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.project-filters-cpt .filter-left-links ul li a:hover::before,
.project-filters-cpt .filter-left-links ul li a.active::before{
    width: 100%;
}
.project-filters-cpt .filter-left-links ul li a.active,
.project-filters-cpt .filter-left-links ul li a:hover{
    background: rgba(18, 28, 40, 0.05);
    color: #0E0A0A;
}
.project-filters-cpt .filter-select-right{
    flex-shrink: 0;
}
.project-filters-cpt .filter-select-right select,
.project-filters-cpt .filter-select-right select:focus{
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 14px 32px;
    background-color: var(--white);
    cursor: pointer;
    color: #767676;
    font-size: 20px;
    font-style: normal;
    font-weight: var(--fw-600);
    line-height: 26px; /* 130% */

    background-image: url(../images/select-dropdown.svg);
    background-repeat: no-repeat;
    outline: none;
    background-position: calc(100% - 2px) 50%;
    background-size: 11px;
}
.project-filters-cpt .filter-select-right select option{
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-500);
    line-height: 22px; /* 130% */
}
