        #parallax-2 {
            position: relative;
            width: 100%;
            height: 100vh;
            /* background-repeat: no-repeat;
            background: ;
            background-size: cover; */

        }

        .parallax-2-container {
            position: relative;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            width: 100%;
            height: 100vh;
            background-position-x: center;
        }

        .parallax-2-layer {
            /* position: absolute; */
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.1);
            /* background-image: url('dot-pattern.png'); */
            background-image: var(--grid-background-3);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-30px);
            }

            60% {
                transform: translateY(-15px);
            }
        }

        .parallax-2-arrow-holder {
            width: 100%;
            height: 60px;
            /* background-color: green; */
            display: flex;
            flex-direction: row;
            justify-content: center;
            -webkit-animation: bounce 2s infinite;
            -moz-animation: bounce 2s infinite;
            -ms-animation: bounce 2s infinite;
            animation: bounce 2s infinite;
        }

        .parallax-2-arrow {
            display: flex;
            color: rgba(255, 255, 255, 0.6);
            font-size: 19px;
            margin: 0;
            padding: 0;
            transition: color 0.2s;
        }

        .parallax-2-arrow:hover {
            display: flex;
            color: rgba(255, 255, 255, 0.6);
            font-size: 19px;
            cursor: pointer;
            color: var(--service-parallax-arrow-hover);
            margin: 0;
            padding: 0;
        }