
/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

#section-1 {
    margin-top: 0px;
    height: 100vh;
    min-height: 700px;
    color: #fff;
    background-color: #222;
    position: relative;
}

    #section-1 .content-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

        #section-1 .content-slider input {
            display: none;
        }

        #section-1 .content-slider .slider {
            position: relative;
            width: inherit;
            height: inherit;
            overflow: hidden;
        }

            #section-1 .content-slider .slider .banner {
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0;
                z-index: 0;
                width: inherit;
                height: inherit;
                text-align: center;
                background-repeat: no-repeat;
                background-position: 50% 50%;
                transition: all 0.5s ease;
            }

    #section-1 .more-info {
        margin-top: 20px;
        background-color: #fff;
        padding: 30px 60px;
        border-radius: 61px;
        position: absolute;
        width: 80%;
        left: 10%;
        bottom: 130px;
        display: inline-block;
    }
        #section-1 .more-info i {
            color: #ff0000;
            font-size: 20px;
            width: 60px;
            height: 60px;
            display: inline-block;
            text-align: center;
            line-height: 22px;
            border: 1px solid #ff0000;
            border-radius: 50%;
            float: left;
            margin-right: 20px;
        }

        #section-1 .more-info h4 {
            text-align: left;
            font-size: 20px;
            color: #ff0000;
            font-weight: 700;
            line-height: 22px;
        }

            #section-1 .more-info h4 span {
                font-size: 15px;
                color: #000000;
                font-weight: 400;
            }

    #section-1 .main-button {
        margin-top: 8px;
        text-align: right;
    }

        #section-1 .main-button a {
            background-color: #fff;
            border-color: #fff;
            color: #05108d;
            text-decoration:none;
        }

        #section-1 .main-button a:hover {
            background-color: #fff;
            border-color: #ff0000;
            color: #ff0000;
            font-size:18px;
        }

    #section-1 .content-slider .slider .banner .banner-inner-wrapper {
        height: 100%;
        box-sizing: border-box;
    }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper .main-caption {
            position: absolute;
            width: 100%;
            top: 20%;
            transform: translateY(-50%);

        }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
            font-weight: 500;
            font-size: 20px;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing:2px;
        }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
            font-size: 50px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 30px;
        }

        #section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a:hover {
            color: #ff0000;
            border-color: #ff0000;
            transition: 0.3s;
        }

    #section-1 .content-slider .slider #top-banner-1 {
        background: url('../../images/generalimg/login2.jpg') no-repeat center center;
        background-size: cover;
    }

    #section-1 .content-slider .slider #top-banner-2 {
        background: url('../../images/bg/Blue_bg5.jpg') no-repeat center center;
        background-size: cover;
    }

    #section-1 .content-slider .slider #top-banner-3 
    {
        background: url('../../images/generalimg/login1.jpg') no-repeat center center;
        background-size: cover;
    }

    #section-1 .content-slider .slider #top-banner-4 {
        background: url('../../images/generalimg/bg5.jpg') no-repeat center center;
        background-size: cover;
    }

    #section-1 .content-slider nav 
    {
        position: absolute;
        bottom: 30px;
        width: 100%;
        z-index: 10;
        text-align: center;
    }

        #section-1 .content-slider nav .controls {
            display: block;
            width: 70%;
            margin: 0 auto;
            font-family: Montserrat, sans-serif;
            color: #fff;
        }

            #section-1 .content-slider nav .controls label {
                position: relative;
                display: inline-block;
                width: 19.5%;
                height: 3.1em;
                overflow: hidden;
                margin: 0 1em;
                padding-top: 1em;
                text-align: left;
                text-transform: uppercase;
                font-family: Montserrat, sans-serif;
                font-size: 1em;
                color: #f6eac5;
                font-weight: 400;
                cursor: pointer;
                transition: all 0.3s;
            }

                #section-1 .content-slider nav .controls label .progressbar {
                    position: absolute;
                    top: 0;
                    left: 0;
                    height: 2px;
                    width: 100%;
                    background: #f6eac5;
                    z-index: 100;
                }

                    #section-1 .content-slider nav .controls label .progressbar .progressbar-fill {
                        position: inherit;
                        width: inherit;
                        height: inherit;
                        margin-left: -100%;
                        background: #ff0000;
                    }

                #section-1 .content-slider nav .controls label span.text {
                    font-size: 20px;
                    font-weight: 500;
                    text-align: center;
                    display: inline-block;
                    width: 100%;
                }

                #section-1 .content-slider nav .controls label:hover {
                    color: #ff0000;
                }

    #section-1 .content-slider #banner1:checked ~ .slider #top-banner-1,
    #section-1 .content-slider #banner2:checked ~ .slider #top-banner-2,
    #section-1 .content-slider #banner3:checked ~ .slider #top-banner-3,
    #section-1 .content-slider #banner4:checked ~ .slider #top-banner-4 {
        opacity: 1;
        z-index: 1;
    }

    #section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1),
    #section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2),
    #section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3),
    #section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) {
        cursor: default;
        color: #fff;
        transition: all 0.5s;
    }

        #section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar,
        #section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar,
        #section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar,
        #section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar {
            background: #fff;
        }

        #section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar-fill,
        #section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar-fill,
        #section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar-fill,
        #section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar-fill {
            animation: progressBarFill 5s linear;
        }
/* Animations */
@keyframes progressBarFill {
    from {
        margin-left: -100%;
    }

    to {
        margin-left: 0;
    }
}

 