#sights {
    background: #F6F9EB;
    padding-bottom: 5rem;
}

.sights-wrapper {

    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fit, 250px);
    grid-auto-rows: minmax(250px, auto);
    grid-auto-flow: dense;
    justify-items: center;
    justify-content: center;
}

#sights .img-wrapper {
    overflow: hidden;
}

#sights .img-wrapper img {
    height: 180px;
    object-fit: cover;
}
#load-more button:hover .arrow-down{
    filter: brightness(0) invert(1);    
}
.arrow-down{
    width: 30px; 
    height: 18px;
}
.sight-cat {
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: fit-content;
    border-radius: 16px;
    font-size: 12px;
}

#load-more button {
    background: #CCDBA1;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    transition: all ease-in-out 0.2s;
}

#load-more button i {
    font-size: 40px;
    color: #4A5A0B;
    transition: all ease-in-out 0.2s;
}

#sights #spinner {
    grid-column: span 4;
}

#load-more button:hover {
    background: #4A5A0B;
}

#load-more button:hover i {
    color: #CCDBA1;
}