.headerTenders {
    padding-block: 30px;
}

.headerTenders .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.headerTenders .container h2 {
    font-size: clamp(24px, 3.4vw, 40px);
    font-weight: 400;
    line-height: clamp(32px, 3.4vw, 50.16px);
    color: var(--text-yellow);
}

.headerTenders .container .searchForm {
    display: flex;
    gap: 24px;
    flex: 1;
    max-width: 940px;
}


.headerTenders .container .searchForm input,
.headerTenders .container .searchForm .nice-select {
    color: #FFF;
    height: fit-content !important;
    background-color: transparent;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    outline: none;
    border: 1px solid var(--main-yellow);
    font-size: clamp(16px, 2.4vw, 18px);
    font-weight: 400;
    line-height: 22.57px;
    padding: 10px 64px 10px 34px;
    flex: 1;
}

.headerTenders .container .searchForm input {
    background: url(../images/search2.svg) no-repeat calc(100% - 34px) center;
}

.headerTenders .container .searchForm .nice-select::after {
    border-color: #FFF;
    height: 8px;
    width: 8px;
    margin-top: -5px;
    right: 34px;
}

.headerTenders .container .searchForm .nice-select .nice-select-dropdown {
    background: none;
}

.headerTenders .container .searchForm .nice-select .list {
    background-color: #0E1F3F;
    border: 1.5px dashed var(--text-yellow);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    list-style: none;
    gap: 20px;
    margin: 0;
}

.headerTenders .container .searchForm .nice-select .list .option:hover {
    color: #0E1F3F;
}

.headerTenders .container .searchForm input::-webkit-search-cancel-button {
    display: none;
}

.headerTenders .container .searchForm .searchBTN {
    font-size: clamp(16px, 2.4vw, 18px);
    font-weight: 400;
    line-height: 22.57px;
    background-color: var(--main-yellow);
    outline: none;
    border: none;
    width: 152px;
    color: #FFF;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    padding-block: 10px;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
}

.headerTenders .container .searchForm .searchBTN:hover {
    background-color: var(--hover-yellow);
}

@media (max-width:1024px) {
    .headerTenders .container {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width:878px) {
    .headerTenders .container .searchForm {
        flex-wrap: wrap;
    }

    .headerTenders .container .searchForm input,
    .headerTenders .container .searchForm .nice-select {
        min-width: 350px;
    }
}



.listTenders {}

.listTenders .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
}

.listTenders .cardTenders {
    background: #FFFFFF1A;
    border: 2px dashed var(--text-yellow);
    padding: 25px 21px 25px 26px;
    border-radius: 16.57px;
    -webkit-border-radius: 16.57px;
    -moz-border-radius: 16.57px;
    -ms-border-radius: 16.57px;
    -o-border-radius: 16.57px;
    max-width: calc(100% / 2 - 12.5px);
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width:1024px) {
    .listTenders .cardTenders {
        max-width: 100%;
    }
}

.listTenders .cardTenders .dateTender {
    font-size: clamp(15px, 2.4vw, 16.52px);
    font-weight: 400;
    line-height: 22.4px;
    color: var(--main-yellow);
}

.listTenders .cardTenders .descriptionTender {
    font-size: clamp(16px, 2.4vw, 16.52px);
    font-weight: 400;
    line-height: 22.4px;
    color: #FFF;
    margin-bottom: 19px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listTenders .cardTenders .containerButtons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.listTenders .cardTenders .containerButtons .purchaseBTN,
.listTenders .cardTenders .containerButtons .viewDetails {
    color: #FFF;
    border-radius: 40.14px;
    -webkit-border-radius: 40.14px;
    -moz-border-radius: 40.14px;
    -ms-border-radius: 40.14px;
    -o-border-radius: 40.14px;
    width: 158.54px;
    outline: none;
    border: none;
    padding-block: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
}

.listTenders .cardTenders .containerButtons .purchaseBTN {
    background-color: var(--main-yellow);

}

.listTenders .cardTenders .containerButtons .viewDetails {
    background-color: var(--main-blue);
}

.listTenders .cardTenders .containerButtons .purchaseBTN:hover {
    background-color: var(--hover-yellow);
}

.listTenders .cardTenders .containerButtons .viewDetails:hover {
    background-color: #2f4f88;
}

.listTenders .container:has(.containerPagination) {
    justify-content: center;
    padding-block: 30px;
}

.listTenders .containerPagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
    margin: 0;

}

.listTenders .containerPagination a {
    color: var(--main-blue);
    background-color: #FFF;
    text-decoration: none;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: clamp(16px, 2.4vw, 24px);
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
}

.listTenders .containerPagination a.active,
.listTenders .containerPagination a:hover {
    box-shadow: 0 0 20px 0 #FFFFFFaf;
    background-color: var(--main-blue);
    color: #FFF;
}