/********************* SCREEN FOUR BLOCK *********************/

.screen-four {
    position: relative;
    height: calc(100vh - 160px);
    width: 100%;
    text-align: center;
}

/*
.screen-four:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .50)
}
*/
.screen-four .testimonial {
    position: absolute;
    height: 100%;
    width: 100%;
}

.screen-four .testimonial.invisible {
    display: none;
}

.screen-four video {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}

.screen-four .quote-screen {
    position: absolute;
    color: #fff;
    font-weight: 100;
    font-size: 36px;
    width: 100%;
    z-index: 100;
    position: relative;
    opacity: 0;
    transition: 1s all;
}

@media (max-width: 600px) {
    .screen-four .quote-screen {
        width: 100%;
    }
}

.screen-four.active .quote-screen {
    opacity: 1;
}

.screen-four.active .quote-screen.invisible {
    display: none;
}

.screen-four .quote-screen blockquote {
    width: 60%;
    margin: 1em auto
}

.screen-four .quote-screen blockquote p {
    font-weight: 300;
}

.screen-four .quote-screen .play-btn {
    opacity: 1;
}

.screen-four .quote-screen .play-btn img {
    cursor: pointer;
}

@media (max-width: 600px) {
    .screen-four .quote-screen blockquote {
        width: 100%;
    }
}

.screen-four .quote-screen footer {
    color: #ccc;
    font-size: 16px;
    font-style: italic;
    margin-top: 1em;
    background-color: transparent;
    border: none
}

.screen-four .author-container {
    position: absolute;
    bottom: -72px;
    width: 60%;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 100;
}

@media (max-width: 600px) {
    .screen-four .author-container {
        width: 100%;
    }
}

.screen-four .author-container .col-4 {
    width: 20%;
    display: inline-block;
    vertical-align: middle;
    margin: -2px;
}

.screen-four .author-container .figure {
    
}

.screen-four .author-container .figure img {
    border-radius: 100%;
    width: 82px;
    height: 82p
    overflow: hidden;
    border: 2px solid #fff;
    margin: 0px auto;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .screen-four .author-container .figure img {
        width: 62px;
        height: 62px;
    }
}

.screen-four .author-container .author-comp { 
    text-align: center;
}

.screen-four .author-container .author-comp img {
    max-width: 80%;
    max-height: 20px;
}

.compensation {
    height: 122px;
    background-color: #f3f3f3;
    border-bottom: 1px solid #ddd;
}

/********************* SCREEN FOUR BLOCK END *********************/