body {
    font-family: 'Open Sans', sans-serif;
    color: #727272;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 1px;
    text-decoration: none;
    background: #fff;
}

#wrapper {
    height: auto !important;
    margin: 0 auto;
    min-height: 100%;
    /*margin: 0 auto -90px;*/
    margin: 0 auto 0px;
    overflow: hidden;
}

#preloader {
    left: 50%;
    margin: -90px 0 0 -80px;
    position: fixed;
    top: 50%;
    width: 160px;
    /*height: 168px;*/
}

.wrapper {
    opacity: 0;
    overflow: hidden;
}

html, body, form {
    height: 100%;
    /* The html and body elements cannot have any padding or margin. */
}

.main {
    width: auto;
    max-width: 100%;
}

#push,
#footer {
    height: 60px;
}

#footer {
    background: #b1b1b1;
    line-height: 60px;
    display: block;
}

img {
    max-width: 100%;
}

.npTopStrip {
    border-bottom: 2px solid rgba(146, 148, 153, 0.1);
}

    .npTopStrip .list-inline {
        display: flex;
        justify-content: flex-start;
        padding-top: 15px;
        padding-bottom: 10px;
    }

        .npTopStrip .list-inline li i {
            color: #b0004f;
            font-size: 18px;
            margin-right: 5px;
        }

        .npTopStrip .list-inline li {
            color: #20201f;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            padding-bottom: 5px;
        }

            .npTopStrip .list-inline li a {
                color: #20201f;
            }

        .npTopStrip .list-inline .list-inline {
            padding-top: 0px;
            padding-bottom: 0px;
        }

            .npTopStrip .list-inline .list-inline li {
                padding-bottom: 0px;
            }

        .npTopStrip .list-inline .list-inline-item.last {
            margin-left: auto;
        }

            .npTopStrip .list-inline .list-inline-item.last .npSocial {
                border: 2px solid #b0004f;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .npTopStrip .list-inline .list-inline-item.last .npSocial i {
                    font-size: 14px;
                    margin-right: 0px;
                }

                .npTopStrip .list-inline .list-inline-item.last .npSocial:hover {
                    background: #b0004f;
                }

                    .npTopStrip .list-inline .list-inline-item.last .npSocial:hover i {
                        color: #fff;
                    }

            .npTopStrip .list-inline .list-inline-item.last li:last-child {
                display: flex;
                align-items: center;
                margin-left: 10px;
            }

                .npTopStrip .list-inline .list-inline-item.last li:last-child i {
                    font-size: 14px;
                }

/**/
.navbar {
    padding-left: 0px;
    padding-right: 0px;
    justify-content: flex-start;
    padding-bottom: 0px;
}

.navbar-brand img {
    width: 180px;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,1);
    font-size: 15px;
    font-weight: 600;
    padding: 0px;
    margin-left: 10px;
    margin-right: 10px;
}

    .navbar-light .navbar-nav .nav-link:hover {
        color: #b0004f;
    }

.navbar-nav {
    margin-top: 10px;
}

@media(max-width:991px) {
    .navbar-nav {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-collapse {
        background: #fff;
    }

    .navbar-light .navbar-nav .nav-item {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 13px;
    }
}

header {
    position: absolute;
    width: 100%;
    background: transparent;
    z-index: 2;
    top: 0px;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.header.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    background: rgba(255,255,255,1);
    display: block;
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    z-index: 9;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}

    .header.sticky .navbar-brand img {
        width: 120px;
        display: block;
        padding: 0px;
    }

    .header.sticky .navbar-nav {
        margin-top: 0px;
    }

    .header.sticky .navbar {
        padding-left: 0px;
        padding-right: 0px;
        justify-content: flex-start;
        padding-bottom: .5rem;
    }

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        -o-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media only screen and (max-width:767px) {
    .npTopStrip .list-inline {
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 5px;
    }

        .npTopStrip .list-inline .list-inline-item.last {
            margin-left: inherit;
        }

        .npTopStrip .list-inline li i {
            color: #b0004f;
            font-size: 15px;
            margin-right: 5px;
        }

        .npTopStrip .list-inline li {
            color: #20201f;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            padding-bottom: 5px;
        }

    .navbar-brand img {
        width: 120px;
    }

    .navbar-toggler {
        padding: .15rem .55rem;
        font-size: 1.0rem;
    }
}

@media only screen and (max-width:533px) {
    .npTopStrip .list-inline {
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 7px;
        padding-bottom: 2px;
    }

        .npTopStrip .list-inline .list-inline-item.last {
            margin-left: inherit;
        }

        .npTopStrip .list-inline li i {
            color: #b0004f;
            font-size: 13px;
            margin-right: 3px;
        }

        .npTopStrip .list-inline li {
            color: #20201f;
            font-size: 11px;
            font-weight: 600;
            display: flex;
            align-items: center;
            padding-bottom: 5px;
        }

    .navbar-brand img {
        width: 100px;
    }
}
/**/
.npPageTitle {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 52px;
}

    .npPageTitle h1 {
        font-family: 'Courgette', cursive;
        font-size: 50px;
        color: #b0004f;
        font-weight: bold;
    }

    .npPageTitle.inner {
        text-align: center;
        padding-top: 60px;
        padding-bottom: 22px;
    }

    .npPageTitle.clrWhite {
        color: #fff !important;
    }

        .npPageTitle.clrWhite h1 {
            color: #fff !important;
        }

.npPageTitleSm h1 {
    font-size: 35px !important;
}

    .npPageTitleSm h1 font {
        display: block;
        font-size: 13px;
        font-weight: 300;
        color: #555;
        font-family: 'Open Sans', sans-serif;
        padding-top: 10px;
    }
/**/
.npPrograms {
    background: url(../images/program-left.png) no-repeat left bottom, url(../images/program-right.png) no-repeat right center;
}
.npPart1, .npPart2 {
    margin-bottom: 30px;
}

.npPartTitle {
    display: block;
    margin-left: 70px;
    text-align: left;
    width: 270px;
}

    .npPartTitle h3 {
        display: block;
        font-size: 22px;
        font-weight: 600;
        text-transform: uppercase;
        color: #000;
        position: relative;
        padding-bottom: 26px;
        margin-bottom: 19px;
    }

        .npPartTitle h3:before {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 3px;
            width: 85px;
            height: 2px;
            background: #d1d1d1;
        }

        .npPartTitle h3:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0px;
            width: 13px;
            height: 13px;
            border: 2px solid #d1d1d1;
            background: #fff;
            border-radius: 50%;
        }

        .npPartTitle h3 font {
            display: block;
            font-size: 12px;
            font-weight: 200;
            text-transform: none;
        }

    .npPartTitle ul.list-unstyled {
        font-size: 13px;
        color: #000;
        line-height: 28px;
        font-weight: 600;
    }
/**/
.npPart2 {
}

    .npPart2 .list-inline li:first-child {
        order: 1;
    }

    .npPart2 .npPartTitle {
        display: block;
        margin-right: 70px;
        margin-left: 0px;
        text-align: right;
        width: 270px;
    }

        .npPart2 .npPartTitle h4 {
            display: block;
            font-size: 22px;
            font-weight: 600;
            text-transform: uppercase;
            color: #000;
            position: relative;
            padding-bottom: 26px;
            margin-bottom: 19px;
        }

            .npPart2 .npPartTitle h4:before {
                content: '';
                position: absolute;
                bottom: 0px;
                right: 3px;
                width: 85px;
                height: 2px;
                background: #d1d1d1;
            }

            .npPart2 .npPartTitle h4:after {
                content: '';
                position: absolute;
                bottom: -5px;
                right: 0px;
                width: 13px;
                height: 13px;
                border: 2px solid #d1d1d1;
                background: #fff;
                border-radius: 50%;
            }

            .npPart2 .npPartTitle h4 font {
                display: block;
                font-size: 12px;
                font-weight: 200;
                text-transform: none;
            }

@media (max-width:991px) {
    .npPart1, .npPart2 {
        margin-bottom: 60px;
    }

        .npPart1 .list-inline {
            flex-wrap: wrap;
            flex-direction: column;
        }

            .npPart1 .list-inline .npPartTitle {
                margin-top: 30px;
            }

        .npPart2 .list-inline {
            flex-wrap: wrap;
            flex-direction: column;
        }

            .npPart2 .list-inline li:first-child {
                order: 0;
            }

            .npPart2 .list-inline .npPartTitle {
                margin-top: 30px;
                margin-left: 70px;
                margin-right: 0px;
                text-align: left;
            }

        .npPart2 .npPartTitle h4:before {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 3px;
            width: 85px;
            height: 2px;
            background: #d1d1d1;
        }

        .npPart2 .npPartTitle h4:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0px;
            width: 13px;
            height: 13px;
            border: 2px solid #d1d1d1;
            background: #fff;
            border-radius: 50%;
        }
}
/**/
.bgAbout {
    background: url(../images/bgAbout.jpg);
    margin-top: 60px;
}

.npAboutContent {
    width: 70%;
}

.bgAbout h1 {
    font-family: 'Courgette', cursive;
    font-size: 50px;
    color: #b0004f;
    font-weight: bold;
    padding-bottom: 10px;
}

.bgAbout p {
    color: #727272;
    font-size: 14px;
    line-height: 30px;
}

@media (max-width:991px) {
    .npAboutContent h1 {
        margin-top: 40px;
    }

    .npAboutContent {
        width: 90%;
        margin: auto;
        text-align: center;
        padding-bottom: 60px;
    }
}
/**/
.npGallery .fancybox {
    cursor: zoom-in;
}

    .npGallery .fancybox img {
        transform: scale(1.0);
        -webkit-transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -ms-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
    }

    .npGallery .fancybox:hover img {
        transform: scale(1.1);
        -webkit-transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -ms-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
    }
/**/
.npTestiPart {
    background: url(../images/testi-left.png) no-repeat left center, url(../images/testi-right.png) no-repeat right center;
    padding-top: 100px;
    padding-bottom: 100px;
}

    .npTestiPart .carousel-item {
    }

        .npTestiPart .carousel-item .list-inline {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

            .npTestiPart .carousel-item .list-inline li:first-child {
                flex: 1;
                padding-left: 80px;
                padding-right: 40px;
            }

            .npTestiPart .carousel-item .list-inline li p {
                text-align: right;
                margin-bottom: 0px;
            }

            .npTestiPart .carousel-item .list-inline li:last-child {
                flex-basis: 398px;
            }

            .npTestiPart .carousel-item .list-inline li .TestiBg {
                width: 398px;
                height: 305px;
                background: url(../images/testi.png) no-repeat;
                position: relative;
                z-index: 2;
            }

                .npTestiPart .carousel-item .list-inline li .TestiBg span {
                    width: 133px;
                    height: 133px;
                    border-radius: 50%;
                    display: block;
                    position: absolute;
                    top: 95px;
                    left: 10px;
                    background: white;
                    z-index: 1;
                    overflow: hidden;
                }

                .npTestiPart .carousel-item .list-inline li .TestiBg h4 {
                    width: 100%;
                    display: block;
                    position: absolute;
                    top: 0px;
                    left: 0px;
                    color: #e5e5e5;
                    font-weight: 300;
                    font-size: 13px;
                    padding-top: 133px;
                    padding-left: 170px;
                    overflow: hidden;
                }

                    .npTestiPart .carousel-item .list-inline li .TestiBg h4 font {
                        display: block;
                        font-size: 16px;
                        font-weight: 600;
                        padding-bottom: 3px;
                        color: #fff;
                    }

    .npTestiPart .carousel-control-next, .npTestiPart .carousel-control-prev {
        left: 0px;
        font-size: 50px;
        font-weight: 200;
        width: 36px;
        height: 36px;
    }

    .npTestiPart .carousel-control-prev {
        top: 35%;
        color: rgba(0,0,0,1);
    }

    .npTestiPart .carousel-control-next {
        top: 50%;
        color: rgba(0,0,0,1);
    }

@media(max-width:991px) {
    .npTestiPart .carousel-item .list-inline {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }

        .npTestiPart .carousel-item .list-inline li:last-child {
            flex-basis: 398px;
            max-height: 335px;
        }

        .npTestiPart .carousel-item .list-inline li:first-child {
            order: 2;
        }

        .npTestiPart .carousel-item .list-inline li p {
            text-align: center;
        }

    .npTestiPart .carousel-control-prev {
        top: inherit;
        bottom: 45px;
        color: rgba(0,0,0,1);
    }

    .npTestiPart .carousel-control-next {
        top: inherit;
        bottom: 10px;
        color: rgba(0,0,0,1);
    }
}
/**/
.npTeam {
    display: block;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 86px;
    background: #fff;
}

.npTeamImg {
    position: relative;
}

.npTeamInfo {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    min-height: 86px;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    overflow: hidden;
}

.npTeam:hover .npTeamInfo {
    min-height: 106px;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.teamColor1 {
    background: #9ed5c0;
}

.teamColor2 {
    background: #f29cc3;
}

.teamColor3 {
    background: #f1646c;
}

.teamColor4 {
    background: #fac174;
}

.npTeamInfo h5 {
    font-size: 15px;
    font-weight: 600;
    padding-top: 20px;
    margin-bottom: 0px;
}

.npTeamInfo p {
    font-size: 11px;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 0px;
    color: #fff;
}

.npTeamInfo ul {
    position: absolute;
    bottom: -15px;
    left: 0px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.npTeam:hover .npTeamInfo ul {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
    left: 0px;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.npTeamInfo ul li a {
    color: #fff;
}

    .npTeamInfo ul li a:hover {
        color: #b0004f;
    }
/**/
.bgBlog {
    background: url(../images/bgBlog.jpg) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-bottom: 40px;
}
/**/
.npBlog {
}
    .npBlog .carousel-control-next, .carousel-control-prev {
    top:50%;
    }
    .npBlog .carousel-control-prev, .npBlog .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .npBlog .carousel-control-prev {
        left:-50px;
        font-size:50px;
    }
    .npBlog .carousel-control-next {
        right: -50px;
        font-size: 50px;
    }
/**/
.npBlogBox {
    display: block;
    margin-bottom: 30px;
}

.npBlogBoxInfo {
    background: rgba(255,255,255,0.8);
    display: block;
    padding: 35px;
    text-align: center;
}

    .npBlogBoxInfo h3 {
        font-size: 22px;
        color: #000;
        font-weight: 600;
    }

    .npBlogBoxInfo p {
        font-size: 13px;
        color: #4f4f4f;
    }
/**/
.npSubscribe {
    padding-bottom: 70px;
}
/**/
.npFormIframe {
    position: relative;
    overflow: hidden;
}

.npMap {
    width: 100%;
    min-height: 626px;
    border: none;
    position: relative;
    z-index: 0;
    margin: 0px;
    padding: 0px;
    border: none;
    vertical-align: top;
}

.npMapIframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #cacaca;
    z-index: 0;
    min-height: 626px;
    overflow: hidden;
    vertical-align: top;
}

.npForm {
    display: block;
    background: rgba(255,255,255,0.75);
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
    padding-left: 35px;
    padding-right: 35px;
}

    .npForm h1 {
        font-family: 'Courgette', cursive;
        font-size: 50px;
        color: #b0004f;
        font-weight: bold;
        padding-top: 60px;
        padding-bottom: 22px;
    }

    .npForm .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

.signInDiv {
    display: block;
    position: relative;
    padding-bottom: 20px;
}

.form-control {
    border-radius: 0px;
    padding: 14px 30px;
    height: inherit;
}

    .form-control:focus {
        outline: none;
        border-color: #b0004f;
        box-shadow: none;
    }

@media(max-width:991px) {
    .npMap {
        width: 100%;
        min-height: 400px;
        border: none;
        position: relative;
        z-index: 0;
    }

    .npMapIframe {
        display: block;
        position: relative;
        top: 0px;
        left: 0px;
        min-height: 400px;
        width: 100%;
        z-index: 0;
    }

    .npForm {
        padding-left: 0px;
        padding-right: 0px;
    }

        .npForm .col-md-4 {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
}

@media(max-width:767px) {
    .npForm .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/**/
.npSocail {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.bg1 {
    background: #27a4de;
}

.npSocail .list-inline.d-flex {
    align-items: center;
    justify-content: center;
    color: #fff;

}

    .npSocail .list-inline.d-flex li:first-child {
        flex-basis: 50px;
        max-height: 50px;
        margin-right: 15px;
    }

        .npSocail .list-inline.d-flex li:first-child span {
            width: 50px;
            height: 50px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
        }

            .npSocail .list-inline.d-flex li:first-child span svg, .npSocail .list-inline.d-flex li:first-child span img {
                fill: #fff !important;
                max-width: 100%;
            }

    .npSocail .list-inline.d-flex li:last-child {
        flex: 1;
    }

        .npSocail .list-inline.d-flex li:last-child h5 {
            display: flex;
            flex-direction: column;
            font-size: 16px;
            font-weight: 600;
        }

            .npSocail .list-inline.d-flex li:last-child h5 font {
                font-weight: 400;
                font-size: 13px;
                text-transform: uppercase;
                padding-bottom: 8px;
            }
/**/
.bgFooter {
    background: #f8faee url(../images/bgFooter.jpg) no-repeat center bottom;
    background-size: cover;
    padding-bottom: 150px;
    padding-top: 30px;
}

    .bgFooter ul li:first-child {
    width:148px;
    margin-right:20px;
    }
    .bgFooter ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        margin-bottom:30px;
    }
    .bgFooter ul li p {
        margin-bottom: 0px;
        padding-top: 10px;
        font-size: 13px;
        font-weight: 400;
    }
    .bgFooter ul li:last-child a{
        font-size:30px;
        margin-left:15px;
    }
        .bgFooter ul li:last-child a:hover {
            opacity:0.6;
        }
        .bgFooter ul li:last-child a:first-child {
            color: #385599;
        }
        .bgFooter ul li:last-child a:last-child {
            color: #cc2626;
        }
@media(max-width:991px) {

    .bgFooter {
        padding-bottom: 100px;
    }
}
    @media(max-width:767px) {
        .bgFooter {
            padding-bottom: 50px;
        }
        .bgFooter ul {
            flex-direction: column;
            justify-content: center;
        }

            .bgFooter ul li p {
                text-align: center;
                margin-bottom: 15px;
            }

            .bgFooter ul li:last-child {
                margin-left: 0px !important;
            }
    }
    /**/

