/********************* SCREEN THREE BLOCK *********************/

.screen-three {
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-weight: 400;
    margin: 50px 0;
    top: -200px;
    opacity: 0;
    transition: 1s all;
}

.screen-three {
    top: 0px;
    opacity: 1;
}

.screen-three h1 {
    color: #00AFD4;
    font-weight: 400;
    font-size: 36px;
    margin: 0px 0px 50px 0px;
}

.screen-three .col-3 {
    width: 33.3333%;
    display: inline-block;
    vertical-align: top;
    margin: 0 -2px;
    padding: 15px 60px;
    box-sizing: border-box;
}

.screen-three .col-3 h2 {
    font-weight: 400;
}

.screen-three .col-3 p {
    line-height: 26px;
    font-size: 18px;
}

.screen-three .more-btn {
    text-decoration: none;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    background-color: #00AFD4;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.35);
    display: block;
    max-width: 150px;
    margin: 12px auto;
}

@media (max-width: 600px) {
    .screen-three .col-3 {
        padding: 15px 20px;
    }
}

/********************* SCREEN THREE BLOCK END *********************/