* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'montextralight_demo';
    scroll-behavior: smooth;
}


body{
    background-color:#191919;
    
}

.services-header{
    margin-top: 30px;
}

.services-header h2{

    color: white;
}

.services{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.service-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 40px 0px;
}

.service-img {
    width: 50%;
    display: flex;
    justify-content: center;
    
}

.service-img img{
    width: 300px;
}

.service-des{
    display: flex;
    flex-direction: column;
    
}
.des-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px ;
    border-bottom: 1px solid #FFFFFF29
}

.des-item .title{
    color: #FFFFFF;
    font-weight: 700px;
    font-size: 1.5rem;
    width: 35%;
   
}

.des-item .desc{
    color:#CCCCCC ;
    width: 30%;
    font-size: 1rem;
}

.service-des .des-item:last-child{
    border: none;
}


.main-title{
    width: 30%;

}

.main-title h4{
    color: #FFFFFF;
    font-weight: 700;
   
}

.main-title p{
    color: #CCCCCC;
}


@media(max-width:991px){
    .service-content{
        flex-direction: column;
        gap: 25px;
    }

    .main-title{
        width: 100%;
        text-align: center;
    }

    .service-img img{
        width: 200px;
    }

    .des-item{
        flex-direction: column;

    }

    

    .des-item .desc ,.des-item .title{
    
        width: 100%;
        text-align: center;
    }

    .contact-info{
        align-items: center;

    }
}