.bg-color {
    background-color: rgb(60, 60, 78);
    height: 400px;
    padding: 10px;
}

.div-inside-service {
    display: flex;
    flex-direction: column;
}

.white-bar {
    background-color: white;
    width: 53px;
    height: 14px;
    margin-bottom: 20px;
}

.h1-text {
    color: white;
    font-size: 80px;
    word-wrap: break-word;
}

.div-purples {
    width: 38px;
    height: 9px;
    background-color: rgb(131, 48, 131);
    display: flex;
    justify-content: space-around;
}

.p-list {
    cursor: pointer;
    color: white;
    margin-top: 20px;
    font-size: 17px;
}

.div-points {
    margin-top: 65px;
    display: flex;
    flex-wrap: wrap; 
    gap: 50px; 
}

.return-line-1 {
    width: 70px;
    overflow-y: break-word;
}

.return-line-2 {
    width: 140px;
    overflow-wrap: break-word;
}

@media (max-width: 1230px) {
    .h1-text {
     font-size: 60px;
    }

    .div-points {
     gap: 20px;
    }

    .p-list {
        font-size: 15px;
    }

    .div-inside-service {
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    .div-inside-service {
        margin-left: 30px;
    }

    .h1-text {
        font-size: 40px;
    }

    .white-bar {
        width: 53px;
        height: 14px;
    }

    .div-points {
        justify-content: center;
        margin-top: 40px;
        gap: 15px;
    }

    .p-list {
        font-size: 13px;
        margin-top: 15px;
    }

    .return-line-1,
    .return-line-2 {
        width: auto; 
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .bg-color {
        padding: 10px;
        height: 300px;
    }

    .div-inside-service {
        margin-left: 30px;
    }

    .h1-text {
        font-size: 30px;
    }

    .white-bar {
        width: 40px;
        height: 10px;
        margin-bottom: 20px;
    }

    .div-points {
        justify-content: center;
        gap: 12px;
    }

    .p-list {
        font-size: 13px;
    }

    .mt-20-small-size {
        margin-top: 20px;
    }

    .return-line-1,
    .return-line-2 {
        width: auto; 
        overflow-wrap: break-word;
    }
}