/*
=======================================================================================================================
  Split Screen
=======================================================================================================================
*/

section.splitscreen {
  overflow: hidden;
  padding: 0;
}

section.splitscreen .col {
  position: relative;
  z-index: 1;
}

section.splitscreen .col:before {
  content: '';
  width: 50.1vw;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: inherit;
  background-color: #e5efeb;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  background-attachment: inherit;
}

section.splitscreen .splitscreen-border-left:before {
  border-bottom-left-radius: 35px; border-top-left-radius: 35px;
}

section.splitscreen .splitscreen-border-right:before {
  border-bottom-right-radius: 35px; border-top-right-radius: 35px;
}

section.splitscreen .col:nth-child(1):before {
  right: 0;
}

section.splitscreen .col:nth-last-child(1):before {
  left: 0;
}

section.splitscreen .col.splitscreen-image { margin: 50px 0; z-index: 2;}

section.splitscreen .col.splitscreen-text { padding: 120px 50px 135px 50px; z-index: 1; }
section.splitscreen .col.splitscreen-text:nth-child(1) { padding-left: 0px; }
section.splitscreen .col.splitscreen-text:nth-last-child(1) {padding-right: 0px; }

section.splitscreen .col.splitscreen-text:nth-child(1)::before { right: -100px; width: calc(50.1vw + 100px); }
section.splitscreen .col.splitscreen-text:nth-last-child(1):before { left: -100px; width: calc(50.1vw + 100px); }

/*
=======================================================================================================================
  Media Queries
=======================================================================================================================
*/

/* Tablet
====================================================================== */
@media only screen and (min-width: 900px) and (max-width: 1280px) {

}

/* Phablet & Phone
====================================================================== */
@media all and (max-width: 599px), (min-width: 600px) and (max-width: 899px) {

section.splitscreen .splitscreen-border-left:before {
  border-bottom-left-radius: 0; border-top-left-radius: 0;
}

section.splitscreen .splitscreen-border-right:before {
  border-bottom-right-radius: 0; border-top-right-radius: 0;
}

section.splitscreen .col.splitscreen-image { margin: 0; z-index: 2;}

section.splitscreen .col.splitscreen-text:nth-child(1)::before {right: 0!important; width: calc(100.1vw + 0px); }
section.splitscreen .col.splitscreen-text:nth-last-child(1):before {left: 0!important; width: calc(100.1vw + 100.1vw); }
	
section.splitscreen .col:before,
section.splitscreen .col:nth-child(1):before,
section.splitscreen .col:nth-last-child(1):before {
    width: 100.1vw;
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);}
	
 section.splitscreen .col.splitscreen-text, section.splitscreen .col.splitscreen-text:nth-child(1), section.splitscreen .col.splitscreen-text:nth-last-child(1) {
    padding: 25px 0 50px;}

}