#page-welcome-content {
    margin-bottom: 56px; /* footer height */

    .banner {
        position: relative;
        background-color: #444;
        padding: 20px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;

        /* Image */
        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.4;
            background: #000 url("/static/kitchen_optimizer/img/page-welcome-banner.cc199fc03a22.jpg") center no-repeat;
            background-size: cover;
        }
        .banner-content {
            position: relative;
            text-shadow: 0px 0px 2px #000;

            .title {
                font-size: 54px;
                font-weight: 900;
                margin: 0 0 20px 0;
                span:nth-child(1) {
                    color: #458651;
                    text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff,
                         1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
                }
                span:nth-child(2) {
                    color: #97b879;
                    text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff,
                         1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
                }
            }
            .subtitle {
                font-size: 32px;
                font-weight: 900;
            }
        }
    }

    section {
        h2 {
            text-align: center;
            margin: 0 0 25px 0;
        }
        ul {
            text-align: left;
            list-style-type: "\2192";
            li {
                padding-left: 10px;
                &::marker {
                    font-size: 1.5em;
                    font-weight: 900;
                    line-height: 1;
                    color: var(--green-3);
                }
            }
        }
    }

    #section-1 {
        background-color: #fff;
        padding: 30px;
    }
    #section-2 {
        background-color: #eee;
        padding: 30px;
    }
    #section-3 {
        background-color: #fff;
        padding: 30px;
    }
    #section-4 {
        background-color: #eee;
        padding: 30px;
    }
    #section-5 {
        background-color: var(--green-5);
        padding: 50px 30px;
        text-align: center;
    }

    .card {
        .big-icon {
            display: inline-block;
            margin: 15px;
            width: 60px;
            height: 60px;
        }
    }
}