.home {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-right: 1.5rem;

}

.dot-circle {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.panel {
    max-width: 44rem;
    margin: 2.5rem auto;
}

.panel img {
    width: 100%;
    object-fit: contain;
}

#tribes {
    max-width: 66rem;
    overflow: hidden;
    flex-wrap: wrap;
    margin: auto auto 1.5rem auto;
    height: 11rem;
    text-align: center;
}

#tribes.remove-height {
    height: unset !important;
}

#viewmore {
    margin-bottom: 1rem;
    width: 100%;
    text-align: right;
    position: relative;
    max-width: 70rem;
}

#viewmore a {
    border: 2px solid #6f8dca;
    color: #6f8dca;
    border-radius: 5px;
    padding: .25rem 2rem .25rem 1rem;
    width: 8rem;
    position: relative;
}

#viewmore a::after {
    content: '\002E';
    color: white;
    border-width: 0 0 2px 2px;
    border-style: solid;
    border-color: #6f8dca;
    transform: rotate(-45deg);
    width: .4rem;
    position: absolute;
    height: .4rem;
    right: 1rem;
    top: 30%;
}

#viewmore a.less::after {
    border-width: 2px 2px 0 0;
    top: 49%;
}

.profile {
    width: 6.5rem;
    margin: 1.5rem .5rem 0 .5rem;
    transition: all .1s linear;
    display: inline-block;
}
.profile:hover {
    width: 6.8rem;
    margin: 1.5rem .5rem 0 .5rem;
}

.profile-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.3rem;
}

.profile-img {
    width: 100%;
    object-fit: contain;
    max-height: 6.5rem;
    background: lightgrey;
}

.h-text {
    font-size: 1.5rem;
    margin-top: 4.5rem;
    font-weight: 700;
}

@media only screen and (max-width: 600px) {
    .h-text {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
    .home {
        font-size: 0.85rem;
        margin-left: 0.5rem;
    }

    .panel {
        margin: 1.5rem auto;
    }

    .profile {
        width: 5.5rem;
      
    }
    .profile-img {
        max-height: 5.5rem;
    }
    #tribes {
        height: 20rem;
    }
    #viewmore {
        text-align: center;
    }
}