.motherboard{
    margin-bottom: 100px;
}
.motherboard button.button {
    width: 30%;
    padding: 11px 0;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    background: #005bab;
    font-family: Arial,Helvetica,sans-serif;
}

.motherboard .page-header{
    text-align: center;
    margin-top: 0px;
    margin-bottom: 30px;
    /*border:none;*/
}

.motherboard .page-header .title{
    color:#005bab;
    margin-bottom: 10px
}

.motherboard .page-header .subtitle{
    color:#999;
    font-size: 14px;
}

.motherboard .side-title{
    text-align: center;
}

/**Filters */
.motherboard .filters-wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.motherboard .filter-label{
    font-size: 16px;
    margin-right: 10px;
}

.motherboard .filters {
    display: flex;
}

.motherboard .filters li {
    cursor: pointer;
    padding: 15px 20px;
    background-color: #2185d0;
    border-right: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    width: 130px;
    text-align: center;
}
.motherboard ul.filters li:first-child {
    border-top-left-radius:3px;
    border-bottom-left-radius:3px;
}

.motherboard .filters li:last-child {
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
}

.motherboard .filters li.active {
    background-color: #005bab;
}
.motherboard .filters li:hover {
    background-color: #005bab;
}
.motherboard .filters li:last-child {
    border-right: 1px solid #005bab;
}

/*Search*/
.motherboard input.searchbox {
    width: 30%;
    padding: 10px;
    border-radius: 3px;
    font-size: 16px;
}
/*Items*/
.motherboard .filter-container .filtr-item{
    width: 20%;
    height: 60px;
    cursor: pointer;
    border: 1px solid #2c2c2c;
    border-radius: 3px;
    color: #2c2c2c;
    font-size: 16px;
}

.motherboard .filter-container .filtr-item:hover{
    background-color: #005bab;
    border-color: #005bab;
}
.motherboard .filter-container .filtr-item a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.motherboard .filter-container .filtr-item:hover a{
    color: #fff;
}

@media only screen and (max-width: 767px){
    .motherboard button.button{
        width: 100%;
    }

    .motherboard .filters-wrap {
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
    }

    .motherboard .filters {
        width: 100%;
    }

    .motherboard input.searchbox {
        width: 100%;
        margin-top: 20px;
        height: 48px;
    }



    .motherboard .filter-container .filtr-item{
        width: 50%;
    }

}