@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");


#split-screen {
  height: 100%;
  font-family: "Poppins", sans-serif;
  position:fixed;
  top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
#split-pane-logo {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 20px;
}
#split-pane-logo > div {
  width: 170px;
}
.web-side {
  background-image: url("../img/web-5.jpg");
  color: #000;
}

.it-side {
  background-image: url("../img/it-6.jpg");
  color: white;
}
.web-side .button {
  color: #000;
  border: 2px solid #000;
}
.web-side .button:hover{
    background:#000 !important;
    color:#fff !important;
    border-color:#000 !important;
}
.it-side .button {
  color: #fff;
  border: 2px solid #fff;
}
.split-pane {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 50%;
}
.split-pane > div {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.split-pane .text-content {
  line-height: 1.6em;
  width: 70%;
  margin: 0 auto 1em;
}
.split-pane p {
  line-height: 1.2;
  margin: 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.split-pane a.button {
  font-weight: 500;
  background: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 10px;
  padding: 20px 56px;
  font-size: 18px;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
}
.split-pane a.button:hover {
  text-decoration: none;
  background-color: white;
  border-color: white;
  cursor: pointer;
  color: #000;
}
.big {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 0.8;
}
@media (max-width: 767px){
    #split-pane-logo{
        padding: 10px 20px 0;
    }
    #split-pane-logo > div {
        width: 100px;
    }
    .split-pane .text-content {
        width: 90%;
    }
    .big{
        font-size:36px;
    }
    .split-pane p{
        font-size:16px;
    }
    .split-pane a.button{
        padding: 10px 36px;
        font-size: 14px;
    }
}
@media (max-width:375px){
    #split-pane-logo > div {
        width: 75px;
    }
    .big {
        font-size: 26px;
    }
    .split-pane p {
        font-size: 12px;
        margin: 10px 0;
    }
    .split-pane a.button {
        font-size: 12px;
    }
}
@media (min-width: 500px) {
     #split-screen .col-sm-6 {
    width: 50%;
  }
  .split-pane {
    height: 100%;
  }
}
