#service {
    /* border:1px solid red; */
}

#service .titleImg {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 0 60%;
    filter: brightness(40%);
}

#service .serviceMainTitle {
    position: absolute;
    font-size: 56px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#service .serviceRow {
    display: flex;
    justify-content: center;
    align-items: center;

    width:100%;

    box-sizing: border-box;
    padding: 30px 20px;

    /* border: 1px solid red; */
}

#service .serviceGroup_1, #service .serviceGroup_2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:70%;

    /* border: 1px solid red; */
}

#service .cardImg {
    width: 50%;
    /* border: 1px solid red; */
}

#service .cardRightContent {
    width:40%;
    margin-left: 20px;
    /* border: 1px solid red; */
}

#service .cardLeftContent {
    width:40%;
    margin-right: 20px;
    /* border: 1px solid red; */
}

#service .serviceTitle {
    font-size: 32px;
    color: black;
    font-weight: 600;
    margin-top: 5px;
}

#service .serviceContent {
    font-size: 24px;
    color: gray;
    margin-top: 20px;
    /* border: 1px solid red; */
}


@media screen and (max-width: 1600px) {
    #service .serviceGroup{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width:80%;
    
        /* border: 1px solid red; */
    }

    #service .serviceTitle {
        font-size: 26px;
        color: black;
        font-weight: 600;
        margin-top: 5px;
    }
    
    #service .serviceContent {
        font-size: 20px;
        color: gray;
        margin-top: 20px;
        /* border: 1px solid red; */
    }
}

@media screen and (max-width: 1100px) {
    #service .serviceGroup_1, #service .serviceGroup_2{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width:80%;
    
        /* border: 1px solid red; */
    }

    #service .serviceTitle {
        font-size: 18px;
        color: black;
        font-weight: 600;
        margin-top: 5px;
    }
    
    #service .serviceContent {
        font-size: 16px;
        color: gray;
        margin-top: 20px;
        /* border: 1px solid red; */
    }

    #service .cardRightContent {
        width:50%;
        margin-left: 20px;
        /* border: 1px solid red; */
    }
    
    #service .cardLeftContent {
        width:50%;
        margin-right: 20px;
        /* border: 1px solid red; */
    }
}


@media screen and (max-width: 768px) {
    #service .serviceMainTitle {
        position: absolute;
        font-size: 52px;
        color: white;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #service .serviceGroup_1, #service .serviceGroup_2{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width:90%;
    
        /* border: 1px solid red; */
    }

}

@media screen and (max-width: 576px) {
    #service .serviceMainTitle {
        position: absolute;
        font-size: 36px;
        color: white;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 180px;
    }


    #service .serviceRow {
        display: flex;
        justify-content: center;
        align-items: center;

        width:100%;

        box-sizing: border-box;
        padding: 30px 20px;

        /* border: 1px solid red; */
    }

    #service .serviceGroup_1{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width:80%;

        /* border: 1px solid red; */
    }

    #service .serviceGroup_2{
        display: flex;
        flex-direction:column-reverse;
        justify-content: center;
        align-items: center;
        width:80%;

        /* border: 1px solid red; */
    }

    #service .cardImg {
        width: 80%;
        /* border: 1px solid red; */
    }

    #service .cardRightContent {
        width:100%;
        margin-left: 0px;
        /* border: 1px solid red; */
    }

    #service .cardLeftContent {
        width:100%;
        margin-right: 0px;
        /* border: 1px solid red; */
    }

    #service .serviceTitle {
        font-size: 18px;
        color: black;
        font-weight: 600;
        margin-top: 5px;
        text-align: center;
    }

    #service .serviceContent {
        font-size: 16px;
        color: gray;
        margin-top: 20px;
        /* border: 1px solid red; */
    }

}