HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode-jobs/resources/sass/components/_stack.scss
.stack {
    background-color: #1F2830;
    color: #ffffff;
    padding-top: 25px;
    padding-bottom: 90px;

    @include breakpoint-down('lg') {
        padding-top: 30px;
        padding-bottom: 50px;
        margin-bottom: 20px;
    }

    @include breakpoint-down('sm') {
        padding: 15px 0 35px;
    }

    .container {
        h2 {
            color: #ffffff;
            text-align: center;

            @include breakpoint-down('sm') {
                text-align: left;
            }
        }
    }

    &-columns {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;

        @include breakpoint-down('lg') {
            justify-content: space-around;
            margin-top: 0;
        }

        @include breakpoint-down('sm') {
            flex-direction: column;
            align-items: center;
        }

        .column {
            width: 310px;

            @include breakpoint-down('lg') {
                width: 220px;
            }

            @include breakpoint-down('sm') {
                width: 100%;
                max-width: 320px;
            }

            p {
                font-size: 18px;
                font-weight: 400;
                line-height: 21px;
                margin-top: 10px;

                @include breakpoint-down('lg') {
                    font-size: 16px;
                    margin-top: 10px;
                }

                strong {
                    font-weight: normal;
                    color: #E62334;
                }

                b {
                    font-weight: 600;
                }
            }

            h3 {
                font-size: 24px;
                font-weight: 700;
                margin-top: 15px;

                @include breakpoint-down('sm') {
                    font-size: 21px;
                    line-height: 21px;
                }
            }
        }
    }

    &-button {
        width: 310px;
        height: 60px;
        margin: 65px auto 0;
        background-color: #759CB1;
        box-shadow: 0 14px 18px -20px #80C2FF;
        border-radius: 30px;

        @include breakpoint-down('lg') {
            margin-top: 30px;
        }

        a {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            color: #FFFFFF;
        }
    }
}