.home-category-fore-image .icon-box-info p {
    line-height: 40px;
}

.cosmecos_content_slider_widget .cosmecos_content_slide_wrapper {
    padding-bottom: 10%;
}

.widget-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.list-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px 0;
}

.list-about > li {
    width: 20%;
}

.list-about > li:nth-child(2), .list-about > li:nth-child(5), .list-about > li:nth-child(8) {
    margin-right: 20%;
}

.list-about > li:nth-child(5), .list-about > li:nth-child(6) {
    width: 40%;
}

.list-about > li > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.list-about > li:before {
    content: none;
}


.list-about .repiter-img-wrapper {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.list-about > li img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: 100%;
}

.list-about > li h5 {
    margin: 0 !important;
}

.main-img-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 400px;
    display: flex;
    height: 100%;
}

.main-img-wrapper img {
    object-fit: contain !important;
    height: 100% !important;
    aspect-ratio: 2/1;
}

@media (max-width: 1000px) {
    .widget-wrapper {
        flex-direction: column;
    }

    .list-about > li {
        width: 100%;
    }

    .main-img-wrapper {
        position: static;
        transform: unset;
    }

    .list-about {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 70%;
        gap: 20px;
        justify-items: center;
    }

    .list-about > li:nth-child(5), .list-about > li:nth-child(6) {
        width: 100%;
    }

    .list-about > li:nth-child(2), .list-about > li:nth-child(5), .list-about > li:nth-child(8) {
        margin-right: 0;
    }

    .list-about > li > div {
        justify-content: flex-start;
    }
}

@media (max-width: 758px) {
    .list-about {
        grid-template-columns: repeat(1, 1fr);
    }

    .list-about > li > div {
        justify-content: center;
    }
    .list-about > li{
        display: flex;
    }
    .list-about > li:nth-child(even){
        justify-content: flex-end;
    }
}