/*
11 Hospital app landing
-------------------------*/

.banner-app-wrap {
    padding: 50px 0 0;
    overflow: hidden;
    /*background: url(../images/app-bg.jpg);*/
    background: darken($theme-color, 0%) url(../images/thought-bg.png);
    background-size: cover;
    display: block;
    position: relative;
    min-height: 600px;
    .app-banner-content-wrap {
        position: relative;
        color: $white-color;
        padding-top: 80px;
        h2 {
            font-weight: 100;
            line-height: 45px;
        }
        .right-img {
            /*padding-top: 50px;*/
            position: relative;
            margin: auto;
            top: 0;
            right: 0;
            left: 0;
            bottom: -50px;
            display: block;
        }
        .app-banner-content {
            margin: 80px 0 50px;
            position: relative;
            display: block;
            .btn-app-wrap {
                position: relative;
                margin: 30px 0;
                span {
                    display: inline-block;
                    margin-right: 20px;
                }
            }
        }
    }
}

.app-heading {
    display: inline-block;
    max-width: 650px;
    clear: both;
    width: 100%;
    padding: 25px 0;
    h2 {
        margin-top: 10px;
        font-weight: bold;
    }
    span {
        color: $footer-text;
        font-size: 17px;
        font-weight: bold;
    }
}

.app-about-section-wrap {
    position: relative;
    padding: 50px 0;
    .app-about-block {
        position: relative;
        display: block;
        text-align: center;
        margin-bottom: 50px;
        &:hover {
            .icon-show {
                background: $theme-color;
                i {
                    color: $white-color;
                }
            }
        }
        .icon-show {
            width: 125px;
            height: 125px;
            background: $dimline-color;
            @include border-radius(100%);
            @include transition(all 0.5s ease-in-out 0s);
            position: relative;
            display: inline-block;
            text-align: center;
            i {
                position: absolute;
                height: 30px;
                width: 30px;
                font-size: 30px;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto;
            }
        }
    }
}

.app-video-wrap {
    display: block;
    background: darken($theme-color, 40%) url(../images/thought-bg.png);
    background-size: cover;
    .video-discription {
        color: $white-color;
        padding: 50px;
        h2 {
            font-weight: 100;
        }
    }
}

.app-video-block {
    width: 100%;
    position: relative;
    #play-video {
        position: absolute;
        cursor: pointer;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        top: 0;
        background-size: cover;
        background-image: url(../images/banner-bg.jpg);
        background-size: cover;
        &:after {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            background: rgba($theme-color, 0.5);
            content: "";
            z-index: 0;
        }
        i {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            top: 0;
            margin: auto;
            width: 50px;
            height: 50px;
            z-index: 99;
            font-size: 50px;
            color: $white-color;
            cursor: pointer;
        }
        &:before {
            position: absolute;
            z-index: 999;
            left: 0;
            right: 0;
            bottom: 0;
            display: block;
            top: 0;
            background: rgba($black-color, 0.7);
            z-index: 9999;
            width: 100%;
            height: 100%;
        }
    }
}

.app-feature-wrap {
    position: relative;
    display: block;
    padding: 50px 0;
    .feature-right-icon {
        display: inline-block;
        width: 100%;
        clear: both;
        list-style: none;
        margin: 0;
        padding: 0;
        li {
            position: relative;
            display: inline-block;
            width: 100%;
            clear: both;
            padding-bottom: 25px;
            .feature-cont {
                @include calc(width, '100% - 60px');
                @include box-sizing(border-box);
                padding-right: 20px;
                position: relative;
                float: left;
                text-align: right;
            }
            .feature-icon {
                width: 60px;
                height: 60px;
                background: $dimline-color;
                @include border-radius(100%);
                @include transition(all 0.5s ease-in-out 0s);
                position: relative;
                display: inline-block;
                float: right;
                text-align: center;
                i {
                    position: absolute;
                    height: 20px;
                    width: 20px;
                    font-size: 20px;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                }
            }
            &:hover {
                .feature-icon {
                    background: $theme-color;
                    i {
                        color: $white-color;
                    }
                }
            }
        }
    }
    .feature-left-icon {
        display: inline-block;
        width: 100%;
        clear: both;
        list-style: none;
        margin: 0;
        padding: 0;
        li {
            position: relative;
            display: inline-block;
            clear: both;
            padding-bottom: 25px;
            width: 100%;
            .feature-cont {
                @include calc(width, '100% - 60px');
                @include box-sizing(border-box);
                padding-left: 20px;
                position: relative;
                float: right;
            }
            .feature-icon {
                width: 60px;
                height: 60px;
                background: $dimline-color;
                @include border-radius(100%);
                @include transition(all 0.5s ease-in-out 0s);
                position: relative;
                display: inline-block;
                float: left;
                text-align: center;
                i {
                    position: absolute;
                    height: 20px;
                    width: 20px;
                    font-size: 20px;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                }
            }
            &:hover {
                .feature-icon {
                    background: $theme-color;
                    i {
                        color: $white-color;
                    }
                }
            }
        }
    }
}

.app-pricing-plan-wrap {
    position: relative;
    background: url(../images/app-plan-bg.jpg);
    background-size: cover;
    display: block;
    min-height: 500px;
    padding: 50px 0;
    .app-heading {
        color: $white-color;
    }
    .hc-overlay {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba($black-color, 0.8);
        text-indent: -9999px;
        z-index: 0;
    }
    .app-plan-block {
        display: block;
        background: $white-color;
        padding: 0 0 50px 0;
        .plan-header {
            min-height: 210px;
            display: block;
            background: $theme-color;
            color: $white-color;
            padding: 30px;
            text-align: center;
            .app-price {
                display: inline-block;
                font-size: 25px;
                font-weight: bold;
                font-family: raleway;
                margin-top: 40px;
            }
        }
        .plan-list {
            list-style: none;
            overflow: hidden;
            padding: 0;
            margin: 0;
            li:nth-child(odd) {
                background: $dimline-color;
            }
            li:nth-child(even) {
                background: transparent;
            }
            li {
                line-height: 40px;
                border-bottom: 1px solid $dimline-color;
                padding: 0 15px;
                clear: both;
                display: block;
                width: 100%;
                overflow: hidden;
                span {
                    font-size: 15px;
                    font-weight: bold;
                }
                .plan-left {
                    display: inline-block;
                    float: left;
                }
                .plan-right {
                    display: inline-block;
                    float: right;
                }
            }
        }
        .btn-app-footer {
            display: block;
            clear: both;
            padding: 50px 0 0px;
            text-align: center;
        }
    }
}

.join-usfor-app {
    position: relative;
    padding: 50px 0;
    display: block;
    overflow: hidden;
}
