/* Managers Filter */
.filter-header__container {
    margin-top: 2rem;
}

.filter-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 20px 26px;
}

.filter-header__item {
    margin-bottom: 1rem;
}

.filter-header__item:last-child  {
    margin-bottom: 0;
}

.filter-header__search form,
.filter-header__select select {
    border: 1px solid rgb(112 112 112 / 35%);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    min-width: 264px;
}

.filter-header__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.filter-header__search input[type="search"] {
    width: 100%;
    border: none;
    border-radius: 6px;
    height: 48px;
    padding: 0 48px 0 12px;
    font-family: Open Sans,sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1em;
    color: #404040;
    background: #fff;
    border: 0;
}

.filter-header__search button[type="submit"] {
    border: none;
    border-radius: 6px;
    padding: 0 18px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    background: transparent;
    display: block;
    font-family: Open Sans,sans-serif;
    height: 48px;
    width: auto;
}

.filter-header__search .icon-search {
    color: #5085c3;
}

.filter-header__select select {
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    font: 16px 'Open Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    color: #404040;
    min-width: 256px;
    height: 48px;
    padding: 8px 16px;
    border-color: rgb(112 112 112 / 35%);
    border-radius: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.194' height='8.152' viewBox='0 0 13.194 8.152'%3E%3Cpath id='Path_36' data-name='Path 36' d='M50.463 0 48.907 1.556 53.948 6.6l-5.041 5.041 1.556 1.556 6.6-6.6Z' transform='translate(13.194 -48.907) rotate(90)' fill='%235085c3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-header__search form:hover,
.filter-header__search form:active,
.filter-header__select select:hover, 
.filter-header__select select:active,
.filter-clear {
    border-color: #404040;
}

.filter-clear {
    background-color: #5085c3;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 2em;
    padding: 12px 40px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none !important;
}

.filter-clear:hover {
    background-color: var(--color-dark-blue);
}

@media (min-width: 768px) {
    .filter-header {
        justify-content: space-between;
        flex-direction: row;
    }

    .filter-header__container {
        margin-top: 4rem;
    }

    .filter-header__item {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .filter-header {
        justify-content: center;
    }

    .filter-header__item {
        margin-right: 32px;
    }
}

@media (min-width: 1025px) {

    .filter-header__title {
        margin-bottom: 0;
    }

    .filter-header__search form,
    .filter-header__select select {
        min-width: 355px;
        margin-left: 1rem;
    }

    .filter-header__select,
    .filter-header__search {
        display: flex;
        align-items: center;
    }

    .filter-header__search input[type="search"] {
        padding: 0 48px 0 20px;
    }

    .filter-header__search button[type="submit"] {
        padding: 0 17px;
    }

    .filter-header__search input[type="search"],
    .filter-header__search button[type="submit"],
    .filter-header__select select {
        height: 60px;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .filter-header__title {
        font-size: 16px;
    }

    .filter-header__search form,
    .filter-header__select select {
        min-width: 288px;
    }
}

@media (min-width: 1200px) and (max-width: 1365px) {
    .filter-header__search form,
    .filter-header__select select {
        min-width: 305px;
    }
}



/* Managers Listing */
.managers-list__manager.flex { 
    display: flex; 
}

.managers-list__manager {
    flex-direction: column;
}

.managers-list__manager {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #C8D1DA;
}

.managers-list__manager:last-child {
    border-bottom: 0;
}

.managers-list__title {
    margin-top: 6px;
}

.managers-list__image {
    margin-bottom: 1rem;
}

.managers-list__image,
.managers-list__img {
    border-radius: 10px;
}

.managers-list__author h3 {
    margin-bottom: 0.5rem;
}

.managers-list__content p:last-child {
    margin-bottom: 0;
}

.managers-list .load-more__btn {
    font-weight: 800;
    font-family: Open Sans,sans-serif;
}

@media (min-width: 400px) and (max-width: 767px) {
    .managers-list__img {
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .managers-list__manager {
        flex-direction: row;
        margin-bottom: 4rem;
        padding-bottom: 4rem;
    }

    .managers-list__manager:last-child {
        padding-bottom: 2.75rem;
    }

    .managers-list__image {
        flex: 0 0 25%;
        margin-bottom: 0;
        height: 299px;
    }

    .managers-list__content {
        flex: 0 0 75%;
        padding-left: 32px;
    }

    .managers-list__image,
    .managers-list__content {
        position: relative;
    }

    .managers-list__author {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .managers-list__author h3,
    .managers-list__author h4 {
        margin-bottom: 0;
    }

    .managers-list__author h4 {
        padding-left: 15px;
    }

}