.map-text {
    position: relative;
    z-index: 1;
}

.location-pattern {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.map-text__text {
    padding-top: 30px;
    position: relative;
}

@media (min-width: 1200px) {
    .map-text__flex {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .map-text__map {
        width: 686px;
    }

    .map-text__text {
        width: calc(100% - 686px);
        max-width: 540px;
        padding-right: 32px;
    }
}

.fx-search-location {
    display: flex;
    flex-wrap: wrap;
}

.fx-main-search-location .map-col__btn {
    display: flex;
    align-items: center;
}

.map-col__btn .btn {
    margin: 0;
    margin-bottom: 0;
    margin-top: 0;
}

.map__form--last .btn {
    margin-bottom: 30px;
}

.search-location-item {
    width: 100%;
    margin-bottom: 15px;
}

.search-location {
    position: relative;
}

.search-location-item input {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.search-location input {
    padding:0 15px 0 40px;
    height: 54px;
    width: 100%;
    font-size: 18px;
}

.search-location button {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translate(0, -50%);
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 17px;
    opacity: 0.25;
}

.search-location-item label {
    color: #3C3C3C;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.search-location-item .choices {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background: #fff;
}

.search-location-item .choices__inner {
    border: none;
    background: #fff;
    height: 54px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3em;
    color: rgba(0,0,0,0.6);
    font-family: "Roboto Condensed", sans-serif;
}

.search-location-item .choices__list--single {
    padding: 10px;
    font-size: 18px;
}

.search-location-item .choices[data-type*="select-one"]::after {
    border-color: #000 transparent transparent transparent;
    border-width: 6px;
}

@media (min-width: 768px) {
    .fx-search-location {
        margin: 0 -16px;
    }
    
    .search-location-item {
        width: 324px;
        margin: 0 0 20px 0;
        padding: 0 16px;
    }

    .search-location-item--last {
        width: auto;
    }

    .search-location-item .btn {
        margin-top: 31px;
        height: 49px;
    }

    .map__form--last .btn,
    .map-col__btn .btn {
        margin-top: 30px;
    }

    .map__form--last .btn {
        margin-bottom: 20px
    }
}

@media (min-width: 1200px) {
    .fx-search-location {
        margin-right: -126px;
    }

    .search-location-item {
        margin: 0;
    }

    .map__form--last .btn {
        margin-bottom: 6px
    }
}

.location-cards {
    position: relative;
    padding-top: 0;
    z-index: 1;
}

.location-list__wrapper {
    padding: 24px 0;
}

.location-card-item {
    margin-bottom: 20px;
}

.location-card {
    border: 3px solid var(--color-gray);
    background: #fff;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.location-card::before {
    content: '';
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    background: var(--color-gray);
    position: absolute;
    width: 30px;
    height: 30px;
    top: -1px;
    right: -1px;
}

.location-card--rental {
    border-color: var(--color-red);
}

.location-card--rental::before {
    background: var(--color-red);
}

.location-card h3 {
    font-size: 23px;
    padding-bottom: 15px;
}

.location-card h4 {
    font-size: 18px;
}

.location-card--rental .subtitle {
    color: var(--color-red);
}

.location-card__info {
    display: flex;
    gap: 0;
    font-size: 16px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    position: relative;
}

.location-card__info i {
    color: var(--color-gray);
    font-size: 19px;
    line-height: 1em;
    position: absolute;
    top: 0;
    left: 0;
}

.location-card__right .btn {
    margin: 0 0 15px 0;
}

/* .location-card__info a {
    background: none;
} */

.location-card__left {
    margin-bottom: 15px;
}

.location-card__left .location-card__info {
    padding-left: 25px;
}

.location-card__info:last-child {
    margin-bottom: 0;
}

.location-cards-hexagon-top-bg {
    position: absolute;
    width: 147px;
    top: 0;
    left: 0;
    z-index: -1;
}

.location-cards-hexagon-bottom-bg {
    position: absolute;
    width: 147px;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.location-cards__title {
    background: var(--color-secondary);
}

.location-cards__title-text {
    color: var(--color-white);
    padding: 20px 0;
}

@media (min-width: 768px) {
    .location-card__flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .location-card__left {
        width: 194px;
    }

    .location-card__right {
        width: 180px;
    }

    .location-card__middle {
        width: 190px;
    }

    .location-card__right .btn-primary,
    .location-card__right .btn-secondary {
        line-height: 1em;
    }
}

@media (min-width: 1200px) {
    .location-cards-hexagon-top-bg {
        width: auto;
    }

    .location-cards-hexagon-bottom-bg {
        width: auto;
        bottom: 160px;
    }
    .service-item:hover{
        background: var(--color-primary);
    }

    .search-location button:hover {
        color: var(--color-black);
        opacity: 1;
    }
}

#resetServiceFilter{
    /* display: none; */
}
.service-item i{
    display: none;
}

.service-item.active i{
    display: block;
}

