body {
    height: auto !important;
    overflow: auto !important;    
}
/******************************************
collections
******************************************/
.collections {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 350px;
    margin: 270px auto 100px auto;
}

.collections .collections-area {
    width: 140px;
}

.collections h2 {
    font-size: 16px;
    margin: 0 auto 30px auto;
    font-weight: normal;
    text-align: center;
}

.collections .collections-lists {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 133px;
}

.collections .collections-link {
    font-size: 20px;
    margin: 0 10px 10px 6px;
}

.collections .collections-link a {
    transition: all 500ms 0s ease;
}

.collections .collections-link a:hover {
    opacity: 0.3;
}

@media screen and (max-width: 480px) {
	.collections {
        width: 260px;
        margin: 220px auto 80px auto;
    }

    .collections h2 {
        font-size: 18px;
    }

    .collections .collections-link {
        font-size: 22px;
    }

    .collections .collections-area {
        width: 48%;
    }

    .collections .collections-lists {
        width: 100%;
    }

    .collections .collections-link {
        width: 50%;
        margin: 0 auto 0.5em auto;
        font-size: 18px;
        text-align: center;
    }
}