.image-wrapper .image-overlay .header-content-wrapper {
    position: relative;
    top: -100px;
}

.main-content .main-content__wrapper {
    top: -300px;
    margin-bottom: -200px;
}


.main-content .main-content__wrapper .text__wrapper .title {
    text-align: center;
}

.blogs__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   padding-bottom: 100px;
}

.main-content .blogs__wrapper .filter__wrapper {
    height: 100px;
    width: 100%;
    background-color: white;
}

/* Ensure you load this CSS file in your template */
/* filter section */
.filter__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.filter-select {
    padding: 8px 12px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: #007bff;
}

.filter-select option {
    padding: 10px;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.search-input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 200px;
    font-size: 16px;
}
.search-input:focus {
    border-color: var(--primary-color);
    border-width: 3px;
    outline: none;
}

.search-button {
    padding: 10px 20px;
    border: none;
    background-color: var(--primary-color);
    color:  white;
    font-size: 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search-button:hover {
    background-color: var(--primary-color);
    color:  white;
}


@media (max-width:  600px) {
    .filter__wrapper {
        flex-direction: column;
    }
    .filter__wrapper form div {
        margin: auto;
    }
    .main-content .blogs__wrapper .filter__wrapper {
        height: auto;
        padding: 30px 0;
    }
    .filter-form {
        flex-direction: column;
    }
}