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/_banking.scss
.banking {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    margin-top: 30px;

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

    @include breakpoint-down('sm') {
        flex-direction: column;
        margin-top: 30px;
    }

    &-img {
        width: 435px;
        height: 435px;
        background-image: url("../../../public/files/banking1.png");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 45px;
        flex-shrink: 0;

        @include breakpoint-down('lg') {
            width: 342px;
            height: 342px;
            background-size: cover;
            margin-left: 25px;
            position: relative;
            right: -22px;
        }

        @include breakpoint-down('sm') {
            width: 342px;
            height: 342px;
            position: relative;
            margin-left: 0;
            right: 0;
        }
    }

    &-content {
        width: calc(72% - 480px);

        @include breakpoint-down('md') {
            width: calc(100% - 480px);
        }

        @include breakpoint-down('sm') {
            margin-top: 25px;
            width: auto;
        }

        .subtitle {
            width: 341px;
            margin-top: 20px;

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

            @include breakpoint-down('sm') {
                width: 320px;
                margin-top: 10px;
            }
        }
    }
}