/*
Author: W3layouts
Author URL: http://w3layouts.com
*/
:root {
    --para-color: #555555;
    --theme-color: #fff;
    --theme-hover-color: #333;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body,
  html {
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .d-grid {
    display: grid;
  }
  
  .d-flex {
    display: flex;
    display: -webkit-flex;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  button,
  input,
  select {
    -webkit-appearance: none;
    outline: none;
  }
  
  button,
  .btn,
  select {
    cursor: pointer;
  }
  
  a {
    text-decoration: none;
  }
  
  iframe {
    border: none;
  }
  
  ul {
    margin: 0;
    padding: 0
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
    padding: 0
  }
  
  p {
    color: #444;
    font-size: 16px;
    line-height: 24px;
  }
  
  .p-relative {
    position: relative;
  }
  
  .p-absolute {
    position: absolute;
  }
  
  .p-fixed {
    position: fixed;
  }
  
  .p-sticky {
    position: sticky;
  }
  
  .btn,
  button,
  .actionbg,
  input {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
  }
  
  .btn,
  button,
  .btn:hover,
  button:hover {
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
  }
  
  /*--------------------
  Page
  --------------------*/
  .page {
    position: absolute;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /*--------------------
  Content
  --------------------*/
  .content {
    text-align: center;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    min-height: 100vh;
    align-items: center;
    padding: 30px 15px;
  }
  
  .w3l-error-grid {
    margin: 0px auto;
    max-width: 850px;
    text-align: center;
    padding: 1em;
  }
  
  .content h1 {
    font-weight: 700;
    font-size: 175px;
    color: #eee;
    opacity: .4;
  }
  
  .content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #eee;
    font-weight: 500;
  }
  
  .content p {
    font-size: 16px;
    color: #ccc;
    line-height: 24px;
    margin-top: 10px;
  }
  
  .content a.home {
    display: inline-block;
    font-size: 16px;
    border: 2px solid #CDD4DE;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    color: #CDD4DE;
    margin-top: 50px;
  }
  
  .content a.home:hover {
    background: rgba(152, 152, 152, 0.15);
    border: 2px solid #fff;
    background: #fff;
    color: #333;
  }
  
  .copy-right p {
    color: #aaa;
  }
  
  .copy-right p a {
    color: #fff;
  }
  
  .copy-right p a:hover {
    color: #888;
  }
  
  a.brand-logo {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 35px;
    line-height: 40px;
    border: none;
    background: none;
    padding: 0px;
    text-transform: uppercase;
  }
  
  /*--------------------
  Image
  --------------------*/
  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(1.1);
  }
  
  
  @media (max-width: 991px) {
    .content h1 {
      font-size: 120px;
    }
  }
  
  @media (max-width: 568px) {}
  
  @media (max-width: 440px) {
    .content {
      padding-bottom: 20px;
      padding-top: 20px;
    }
  
    a.brand-logo {
      font-size: 30px;
      line-height: 35px;
    }
  
    .content h1 {
      font-size: 100px;
    }
  
    .content p {
      font-size: 15px;
    }
  }