.service {
    height: 850px;
    position: relative;
}

.service img {
    position: absolute;
    opacity: 60%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.serType div {
    display: flex;
    justify-content: space-around;
    margin: 20px;
    background-color: rgba(168, 168, 168, 0.3);
    border-radius: 4px;
}
.service h2 {
    padding-top: 40px;
}

.serType div h6 {
    border-left: 4px solid #048383;
    font-weight: 100;
}

.serType div div {
    align-items: center;
    background-color: rgba(49, 49, 49,0.0);
    color: aliceblue;
}

.serType div div h3 {
    margin-left: 0px;
    font-weight: 100;
    width: 180px;
    color: aliceblue;
    transition: all 0.3s;
}

.serSym {
    font-size: 8em;
    width: 100px;
}

@media screen and (min-width: 1680px) {
    .service {
        height: 550px;
    }
    
    .serType {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, 120);
    }

    h6 {
        font-size: 1.25em;
    }
}

@media screen and (max-width: 850px) {
    .service {
        height: 800px;
    }

    .serType div div {
        padding-top: 15px;
        font-size: 0.75em;
    }

    h6 {
        border-left: 0px solid #048383;
        font-size: 1em;
    }
}

@media screen and (max-width: 750px) {
    .service {
        height: 1100px;
    }

    .serType div {
        display: block;
    }
    
    .serType div div { 
        display: flex;
        justify-content:center;
    }

    .service div h6 {
        border-top: 3px solid #048383;
        border-left: 0px solid #048383;
        text-align: center;
        padding: 10px;
        margin: 10px;
    }
}


