/* Top Section */
.top-section {
    padding-top: 7rem;
    position: relative;
}

.top-section--banner {
    background-image: url('../../images/category.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 40rem;
}

.top-section-title{
    position:absolute;
    font-family: 'KG Broken Vessels Sketch';
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    width: fit-content;
    bottom:1rem;
    font-size:2rem;
    letter-spacing: 1px;
    z-index:10;
    cursor:default;
}

.text-purple{
    color:#D74BD8;
  }
  
  .text-blue{
    color:#5ECFFB;
  }
  
  .text-green{
    color:#71EB34;
  }

.top-section--circles {
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.circle-1 {
    position: absolute;
    background-color: #C447D3;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    top: 25rem;
    left: 10rem;
}

.circle-1-topic {
    position: relative;
    top: 5.5rem;
}

.circle-2 {
    position: absolute;
    background-color: #FEF83C;
    color: red;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    top: 30rem;
    left: 45rem;
}

.circle-2-topic {
    position: relative;
    top: 3.5rem;
}

.circle-3 {
    position: absolute;
    background-color: #F0912B;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    top: 15rem;
    right: 10rem;
}

.circle-3-topic {
    position: relative;
    top: 2.5rem;
}

/* Explore Section */
.explore-section {
    background-color: #F5EAD7;
    padding: 3rem 0;
}

.explore-section--title {
    font-size: 2rem;
    color: #7F5435;
    font-weight: bold;
    text-transform: uppercase;
}

.explore-section--content {
    margin-top: 1rem;
}

/* Category List */
.floor-list {
    list-style-type: none;
    column-count: 1;
}

.stores-list {
    list-style-type: none;
    /* column-count: 3; */
}

.main-name{
    font-size: 1.5rem;
    color: #7F5435;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration:underline;
}

a {
    color: #7F5435;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #7F5435;
    text-decoration: underline;
}

.stores-list-item {
    font-size: 1rem;
    color: #7F5435;
    text-transform: uppercase;
    margin: 0.5rem 0;
}

.stores-list-item svg {
    width: 10px;
    margin-right: 0.2rem;
}
/* Media Queries */
@media (min-width: 768px) and (max-width: 991px) {

    .circle-1 {
        left: 3rem;
    }

    .circle-2 {
        left: 35rem;
    }

    .circle-3 {
        right: 17rem;
    }
    .top-section-title{
        font-size:4rem;
    }
}

@media (max-width: 576px) {

    .explore-section--title {
        font-size: 1.5rem;
    }

    .stores-list-item {
        font-size: 0.9rem;
    }

    .circle-1 {
        top: 32rem;
        left: 1rem;
    }

    .circle-2 {
        top: 25rem;
        left: 15rem;
    }
}

@media(min-width:1024px){
    .top-section-title{
        font-size:5rem;
    }
}