@charset "utf-8";

h1{
    font-size: 2.5rem;
}

.text{
    text-align: center;
    margin: 10px;
}

h2{
    font-size: 1.5rem;
}

hr{
    margin: 20px;
}

.service ul li{
    list-style-type: square;
}

.service{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.service div{
    width: calc(120% / 2);
    padding: 40px;
}

.service div p{
    margin-bottom: 10px;
    margin-right: 40px;
}

.service div ul li{
    margin-top: 5px;
    margin-left: 20px;
}

.service img{
    height: 300px;
    width: calc(80% /2);
    border-radius: 5px;
}

.process_container{
    display: flex;
    flex-direction: row;
    height: 280px;
    justify-content: space-around;
    align-items: center;
}

.process{
    width: 50%;
    padding: 20px;
}

.process li i{
    color: #000000;
    font-size: 20px;
    padding: 10px;
}

.process li p:nth-child(1){
    font-size: 1.25rem;
}

.process li p:nth-child(2){
    padding-left: 10px;
}

.process li p{
    text-align: justify;
    margin: 10px 30px;
}

@media screen and (max-width:767px) {

    h1{
        text-align: center;
    }
    
    h2{
        text-align: center;
        font-size: 1.5rem;
    }

    .service{
        flex-direction: column;
        padding-top: 10px;
    }

    .service img,.service div{
        width: 100%;
    }

    .service div{
        padding: 20px;
        text-align: justify;
    }

    .service div p{
        margin: 10px;
    }

    .service div ul li{
        margin-left: 30px;
    }

    hr{
        margin-bottom: 10px;
    }

    .process_container{
        flex-direction: column;
        height: 550px;
        align-items: center;
        justify-content: center;
    }

    .process{
        width: 100%;
        padding: 0px 20px;
    }

    .process li p:nth-last-child(1){
        text-align:center;
        padding-left: 0;
    }
    
}