.split {
    height: 75px;
    width: 1px;
    background-color: #fff;
    left: 50%;
    position: absolute;
    bottom: -25px;
}

.heros {
    height: 100vh;
    display: flex;
    flex-grow: 1;
    position: absolute;
    width: 100%;
    overflow: hidden;
}

.heros.model{
    clip-path: polygon(119% 0%, 89.5% 100%, 0% 100%, 0% 0%) !important;
    -webkit-clip-path: polygon(119% 0%, 89.5% 100%, 0% 100%, 0% 0%) !important;
}

.heros-items {
    display: flex;
    flex-grow: 1;
}

.heros-items .container {
    z-index: 2;
}

.heros-items-item {
    display: none;
    flex-grow: 1;
    flex-shrink: 0;
    background-size: cover;
    justify-content: center;
    background-position: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.heros-items-item::after {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

body.light .heros-items-item::after {
    background-color: rgba(255,255,255,0.5);
}

.heros-items-item-caption {
    margin-top: 20%;
    width: 40%;
}

.heros-items-item-caption-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: .5em;
}

.heros-items-item.active {
    display: flex;
}

.heros-controls {
    position: absolute;
    left: 3em;
    bottom: 2em;
    display: flex;
    align-items: center;
}

.heros-controls-control {
    border:1px solid #FFF;
    width: 1em;
    height: 1em;
    margin: 0 .5em 0 0;
    cursor: pointer;
}

.heros-controls-control.active {
    background-color: #FFF;
}

.request-information a {
    z-index: 6;
    position: absolute;
    bottom: -2em;
    right: 3em;
    background-color: #00CDFF;
    padding: 2em 3em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    clip-path: polygon(80% 0%, 100% 100%, 20% 100%, 0% 0%);
    -webkit-clip-path: polygon(80% 0%, 100% 100%, 20% 100%, 0% 0%);
}

.request-information a:hover {
    color: white;
}

.heros-items-item-video {
  width:100%;
  height: 100%;
}

#video {
  cursor: pointer;
  width: 100%;
}


.heros-items-item-video iframe {
  width:100%;
  height: 100%;
}



body.dis-phone .heros-items-item {
    justify-content: flex-end;
    align-items: flex-end;
}

body.dis-phone .heros-items-item-caption {
    margin: 0 0 40% 0;
    width: auto;
    padding: 0 1em;
}

body.dis-phone .heros-controls {
    left: 1em;
    bottom: 5em;
}

body.dis-phone .heros.model {
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 0%) !important;
    -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 0%) !important;
}

body.dis-phone .request-information a {
    right: 0;
    bottom: 0;
}