:root {
    --heading-color: #293462;
    --para-color: #555555;
    --theme-color: #fe5f55;
    --theme-hover-color: #333;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body,
  html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 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;
  }
  
  .error-block {
    padding: 30px 20px;
    text-align: center;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    /* min-height: 100vh; */
    align-items: center;
    background: var(--bg-color);
    /* background: rgba(76, 77, 32, 0.1); */
    /* background: #fff1c1; */
  }
  
  .error-block a.brand-logo {
    color: var(--heading-color);
    text-transform: capitalize;
    font-size: 0.5rem;
    line-height: 0.5rem;
    font-weight: 600;
  }
  .error-block h2 {
    color: #fff;
    font-size: 1.56rem;
    margin: 0;
    line-height: .8em;
    font-weight: bold;
    margin-top: -0.8rem;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(transparent, transparent);
    background: url(../img/bg.jpg) repeat 0px 0px;
    background-size: contain;
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
  }
  
  .error-block .right-grid {
    text-align: center;
    padding: 70px 0px;
  }
  
  .error-block h3 {
       /* text-transform: uppercase; */
       font-size: 0.3rem;
       margin-top: 20px;
       width: 14rem;
       color: var(--heading-color);
       font-weight: 400;
       margin: 0 auto;
       margin-top: 0.2rem;
  }
  
  .error-block a.home {
    font-size: 0.26rem;
    background: #365ac1;
    color: #fff;
    padding: 0.34rem 0.35rem;
    display: inline-block;
    border-radius: 0.05rem;
    line-height: 0.25rem;
    margin-top: 0.4rem;
  }
  
  .error-block a.home:hover {
    background: var(--theme-hover-color);
  }
  
  .error-block .copyright a {
    color: var(--heading-color);
  }
  
  .error-block .copyright a:hover {
    color: var(--theme-color);
  }
  
  
  
  
  
  
  
  /* animation effect */
  .shape-wthree {
    -webkit-animation: fa-spin 5s infinite linear;
    -moz-animation: fa-spin 5s infinite linear;
    -ms-animation: fa-spin 5s infinite linear;
    -o-animation: fa-spin 5s infinite linear;
    animation: fa-spin 5s infinite linear;
  }
  
  img.shape-w3-one {
    position: absolute;
    top: 30%;
    right: 5%;
    z-index: 1;
  }
  
  img.shape-w3-two {
    position: absolute;
    bottom: 30%;
    right: 5%;
    z-index: 1;
  }
  
  img.shape-w3-three {
    position: absolute;
    top: 10%;
    right: 20%;
    z-index: 1;
  }
  
  img.shape-w3-four {
    position: absolute;
    bottom: 10%;
    right: 20%;
    z-index: 1;
  }
  
  img.shape-w3-five {
    position: absolute;
    top: 30%;
    left: 5%;
    z-index: 1;
  }
  
  img.shape-w3-six {
    position: absolute;
    bottom: 30%;
    left: 5%;
    z-index: 1;
  }
  
  img.shape-w3-seven {
    position: absolute;
    top: 10%;
    left: 20%;
    z-index: 1;
  }
  
  img.shape-w3-eight {
    position: absolute;
    bottom: 10%;
    left: 20%;
    z-index: 1;
  }
  
  img.shape-w3-nine {
    position: absolute;
    bottom: 10%;
    z-index: 1;
  }
  
  img.shape-w3-ten {
    position: absolute;
    top: 10%;
    z-index: 1;
  }
  
  img.shape-w3-eleven {
    position: absolute;
    top: 49%;
    right: 15%;
    z-index: 1;
  }
  
  img.shape-w3-twelve {
    position: absolute;
    top: 49%;
    left: 15%;
    z-index: 1;
  }
  
  /* //animation effect */