body {
    font-family: "Montserrat", sans-serif;
    background-image: url("/assets/images/random/background-8.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
  }
  
  .loader-wrapper {
    height: 100vh;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffffff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    z-index: 9;
    top: 0;
  }
  
  .loader {
    border: 16px solid #111;
    border-radius: 50%;
    border-top: 16px double #273a5d;
    border-bottom: 16px double #273a5d;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  /*==============
    [01] Page css
  =================*/
  #canvas {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .page-section .water-bg {
    height: 100vh;
  }
  .page-section .water-bg .particles-js-canvas-el {
    position: absolute;
  }
  .page-section .content-detail {
    margin: auto;
    /* max-width: 450px; */
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-section .content-detail .sub-title, .page-section .content-detail .detail-text {
    display: block;
    color: #fff;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .page-section .content-detail .sub-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 30px;
  }
  .page-section .content-detail .global-title {
    display: block;
    color: #fff;
    font-size: 75px;
    font-weight: 800;
    opacity: 0.5;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .page-section .content-detail .global-title span {
    -webkit-animation: animateblur 1s linear forwards;
            animation: animateblur 1s linear forwards;
  }
  .page-section .content-detail .global-title span:nth-child(1) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .page-section .content-detail .global-title span:nth-child(2) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .page-section .content-detail .global-title span:nth-child(3) {
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
  @-webkit-keyframes animateblur {
    0% {
      opacity: 0;
      -webkit-filter: blur(10px);
              filter: blur(10px);
    }
    100% {
      opacity: 1;
      -webkit-filter: blur(0px);
              filter: blur(0px);
    }
  }
  @keyframes animateblur {
    0% {
      opacity: 0;
      -webkit-filter: blur(10px);
              filter: blur(10px);
    }
    100% {
      opacity: 1;
      -webkit-filter: blur(0px);
              filter: blur(0px);
    }
  }
  .page-section .content-detail .back-btn {
    margin-top: 15px;
    z-index: 5;
  }
  .page-section .content-detail .back-btn .btn {
    padding: 8px 15px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    font-size: 14px;
  }
  .page-section .content-detail .back-btn .btn:hover {
    background-color: #5076db;
    color: #fff;
  }
  /*# sourceMappingURL=error-page.css.map */