.serviceTitleSection{
    width:81%;
    /* background-color: #1f1f1f; */
    margin-bottom: 60px;

    .serviceTitleContent{
        display:flex;
        align-items:center;
        gap:20px;

        .titleSquare{
            width:22px;
            height:22px;
            background:#b11111;
            flex-shrink:0;
        }

        h1{
            font-size:2.8rem;
            font-weight:700;
            line-height:1.2;
            color:#454545;
            text-transform:uppercase;
            letter-spacing:.3px;
        }
    }
}


.serviceContentSection{
    width:80%;
    margin-bottom: 60px;

    .serviceContent{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:42px;

        h2{
            font-size:2.8rem;
            color:#b11111;
            font-weight:700;
            text-transform:uppercase;
            line-height:1.2;
        }

        .textArea{
            display:flex;
            flex-direction:column;
            gap:35px;

            p{
                font-size:1.65rem;
                line-height:1.8;
                color:#2f2f2f;
                font-weight:400;
                max-width:1120px;
            }
        }
    }
}

.serviceBannerSection{
    width:95%;
    margin-bottom: 60px;

    .serviceBanner{
        width:100%;
        background:#ff9500;
        border-radius:28px;

        display:flex;
        flex-direction:column;
        justify-content:center;

        padding:55px 110px;
        gap:10px;

        h3{
            font-size:2.4rem;
            color:#202020;
            font-weight:700;
            line-height:1.3;
        }

        span{
            font-size:2.4rem;
            color:white;
            font-weight:700;
            text-transform:uppercase;
            letter-spacing:.5px;
        }
    }
}

.serviceContentSection.alt{
    width: 100%;
    padding: 0 140px;
    background:#ffffff;
    

    .serviceContent{
        display:flex;
        flex-direction:column;
        gap:42px;

        h2{
            font-size:2.8rem;
            color:#b11111;
            font-weight:700;
            text-transform:uppercase;
        }

        .textArea{
            display:flex;
            flex-direction:column;
            gap:35px;

            p{
                font-size:1.65rem;
                line-height:1.8;
                color:#2f2f2f;
                max-width:1120px;
            }
        }
    }
}

.processSection{
    width:95%;
    /* padding:0 90px 100px; */
    margin-bottom: 100px;

    .processBox{
        width:100%;
        background:#e1e4e8;
        border-radius:26px;
        padding:70px 140px;

        display:flex;
        flex-direction:column;
        gap:50px;

        h2{
            font-size:2.6rem;
            font-weight:700;
            color:#b11111;
            text-transform:uppercase;
            line-height:1.3;
        }

        .processList{
            display:flex;
            flex-direction:column;
            gap:45px;
        }

        .processItem{
            display:flex;
            flex-direction:column;
            gap:15px;

            h3{
                font-size:2rem;
                font-weight:700;
                color:#1f1f1f;
            }

            ul{
                list-style: none;
                display:flex;
                flex-direction:column;

                li{
                    font-size:1.55rem;
                    line-height:1.7;
                    color:#2b2b2b;
                }
            }
        }
    }
}

@media (max-width:390px) {
    *{
        word-break: break-all;
    }
}