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

        }

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

        @media screen and (max-width: 1034px) {
            .parallax-2-container {
                background-size: cover !important;
            }
        }

        .parallax-2-layer {
            /* position: absolute; */
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.1);
            /* background-image: url('dot-pattern.png'); */
            display: flex;
            flex-direction: column;
            position: absolute;
            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: rgb(233, 45, 46, 0.6);
            margin: 0;
            padding: 0;
        }

        .parallax-2-text {
            display: flex;
            position: absolute;
            width: 100%;
            flex-direction: row;
            height: 100%;
            justify-content: center;
        }

        .parallax-2-text-column {
            display: flex;
            width: auto;
            height: 100%;
            align-self: center;
            flex-direction: column;
            justify-content: center;
            position: relative;
            /* overflow: auto; */
        }

        .parallax-2-text-column-wrapper {
            /* position: fixed; */
            top: 0;
            padding: 30px;
            z-index: 3;
            background-color: var(--alt-paralax-background);
            text-align: center;
        }

        .parallax-2-text-column-wrapper h1 {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            letter-spacing: 0px;
            text-transform: uppercase;
            color: #fff;
            font-size: 72px;
            white-space: pre-line;
            word-break: nowrap;
            margin: 0;
            padding: 0;
        }

        @media screen and (max-width: 1400px) {
            .parallax-2-text-column-wrapper h1 {
                font-size: 64px;
            }
        }

        @media screen and (max-width: 1111px) {
            .parallax-2-text-column-wrapper h1 {
                font-size: 50px;
            }
        }

        @media screen and (max-width: 815px) {
            .parallax-2-text-column-wrapper h1 {
                font-size: 34px;
            }
        }

        @media screen and (max-width: 575px) {
            .parallax-2-text-column-wrapper h1 {
                font-size: 24px;
            }
        }

        @media screen and (max-width: 410px) {
            .parallax-2-text-column-wrapper h1 {
                font-size: 17px;
            }
        }
		