:root {
  --container-bg-color: #333;
  --left-bg-color: rgba(83, 83, 83, 0.8);
  --left-button-hover-color: rgba(161, 11, 11, 0.3);
  --right-bg-color: rgba(83, 83, 83, 0.8);
  --right-button-hover-color: rgba(92, 92, 92, 0.3);
  --hover-width: 75%;
  --other-width: 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;
}

h1 {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.button {
  display: block;
  position: absolute;
  left: 50%;
  padding: 4px 10px;
  text-align: center;
  color: #FFFFFF;
  border: #FFFFFF 1px solid;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  transform: translateX(-50%);
  top: 140%;
}

/*
.split.left .button
{
    top: 140%;    
}

.split.right .button
{
    top: 140%;    
}*/

.logo {
    width: 100%;
    height: 100%;
}

.split.left .button:hover {
  /*background-color: var(--left-button-hover-color);
  border-color: var(--left-button-hover-color); */
    background: #FFFFFF;
    color: #000000;  
}

.split.right .button:hover {
/*  background-color: var(--right-button-hover-color);
  border-color: var(--right-button-hover-color);*/
    background: #FFFFFF;
    color: #000000;    
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  /*background: var(--container-bg-color);*/
}

.split {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.split.left {
  left:0;
  background: rgba(255, 255, 255, 1) url('img/project.jpg') center center no-repeat;
  background-size: cover;  
  /* opacity: 0.4;
  filter: alpha(opacity=100); */
}

.split.left:before {
  position:absolute;
  content: "";
  width: 100%;
  height: 100%;
  /*background: var(--left-bg-color);*/
}

.split.right {
  right:0;
  background: url('img/sourcing_agent.jpg') center center no-repeat;
  background-size: cover;
  background-blend-mode: screen; 
}

.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 .left {
  width: var(--hover-width);
}

.hover-left .right {
  width: var(--other-width);
}

.hover-left .right:before {
  z-index: 2;
}


.hover-right .right {
  width: var(--hover-width);
}

.hover-right .left {
  width: var(--other-width);
}

.hover-right .left:before {
  z-index: 2;
}
