/* Search */
.search-area {
    padding: 80px 0;
    position: relative;
}

.search-area::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    width: 1100px;
    height: 1px;
    background-color: #ea532d;
    transform: translateX(-50%);
}

.search-area .search-box {
    position: relative;
    width: 550px;
    margin: 0 auto;
}


.search-area .search-box input[type="text"] {
    border: #075056 1px solid;
    border-radius: 50px;
    background-color: transparent;
    color: #075056;
    padding: 25px 65px 25px 40px;
    letter-spacing: 1px;
    width: 100%;
    font-size: 1.25em;
}

.search-area .search-box .search-icon {
    position: absolute;
    right: 18px;
    top: 9px;
    color: #075056;
    font-size: 2.3em;
    cursor: pointer;
}

.search-area .search-box input[type="text"]::placeholder {
    color: #075056;
}

.top-head {
    border-bottom: 2px solid #d9d9d9;
    margin-bottom: 50px;
}

.top-head h2 {
    font-size: 2.6667em;
    font-weight: 400;
    color: #233038;
    text-align: left;
    margin-bottom: 30px;
}

/* Manuscript or Publications */
.book-result {
    padding-top: 80px;
}

.book-result .list-box {
    margin: 0 -15px;
    max-width: none;
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
}



.explore-box {
    text-align: center;
    position: relative;
    padding: 80px 0;
}

.explore-box::after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    background-color: #d9d9d9;
    width: 100%;
    height: 2px;
    z-index: -2;
}

.explore-box .pix-btn {
    position: relative;
}

.explore-box .pix-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    position: absolute;
    left: -35px;
    top: 0;
    padding: 0px 35px;
}

/* Profiles */
.profile-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    text-align: center;
    max-width: none;
}

.profile-list .profile-thumb {
    margin: 0 15px 70px;
    width: calc(25% - 30px);
}


@media only screen and (max-width:1260px) {
    .search-area::after {
        width: 650px;
    }
}

@media only screen and (max-width:1035px) {

    /* Profile */
    .profile-list {
        margin: 0 -5px 80px;
    }

    .profile-list .profile-thumb {
        width: calc(33.3% - 10px);
        margin-left: 5px;
        margin-right: 5px;
    }

}



@media only screen and (max-width:767px) {

    /* Profile */
    .profile-list {
        margin: 0 -5px 60px;
    }


    .search-area::after {
        width: 400px;
    }
}

@media only screen and (max-width:640px) {

    /* Profile */
    .profile-list .profile-thumb {
        margin: 0 5px 20px;
        width: calc(50% - 10px);
    }

}

@media only screen and (max-width:599px) {
    .book-result .list-box {
        display: block;
    }
}



@media only screen and (max-width:480px) {

    .search-area::after {
        width: 200px;
    }

    .search-area {
        padding: 50px 0;
    }

    .search-area .search-box input[type="text"] {
        font-size: 1em;
        padding: 15px 65px 15px 40px;
    }

    .search-area .search-box .search-icon {
        font-size: 1.5em;
    }
}

@media only screen and (max-width:380px) {
    .profile-list {
        display: block;
    }

    .profile-list .profile-thumb {
        width: auto;
    }
}