﻿
strong, .strong {
    font-weight: 600;
}

a {
    cursor: pointer;
}

.btn-red {
    background: #cf0001;
    color: #fff;
    border-color: #cf0001;
    box-shadow: none !important;
}

    .btn-red:hover {
        background: #a70405;
        color: #fff;
        border-color: #a70405;
    }

.btn-outline-red {
    color: #cf0001;
    background-color: #fff;
    border-color: #cf0001;
}

    .btn-outline-red:hover {
        color: #fff;
        background-color: #cf0001;
        border-color: #cf0001;
    }

#latestupdates {
    background-color: #2e2b26;
    color: #fff;
}

    #latestupdates .container {
        padding: 10px 50px;
    }

    #latestupdates .item {
        text-align: center;
        font-size: 1.2rem;
    }

        #latestupdates .item:before {
            font-family: fontawesome;
            content: "\f005";
            margin-right: 6px;
        }

    #latestupdates .owl-nav > button {
        width: 40px;
        height: 40px;
        line-height: 40px;
        padding: 0;
        margin: -20px 0 0 0;
        outline: 0;
        position: absolute;
        top: 50%;
        background-color: transparent;
        color: #fff;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        border-radius: 40px;
        -webkit-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
        -moz-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
        -ms-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
        -o-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
        transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
    }

        #latestupdates .owl-nav > button.disabled {
            cursor: not-allowed;
        }

        #latestupdates .owl-nav > button:not(.disabled):hover {
            background-color: #cf0001;
            color: #fff;
        }

    #latestupdates .owl-nav .owl-prev {
        left: 0px;
    }

    #latestupdates .owl-nav .owl-next {
        right: 0px;
    }




#header {
    z-index: 99;
    padding: 0 15px;
    background: #fff;
    /*background: linear-gradient(to bottom, #bcc3cb 0%, #aab1b9 100%);*/
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

    #header .container {
        display: flex;
        align-items: center;
        /*justify-content: space-between;*/
    }

    #header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99;
        background: #fff !important;
        -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    }

        #header.fixed .logo a {
            height: 70px;
        }

    #header .logo a {
        text-decoration: none !important;
        font-weight: 700;
        font-size: 20px;
        max-width: 300px;
        height: 55px;
        display: block;
        position: relative;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        #header .logo a img {
            width: auto;
            height: 80px;
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
        }

#MobileMenuBar {
    display: none;
    width: 50px;
    padding: 30px 0 29px 0 /*20px 0 19px 0*/;
    z-index: 1000;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    #MobileMenuBar .bar1, #MobileMenuBar .bar2, #MobileMenuBar .bar3 {
        width: 22px;
        height: 2px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        background-color: #4d4d4d;
    }

    #MobileMenuBar .bar2 {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    #MobileMenuBar.change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-3px, 2px);
        -moz-transform: rotate(-45deg) translate(-3px, 2px);
        -o-transform: rotate(-45deg) translate(-3px, 2px);
        transform: rotate(-45deg) translate(-3px, 2px);
    }

    #MobileMenuBar.change .bar2 {
        opacity: 0;
    }

    #MobileMenuBar.change .bar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        -moz-transform: rotate(45deg) translate(-8px, -8px);
        -o-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-8px, -8px);
    }

div#MenuOverlay {
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#MainMenu {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    #MainMenu ul {
        margin: 0;
        padding: 0;
        text-align: right;
    }

        #MainMenu ul li {
            display: inline-block;
            position: relative;
        }

            #MainMenu ul li a {
                color: #393f46;
            }

@media (max-width: 991px) {
    #header {
        padding: 0;
    }

    #MobileMenuBar {
        display: block;
    }

    #header .container {
        padding: 0 5px 0 60px;
        position: relative;
        justify-content: space-between;
    }

        #header .container .logo a {
            height: 70px;
        }

    #MainMenu {
        position: fixed;
        top: 0;
        left: -270px;
        bottom: 0;
        padding: 0 0 60px;
        width: 270px;
        overflow: auto;
        background-color: #fff;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        /*@include transform(translateX(-270px));*/
    }

        #MainMenu > ul,
        #MainMenu .btmbtn {
            visibility: hidden;
            opacity: 0;
        }

        #MainMenu .btmbtn {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 270px;
            padding: 10px;
            background: #eee;
            border: 0;
            z-index: 1;
            text-align: center;
        }

            #MainMenu .btmbtn .btn {
                width: 120px;
            }

    html.OpenMenu {
        overflow: hidden;
    }

        html.OpenMenu #MenuOverlay {
            visibility: visible;
            opacity: 1;
        }

        html.OpenMenu a#MobileMenuBar {
            left: 270px;
        }

            html.OpenMenu a#MobileMenuBar .bar1,
            html.OpenMenu a#MobileMenuBar .bar2,
            html.OpenMenu a#MobileMenuBar .bar3 {
                background-color: #fff;
            }

        html.OpenMenu .open > a > i {
            -webkit-transform: rotate(135deg);
            -moz-transform: rotate(135deg);
            -o-transform: rotate(135deg);
            transform: rotate(135deg);
        }

        html.OpenMenu #MainMenu {
            z-index: 999;
            background-color: #fff;
            left: 0;
        }

            html.OpenMenu #MainMenu .fa-home {
                display: none;
            }

            html.OpenMenu #MainMenu > ul,
            html.OpenMenu #MainMenu .btmbtn {
                visibility: visible;
                opacity: 1;
            }

                html.OpenMenu #MainMenu > ul + ul {
                    border-top: 1px solid #ddd;
                }

                html.OpenMenu #MainMenu > ul li {
                    display: block;
                }

                    html.OpenMenu #MainMenu > ul li > i {
                        position: absolute;
                        right: 0;
                        top: 0;
                        z-index: 1;
                        padding: 13px 15px 14px;
                        margin: 0;
                        cursor: pointer;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -ms-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                        html.OpenMenu #MainMenu > ul li > i:before {
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -ms-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                            display: block;
                        }

                    html.OpenMenu #MainMenu > ul li.HasUl > a {
                        width: -webkit-calc(100% - 40px);
                        width: -moz-calc(100% - 40px);
                        width: -ms-calc(100% - 40px);
                        width: -o-calc(100% - 40px);
                        width: calc(100% - 40px);
                    }

                    html.OpenMenu #MainMenu > ul li.open > i {
                        background-color: #29898e;
                    }

                        html.OpenMenu #MainMenu > ul li.open > i:before {
                            -webkit-transform: rotate(135deg);
                            -moz-transform: rotate(135deg);
                            -o-transform: rotate(135deg);
                            transform: rotate(135deg);
                            color: #fff;
                        }

                    html.OpenMenu #MainMenu > ul li.open > a {
                        background-color: #35afb5;
                        color: #fff;
                    }

                    html.OpenMenu #MainMenu > ul li a {
                        display: block;
                        text-align: left;
                        color: #000;
                        font-weight: 500;
                        padding: 12px 15px;
                        text-decoration: none;
                        line-height: normal !important;
                        height: auto !important;
                    }

                    html.OpenMenu #MainMenu > ul li ul {
                        display: none;
                        border-bottom: 1px solid #ddd;
                    }

    .header-right .mr-2 {
        margin: 2px !important;
    }

    .header-right .ellipsis-v {
        background: transparent;
        margin-right: .5rem !important;
    }

        .header-right .ellipsis-v:after {
            display: none;
        }
}


@media (min-width: 992px) {
    .HeaderTop .container .HeaderTopRight ul {
        float: right;
    }

    #header .HeaderTop {
        padding: 0;
    }

    #MainMenu {
        float: right;
    }

        #MainMenu > .LevelOne > li > a {
            display: inline-block;
            padding: 0 10px;
            z-index: 10;
            font-size: 1.05rem;
            font-weight: 500;
            height: 70px;
            line-height: 70px;
            text-decoration: none;
            text-transform: capitalize;
            color: #020d26;
            cursor: pointer;
            position: relative;
        }

            #MainMenu > .LevelOne > li > a:hover {
                color: #cf0001;
            }

        #MainMenu > .LevelOne > li + li > a:after {
            content: "";
            height: 20px;
            width: 2px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background-color: #000;
        }

        #MainMenu > .LevelOne > li > a .fa-home {
            font-size: 1.2rem;
            margin: 0;
        }

        #MainMenu > .LevelOne > li > a i {
            margin-left: 8px;
            font-weight: bold;
        }
        /*#MainMenu > .LevelOne > li > a:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0%;
        height: 5px;
        background: #006138;
        -webkit-transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        -ms-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out; 
    }
    #MainMenu > .LevelOne > li:hover > a:before,
    #MainMenu > .LevelOne > li.active > a:before {
        width: 100%;
        right: auto;
        left: 0;
        -webkit-transform-origin: right;
        -moz-transform-origin: right;
        -ms-transform-origin: right;
        transform-origin: right; 
    }*/
        #MainMenu > .LevelOne > li > ul li.HasUl a {
            padding-right: 20px !important;
        }

            #MainMenu > .LevelOne > li > ul li.HasUl a > .fa {
                font-size: 1.3rem;
                position: absolute;
                right: 10px;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transform: translateY(-50%);
                line-height: normal;
            }

        #MainMenu > ul {
            display: inline-flex;
        }

        #MainMenu ul li ul {
            display: block !important;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            max-width: 300px;
            z-index: 9;
            text-align: left;
            white-space: nowrap;
            border: 1px solid #ddd;
            visibility: hidden;
            opacity: 0;
            -webkit-border-radius: 0 0 3px 3px;
            -moz-border-radius: 0 0 3px 3px;
            border-radius: 0 0 3px 3px;
            -webkit-box-shadow: 0 3px 12px rgba(27, 31, 35, 0.15);
            -moz-box-shadow: 0 3px 12px rgba(27, 31, 35, 0.15);
            box-shadow: 0 3px 12px rgba(27, 31, 35, 0.15);
            -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
            -moz-transition: opacity 0.35s, -webkit-transform 0.35s;
            -ms-transition: opacity 0.35s, -webkit-transform 0.35s;
            -o-transition: opacity 0.35s, -webkit-transform 0.35s;
            transition: opacity 0.35s, -webkit-transform 0.35s;
            -webkit-transform: translate3d(0, -15px, 0);
            -moz-transform: translate3d(0, -15px, 0);
            -o-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
        }

        #MainMenu ul li:hover > ul {
            display: block;
            visibility: visible;
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

        #MainMenu li ul li {
            display: block;
        }

            #MainMenu li ul li a {
                display: block;
                padding: 10px 20px;
                text-decoration: none;
                background: #fff;
            }

                #MainMenu li ul li a:hover {
                    background-color: #f3f3f3;
                    color: #b4d14a;
                }

            #MainMenu li ul li ul {
                left: 100%;
                top: 0;
                -webkit-transform: translate3d(-15px, 0, 0);
                -moz-transform: translate3d(-15px, 0, 0);
                -o-transform: translate3d(-15px, 0, 0);
                transform: translate3d(-15px, 0, 0);
            }

                #MainMenu li ul li ul:before {
                    content: "";
                    display: inline-block;
                    position: absolute;
                    left: -8px;
                    top: 13px;
                    border-top: 9px solid transparent;
                    border-bottom: 9px solid transparent;
                    border-right: 9px solid rgba(0, 0, 0, 0.16);
                }

                #MainMenu li ul li ul:after {
                    content: "";
                    display: inline-block;
                    position: absolute;
                    left: -7px;
                    top: 15px;
                    border-top: 7px solid transparent;
                    border-bottom: 7px solid transparent;
                    border-right: 7px solid #fff;
                }

        #MainMenu a.icoinn {
            padding-right: 20px !important;
        }

            #MainMenu a.icoinn .fa-angle-right {
                position: absolute;
                right: 10px;
                font-size: 13pt;
            }

        #MainMenu .fa-home + span {
            display: none;
        }

    .header-right {
        margin-left: auto;
    }

        .header-right .dropdown .btn {
            background-color: #536d7a;
            border-color: #adadad;
            color: #ffffff;
            box-shadow: none !important;
        }
}

.header-right > a,
.header-right > .dropdown > a {
    outline: none !important;
    box-shadow: none !important;
}

    .header-right > a > i,
    .header-right > .dropdown > a > i {
        color: #000;
        font-size: 1.1rem;
        outline: none !important;
    }

.header-right .search {
}

.header-right .shopping-cart {
    position: relative;
}

    .header-right .shopping-cart i + span {
        position: absolute;
        top: -2px;
        right: 0;
        background: #ff5951;
        color: #fff;
        min-width: 18px;
        height: 18px;
        line-height: 18px;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        font-size: 12px;
        text-align: center;
    }


#searchbox {
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    font-family: inherit;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .30);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.30);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .30);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.opensearchbox #searchbox {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

#searchbox input[type=text] {
    padding: 20px 50px;
    width: 100%;
    font-size: 1.2rem;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

#searchbox .closesearchbox {
    width: 40px;
    height: 40px;
    line-height: 34px;
    text-align: center;
    font-size: 2rem;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    cursor: pointer;
    border-radius: 100%;
    z-index: 9;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

    #searchbox .closesearchbox:hover {
        background-color: #cf0001;
        color: #fff;
    }

.opensearchbox #Overlaysearchbox {
    visibility: visible;
    opacity: 1;
}

#Overlaysearchbox {
    display: block;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    z-index: 999;
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.YourProfile > .dropdown-toggle {
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 12pt;
    outline: none;
    border: 0;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

    .YourProfile > .dropdown-toggle::after {
        display: none !important;
    }

.YourProfile .dropdown-menu {
    width: 300px;
    padding-top: 0;
}

    .YourProfile .dropdown-menu li:nth-child(1) {
        display: flex;
        align-items: center;
        padding: 15px;
        margin-bottom: .5rem;
        border-bottom: 1px solid #d1d7dc;
    }

        .YourProfile .dropdown-menu li:nth-child(1) .NameInitial {
            -ms-flex: 0 0 65px;
            flex: 0 0 65px;
            max-width: 65px;
            height: 65px;
            line-height: 65px;
            margin-right: 15px;
            text-align: center;
            font-size: 20pt;
            font-weight: bold;
            outline: none;
            border: 0;
            background: #cf0001;
            color: #fff;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
        }

        .YourProfile .dropdown-menu li:nth-child(1) #lbluser {
            display: block;
        }

        .YourProfile .dropdown-menu li:nth-child(1) #lblemail {
            font-size: .8rem;
        }

#BacktoTop {
    font-size: 1.5rem;
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    background-color: #cf0001;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 2;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation: shadow-pulse 1s infinite;
    -moz-animation: shadow-pulse 1s infinite;
    -o-animation: shadow-pulse 1s infinite;
    animation: shadow-pulse 1s infinite;
}
/******************************************;
// Header
******************************************/


.section-odd, .section-even {
    padding: 50px 0;
    overflow: hidden;
}

.section-odd {
    background-color: #fbfbfb;
}

.section-even {
    background-color: #fff;
}

.section-header {
    margin-bottom: 30px;
}

.section-headerinn {
    display: flex;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    position: relative;
    color: #000;
    text-shadow: 1px 1px 3px #999;
}

.section-header h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 15px 0 0 0;
    color: #000;
    text-shadow: 1px 1px 3px #999;
}

.section-header h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 15px 0 0 0;
    color: #000;
    text-shadow: 1px 1px 3px #999;
}

.section-header p {
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 600;
}

.section-header-right {
    margin-left: auto;
}

.dropdown-menu {
    margin: 0;
}

    .dropdown-menu.dropdown-menu-right {
        left: inherit !important;
        right: 0 !important;
        top: 100% !important;
        display: block;
        opacity: 0 !important;
        -webkit-transform: scale(0) !important;
        -moz-transform: scale(0) !important;
        -o-transform: scale(0) !important;
        transform: scale(0) !important;
        -webkit-transform-origin: top right !important;
        -moz-transform-origin: top right !important;
        -ms-transform-origin: top right !important;
        transform-origin: top right !important;
        -webkit-transition: transform 0.2s cubic-bezier(0, 0, 0.3, 1), opacity 0.2s cubic-bezier(0, 0, 0.3, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.3, 1) !important;
        -moz-transition: transform 0.2s cubic-bezier(0, 0, 0.3, 1), opacity 0.2s cubic-bezier(0, 0, 0.3, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.3, 1) !important;
        -ms-transition: transform 0.2s cubic-bezier(0, 0, 0.3, 1), opacity 0.2s cubic-bezier(0, 0, 0.3, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.3, 1) !important;
        -o-transition: transform 0.2s cubic-bezier(0, 0, 0.3, 1), opacity 0.2s cubic-bezier(0, 0, 0.3, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.3, 1) !important;
        transition: transform 0.2s cubic-bezier(0, 0, 0.3, 1), opacity 0.2s cubic-bezier(0, 0, 0.3, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.3, 1) !important;
    }

.dropdown.show .dropdown-menu.dropdown-menu-right {
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -o-transform: scale(1) !important;
    transform: scale(1) !important;
    opacity: 1 !important;
}

.dropdown-menu .dropdown-item {
}

    .dropdown-menu .dropdown-item i + span {
        margin-left: 6px;
    }

.banner {
    padding: 120px 0 35px;
    background: #f8f8f8;
    /*background: linear-gradient(to bottom, #bcc3cb 0%, #aab1b9 100%);*/
    /*background:#b8c1ca;*/
}

    .banner h4 {
        display: block;
        font-size: 2.4rem;
        font-weight: 400;
        color: #4a606a;
        text-shadow: 2px 2px 2px #999;
        padding-bottom: 25px;
        margin-bottom: 25px;
        position: relative;
        animation-delay: 0.5s;
    }

        .banner h4:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 8px;
            background-color: #000;
        }

    .banner h5 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #000;
        margin-bottom: 30px;
        animation-delay: 1s;
        /*text-shadow: 2px 2px 3px #999;*/
    }

    .banner .search {
        position: relative;
        margin: 15px 0;
        animation-delay: 2s;
        border-radius: 8px;
        overflow: hidden;
    }

        .banner .search i {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 50px;
            line-height: 43px;
            text-align: center;
            font-size: 30px;
            background: #fff;
        }

        .banner .search input {
            border: 0;
            outline: 0;
            width: 100%;
            padding: 10px 20px;
            background-color: #fff;
            font-size: 1rem;
            /*text-shadow: 2px 2px 3px #999;*/
        }

    .banner .topsearch {
        animation-delay: 3s;
    }

        .banner .topsearch h6 {
            font-size: 1.05rem;
        }

        .banner .topsearch span {
            display: inline-block;
            padding: 2px 8px;
            margin: 2px;
            font-size: 0.8rem;
            border-radius: 4px;
            background-color: #fff;
            color: #000;
        }

.Featuredat {
    background: #000;
}

    .Featuredat h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #444;
        padding: 5px 0;
        margin: 0;
        text-align: center;
        text-transform: uppercase;
    }

    .Featuredat .container {
        position: relative;
        top: -64px;
        z-index: 1;
        background-color: #fff;
        border-radius: 15px;
        width: calc(100% - 30px);
    }

#Featuredat {
}

    #Featuredat .item {
        display: flex;
        align-items: center;
        height: 100px;
    }

        #Featuredat .item img {
            /* max-width: 80%; */
            /* max-height: 100%; */
            width: 95px;
            margin: 0 auto;
            padding: 10px 0px;
        }

    #Featuredat .owl-nav > button {
        width: 40px;
        height: 40px;
        line-height: 40px;
        padding: 0;
        margin: -35px 0 0 0;
        outline: 0;
        position: absolute;
        top: 50%;
        background-color: #fff;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        border-radius: 40px;
        -webkit-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
        -moz-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
        -ms-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
        -o-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
        transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
    }

        #Featuredat .owl-nav > button.disabled {
            cursor: not-allowed;
        }

        #Featuredat .owl-nav > button:not(.disabled):hover {
            background-color: #cf0001;
            color: #fff;
        }

    #Featuredat .owl-nav .owl-prev {
        left: -35px;
    }

    #Featuredat .owl-nav .owl-next {
        right: -35px;
    }





.catalystgroup .group {
    text-align: center;
    margin: 35px 0 0;
    padding: 15px;
    text-decoration: none !important;
    display: block;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

    .catalystgroup .group:hover {
        background: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .10);
    }

    .catalystgroup .group img {
        max-width: 100%;
        max-height: 120px;
        margin-bottom: 15px;
    }

    .catalystgroup .group strong {
        font-size: 1.4rem;
        font-weight: 600;
        color: #cf0001;
        display: block;
        text-shadow: 1px 1px 3px #999;
        margin-bottom: 10px;
    }

    .catalystgroup .group p {
        font-weight: 600;
        color: #000;
        margin: 0;
        font-size: 15px;
    }




.explorecourses {
    background-color: #f6f6f6;
    overflow: inherit;
}

@media (min-width:992px) {
    .course-menu-list {
        list-style-type: none;
        padding: 0;
        margin: 0;
        float: left;
        width: 220px;
        z-index: 1;
        background: #fff;
        position: -webkit-sticky;
        position: sticky;
        top: 85px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        border-top: 1px solid rgba(0,0,0,.05);
        -webkit-box-shadow: 6px 6px 0px 0 #f1efef;
        -moz-box-shadow: 6px 6px 0px 0 #f1efef;
        box-shadow: 6px 6px 0px 0 #f1efef;
    }

    .course-list-home {
        float: right; /*margin-top:-20px;*/
        width: -webkit-calc(100% - 250px);
        width: -moz-calc(100% - 250px);
        width: -ms-calc(100% - 250px);
        width: -o-calc(100% - 250px);
        width: calc(100% - 250px);
    }
}

@media (max-width:991px) {
    .course-menu-list {
        list-style-type: none;
        padding: 0;
        margin: 0 auto;
        /*display:none;*/ position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
        z-index: 2;
        overflow: auto;
        max-height: 100vh;
        background-color: #fff;
        max-width: 500px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .course-menu-list-open {
        z-index: 9999;
        transform: translateY(0%);
    }

    .course-menu-list-header {
        /*position:relative;*/ display: block !important;
        padding: 15px;
        border-bottom: 1px solid #ddd;
        position: sticky;
        top: 0;
        z-index: 1;
        background: #fff;
    }

        .course-menu-list-header h4 {
            font-size: 1.05rem;
            color: #000;
            margin: 0;
        }

            .course-menu-list-header h4 + .closecoursemenu {
                width: 40px;
                height: 40px;
                line-height: 34px;
                text-align: center;
                font-size: 2rem;
                position: absolute;
                right: 10px;
                top: 50%;
                margin-top: -20px;
                cursor: pointer;
                border-radius: 100%;
                z-index: 9;
                -webkit-transition: all .3s ease-out;
                -moz-transition: all .3s ease-out;
                -ms-transition: all .3s ease-out;
                -o-transition: all .3s ease-out;
                transition: all .3s ease-out;
            }

    .opencoursemenu {
        overflow: hidden;
    }

        .opencoursemenu #overlaycoursemenu {
            visibility: visible;
            opacity: 1;
        }

    #overlaycoursemenu {
        display: block;
        visibility: hidden;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.8);
        z-index: 999;
        opacity: 0;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -ms-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .CourseCategorybtn i {
        margin-right: 10px;
    }

    .CourseCategory {
        display: block !important;
        text-align: center;
        position: sticky;
        bottom: 0;
        padding: 10px;
    }

    .course-list-home {
        width: 100%;
    }
}

.course-menu-list > li > a {
    display: block;
    padding: 8px 25px 8px 15px;
    color: #000;
    text-align: left;
    font-size: 100%;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    text-decoration: none !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .course-menu-list > li > a:hover {
        background-color: #f5f5f5;
        color: #cf0001;
    }

    .course-menu-list > li > a:after {
        content: "\f107";
        font-family: fontawesome;
        font-size: 120%;
        font-weight: 600;
        line-height: 10px;
        color: #666;
        position: absolute;
        right: 8px;
        top: 50%;
        margin-top: -5px;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .course-menu-list > li > a.selected:after {
        transform: rotate(180deg);
    }

    .course-menu-list > li > a.selected, .course-menu-list > li > a.selected:after {
        background-color: #cf0001;
        color: #fff !important;
    }

.course-menu-list ul {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .course-menu-list ul li a {
        display: block;
        padding: 4px 10px 4px 25px;
        color: #000;
        text-align: left;
        font-size: 100%;
        cursor: pointer;
        position: relative;
        text-decoration: none !important;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

        .course-menu-list ul li a:hover {
            background-color: #f5f5f5;
            color: #cf0001 !important;
        }

        .course-menu-list ul li a.active {
            background-color: #ddd;
            color: #cf0001 !important;
        }

.course-list-home .row {
    margin: 0 -10px;
}

    .course-list-home .row [class*=col-] {
        padding: 0 10px;
    }

.course-list-home .course-content {
    height: calc(100% - 20px);
    margin: 0 auto 20px;
    padding-bottom: 46px;
    background: #fff;
    display: block;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

    .course-list-home .course-content:hover {
    }

    .course-list-home .course-content .course-img {
        overflow: hidden;
        text-align: center;
        border-radius: 5px 5px 0 0;
    }

    .course-list-home .course-content .course-title {
        position: relative;
        padding: 0 25px 15px 25px;
    }

        .course-list-home .course-content .course-title h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #000;
            padding: 15px 0;
            margin: 0 0 15px;
            border-bottom: 1px solid #ddd;
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .course-list-home .course-content .course-title h5 + span {
                color: #555;
            }

    .course-list-home .course-content .course-details {
        padding-left: 10px;
        margin-bottom: 0;
    }

        .course-list-home .course-content .course-details li {
            font-size: 12px;
            position: relative;
            padding-left: 5px;
        }

            .course-list-home .course-content .course-details li + li {
                margin-top: 5px;
            }

            .course-list-home .course-content .course-details li::marker {
                content: "\f00c";
                font-family: fontawesome;
                color: #50b167;
                position: absolute;
                left: 0;
                top: 0;
            }

    .course-list-home .course-content .btn {
        position: absolute;
        bottom: 8px;
        left: 8px;
        right: 8px;
        /*font-weight:500;*/
        text-align: left;
        display: block;
    }

        .course-list-home .course-content .btn:after {
            content: "\f178";
            font-family: fontawesome;
            font-size: 120%;
            font-weight: 600;
            position: absolute;
            right: 8px;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
        }


.subscription-class {
    display: flex;
    margin: 20px 0;
}

    .subscription-class .subscription-img {
        padding-right: 25px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
        max-width: 100px;
    }

        .subscription-class .subscription-img img {
            width: 100%;
        }

    .subscription-class .subscription-content strong {
        display: block;
        margin-bottom: 5px;
    }

    .subscription-class .subscription-content p {
        margin: 0;
    }


#faqs .card {
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    border-color: #acb4bb;
    box-shadow: 3px 3px 0px #acb4bb;
}

#faqs .card-header {
    padding: 0;
    border: 0;
    background-color: #fff !important;
}

#faqs .card-link {
    padding: 6px 15px;
    display: block;
    text-decoration: none;
    background-color: #c7d0d8;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

    #faqs .card-link:before {
        content: "\f107";
        line-height: 10px;
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -5px;
        font-size: 25px;
        font-family: fontawesome;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

#faqs .card-header a:not(.collapsed):before {
    /*content: "\f106";*/
    transform: rotate(180deg);
}

#faqs .card-header a:not(.collapsed) {
    /*background: #008641;
    color: #fff;*/
}

#faqs .card-body {
    padding: 15px;
}

.appdownload strong {
    display: block;
    margin-bottom: 10px;
}

    .appdownload strong + strong {
        display: block;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

.app {
    display: flex;
    margin-top: 10px;
}

    .app a {
        width: 50%;
        margin: 10px;
        border-radius: 5px;
        display: inline-block;
        background-color: #000;
        overflow: hidden;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

        .app a:hover {
            box-shadow: inset 0 0 transparent, 0 0 0 2px #cf0001;
            -moz-box-shadow: inset 0 0 transparent, 0 0 0 2px #cf0001;
            -webkit-box-shadow: inset 0 0 transparent, 0 0 0 2px #cf0001;
        }


.trackrecord .left h4 {
    margin-bottom: 20px;
}

.trackrecord .left .row > div > span {
    padding: 15px; /*border-top:1px solid #555;*/
    border-bottom: 1px solid #555;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    top: -1px;
    height: 100%;
}

.contactbox {
    padding: 15px;
    margin: 3px;
    background-color: #5e7683;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .30);
    border-radius: 4px;
}

    .contactbox + .contactbox {
        margin-top: 25px;
    }

.contactboxhdr {
    font-size: 100%;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}

.contactbox .form-control {
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none !important
}

.contactbox select.country-code {
    height: 37px;
    border-right-width: 1px !important;
}

.contactbox .tollfree {
    display: flex;
    align-items: center;
}

    .contactbox .tollfree h2 {
        font-size: 180%;
        font-weight: 600;
    }

    .contactbox .tollfree i {
        padding: 0 0 0 20px;
        margin-left: 20px;
        font-size: 150%;
        font-weight: 600;
        border-left: 1px solid #bbb;
    }

.OurAlumni {
    background-color: #c2c2c2;
}

#OurAlumni .item {
    background-color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
}

    #OurAlumni .item .photo {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        position: relative;
    }

        #OurAlumni .item .photo img {
            width: 60px;
            height: 60px;
            /*max-width:100%; max-height:100%; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%);*/
        }

    #OurAlumni .item strong {
        display: block;
    }

    #OurAlumni .item .brand {
        height: 30px;
        margin: 15px auto 0;
    }

        #OurAlumni .item .brand img {
            max-height: 100%;
        }

#OurAlumni .owl-nav > button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    margin: -20px 0 0 0;
    outline: 0;
    position: absolute;
    top: 50%;
    background-color: #fff;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    -webkit-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

    #OurAlumni .owl-nav > button.disabled {
        cursor: not-allowed;
    }

    #OurAlumni .owl-nav > button:not(.disabled):hover {
        background-color: #cf0001;
        color: #fff;
    }

#OurAlumni .owl-nav .owl-prev {
    left: -50px;
}

#OurAlumni .owl-nav .owl-next {
    right: -50px;
}

.AboutUs {
    background-color: #f6f6f6;
}

    .AboutUs .left {
        position: relative;
        z-index: 1;
    }

        .AboutUs .left h4 {
            font-size: 1.4rem;
            margin: 25px 0;
            color: #000;
            text-shadow: 1px 1px 3px #999;
        }

        .AboutUs .left .Media {
            padding-right: 150px;
        }

            .AboutUs .left .Media a {
                display: block;
                border: 4px solid #727374;
                -webkit-transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -o-transition: all .3s ease-in-out;
                -ms-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
            }

                .AboutUs .left .Media a:hover {
                    border-color: #5e7683;
                }

                .AboutUs .left .Media a img {
                    width: 100%;
                    height: 170px;
                }

    .AboutUs .right {
        display: flex;
        align-items: flex-end;
    }

        .AboutUs .right img {
            position: relative;
            max-width: 200%;
            left: -65%;
            bottom: 50px;
        }

@media (min-width:992px) {
    .learnerssay .row .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        max-width: 30%;
    }

    .learnerssay .row .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }

    .learnerssay .row [class*=col-] > div:nth-child(1) {
        margin-bottom: 30px;
    }
}

@media (max-width:992px) {
    .learnerssay .say {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

        .learnerssay .say:before {
            display: none;
        }

        .learnerssay .say:after {
            height: 25px !important;
        }
}


.learnerssay .say {
    position: relative;
    padding: 30px 20px 40px 20px;
}

    .learnerssay .say:before {
        content: "";
        /*content: "url(../images/learnerssay1.jpg)";*/
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
    }

    .learnerssay .say:after {
        content: "";
        /*content: "url(../images/learnerssay1.jpg)";*/
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
    }

    .learnerssay .say > div:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        clip-path: polygon(0% 4%, 95.5% 4%, 99.5% 98%, 1.9% 95%);
    }

    .learnerssay .say p {
        position: relative;
        z-index: 1;
    }

        .learnerssay .say p + p {
            margin: 0 !important;
        }

.learnerssay .green .say:before {
    background: url(../images/learnerssay1.jpg) no-repeat center top / 100%;
}

.learnerssay .green .say:after {
    background: url(../images/learnerssay11.jpg) no-repeat center bottom / 100%;
}

.learnerssay .green .say > div:after {
    background: #9dddc8;
}

.learnerssay .purple .say {
    padding-bottom: 60px;
    min-height: 250px;
}

    .learnerssay .purple .say:before {
        background: url(../images/learnerssay2.jpg) no-repeat center top / 100%;
    }

    .learnerssay .purple .say:after {
        background: url(../images/learnerssay22.jpg) no-repeat center bottom / 100%;
    }

    .learnerssay .purple .say > div:after {
        background: #dcc0e6;
    }

.learnerssay .orange .say:before {
    background: url(../images/learnerssay3.jpg) no-repeat center top / 100%;
}

.learnerssay .orange .say:after {
    background: url(../images/learnerssay33.jpg) no-repeat center bottom / 100%;
}

.learnerssay .orange .say > div:after {
    background: #fbc48d;
}

.learnerssay .learners {
    display: flex;
    align-items: center;
    padding: 10px 0 0 30px;
}

.learnerssay .learners-photo {
    width: 60px;
    height: 60px;
    border: 1px solid #e2e2e2;
    margin: 0px 15px 0 0;
    border-radius: 100%;
    overflow: hidden;
}

    .learnerssay .learners-photo img {
        width: 100%;
    }

.learnerssay .purple .learners {
    padding-left: 60px;
}

.learnerssay .learners-content strong {
    font-size: 1.1rem;
    display: block;
}

.learnersvideo .videos a {
    position: relative;
    display: block;
    margin: 10px 0;
    border: 5px solid #171717;
}

    .learnersvideo .videos a:hover {
        border-color: #cf0001;
    }

    .learnersvideo .videos a:after {
        content: "\f04b";
        font-family: fontawesome;
        font-size: 30px;
        background: #ff0000;
        color: #fff;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -30px;
        margin-top: -30px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        border-radius: 100%;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .learnersvideo .videos a:hover:after {
        background: #cf0001;
        transform: scale(1.2);
    }

.updatesnotifications .content {
    border: 1px solid #ddd;
    height: 100%;
    position: relative;
    border-radius: 5px;
    padding: 15px 15px 38px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .10);
}

    .updatesnotifications .content h5 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #000;
        padding: 0 0 12px;
        margin: 0 0 12px;
        position: relative;
        border-bottom: 1px solid #50b167;
    }

    .updatesnotifications .content p {
        display: block;
        text-decoration: none;
        position: relative;
        padding: 0 0 0 25px;
        font-weight: normal;
        color: #666;
    }

        .updatesnotifications .content p:before {
            content: "\f058";
            font-size: 1.2rem;
            font-family: fontawesome;
            color: #50b167;
            position: absolute;
            left: 0;
            top: 0;
        }

    .updatesnotifications .content .btn {
        font-weight: 500;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        display: block;
        margin: 0;
        background-color: #50b167;
        color: #fff;
        box-shadow: none !important;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

        .updatesnotifications .content .btn:hover {
            background-color: #309648;
        }

#footer {
    background-color: #232f3e;
    color: #999;
}

    #footer .section-even {
        padding: 25px 0;
        margin-bottom: 40px;
        background-color: #e3e6e8;
    }

        #footer .section-even .tel {
            display: inline-block;
            background: #cf0001;
            color: #fff;
            margin-top: 15px;
            padding: 10px 20px 10px 70px;
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: .8px;
            position: relative;
            border-radius: 5px;
        }

            #footer .section-even .tel a {
                color: #fff;
            }

                #footer .section-even .tel a:hover {
                    color: #000;
                }

            #footer .section-even .tel i {
                position: absolute;
                top: 9px;
                left: 20px;
                font-size: 3rem;
                transform: rotate(-33deg);
            }

    #footer a:not(.btn) {
        color: #999;
        text-decoration: none !important;
    }

        #footer a:not(.btn):hover {
            color: #fff;
        }

    #footer .ftrabt h2 {
        font-weight: 600;
        font-size: 1.8rem;
        margin: 0 0 25px;
        color: #fff;
    }

    #footer ul {
        padding: 0;
        list-style-type: none;
    }

    #footer .footerlink li a {
        padding: 4px 0;
        display: block;
        font-size: 0.9rem;
    }

    #footer .input-group {
        border-bottom: 1px solid #888;
        margin: 0 auto 40px;
        width: 80%;
    }

        #footer .input-group .form-control {
            background-color: transparent;
            border: 0;
            color: #999;
            box-shadow: none !important;
            padding-left: 0;
            padding-right: 0;
        }

        #footer .input-group .btn {
            text-transform: uppercase;
        }

            #footer .input-group .btn:hover {
                color: #fff;
            }

.social-icons {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

    .social-icons a {
        color: #fff !important;
        display: block;
        text-align: center;
        width: 40px;
        height: 40px;
        padding: 0 !important;
        border-radius: 100%;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .social-icons li {
        margin: 0;
        display: inline-block;
    }

    .social-icons a i {
        line-height: 40px;
        font-size: 14pt;
    }

    .social-icons a.Facebook:hover {
        background-color: #3B5998 !important;
        border-color: #3B5998;
    }

    .social-icons a.Twitter:hover {
        background-color: #2CAAE1 !important;
        border-color: #2CAAE1;
    }

    .social-icons a.Youtube:hover {
        background-color: #E22C29 !important;
        border-color: #E22C29;
    }

.copyright .container {
    padding: 14px 0px;
    margin-top: 50px;
    text-align: center;
    background: rgb(188 188 188);
    border-radius: 10px 10px 0 0;
    color: #000000;
}

.card-header .clsQtype {
    margin-right: 30px;
}

.user-header {
    display: flex;
    align-items: center;
}

    .user-header img {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }

.top-header {
    margin-bottom: 20px;
}

    .top-header .container-fluid {
        margin-top: 10px;
        background: #cf0001;
        padding: 13px 25px;
    }

    .top-header h6 {
        color: #fff;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 20px
    }

    .top-header p {
        color: #fff;
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 0px
    }

.user-header .textd h6 {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0px
}

.user-header .textd p {
    color: #fff;
    font-size: 15px;
    line-height: 22px;
}

.right-data {
    float: right;
    display: flex;
}

.textdata {
    border-right: 1px solid #fff;
    padding: 0px 30px;
}

    .textdata h5 {
        color: #fff;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0px
    }

    .textdata i {
        font-size: 21px;
    }

.pcl-pro-link .dropdown {
    display: none;
}

.mob-view {
    display: block;
}

@media (max-width:991px) {
    .banner {
        padding-top: 85px;
    }

    .AboutUs .left .Media {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .banner h4 {
        display: block;
        font-size: 1.8rem;
        font-weight: 400;
    }

    .banner h5 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #000;
        margin-bottom: 30px;
        animation-delay: 1s;
        /* text-shadow: 2px 2px 3px #999; */
    }

    .section-header h1 {
        font-size: 2rem;
        font-weight: 400;
    }

    .card-header .clsQtype {
        margin-right: 4px;
    }

    #TestSeriesAccordion .card-header .card-link .clsMarks {
        float: left;
        margin-right: 5px;
    }

    #header .logo a img {
        width: 135px !important;
    }

    .textdata {
        border-right: 1px solid #fff;
        padding: 0px 17px;
        margin-top: 12px;
    }

    .pcl-pro-link .dropdown {
        display: block !important;
        float: right;
    }

   /* .mob-view {
        display: none !important;
    }*/
}
