.our-services-section {
    display: flex;
    justify-content: left;

    ul {
        padding-inline-start: 35px;
        list-style: disc; 
        color: #8B0000;
        width: 400px;
    }

    li {
        font-size: 16px; 
        padding: 5px 0; 
        cursor: pointer; 

        p{
            color:#dbd8d8;
        }

        a {
            color: inherit; 
            display: inline-block; 
            
            transform: scale(1); 
            transform-origin: left center; 
            transition: transform 0.3s ease, color 0.3s ease; 
            white-space: nowrap; 
        }
    }

    li:hover {
        p{
            color: red; 
        }

        a {
            transform: scale(1.1); 
        }
    }
}


.service-selection {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    height: 60px;
    overflow: hidden;
}

.hide-on-desktop.services{
    display: none;
}

.hide-on-mobile.services{
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1000px) and (max-width: 1150px){
    .service-list{
        display: flex;
        
        ul{
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            width: 100%;
            padding-inline-start: 25px;
            align-items: center;
            justify-content: space-between;
        }
        li{
            width: 46%;
            p{
                font-size: 17px;
            }
        }
    }
}

/* @media (min-width:1000px) and (max-width: 1150px){
    .service-list{
        display: flex;
        flex-direction: column;

        .image-title-wrapper{
            float: inline-end;
        }
    }
} */


@media (min-width: 0px) and (max-width: 460px){
    .our-services-section{
    ul{
        width: fit-content;
        p{
            font-size: 18px;
        }
        li{
            width: 300px;
        }

    }
}
}


@media (max-width: 1150px){
.hide-on-mobile.services{
    display: none;
}

    .no-marg{
        margin: unset;
    }



.hide-on-desktop.services{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}
}

@media (min-width: 1000px) and (max-width: 1150px){
        .reduced{
        min-width: 300px;
        width: 95%;
        height: 33vw;
    }
}

@media (max-width: 1000px){
 .service-list{
     display: flex;
     flex-direction: column;
 }
}

