body {
    position: relative;
}
 
.more-home {
    text-align: center;
    margin-top: 35px;
    font-family: Hiragino Sans GB;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.flex {
    display: flex;
}

.justify-content {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.fade-in {
    animation: fadeIn 1s;
}

.fade-out {
    animation: fadeOut 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.quan {
    height: 28px;
    width: 28px;
    border-radius: 28px;
    border: 2px solid rgb(167 47 47);
    margin-right: 19px;
    position: relative;
}

.quan::after {
    height: 20px;
    width: 20px;
    border-radius: 19px;
    position: absolute;
    content: "";
    left: 2px;
    top: 2px;
    border: 2px solid rgb(167 47 47);
    margin-right: 10px;
}

@media (min-width: 1340px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1600px;
    }
}


.map-url {
    color: #fff;
    display: block;
    text-align: right;
}

.map-url:hover {
    color: #fff;
}
 