.home-bottom {
    display: flex;
    flex-wrap: wrap;
}

.area-container {
    width: 100%;
    padding: 45px;
    background: #1c4f9c;
}

.price-container {
    width: 100%;
    padding: 45px;
}

.home-bottom .area-container h2,
.home-bottom .price-container h2 {
    color: white;
    text-align: center;
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
}

.home-bottom .price-container h2 {
    color: #1c4f9c;
    margin: 0 auto;
    font-size: 70px;
}

.map-container {
    width: 100%;
    margin: 30px auto;
    padding: 30px;
    position: relative;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 1px 1px 20px rgb(0 0 0 / 70%);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.map-output {
    padding: 30px;
    min-width: 250px;
}

.map-output h3 {
    margin-top: 0;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: black;
    text-transform: uppercase;
}

.map-list {
    list-style: none;
    padding-left: 0;
    width: fit-content;
    margin: 0 auto;
    max-height: 80%;
    overflow: auto;
}

.map-list li {
    margin-bottom: 5px;
    color: #bf0426;
    font-weight: 700;
    text-transform: uppercase;
}

.map-list li i {
    color: #1c4f9c;
    margin-right: 15px;
}

.az-map path:not(path[fill="white"]) {
    transition: all 0.6s cubic-bezier(0, 0.55, 0.45, 1);
    cursor: pointer;
    pointer-events: none;
}

.az-map path:not(path[fill="white"]):hover,
.az-map path:not(path[fill="white"]).active {
    fill: #bf0426 !important;
}

#yavapai,
#gila,
#coconino,
#maricopa,
#pinal {
    fill: rgb(64, 64, 64);
}

.az-map path[fill="white"] {
    z-index: -1;
    position: absolute;
}

.price-heading {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    max-width: 800px;
}

.price-container p {
    color: #1c4f9c;
    font-size: 24px;
    line-height: 36px;
    margin-top: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-container p span {
    font-weight: 700;
}

.az-map {
    max-width: 500px;
    height: auto;
    width: 100%;
}

@media (max-width: 1600px) {
    .map-output {
        position: relative;
        top: unset;
        transform: unset;
        right: unset;
        width: 100%;
        margin-top: 30px;
    }

    .az-map {
        margin: 0 auto;
        display: block;
    }

    .map-container {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .home-bottom {
        flex-wrap: wrap;
    }

    .area-container,
    .price-container {
        width: 100%;
    }

    .map-output {
        max-width: 400px;
        margin: 30px auto 0 auto;
    }
}

@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }

    .price-heading {
        flex-direction: column;
    }

    .home-bottom .price-container h2 {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .price-container,
    .area-container {
        padding: 30px;
    }
}
