


.sliderCustom{
    display: flex;
    width: max-content;
    gap: 1rem;
    max-width: 100%;
    align-items: center;
    overflow-x: scroll;
    scrollbar-width: none;
}



.itemSliderCustom{
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 1rem;
    background-color: rgba(255,255,255,1);
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25);
    align-items: center;
    min-width: 275px;
}
.itemSliderCustomImg{
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.itemSliderCustom .gradtext{
    flex:1;
    text-align: center;
}
.list-type-of-activity-container{
    display: flex;
}
.item-type-of-activity{
    width: 25%;
}
.subservice{
    display: flex;
    flex-direction: column;
    padding: 0.3rem;
    position: relative;
    gap: 0.3rem;
    width: 100%;
}
.subservice::after{
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    top: 100%;
    position: absolute;
    background:  linear-gradient(84.12deg, #153D8A 1.59%, #164194 50.91%, #13A538 116.75%);
    border-radius: 1rem;
}
.subservice-title{
    color: rgba(50, 53, 85, 1);
    font-size: 16px;
    font-weight: 600;
}
.subservice-desk{
    color: rgba(50, 53, 85, 1);
    font-size: 14px;
}
.subservice-image-container{
    display: flex;
    overflow-x: auto;
    width: 100%;
    gap: 10px;
}
.subservice-image{
    position: relative;
    width: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    min-height: 150px;
    overflow: hidden;
    cursor: pointer;
}
.subservice-image-element{
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transform: rotate(0deg);
    position: absolute;
    opacity: 1;
    background-size: contain;
}



@media (max-width: 1440px) {
    .item-type-of-activity{
        width: 33%;
    }
}

@media (max-width: 991px) {
    .searchcompany{
        margin-top: 0;
    }
    .list-type-of-activity-container{
    display: none;
}
}