@charset "utf-8";

:root {
    --container-bg-color: #333;
    --left-bg-color: rgba(0, 172, 237, 0.7);
    --left-button-hover-color: rgba(0, 142, 195, 0.8);
    --right-bg-color: rgba(11, 74, 114, 0.5);
    --right-button-hover-color: rgba(0, 50, 82, 0.9);
    --hover-width: 75%;
    --other-width: 25%;
    --hover-height: 75%;
    --other-height: 25%;
    --speed: 1000ms;
  }
  
  html, body {
    padding:0;
    margin:0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.split-block {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px;
}

  .split-area img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto 10px;
}
  
.split-area span {
    display: block;
    color: #fff;
    font-size: 18px;
    margin: 0 auto 40px;
}
  
  .split-btn {
    display: block;
    width: 100%;
    max-width: 170px;
    padding: 12px 30px;
    margin: 20px auto;
    text-align: center;
    color: #fff;
    border: 2px solid #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s;
  }

  .split-btn:hover {
    color: #fff;
  }
  
  .split-left .split-btn:hover {
    background-color: var(--left-button-hover-color);
    border-color: var(--left-button-hover-color);
  }
  
  .split-right .split-btn:hover {
    background-color: var(--right-button-hover-color);
    border-color: var(--right-button-hover-color);
  }
  
  .main-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--container-bg-color);
  }
  
  .split-area {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }
  
  .split-left {
    left:0;
    background: url('/qrlink/qrlink-bg-1.jpg') center center no-repeat;
    background-size: cover;
  }
  
  .split-left:before {
    position:absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--left-bg-color);
  }
  
  .split-right {
    right:0;
    background: url('/qrlink/qrlink-bg-2.jpg') center center no-repeat;
    background-size: cover;
  }
  
  .split-right:before {
    position:absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--right-bg-color);
  }
  
  .split-left, .split-right, .split-right:before, .split-left:before {
    transition: var(--speed) all ease-in-out;
  }
  
  .hover-left .split-left {
    width: var(--hover-width);
  }
  
  .hover-left .split-right {
    width: var(--other-width);
  }
  
  .hover-left .split-right:before {
    z-index: 2;
  }
  
  
  .hover-right .split-right {
    width: var(--hover-width);
  }
  
  .hover-right .split-left {
    width: var(--other-width);
  }
  
  .hover-right .split-left:before {
    z-index: 2;
  }

  @media(max-width: 991px) {
    .split-area {
        width: 100%;
        height: 50%;
    }
    .split-left {
        top: 0;
        left: auto;
    }
    .split-right {
        bottom: 0;
        right: auto;
    }
    .hover-left .split-left {
        width: 100%;
        height: var(--hover-height);
    }
      
      .hover-left .split-right {
        width: 100%;
        height: var(--other-height);
    }
    .hover-right .split-right {
        width: 100%;
        height: var(--hover-height);
    }
      
      .hover-right .split-left {
        width: 100%;
        height: var(--other-height);
    }
  }

  @media(max-width: 480px) {
    .split-area span {
        font-size: 16px;
    }
  }