.project-wrapper {
    padding: 50px 0;
}

.search-project-archive {
    display: flex;
    align-items: center;
    margin: 0 auto 16px;
    position: relative;
    max-width: 900px;
    color: #Fff;
}

.search-project-archive .col-right {
    display: flex;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.search-project-archive .col-left {
    border-radius: 8px 0rem 0rem 8px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
    flex: 1;
    padding-left: 16px;
    background: linear-gradient(270deg, #fd767a 0%, #ff9999 75.5%);
}

.search-project-archive .select-industry {
    position: relative;
    height: 42px;
}

.search-project-archive .industry-text {
    height: 100%;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    background: #fd767a;
    font-style: normal;
    font-weight: 400;
    padding-left: 10px;
    padding-right: 20px;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.search-project-archive .industry-results {
    position: absolute;
    z-index: 99;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    min-width: 230px;
    border-radius: 10px;
    box-shadow: 0 0 6px 2px #d42328;
    overflow: hidden;
    top: 109%;
    color: #000;
    transition: all 0.3s;
}

.search-project-archive .industry-results.active {
    opacity: 1;
    visibility: visible;
}

.search-project-archive .industry-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.search-project-archive .industry-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    margin: 0;
    box-shadow: none;
}

.search-project-archive .industry-select {
    list-style: none;
    margin: 0;
    padding: 0 0 10px;
    max-height: 140px;
    overflow-y: auto;
}

.search-project-archive .industry-select {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-project-archive .industry-select .industry-select__item {
    margin: 0;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    cursor: pointer;
}

.search-project-archive .col-left input.input-text {
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    height: 42px;
    padding: 0 16px;
    color: #fff;
    padding-left: 0;
}

.search-project-archive .col-left input.input-text::placeholder {
    color: #fff
}

.search-project-archive .col-left .icon {
    padding-right: 14px;
    margin-right: 14px;
    border-right: 1px solid #cecece;
    line-height: 1;
}

.search-project-archive button.button-search {
    margin: 0;
    border-radius: 0 8px 8px 0;
    height: 42px;
    font-size: 16px;
    line-height: 42px;
    font-weight: normal;
}

ul.project-select {
    padding: 10px 20px;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-project-archive .industry-text::after {
    content: "\f347";
    font-family: dashicons;
    display: inline-block;
    line-height: 1;
}

button.button-search.button.btn-viewall::after {
    content: "\f344";
    font-family: dashicons;
    display: inline-block;
    line-height: 1;
    transform: rotate(-45deg);
}

ul.project-select li {
    margin: 0;
    padding: 5px 0;
    cursor: pointer;
    user-select: none;
    font-size: 14px
}

.nav.tab-project {
    margin-bottom: 0;
    border-bottom: 1px solid #cecece;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.nav.tab-project>li {
    margin: 0 20px;
    color: #7b7b7b;
    cursor: pointer;
}

.nav.tab-project>li.active {
    color: var(--primary-color);
}

.project-item img {
    object-position: top !important;
}

.project-item .box-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.project-item .box-text h3 {
    max-width: calc(100% - 200px);
    font-size: 18px;
    margin: 0;
}

.project-item:hover .box-text h3 {
    color: var(--primary-color);
}

.project-item .box-text p.tag-project {
    text-transform: uppercase;
    margin: 0;
    color: #000;
}

.project-list ul.page-numbers {
    text-align: right;
}

.project-list ul.page-numbers .page-number {
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-weight: normal;
    font-size: 16px;
    border: 0;
    border-radius: 4px;
}

@media screen and (max-width: 550px) {
    .search-project-archive {
        flex-direction: column;
        gap: 10px;
    }

    .search-project-archive .col-right,
    .search-project-archive .col-left {
        width: 100%;
        border-radius: 8px;
        justify-content: space-between;
    }

    .search-project-archive button.button-search,
    .industry-text {
        border-radius: 8px;
    }

    .select-industry {
        width: calc(100% - 140px);
    }

    .nav.tab-project>li {
        flex: 0 0 auto;
        margin: 0 10px;
    }

    .nav.tab-project {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        padding-bottom: 10px;
    }
}