.radio-btns {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.radio-btns:hover .radio-btns__btn:not(:hover) {
    opacity: 0.75;
}

.radio-btns:hover .radio-btns__btn:not(:hover)::after {
    background-color: rgba(#000, 0.5);
}

.radio-btns__btn {
    position: relative;
    cursor: pointer;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

.radio-btns__btn img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 300px;
    transition: transform 0.25s;
    transform: scale(0.9);
}

.radio-btns__btn:hover img{
    transform: scale(1);
}

.gallery-content-box{
    display: flex;
    flex-direction: row;
}

.gallery-category-inner{
    min-width: 280px;
    border-right: 2px dashed #b8d765;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gc-type-btn{
    margin-top: 20px;
    cursor: pointer;
}

.gc-type-btn:hover{
    color: #b8d765;
}

.gc-type-btn:first-child{
    margin-top: 0;
}

.gc-type-btn.active{
    color: #b8d765;
    font-weight: 600;
}

.gc-type-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #b8d765;
    transition: width 1s;
}

.gc-type-btn:hover::after {
    width: 100%;
}

.radio-btns{
    display: none;
    padding: 20px;
    flex-direction: row;
}

.radio-btns.active{
    display: flex;
}

.gallery-desc{
    margin-bottom: 20px;
    font-size: 21px;
    text-align: start;
}

.gallery-category-inner.fixed{
    z-index: 11;
    position: absolute;
    left: -155px;
    top: 50%;
    background-color: #b8d765;
}

@media screen and (max-width: 1600px) {
    .radio-btns__btn{
        max-width: 290px;
    }

    .radio-btns__btn img{
        height: 290px;
    }
}

@media screen and (max-width: 1199px) {
    .gc-type-btn.active{
        background-color: #457335;
    }
        
    .gc-type-btn:hover::after {
        width: 0%;
    }

}