#slider{
    margin-bottom: 3rem;
}
.search-container {
    width: 70%;
    height: 50px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #ACACAC;
    box-shadow: 0 4px 4px rgba(172, 172, 172, 0.2);
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
    font-size: 14px;
}

.search-container form {
    height: 100%;
    display: flex;
    align-items: center;
}

.search-container input {
    width: 100%;
    color: #484848;
    font-size: 14px;
    font-family: var(--semibold-font);
    border: none;
}

.search-container input:focus {
    outline: none;
}

.search-container input::placeholder {
    color: #E1D1C1;
    font-size: 13px;
    font-family: var(--regular-font);
}

.search-container button {
    margin-left: .7rem;
    background: transparent;
    border: none;
}
.items-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto 7rem;
    background-image: url("../images/bg1.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.items-container .toolbox-title {
    width: 90%;
    margin: auto;
}

.items-container .items {
    width: 80%;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    column-gap: 2.5rem;
    row-gap: 4rem;
}

.items .card {
    height: 24rem;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) -3px 3px 3px, rgba(0, 0, 0, 0.15) 0px 0 2px;
    border-radius: 17px;
    overflow: hidden;
    padding-bottom: 1rem;
}

.items .card .img {
    width: 100%;
    height: 14rem;
}

.items .card .date {
    padding: .8rem .6rem;
    color: #4FC2AD;
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.items .card h1 {
    height: 5rem;
    font-family: var(--semibold-font);
    color: #3F3E3D;
    font-size: 14.5px;
    text-align: justify;
    padding: 0 .9rem;
    line-height: 2rem;
}

.items .card a {
    padding: 0 1.1rem;
    text-align: left;
}

.pagination {
    column-gap: .5rem;
    justify-content: center;
    margin-bottom: 7rem;
}

.page-item.disabled .page-link {
    background-color: #C4CDD5;
}

.page-item.disabled .page-link i {
    color: #fff;
}

.page-item.active .page-link {
    color: #4200FF;
    border-color: #4200FF;
    background-color: #fff;
}

.page-link {
    color: #212B36;
    font-family: var(--bold-font);
    border-color: #DFE3E8;
    border-radius: 6px;
    width: 2.3rem;
    height: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link i {
    color: #C4CDD5;
    font-size: 13px;
}

@media screen and (max-width: 1050px) {
    .items-container .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .items-container .items {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 2.2rem;
    }
    .search-container {
        width: 85%;
        height: 40px;
    }
}