.services-section{
    background-color: #F7F7F7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0px 50px 0px;
    margin-top: 150px;
}

    .services{
        width: 70vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction:column;
    }

        .service-title{
            font-size: 2rem;
            color: #002C42;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 50px;
            font-weight: bold;
        }
        
        .services-container{
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

            .service-box{
                min-width: 250px;
                width: 25vw;
                height: 250px;
                padding: 20px;
                border-radius: 20px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                background-color: white;
                box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            }

                .service-hr{
                    height: 2px;
                    width: 150px;
                    border: none;
                    margin: 10px 0px ;
                    background-color: #FFC700;
                }

                .service-box-title{
                    font-family: 'Montserrat', sans-serif;
                    text-align: center;
                    font-size: 1rem;
                    margin-bottom: 10px;
                    color: #002C42;
                    font-weight: bold;
                }

                .service-box-paragraph{
                    color: #707070;
                    font-family: 'Lato', sans-serif;
                    text-align: center;
                    font-size: .9rem;
                }

@media (max-width: 600px) {

    .service-box{
        width: 80vw;
    }
}