HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
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/zaklada/html/lib/scss/core/_error.scss
.error {
  background: $color-white;
  padding: 60px 0;
  @media screen and (min-width: 992px) {
    padding: 133px 0 165px 0;
  }
}

.two-cols {
  display: flex;
  flex-direction: column;
  @media screen and (min-width: 992px) {
    flex-direction: row;
  }
  .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    order: 2;
    &:last-of-type {
      order: 1;
      margin-bottom: 60px;
    }
    @media screen and (min-width: 992px) {
      flex: 0 50%;
      padding: 50px 100px 50px 55px;
      border-right: 1px solid $color-black;
      order: 1;
      &:last-of-type {
        order: 2;
        border-right: none;
        padding: 50px 55px 50px 100px;
        margin-bottom: 0;
        // quick fix for img until I get a better version
        img {
          position: relative;
          top: -40px;
        }
      }
    }
    h1 {
      font-weight: 700;
      color: $color-blue-dark;
      margin: 0 0 17px 0;
      text-align: center;
      @media screen and (min-width: 992px) {
        margin: 0 0 45px 0;
        text-align: right;
      }
    }
    p {
      color: #313131;
      font-size: rem(16);
      line-height: 1.5;
      margin: 0 0 50px 0;
      font-weight: 400;
      text-align: center;
      @media screen and (min-width: 992px) {
        font-size: rem(20);
        margin: 0 0 55px 0;
        text-align: right;
      }
    }
  }
  &__btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    @media screen and (min-width: 992px) {
      justify-content: flex-end;
    }
  }
}