.free_sections_regular_wrapper {
    float: left;
    width: 100%;
    box-sizing: border-box;
}

/* ITEM */
.fsr_item {
    float: right;
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    background-color: #333333;
    direction: rtl;
    padding: 0;
    border-bottom: 0px solid #333333;
    border-radius: 3px;
    text-decoration: none;
}

/* IMAGE */
.fsr_img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.fsr_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.fsr_content {
    width: 100%;
    padding: 12px 20px 20px 20px;
    text-align: center;
    box-sizing: border-box;
}

.fsr_name {
    width: 100%;
    height: 35px;
    overflow: hidden;
    margin-bottom: 5px;
}

.fsr_text {
    width: 100%;
    height: 90px;
    overflow: hidden;
}

/* BUTTON */
.fsr_btn_wrapper {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.fsr_btn {
    min-width: 110px;
    font-size: 18px;
    background-color: transparent;
    color: #f9eadc;
    padding: 0 10px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    border: 1px solid #fff;
    border-radius: 10px;
}

.fsr_item:hover .fsr_btn {
    background-color: #f9eadc !important;
    color: #333 !important;
}

.fsr_item_lable {
    width: 60px;
    height: 60px;
    display:flex;
    position:absolute;
    top:10px;
    left:10px;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    background-color:rgb(255 187 142);
    color:#333;
    font-size:16px;
    font-weight:700
}


/* ===== DESKTOP LARGE ===== */
@media (min-width: 1438px) {
    .fsr_item {
        width: 15%;
        margin-left: 2%;
        margin-bottom: 3%;
    }

    .fsr_item:nth-of-type(6n) {
        margin-left: 0;
    }

    .fsr_onlyMobile { display: none !important; }
    .fsr_onlyDesktop { display: block !important; }
}

/* ===== DESKTOP ===== */
@media all and (max-width: 1439px) and (min-width: 769px) {
    .fsr_item {
        width: 31.333333333333%;
        margin-left: 3%;
        margin-bottom:3%
    }
    .fsr_item:nth-of-type(3n) {
        margin-left: 0;
    }

    .fsr_text { height: 60px; }
    .fsr_onlyMobile { display: none !important; }
    .fsr_onlyDesktop { display: block !important; }
    /* IMAGE */
.fsr_img {
    width: 100%;
    aspect-ratio: 4 / 2;
    overflow: hidden;
}
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .fsr_item {
        width: 47.5%;
        margin-left: 5%;
        margin-bottom: 5%;
        border-bottom: 0;
    }

    .fsr_item:nth-of-type(2n) {
        margin-left: 0;
    }
        .fsr_item:nth-of-type(5n) {
        margin-bottom: 0;
    }
        .fsr_item:nth-of-type(6n) {
        margin-bottom: 0;
    }

.fsr_name {
    width: 100%;
    height: 35px;
    overflow: hidden;
    margin-bottom: 0px;
}
    .fsr_content {
        padding: 12px;
        height:185px
    }

    .fsr_text {
        height: 85px;
        display:block;
    }

    .fsr_onlyMobile { display: block !important; }
    .fsr_onlyDesktop { display: none !important; }
.fsr_btn_wrapper {
    margin-top: 7px!important;
}
    
.fsr_btn {
    min-width: 100px;
    font-size: 17px;
    padding: 0 7px 2px 7px;
    height: 33px;
}
}
