﻿h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
    color: #054a85;
}


a:hover {
    text-decoration: none;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50px;
        background: #20a4f3;
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #4361ee;
            color: #fff;
        }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #0880e8;
        border-top-color: #bfe0fd;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f8ff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-weight: bold;
    color: #054a85;
}



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    height: 60px;
    background-color: #20a4f3;
    font-size: 14px;
    transition: all 0.5s;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
}

    #topbar.topbar-scrolled {
        top: -60px;
    }

    #topbar .contact-info ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    #topbar .contact-info li {
        display: inline-block;
        padding: 0;
    }

        #topbar .contact-info li + li {
            margin-left: 18px;
        }
       
    #topbar .contact-info a {
        color: rgba(255, 255, 255, 0.8);
        transition: 0.3s;
    }

        #topbar .contact-info a:hover {
            color: #fff;
            text-decoration: none;
        }

    #topbar .contact-info i {
        color: #1130bb;
        padding-right: 4px;

    }


    #topbar .login-btn a {
        color: #fff;
        padding: 6px 24px 8px 24px;
        display: inline-block;
        transition: 0.3s;
        border-radius: 50px;
        background-color: #4361ee;
    }

        #topbar .login-btn a:hover {
            background-color: #009FB7;
            text-decoration: none;
        }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(67, 97, 238, 0.6);
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 60px;
}

    #header.header-scrolled {
        top: 0;
        background: rgba(67, 97, 238, 0.9);
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 60px;
        }

@media (max-width: 992px) {
    #header {
        top: 0;
        padding: 15px 0;
        background: transparent;
    }

        #header .logo {
            font-size: 28px;
        }
}

.header-inner-pages {
    background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
    background: rgba(6, 98, 178, 0.9) !important;
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.logo-title {
    padding: 5px;
    float: right;
}

.logo-title p {
    color: #fff;
    padding: 0;
    margin: 0;
}

/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 24px;
    }

.nav-menu a {
    display: block;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    font-size: 14px;
    padding: 0 3px;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}

.nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
   /* background-color: #6FB98F;*/
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
    text-decoration:none;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #fff;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 8px;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #009FB7;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #4361ee;
    }

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu .drop-down .drop-down > a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: #fff;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #0665b7;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #009FB7;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(47, 82, 238, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}



/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
#slide-info {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    background: url('assets/slider.jpg') top center;
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
}

#slide-info:before {
    content: "";
    background: rgba(47, 82, 238, 0.9);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 40%;
}

#slide-info .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#slide-info h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#slide-info p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#slide-info .carousel-control-prev, #slide-info .carousel-control-next {
    width: 10%;
}

#slide-info .carousel-control-next-icon, #slide-info .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#slide-info .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #009FB7;
}

#slide-info .btn-get-started:hover {
    background: #009FB7;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 1024px) {
    #slide-info p {
        width: 60%;
    }

    #slide-info .carousel-control-prev, #slide-info .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 768px) {
    #slide-info {
        height: 100vh;
        margin-bottom: 60px;
    }

        #slide-info h2 {
            font-size: 28px;
        }
}




/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
    padding-top: 15px;
}

.icon-boxes .icon-box {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 350px;
    box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    color: #303C7D;
}

.icon-boxes .icon {
    margin: 0 auto 20px auto;
    text-align: center;
}

.icon-boxes .icon i {
    font-size: 36px;
    line-height: 1;
    color: #03a9f4;
}

.icon-boxes .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.icon-boxes a {
    color: #7284a8;
    text-decoration: none;
}

.icon-boxes .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    color: #777777;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    background: linear-gradient(rgba(47, 82, 238, 0.8), rgba(47, 82, 238, 0.9)), url("assets/building.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.about h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.about p {
    color: #fff;
}

.about .about-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    border-radius: 50px;
    border: 2px solid #009FB7;
    color: #fff;
    text-decoration: none;
}

.about .about-btn:hover {
    background: #009FB7;
}

@media (max-width: 1024px) {
    .about {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .about .about-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    background: url('assets/nepal.png') left center no-repeat;
    position: relative;
}

    .contact:before {
        content: "";
        background: rgba(255, 255, 255, 0.7);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .contact .container {
        position: relative;
    }

    .contact .message-form {
        width: 100%;
        background: #fff;
    }

        .contact .message-form .form-group {
            padding-bottom: 8px;
        }

        .contact .message-form input, .contact .message-form textarea {
            border-radius: 4px;
            box-shadow: none;
            font-size: 14px;
        }

        .contact .message-form input {
            height: 44px;
        }

        .contact .message-form textarea {
            padding: 10px 12px;
            resize: none;
        }

        .contact .message-form button[type="button"] {
            border: 0;
            padding: 10px 32px;
            color: #4361ee;
            transition: 0.4s;
            border-radius: 50px;
            border: 2px solid #4361ee;
            background: #fff;
        }

        .contact .message-form button[type="button"]:hover {
            background: #4361ee;
            color: #fff;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 575.98px) {
    .maps {
        padding-bottom: 20px;
    }

    #contact-page .maps iframe {
        width: 100%;
        height: 450px;
    }
}


@media (min-width: 576px) {
    .maps {
        padding-bottom: 20px;
    }

    #contact-page .maps iframe {
        width: 100%;
        height: 450px;
    }
}

@media (min-width: 768px) {
    .maps {
        padding-bottom: 20px;
    }

    #contact-page .maps iframe {
        width: 100%;
        height: 450px;
    }
}

@media (min-width: 992px) {
    .maps {
        padding-bottom: 20px;
    }

    #contact-page .maps iframe {
        width: 100%;
        height: 450px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: #1130bb;
    font-size: 14px;
    color: #fff;
   
    left: 0;
    bottom: 0;
    width: 100%;
    
    text-align: center;
}


#footer .footer-top {
    background-color: #4361ee;
    /*background-color: #20a4f3;*/
    padding: 60px 0 30px 0;
}

     

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}


#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #5db1f9;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    /*display: flex;*/
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: rgba(255, 255, 255, 0.75);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #fff;
}


#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .credits a {
    color: #009FB7;
}


/*--------------------------------*/
/*Layout Styles*/
/*--------------------------------*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.content-header {
    padding: 15px 0;
    background: linear-gradient(rgba(47, 82, 238, 0.7), rgba(47, 82, 238, 0.8)), url("assets/slider.jpg") fixed center center;
    padding-top: 160px;
}

@media (max-width: 992px) {
    .content-header {
        padding-top: 100px;
    }
}


.content-header ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 20px;
    margin: 0;
    font-size: 14px;
}

.content-header ol li {
    list-style: none;
    color: black;
}
.content-header ol li + li {
    
    padding-left: 10px;
    
}

.content-header ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}

.content-header ol a {
    color: #FCEA4A;
}

.content-header ol a:hover {
    color: #fff;
    text-decoration: underline;
}
/*-----------------------------------------------------------------loading UI-----------------------------------------*/
#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
    margin-left: 0px;
    margin-right: 2px;
}

.cv-spinner {
    height: 100%;
    display: flex;
    margin-left: 50%;
    align-items: center;
}

.spinner {
    width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    animation: skLinRotate 3s ease-in-out infinite alternate;
}

    .spinner:after {
        content: "";
        position: absolute;
        inset: 5px;
        border-radius: 50%;
        border: 5px solid transparent;
        border-top-color: rgb(0,255,184);
    }

@keyframes skLinRotate {
    95%,100% {
        transform: rotate(840deg)
    }
}

.loading-text {
    font-size: 22px;
    color: rgb(0,255,184);
    font-family: Trebuchet MS;
    margin-top: 120px;
    margin-left: -150px;
    font-weight: 800;
}
/*.spinner {
    width: 80px;
    height: 80px;
    border: 4px #ddd solid;
    border-top: 4px rgb(0,255,184) solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}*/

.is-hide {
    display: none;
}
/*--------------------------------------------------------------------------------------------------------------------*/
