.services{
    background-color: #472562;
    height: 43rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
}

.servicesContainer{
    color: white;
    width: 46rem;
    height: 25rem;
}

.textContent p{
    font-size: 1.8rem;
    margin-top: 1rem;
}

.servicesTitle{
    font-size: 2.7rem;
}

.servicesList{
    list-style-position: inside;
    margin-top: 1rem;
}

.servicesList li{
    font-size: 1.8rem;
    font-weight: 400;
}

.contactBtn{
    font-size: 1.6rem;
    text-decoration: none;
    color: white;
    font-weight: 400;
    background-color: #FF703D;
    border: none;
    border-radius: 2rem;
    padding: 1rem;
    display: inline-block;
    margin-top: 2rem;
}

.deviceContainer{
    position: relative;
    height: 43rem;
    width: 47rem;
}

.device{
    position: absolute;
    top: -4rem;
    left: -9rem;
    max-width: 54.8rem;
}

@media(max-width: 992px){
    .textContent {
        padding: 0 3rem;
    }

    .deviceContainer {
        display: none;
    }
}

@media(max-width: 576px) {
    .servicesTitle{
        font-size: 2rem;
    }
    
    .textContent p{
        font-size: 1.5rem;
    }
    
    .servicesList li{
        font-size: 1.5rem;
    }
    
    .contactBtn{
        font-size: 1.5rem;
    }
}