.widget-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 80px;
}
.widget-header {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 32px 0;
    font-family: empikProBold;
    align-items: center;
}
.widget-header-rwd {
    display: none;
    margin: 10px 0 24px 0;
    width: 100%;
}
.popular-category-title {
    margin: 0;
    font-size: 32px !important;
    line-height: 40px;
    padding: 0 !important;
    letter-spacing: 0.2px;
    font-family: 'empikProBold';
}
.link {
    cursor: pointer;
    color: black;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-decoration: underline;
}

.link:hover {
    text-decoration: underline;
}
.mobile-read-more {
    display: none;
}
.img-container {
    display: flex;
}
.big-img-wrapper {
    position: relative;
    margin-bottom: 32px;
}
.img-wrapper {
    position: relative;
}
.first-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}
.second-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 32px;
    justify-content: space-between;
}
.small-image-container {
    display: flex;
    width: 100%;
    max-width: 574px;
    justify-content: space-between;
}
.small-image-container div:nth-child(2) {
    margin-left: 32px;
}
.big-image {
    max-width: 574px;
    width: 100%;
    height:auto;
    max-height: 522px;
    border-radius: 8px;
    transform: scale(1);
    transition: transform 200ms ease-out;
}

.img-overlay:hover + .big-image{
    transform: scale(1.05);
    transition: transform 200ms ease-out;
}

.mid-image {
    max-width: 574px;
    width: 100%;
    height:auto;
    max-height: 356px;
    border-radius: 8px;
    transform: scale(1);
    transition: transform 200ms ease-out;
}

.img-overlay:hover + .mid-image{
    transform: scale(1.05);
    transition: transform 200ms ease-out;
}

.small-image {
    max-width: 271px;
    width: 100%;
    height:auto;
    max-height: 245px;
    border-radius: 8px;
    transform: scale(1);
    transition: transform 200ms ease-out;
}

.img-overlay:hover + .small-image{
    transform: scale(1.05);
    transition: transform 200ms ease-out;
}

.first-small-box {
    order: 1
}
.second-small-box {
    order: 2
}
.position-box {
    width: 100%;
    order: 0;
}
.img-text {
    background: #FFFFFF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: 34px;
    padding: 8px 16px;
    position: absolute;
    bottom: 24px;
    font-weight: bold;
    font-size: 12px;
    z-index: 1;
    left: 24px;
    margin: 0 !important;
    text-transform: uppercase;
}

.category-link {
    color: inherit !important;
    cursor: pointer;
    text-decoration: none;
}

.category-link:first-child {
    color: inherit !important;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    border-radius: 8px;
}

.img-overlay {
    background: #000000;
    opacity: 0%;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: opacity 200ms ease-out;
}

.img-overlay:hover{
    opacity: 15%;
    transition: opacity 200ms ease-out;
}

@media screen and (max-width: 1220px) {
    .widget-container {
        padding: 0 32px;
    }
}
@media screen and (max-width: 800px){
    .widget-container {
        padding: 0 16px;
        margin-top: 40px;
    }
    .popular-category-title {
        font-size: 26px !important;
    }
    .link {
        display: none;
    }
    .widget-header {
        display: none;
    }
    .widget-header-rwd {
        display: flex;
    }
    .img-container {
        align-items: center;
        flex-direction: column;
    }
    .first-column {
        display: none;
    }
    .second-column {
        margin-left: 0;
        align-items: center;
    }
    .small-image {
        margin: 0;
    }
    .small-image-container div:nth-child(2) {
        margin-left: 16px;
    }
    .first-small-box {
        order: 0;
        margin: 0;
    }
    .second-small-box {
        order: 2
    }
    .position-box {
        order: 1;
        margin: 16px 0px;
    }
    .img-wrapper {
        display: flex;
        justify-content: center;
    }
    .small-image {
        min-height: auto;
        min-width: 140px;
    }
    .mid-image {
        height: 213px;
    }
    .mobile-read-more {
        background: #F2F2F2;
        border-radius: 42px;
        height: 36px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 175px;
        margin: 32px auto;
        padding: 8px 16px;
        letter-spacing: 0.3px;
        font-size: 15px;
        line-height: 20px;
        font-family: empikProBold;
        color: black;
    }
}