.section-background {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
    /*min-height: 400px;*/
    height: 100%;
}

.homepage-section-banner{
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
    min-height: 400px;
}

.bg-video-wrapper {
    display: inline-block;
    border-radius: 30px;
    overflow: hidden;
}
.bg-video-wrapper iframe {
    border:none;
}

.bg-video {
    height: 230px;
}

.homepage-content {
    width: 100%;
}

.youtube-embed {
    width: 100%;
}

.video-heading {
    font-family: "Open Sans", "Times New Roman", Time, SansSerif;
    font-size: 18px;
    padding: 0 0 10px 0;
    font-weight: 600;
    color: #063534;
}

.video-caption {
    font-family: "Open Sans", "Times New Roman", Time, SansSerif;
    font-size: 16px;
    padding: 10px 0 10px 0;
    font-weight: 100;
}

.section-heading {
    font-family: "Open Sans", "Times New Roman", Time, SansSerif;
    font-size: 32px;
    padding: 50px 0;
    font-weight: 600;
    line-height: 40px;
}

img.section-image {
    height: 400px;
}

.section-two-content {
    padding: 10px 0;
    margin-bottom: 20px;
    background-image: linear-gradient(to top, #0c6a68, #007177, #007986, #018096, #1886a5);
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    color: #FFF;
}

.section-arrow {
    height: 75px;
    border: 5px solid #4DB4C8;
    border-radius: 50%;
    width: 20%;
}

.section-three {
    background-color: #F4FDFF;
    padding-bottom: 20px;
}

img.element-icon {
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section-three-content-wrapper {
    padding: 20px 0;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .section-two-content {
        transition: all .2s ease-in-out;
    }

    .section-two-content:hover{
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        cursor: pointer;
    }

    .section-three-content-wrapper {
        display: flex;
        transition: all .2s ease-in-out;
    }

    .section-three-content-wrapper:hover {
        cursor: pointer;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    .homepage-content {
        width: 50%;
    }

    .youtube-embed {
        width: 50%;
    }
}