.store {
    position: relative;
}

.store__head {
    position: relative;
    z-index: 1;
}

.store__subtitle {
    max-width: 34.75rem;
    color: rgba(20, 20, 43, 0.7);
}

.store__btn {
    width: 19.37rem;
    font-weight: 600 !important;
    background-color: transparent;
    box-shadow: inset 0rem 0rem 0rem 2px rgb(143 104 142 / 32%) !important;
}


.store__cards {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0px 0.5rem 1.75rem rgba(0, 0, 0, 0.08));
}

/* store-card */

.store-card {
    gap: 1.25rem;
    min-height: 28.25rem;
    padding: 2.5rem 3.5rem 2.5rem 2.5rem;
    background: var(--color__white);
    border-radius: 0.75rem;
}

.store-card__logo {
    width: 5.5rem;
    height: 5.5rem;
    background-color: var(--color__fill-4);
    border-radius: 50%;
    overflow: hidden;
}

.store-card__logo svg {
    width: 2.875rem;
    height: 2.625rem;
}

.store-card__desc {
    line-height: 1.625rem;
    color: rgba(20, 20, 43, 0.7);
}

.store__map-wrap {
    position: absolute;
    top: -3.75rem;
    right: 0;
    z-index: 0;
    width: 64.5rem;
    height: auto;
    aspect-ratio: 1032 / 588;
    pointer-events: none;
}

.store__map-img {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

@media (max-width: 1300px) {

    .about-us__slider,
    .about-us__text {
        max-width: none !important;
    }
}

@media (max-width: 1199px) {

    .store__map-wrap {
        width: 49.5rem;
    }
}

@media (max-width: 991px) {

    .store__cards {
        grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    }

    .store-card {
        min-height: 24.25rem;
    }

    .store__map-wrap {
        width: 40.5rem;
    }
}

@media (max-width: 768px) {

    .store__map-wrap {
        width: 35rem;
    }
}

@media (max-width: 640px) {

    .store__map-wrap {
        top: -1.5rem;
        right: 0;
        width: 28.5rem;
        opacity: 0.6;
        display: none;
    }

    .store__head {
        margin-bottom: 4rem !important;
    }

    .about-us__text {
        padding: 2rem !important;
    }

    .store__cards {
        gap: 1rem;
    }
}

@media (max-width: 500px) {

    .store__map-wrap {
        top: 1.5rem;
        width: 100%;
    }
}