#locations {
    background: #F9F9F6;
    padding: 80px 0;
}
#locations .location {
    padding: 25px 12.5px;
}
#locations .location a {
    background: #fff;
    display: flex;
    text-decoration: none;
    color: #676767;
    font-size: 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
#locations .location a h4 {
    font-size: 20px;
    line-height: 27px;
    color: #2D2A25;
}
#locations .location a img {
    width: 305px;
    height: 273px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
#locations .location a .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}
#locations .location a .text .profile {
    margin-bottom: 20px;
}
#locations .location a .text .view {
    text-align: right;
    color: #2275D3;
    font-weight: 600;
}
#locations .location a .text .view i {
    margin-left: 10px;
}
@media (max-width: 1600px) {
    #locations .location a img {
        width: 250px;
        height: 224px;
    }
}
@media (max-width: 1400px) {
    #locations .location a img {
        width: 200px;
        height: 250px;
    }
}
@media (max-width: 767px) {
    #locations .location a {
        flex-direction: column;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    #locations .location a img {
        width: 100%;
        height: 150px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }
    #locations .location a .text {
        padding: 20px;
    }
}


/* ========================================================================================
Filters
========================================================================================*/
#filters::before {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: -40px;
    height: calc(100% + 40px);
    background: transparent linear-gradient(96deg, #F95B83 0%, #283D75 100%) 0 0 no-repeat padding-box;
    z-index: 1;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}
#filters {
    position: relative;
    padding: 0 0 30px;
}
#filters .container {
    position: relative;
    z-index: 2;
}
#filters h2 {
    color: #fff;
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 40px;
}
#filters .search-form {
    position: relative;
}
#filters .search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    height: 75%;
    transform: translatey(-50%);
    border-radius: 5px;
    background: #2275D3;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
}
#filters .search-form button:hover {
    background: #FCA342;
}
#filters .search-form button i {
    margin-left: 10px;
    font-size: 14px;
}
#filters input,
#filters select {
    height: 70px;
    padding: 0 20px;
    border-radius: 5px;
}