:root {
  --hover-width: 75%;
  --other-width: 25%;
  --bg-left-fill: #01a0dd94;
  --bg-right-fill: #8c764a94;
  --btn-left-hover: #002d47;
  --btn-right-hover: #150e03;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  height: 100vh;
  background-image: linear-gradient(
    105.3deg,
    rgba(30, 39, 107, 1) 21.8%,
    rgba(77, 118, 221, 1) 100.2%
  );
  font-size: 16px;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
}

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

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

.active--left .split--left .split-desc .split__btn--left {
  background-color: var(--btn-left-hover);
  border: none;
}
.active--right .split--right .split-desc .split__btn--right {
  background-color: var(--btn-right-hover);
  border: none;
}

.split {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  transition: all 0.6s;
}

.split__title {
  font-size: 52px;
  color: #fff;
  white-space: nowrap;
}

.split-desc {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.split__btn {
    padding: 18px 79px;
    background-color: #c1c2c233;
    border: 4px solid #fff;
    color: #fff;
    margin-top: 55px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 30px;
    text-transform: uppercase;
    border-radius: 40px 0px 40px 0px;
    backdrop-filter: blur(7px);
}

.btn--right{

    box-shadow: 10px 10px 0px 0px #9a8a63;
}

.btn--left{

    box-shadow: 10px 10px 0px 0px #00a0dd;
}

.split--left {
  left: 0;
  background-image: url('./sappco-min.png');
  background-repeat: no-repeat;
  background-size: cover;

}

.split--left::before {
  content: '';
  background-color: #005d817a;
  position: absolute;
  width: 100%;
  height: 100%;

  backdrop-filter: blur(1px);
}

.split--right {
  right: 0;
  background-image: url('./saptex-min.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--bg-right-fill);
  z-index: 2;
}

.split--right::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--bg-right-fill);
  backdrop-filter: blur(1px);
}


.overlay-bg {
    width: 100vw;
    height: 100vh;
    background: #00000070;
    position: relative;
    z-index: 2;
}


.overlay-bg2 {
    width: 50vw;
    height: 100vh;
    background: #00000087;
    position: relative;
    z-index: 2;
}


@media (max-width: 800px) {
  .split__title {
    font-size: calc(1vw + 1.8em);
  }

  .split__btn {
    padding: 15px 20px;
  }
}