.entity-search-con {
    padding: 10px 0 60px;
    background: #0a0103;
}

.breadcrumb {
    display: flex;
    background: none;
    background: #0a0103;
    justify-content: center;
    padding-bottom: 50px;
}
.breadcrumb a{
    color: #fff;
}
.breadcrumb span{
    font-size: 14px;
}

.entity-search-con h2 {
    font-size: 32px;
    color: #e1153b;
    margin-bottom: 30px;
    max-width: 880px;
    line-height: 1.3;
}

#entity-search {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

#entity-search .search-field {
    flex: 1;
}

#entity-search .search-field .search-items {
    display: flex;
    gap: 20px;
}

#entity-search .search-field .search-items>* {
    flex: 1 1 200px;
}

#entity-search .search-field label {
    display: block;
    margin-bottom: 5px;
    color: #BFBDBD;
	font-weight: 700;
	font-size: 17px;
}

#entity-search .search-field select {
    border-radius: 4px !important;
    font-size: 15px !important;
    color: #333 !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    background-image: url(../images/angle-down.png) !important;
    background-size: 20px !important;
    background-position: right 10px center !important;
}


.entity-results-con {
    background-color: #f5f5f5;
    padding: 60px 0 250px;
}

@media screen and (max-width:1130px) {
    #entity-search {
        gap: 20px;
    }

    #entity-search .search-field .search-items {
        gap: 10px;
    }
}

@media screen and (max-width:987px) {
    #entity-search {
        gap: 0 20px;
    }

    #entity-search .search-field {
        flex: 1 1 calc(50% - 10px);
    }
}

@media screen and (max-width:550px) {
    #entity-search .search-field {
        flex: 1 1 100%;
    }
}