.editing-banner {
    background-image: url('./Assets/Group\ 309.png');
    background-position: bottom;
    background-size: cover;
}

.cards {
    padding: 50px 0px;

    .container {
        flex-direction: column;

        .heading h1 {
            text-align: center;
        }

        .cards-content {
            width: 100%;

            .row {
                display: flex;
                justify-content: center;
                width: 100%;
                gap: 20px;

                .col {
                    width: 30%;

                    .card {
                        display: flex;
                        flex-direction: column;
                        border: 2px solid #141e3b;
                        box-shadow: 0px 0px 20px 0px;

                        .text {
                            padding: 30px 10px;
                            text-align: center;

                            h3 {
                                font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
                            }
                        }
                    }
                }
            }
        }
    }
}