.sc-error
{
  padding: 100px;
  height: 110vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  .sc-error-wrapper
  {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
    .sc-error-text-inner
    {
      width: 50%;
      .sc-error-text
      {
        h1
        {
          text-transform: uppercase;
          font-weight: bolder;
          color: #6db9f7;
        }
        h2
        {
          text-transform: uppercase;
          font-weight: bolder;
          color: #1d5d92;
        }
        h3
        {
          text-transform: uppercase;
          font-weight: bolder;
          color: #1d5d92;
        }
        .sc-error-btn
        {
          padding-top: 30px;
          a
          {
            width: 600px;
            font-weight: bolder;
            text-decoration: none;
            color: #ffffff;
            background-color: #1d5d92;
            padding-block: 20px;
            padding-inline: 30px;
            text-transform: uppercase;
          }
        }
      }
    }
    .sc-error-image-inner
    {
      width: 50%;
      display: flex;
      justify-content: center;
      .sc-error-image
      {
        width: 600px;
        height: 600px;
        overflow: hidden;
        img
        {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
    }
  }
}

.sc-error::before
{
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/v2/images/errors/world-map.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

@media screen and (max-width: 575px)
{
  .sc-error
  {
    padding: 12px;
    padding-block: 50px;
    height: auto;
    .sc-error-wrapper
    {
      .sc-error-text-inner
      {
        width: 100% !important;
        padding-bottom: 100px;
        text-align: center;
      }
      .sc-error-image-inner
      {
        width: 100% !important;
        .sc-error-image
        {
          width: 100%;
          height: auto;
        }
      }
    }
  }
}
  