﻿/**
* Template Name: BizPage - v3.2.1
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/



body {
    background: #fff;
    color: #666666;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #E3F0FF;
    transition: 0.5s;
}

    a:hover, a:active, a:focus {
        color: #E3F0FF;
        outline: none;
        text-decoration: none;
    }

p {
    padding: 0;
    margin: 0 0 20px 0;
    text-align: justify;
      white-space:pre-line;
  text-justify:distribute;
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    color:#E3F0FF;
}

/* h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 40px 0;
    padding: 0;
} */

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #E3F0FF;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

    .back-to-top i {
        padding-top: 12px;
        color: #8FAFD9;
    }

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

.cardspace {
    margin-left: 0.5rem;
}

/* Prelaoder */
#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 #f2f2f2;
        border-top: 6px solid #18d26e;
        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);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 26px 0;
    background: rgba(0, 0, 0, 0.9);
}

    #header.header-transparent {
        background: transparent;
    }

    #header.header-scrolled {
        background: rgb(0,0,20);    /*rgb(13,12,80);*/
        padding: 18px 0;
    }

    #header .logo {
        font-size: 34px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        letter-spacing: 3px;
        padding-left: 10px;
        border-left: 4px solid #E3F0FF;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 40px;
        }

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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 28px;
    }

.nav-menu a {
    display: block;
    position: relative;
    color: #8FAFD9;
    transition: 0.3s;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
        color: #E3F0FF;
    }

.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: #112540;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    background-color:rgb(13,12,80);
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: #8FAFD9;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #E3F0FF;
    }

.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: 30px;
    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: #8FAFD9;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: rgb(13,12,80);
    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: #8FAFD9;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #E3F0FF;
            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(26, 26, 26, 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;
    }

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 100vh;
    background: rgb(13,12,80);
    overflow: hidden;
    position: relative;
}

@media (max-height: 500px) {
    #intro {
        height: 150vh;
    }
}

#intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    #intro .carousel-item::before {
        content: '';
        background-color: rgba(0, 0, 0, 0.7);
    }

#intro .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
}

#intro .container {
    text-align: center;
}

#intro h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

@media (max-width: 768px) {
    #intro h2 {
        font-size: 28px;
    }
}

#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #intro p {
        width: 60%;
    }
}

#intro .carousel-fade {
    overflow: hidden;
}

    #intro .carousel-fade .carousel-inner .carousel-item {
        transition-property: opacity;
    }

    #intro .carousel-fade .carousel-inner .carousel-item,
    #intro .carousel-fade .carousel-inner .active.carousel-item-left,
    #intro .carousel-fade .carousel-inner .active.carousel-item-right {
        opacity: 0;
    }

    #intro .carousel-fade .carousel-inner .active,
    #intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
    #intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
        opacity: 1;
        transition: 0.5s;
    }

        #intro .carousel-fade .carousel-inner .carousel-item-next,
        #intro .carousel-fade .carousel-inner .carousel-item-prev,
        #intro .carousel-fade .carousel-inner .active.carousel-item-left,
        #intro .carousel-fade .carousel-inner .active.carousel-item-right {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

#intro .carousel-control-prev, #intro .carousel-control-next {
    width: 10%;
}

@media (min-width: 1024px) {
    #intro .carousel-control-prev, #intro .carousel-control-next {
        width: 5%;
    }
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

#intro .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #E3F0FF;
    background: rgb(13,12,80);
}

#intro .btn-get-started-lightblue {
    background: #0082C8;
}

    #intro .btn-get-started:hover {
        background: #E3F0FF;
        color: #112540;
    }

.nav-menu ul li.topmenu {
    background-color:#0082C8;
    padding:0px 15px;
    text-align:center;
    line-height:38px;
}

    .nav-menu ul li.topmenu a {
        color:#ffffff;
    }

.link-description {
    text-decoration:underline;
    color:#000;
}

a.link-description:hover {
    color:#000;
}

a.link-description:visited {
    text-decoration:underline;
    color:#000;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
    font-size: 32px;
    color: #E3F0FF;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

    .section-header h3::before {
        content: '';
        position: absolute;
        display: block;
        width: 120px;
        height: 1px;
        background: #ddd;
        bottom: 1px;
        left: calc(50% - 60px);
    }

    .section-header h3::after {
        content: '';
        position: absolute;
        display: block;
        width: 40px;
        height: 3px;
        background: #E3F0FF;
        bottom: 0;
        left: calc(50% - 20px);
    }

.section-header h4 {
    font-size: 24px;
    color: #E3F0FF;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
.section-header p {
    text-align: justify;
    padding-bottom: 20px;
    color: #E3F0FF;
    white-space: pre-line;
    text-justify: distribute;
}

/* Section with background
--------------------------------*/
.section-bg {
    /*background: #112540;*/
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f7f7f7;
    min-height: 40px;
    margin-top: 90px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 80px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #6c757d;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/* Featured Services Section
--------------------------------*/
#featured-services {
    /*background: #112540;*/
}

    #featured-services .box {
        padding: 30px 20px;
    }

    /*#featured-services .box-bg {
        background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
    }*/


    #featured-services i {
        color: #8FAFD9;
        font-size: 48px;
        display: inline-block;
        line-height: 1;
    }

    #featured-services h4 {
        font-weight: 400;
        margin: 15px 0;
        font-size: 18px;
    }

        #featured-services h4 a {
            color: #fff;
        }

            #featured-services h4 a:hover {
                color: #18d26e;
            }

    #featured-services p {
        font-size: 14px;
        line-height: 24px;
        color: #E3F0FF;
        margin-bottom: 0;
    }

#main {
    background: url("../image/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
}

/* About Us Section
--------------------------------*/
#about {    
    padding: 60px 0px 0px 0px;
    position: relative;
}

    #about::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        /*background: #112540;*/
        z-index: 9;
    }

    #about .container {
        position: relative;
        z-index: 10;
    }

    #about .about-col {
        background: #2B558C;
        border-radius: 10px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
		padding-bottom:15px;
        margin-bottom: 50px;
    }

        #about .about-col .img {
            position: relative;
        }

            #about .about-col .img img {
                border-radius: 4px 4px 0 0;
            }

        #about .about-col .icon {
            width: 64px;
            height: 64px;
            padding-top: 8px;
            text-align: center;
            position: absolute;
            background-color: #2B558C;
            border-radius: 50%;
            text-align: center;
            border: 4px solid #fff;
            left: calc( 50% - 32px);
            bottom: -30px;
            transition: 0.3s;
        }

        #about .about-col i {
            font-size: 36px;
            line-height: 1;
            color: #fff;
            transition: 0.3s;
        }

        #about .about-col:hover .icon {
            background-color: #fff;
        }
        #about .about-col:hover .img {
            transform: scale(1.05);
        }

        #about .about-col:hover i {
            color: #2B558C;
        }

        #about .about-col h2 {
            color: #000;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            padding: 0;
            margin: 40px 0 12px 0;
        }

            #about .about-col h2 a {
                color: #E3F0FF;
                text-align: justify;
            white-space: pre-line;
            text-justify: distribute;
            }

                #about .about-col h2 a:hover {
                    color: #E3F0FF;
                }

        #about .about-col p {
            font-size: 14px;
            line-height: 24px;
            color: #E3F0FF;
            margin-bottom: 0;
            padding: 0 20px 20px 20px;
            text-align: justify;
            white-space: pre-line;
            text-justify: distribute;
        }

        #about .about-col li {
            font-size: 14px;
            line-height: 24px;
            color: #E3F0FF;
            margin-bottom: 0;
            padding: 0 20px 20px 20px;
            text-align: justify;
            white-space: pre-line;
            text-justify: distribute;
        }

/* Services Section
--------------------------------*/
#services {
    background-size: cover;
    padding: 0px;
}


#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #2B558C;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  height:90%;
}

#services .box:hover {
  transform: scale(1.04);
}

#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#services .icon i {
  font-size: 36px;
  line-height: 1;
}


    #services .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        #services .title a {
            color: #E3F0FF;
        }

#services .box:hover {
        /*background-color: #f7f7f7;*/
    }
	
    #services .box:hover .title a {
        color: #E3F0FF;
    }

    #services .description {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
    }

#ourclients {
    padding: 60px 0;
}

    #ourclients .progress {
        height: 35px;
        margin-bottom: 10px;
    }

        #ourclients .progress .skill {
            font-family: "Open Sans", sans-serif;
            line-height: 35px;
            padding: 0;
            margin: 0 0 0 20px;
            text-transform: uppercase;
        }

            #ourclients .progress .skill .val {
                float: right;
                font-style: normal;
                margin: 0 20px 0 0;
            }

    #ourclients .progress-bar {
        width: 1px;
        text-align: left;
        transition: .9s;
    }


/* Contact Section
--------------------------------*/
#contact {
    background-color: rgb(0,0,0,0.5);
    padding: 60px 0;
}

    #contact .contact-info {
        margin-bottom: 20px;
        text-align: center;
    }

        #contact .contact-info i {
            font-size: 48px;
            display: inline-block;
            margin-bottom: 10px;
            color: #E3F0FF;
        }

        #contact .contact-info address, #contact .contact-info p {
            margin-bottom: 0;
            color: #E3F0FF;
        }

        #contact .contact-info h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;
            color: #E3F0FF;
        }

        #contact .contact-info a {
            color: #E3F0FF;
        }

        #contact .contact-info p {
            text-align: center;
        }

            #contact .contact-info a:hover {
                color: #E3F0FF;
            }

    #contact .contact-address, #contact .contact-phone, #contact .contact-email .contact-fax{
        margin-bottom: 20px;
    }

@media (min-width: 768px) {
    #contact .contact-address, #contact .contact-phone, #contact .contact-email  .contact-fax{
        padding: 20px 0;
    }
}

@media (min-width: 768px) {
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

#contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

    #contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    #contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        #contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    #contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    #contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        #contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    #contact .php-email-form input, #contact .php-email-form textarea {
        padding: 10px 14px;
        border-radius: 0;
        box-shadow: none;
        font-size: 15px;
    }

        #contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
            background-color: #18d26e;
        }

    #contact .php-email-form button[type="submit"] {
        background: #18d26e;
        border: 0;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        cursor: pointer;
    }

        #contact .php-email-form button[type="submit"]:hover {
            background: #13a456;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    /*background: #112540;*/
    padding: 0 0 30px 0;
    color: #E3F0FF;
    font-size: 14px;
}

    #footer .footer-top {
        background: #111;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 34px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 10px;
                line-height: 1;
                font-family: "Montserrat", sans-serif;
                font-weight: 700;
                letter-spacing: 3px;
                border-left: 4px solid #18d26e;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Montserrat", sans-serif;
                color: #eee;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #333;
            color: #eee;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #18d26e;
                color: #fff;
            }

        #footer .footer-top h4 {
            font-size: 14px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
        }

            #footer .footer-top h4::before, #footer .footer-top h4::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                height: 2px;
            }

            #footer .footer-top h4::before {
                right: 0;
                background: #555;
            }

            #footer .footer-top h4::after {
                background: #18d26e;
                width: 60px;
            }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 8px;
                    color: #ddd;
                }

                #footer .footer-top .footer-links ul li {
                    border-bottom: 1px solid #333;
                    padding: 10px 0;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #eee;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #18d26e;
                    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact p {
                line-height: 26px;
            }

        #footer .footer-top .footer-newsletter {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-newsletter input[type="email"] {
                border: 0;
                padding: 6px 8px;
                width: 65%;
            }

            #footer .footer-top .footer-newsletter input[type="submit"] {
                background: #18d26e;
                border: 0;
                width: 35%;
                padding: 6px 0;
                text-align: center;
                color: #fff;
                transition: 0.3s;
                cursor: pointer;
            }

                #footer .footer-top .footer-newsletter input[type="submit"]:hover {
                    background: #13a456;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        text-align: center;
        font-size: 13px;
        color: #ddd;
    }


/* about-history */
.about-history {
    height: 600px;
    padding: 10px;
}

.about-title {
    margin-bottom: 25px;
}

    .about-title h3 {
        margin: 0 0 10px;
        font-size: 34px;
        font-weight: 400;
        color: #2c2c2c;
    }

    .about-title p {
        margin: 0;
        font-size: 36px;
        font-weight: 300;
        color: #ECECEC;
    }

.title-white h3 {
    color: #d6d6d6;
}

.title-white p {
    color: rgba(222,222,222,.09);
}

.about-history-list {
    position: relative;
}

    .about-history-list .flex-viewport {
        padding: 0 31px;
    }

        .about-history-list .flex-viewport:before {
            position: absolute;
            top: 50%;
            right: 0;
            left: 0;
            border-top: 2px solid #18d26e;
            content: '';
        }

    .about-history-list .slides li {
        position: relative;
        width: 253px;
        height: 600px;
        margin-right: 31px;
    }

        .about-history-list .slides li .item {
            position: absolute;
            top: 345px;
            right: -32px;
            bottom: 0;
            left: -32px;
            min-height: 152px;
            padding: 44px 0 0 0;
            background-color: #fff;
            -webkit-transition: all .2s ease;
            -moz-transition: all .2s ease;
            -ms-transition: all .2s ease;
            -o-transition: all .2s ease;
            transition: all .2s ease;
        }

            .about-history-list .slides li .item:before {
                position: absolute;
                top: -49px;
                left: 50%;
                width: 20px;
                height: 20px;
                overflow: hidden;
                margin-left: -10px;
                -webkit-border-radius: 100%;
                -moz-border-radius: 100%;
                border-radius: 100%;
                background-color: rgba(218,183,101,.6);
                content: '';
            }

            .about-history-list .slides li .item:after {
                position: absolute;
                top: -45px;
                left: 50%;
                width: 12px;
                height: 12px;
                overflow: hidden;
                margin-left: -6px;
                -webkit-border-radius: 100%;
                -moz-border-radius: 100%;
                border-radius: 100%;
                background-color: #DAB765;
                content: '';
            }

        .about-history-list .slides li:nth-child(even) .item {
            top: 0;
            bottom: 325px;
            padding: 0 0 44px;
        }

            .about-history-list .slides li:nth-child(even) .item:before {
                top: auto;
                bottom: -44px;
            }

            .about-history-list .slides li:nth-child(even) .item:after {
                top: auto;
                bottom: -40px;
            }

        .about-history-list .slides li .item:hover {
            background-color: #e2e2e2;
        }

        .about-history-list .slides li .item h3 {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 44px;
            line-height: 44px;
            margin: 0;
            font-size: 20px;
            font-weight: 400;
            color: #111;
            text-align: center;
            background-color: #e2e2e2;
            -webkit-transition: all .2s ease;
            -moz-transition: all .2s ease;
            -ms-transition: all .2s ease;
            -o-transition: all .2s ease;
            transition: all .2s ease;
        }

        .about-history-list .slides li .item:hover h3 {
            color: #232323;
            background-color: #fff;
        }

        .about-history-list .slides li .item h3:before {
            position: absolute;
            bottom: 40px;
            left: 50%;
            margin-left: -13px;
            background: transparent;
            content: '';
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-bottom: 25px solid #E2E2E2;
        }

        .about-history-list .slides li:nth-child(even) .item h3 {
            top: auto;
            bottom: 0;
        }

            .about-history-list .slides li:nth-child(even) .item h3:before {
                top: 40px;
                bottom: auto;
                border-width: 18px 9px 0;
                border-color: #E2E2E2 transparent transparent;
                background: transparent;
                content: '';
                width: 0;
                height: 0;
                border-left: 12px solid transparent;
                border-right: 12px solid transparent;
                border-top: 25px solid #E2E2E2;
            }

        .about-history-list .slides li .item .desc {
            line-height: 24px;
            padding: 10px 15px 0px;
            font-size: 14px;
            color: #929292;
        }

        .about-history-list .slides li .item:hover .desc {
            /*color: #ffffff;*/
        }

        .about-history-list .slides li .item .desc p {
            margin: 0;
        }

    .about-history-list .flex-direction-nav {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .about-history-list .flex-direction-nav a {
            position: absolute;
            top: 50%;
            width: 48px;
            height: 160px;
            line-height: 160px;
            overflow: hidden;
            margin-top: -80px;
            font-size: 50px;
            font-family: simsun;
            color: #ffffff;
            text-align: center;
        }

            .about-history-list .flex-direction-nav a.flex-prev {
                left: -28px;
                color: #18d26e;
            }

            .about-history-list .flex-direction-nav a.flex-next {
                right: -28px;
                color: #18d26e;
            }

.about-history-swiper {
    width: 100%;
}

    .about-history-swiper .swiper-slide .item {
        overflow: hidden;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background-color: #fff;
    }

        .about-history-swiper .swiper-slide .item h3 {
            margin: 0;
            height: 40px;
            line-height: 40px;
            overflow: hidden;
            font-size: 20px;
            text-align: center;
            color: #999999;
            background-color: #e2e2e2;
        }

        .about-history-swiper .swiper-slide .item .desc {
            line-height: 20px;
            padding: 10px;
            font-size: 14px;
            color: #929292;
        }

            .about-history-swiper .swiper-slide .item .desc p {
                margin: 0;
            }

    .about-history-swiper .about-history-pagination {
        position: static;
        margin-top: 10px;
    }

        .about-history-swiper .about-history-pagination .swiper-pagination-bullet {
            background: #fff;
        }

        .about-history-swiper .about-history-pagination .swiper-pagination-bullet-active {
            background: #C91523;
        }



.tb {
    display: table;
    width: 100%;
    height: 100%;
}

.tbr {
    display: table-row;
}

.tbc {
    display: table-cell;
    vertical-align: middle;
}


/* media Section
--------------------------------*/
#media {
  padding: 100px 0;
  /*background-color:#112540;*/
}

#media #media-flters {
  padding: 0;
  margin: 5px 0 30px 0;
  list-style: none;
  text-align: center;
}

#media #media-flters div {
  cursor: pointer;
  margin: 0;
  display: inline-block;
  padding: 10px;
  font-size: 12px;
  line-height: 20px;
  color: #E3F0FF;
  border-radius: 4px;
  text-transform: uppercase;
  background: #2B558C;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
  text-align:center;
  white-space:nowrap;
}

#media #media-flters div:hover, #media #media-flters div.filter-active {
  background: #E3F0FF;
  color: #2B558C;
}

#media #media-flters div:last-child {
  margin-right: 0;
}

#media .media-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#media .media-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#media .media-item {
  position: relative;
  height: 90px;
  overflow: hidden;
}

#media .media-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

#media .media-item figure:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#media .media-item figure .link-preview, #media .media-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#media .media-item figure .link-preview i, #media .media-item figure .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #333;
}

#media .media-item figure .link-preview:hover, #media .media-item figure .link-details:hover {
  background: #18d26e;
}

#media .media-item figure .link-preview:hover i, #media .media-item figure .link-details:hover i {
  color: #fff;
}

#media .media-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#media .media-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#media .media-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#media .media-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#media .media-item .media-info {
  background: #2B558C;
  text-align: left;
  padding: 20px;
  height: 80px;
  border-radius: 0 0 10px 10px;
}

    #media .media-item .media-info h4 {
        font-size: 18px;
        overflow: hidden;
        font-weight: 700;
        margin-bottom: 18px;
        padding-bottom: 0;
        white-space: nowrap;
        text-overflow: ellipsis;
        line-height:18px;
    }

#media .media-item .media-info h4 a {
  color: #E3F0FF;
}

#media .media-item .media-info h4 a:hover {
  color: rgb(13,12,80);
}

#media .media-item .media-info p {
  padding: 0;
  margin: 0;
  color: #E3F0FF;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}


/*Awards*/
#awards {
    background-color: rgb(0,0,0,0.5);
    background-size: cover;
    padding: 100px 0 40px 0;
    position: relative;
    color: white;
}
.Awards-img{max-width: 100%; text-align: center; padding-top: 40px; padding-bottom: 40px; line-height: 110px;height:208px;}
.Awards-wrap-padding{padding-top: 10px;padding-bottom: 10px;display:flex;}
.Awards-contentText{padding: 0;}
.Awards-contentText h4{font-weight: bold; margin-bottom: 15px;  font-size: 14px;}
img.Awards-img-one{width: 200px;}
img.Awards-img-two{width: 103px;}


#contact1 {
    background: url("/assets/img/section04.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    color: white;
}

/*竖向时间线*/
.main-timeline{
		font-family: 'Roboto', sans-serif;
		padding: 20px 0;
		position: relative;
	}
	.main-timeline:before,
	.main-timeline:after{
		content: '';
		height: 40px;
		width: 40px;
		background-color: #e7e7e7;
		border-radius: 50%;
		border: 10px solid #303334;
		transform:translateX(-50%);
		position: absolute;
		left: 50%;
		top: -15px;
		z-index: 2;
	}
	.main-timeline:after{
		top: auto;
		bottom:15px;
	}
	.main-timeline .timeline{
		padding: 35px 0;
		margin-top: -30px;
		position: relative;
		z-index: 1;
	}
	.main-timeline .timeline:before,
	.main-timeline .timeline:after{
		content: '';
		height: 100%;
		width: 50%;
		border-radius: 100px 0 0 100px;
		border: 15px solid #46B2BC;
		border-right: none;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
	}
	.main-timeline .timeline:after{
		height: calc(100% - 30px);
		width: calc(50% - 12px);
		border-color: #65C7D0;
		left: 12px;
		top: 15px;
	}
	.main-timeline .timeline-content{ display:inline-block; width:100%;}
	.main-timeline .timeline-content:hover{ text-decoration: none; }
	.main-timeline .timeline-year{
		color: #65C7D0;
		font-size: 50px;
		font-weight: 600;
		display: inline-block;
		transform:translateY(-50%);
		position: absolute;
		top: 50%;
		left: 10%;
	}
	.main-timeline .timeline-icon{
		color: #65C7D0;
		font-size: 80px;
		display: inline-block;
		transform: translateY(-50%);
		position: absolute;
		left: 34%;
		top: 50%;
	}
	.main-timeline .content{
		color: #909090;
		width: 50%;
		padding: 20px;
		display: inline-block;
		float: right;
	}
	.main-timeline .title{
		color: #65C7D0;
		font-size: 22px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin: 0 0 5px 0;
	}
	.main-timeline .description{
		font-size: 15px;
		letter-spacing: 1px;
		margin: 0;
	}
	.main-timeline .timeline:nth-child(even):before{
		left: auto;
		right: 0;
		border-radius: 0 100px 100px 0;
		border: 15px solid red;
		border-left: none;
	}
	.main-timeline .timeline:nth-child(even):after{
		left: auto;
		right: 12px;
		border: 15px solid green;
		border-left: none;
		border-radius: 0 100px 100px 0;
	}
	.main-timeline .timeline:nth-child(even) .content{ float: left; }
	.main-timeline .timeline:nth-child(even) .timeline-year{
		left: auto;
		right: 10%;
	}
	.main-timeline .timeline:nth-child(even) .timeline-icon{
		left: auto;
		right: 32%;
	}
	.main-timeline .timeline:nth-child(5n+2):before{ border-color: #EA3C14; }
	.main-timeline .timeline:nth-child(5n+2):after{ border-color: #EF5720; }
	.main-timeline .timeline:nth-child(5n+2) .timeline-icon{ color: #EA3C14; }
	.main-timeline .timeline:nth-child(5n+2) .timeline-year{ color: #EA3C14; }
	.main-timeline .timeline:nth-child(5n+2) .title{ color: #EA3C14; }
	.main-timeline .timeline:nth-child(5n+3):before{ border-color: #8CC63E; }
	.main-timeline .timeline:nth-child(5n+3):after{ border-color: #6CAF29; }
	.main-timeline .timeline:nth-child(5n+3) .timeline-icon{ color: #8CC63E; }
	.main-timeline .timeline:nth-child(5n+3) .timeline-year{ color: #8CC63E; }
	.main-timeline .timeline:nth-child(5n+3) .title{ color: #8CC63E; }
	.main-timeline .timeline:nth-child(5n+4):before{ border-color: #F99324; }
	.main-timeline .timeline:nth-child(5n+4):after{ border-color: #FBB03B; }
	.main-timeline .timeline:nth-child(5n+4) .timeline-icon{ color: #F99324; }
	.main-timeline .timeline:nth-child(5n+4) .timeline-year{ color: #F99324; }
	.main-timeline .timeline:nth-child(5n+4) .title{ color: #F99324; }
	.main-timeline .timeline:nth-child(5n+5):before{ border-color: #0071BD; }
	.main-timeline .timeline:nth-child(5n+5):after{ border-color: #0050A3; }
	.main-timeline .timeline:nth-child(5n+5) .timeline-icon{ color: #0071BD; }
	.main-timeline .timeline:nth-child(5n+5) .timeline-year{ color: #0071BD; }
	.main-timeline .timeline:nth-child(5n+5) .title{ color: #0071BD; }
	@media screen and (max-width:1200px){
		.main-timeline .timeline:after{ border-radius: 88px 0 0 88px; }
		.main-timeline .timeline:nth-child(even):after{ border-radius: 0 88px 88px 0; }
	}
	@media screen and (max-width:767px){
		.main-timeline .timeline{ margin-top: -19px; }
		.main-timeline .timeline:before {
			border-radius: 50px 0 0 50px;
			border-width: 10px;
		}
		.main-timeline .timeline:after {
			height: calc(100% - 18px);
			width: calc(50% - 9px);
			border-radius: 43px 0 0 43px;
			border-width:10px;
			top: 9px;
			left: 9px;
		}
		.main-timeline .timeline:nth-child(even):before {
			border-radius: 0 50px 50px 0;
			border-width: 10px;
		}
		.main-timeline .timeline:nth-child(even):after {
			height: calc(100% - 18px);
			width: calc(50% - 9px);
			border-radius: 0 43px 43px 0;
			border-width: 10px;
			top: 9px;
			right: 9px;
		}
		.main-timeline .timeline-icon{ font-size: 60px; }
		.main-timeline .timeline-year{ font-size: 40px; }
	}
	@media screen and (max-width:479px){
		.main-timeline .timeline-icon{
			font-size: 50px;
			transform:translateY(0);
			top: 25%;
			left: 10%;
		}
		.main-timeline .timeline-year{
			font-size: 25px;
			transform:translateY(0);
			top: 65%;
			left: 9%;
		}
        .main-timeline .timeline-year1{
			font-size: 25px;
			transform:translateY(0);
			top: 50%;
			left: 9%;
		}
		.main-timeline .content{
			width: 68%;
			padding: 10px;
		}
		.main-timeline .title{ font-size: 18px; }
		.main-timeline .timeline:nth-child(even) .timeline-icon{
			right: 10%;
		}
		.main-timeline .timeline:nth-child(even) .timeline-year{
			right: 9%;
		}
	}

    .template-card {
    box-shadow: 0 8px 30px rgb(2 59 109 / 10%);
    transition: box-shadow .3s ease-in-out;
    height: 100%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

    .panel-heading_cash{
    background-color: #f5f5f5;
    border-color: #ddd;
	border-bottom: 0;
	 padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
	

.panel_cash {
  border: 1px solid transparent;
  border-radius: 5px;
  .box-shadow(0 1px 1px rgba(0, 0, 0, .05));
}

.panel-body_cash {
  padding: 10px 15px; 
}



element.style {
}
.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}
a.list-group-item, button.list-group-item {
    color: #555;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
     height:100%;
             border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 8%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%);
    display:flex;
    flex-direction:column;
}
.list-group-item.active {
    z-index: 2;
    color: #E3F0FF;
    background-color: #2B558C;
    border-color: #2B558C;
    border-radius:8px;
}

    .list-group-item.active:focus, .list-group-item.active:hover {
        /*background-color: #2B558C;
        border-color: #2B558C;
        opacity:0.6;
        box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);*/
        transform: scale(1.04);
    }

.list-group {
    height:100%;
    background: #2B558C;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 8%);
    cursor:pointer;
}
.owl-carousel .owl-item {
    height:160px;
}
.owl-carousel .owl-item img:hover {
  transform: scale(1.20);
}

#univer div {
    padding:10px;
}

    #univer div:hover {
        background-color: #e2e2e2;
        border-radius:5px;
    }

.contact-address h4::before{
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
    top:36px;
}

.contact-address h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #E3F0FF;
    bottom: 0;
    left: calc(50% - 20px);
    top:36px;
}



/*New Timeline Start*/
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
  color:#E3F0FF;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}

.timeline > li {
  margin-bottom: 20px;
  position: relative;
  width: 50%;
  float: left;
  clear: left;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-panel {
  width: 95%;
  float: left;
  border: 1px solid #d4d4d4;
  /*border-radius: 2px;*/
  /*padding: 20px;*/
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}

.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}

.timeline > li > .timeline-badge {
  color: #fff;
  width: 24px;
  height: 24px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  right: -12px;
  /*background-color: #999999;*/
  z-index: 100;
  /*
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  */
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-badge > a {
  color: #C5C7C5 !important;
}

.timeline-badge a:hover {
  color: #000 !important;
}

.timeline-title {
  margin-top: 0;
  color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
  padding: 20px;
  margin-bottom: 0;
}

.timeline-body > p + p {
  margin-top: 5px;
}

.timeline-footer {
  padding: 20px;
  background-color: #8FAFD9;
  text-align:center;
}

.timeline-footer > a {
  cursor: pointer;
  text-decoration: none;
}

.tooltip {
  position: absolute;
  z-index: 1020;
  display: block;
  visibility: visible;
  padding: 5px;
  font-size: 11px;
  opacity: 0;
  filter: alpha(opacity=0);
}

.tooltip.in {
  /*opacity:0;
    filter:alpha(opacity=80);*/
}

.tooltip.top {
  margin-top: -2px;
}

.tooltip.right {
  margin-left: 2px;
}

.tooltip.bottom {
  margin-top: 2px;
}

.tooltip.left {
  margin-left: -2px;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 0;
  margin-left: 0;
  border-left: 0 solid transparent;
  border-right: 5px solid transparent;
  border-top: 0 solid #000;
}

.tooltip.left .tooltip-arrow {
  bottom: 0;
  left: 0;
  margin-left: 0;
  border-left: 0 solid transparent;
  border-right: 5px solid transparent;
  border-top: 0 solid #000;
}

.tooltip.bottom .tooltip-arrow {
  bottom: 0;
  left: 0;
  margin-left: 0;
  border-left: 0 solid transparent;
  border-right: 5px solid transparent;
  border-top: 0 solid #000;
}

.tooltip.right .tooltip-arrow {
  bottom: 0;
  left: 0;
  margin-left: 0;
  border-left: 0 solid transparent;
  border-right: 5px solid transparent;
  border-top: 0 solid #000;
}

.tooltip-inner {
  width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #313131;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
}

.timeline > li.timeline-inverted {
  float: right;
  clear: right;
  margin-top: 30px;
  margin-bottom: 30px;
}

.timeline > li:nth-child(2) {
  margin-top: 200px;
}

.timeline > li:nth-child(3) {
  margin-top: 200px;
}

.timeline > li:nth-child(4) {
  margin-top: 200px;
}

.timeline > li:nth-child(5) {
  margin-top: 200px;
}

.timeline > li:nth-child(6) {
  margin-top: 300px;
}

.timeline > li:nth-child(7) {
  margin-top: 100px;
}



.timeline > li.timeline-inverted > .timeline-badge {
  left: -12px;
}

@media (max-width: 767px) {
  ul.timeline:before {
    left: 40px;
  }
  ul.timeline > li {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    float: left;
    clear: left;
  }
  ul.timeline > li > .timeline-panel {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
  }
  ul.timeline > li > .timeline-badge {
    left: 28px;
    margin-left: 0;
    top: 16px;
  }
  ul.timeline > li > .timeline-panel {
    float: right;
  }
  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }
  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
  .timeline > li.timeline-inverted {
    float: left;
    clear: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .timeline > li.timeline-inverted > .timeline-badge {
    left: 28px;
  }



  .timeline > li:nth-child(2) {
  margin-top: 80px;
}

.timeline > li:nth-child(3) {
  margin-top: 80px;
}

.timeline > li:nth-child(4) {
  margin-top: 80px;
}

.timeline > li:nth-child(5) {
  margin-top: 80px;
}

.timeline > li:nth-child(6) {
  margin-top: 80px;
}

.timeline > li:nth-child(7) {
  margin-top: 80px;
}



}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.glyphicon-record:before {
        position: absolute;
    top: -20px;
    left: -4px;
    width: 20px;
    height: 20px;
    overflow: hidden;
    margin-left: -6px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: #EEEEEE;
    content: '';
}
.glyphicon-record:after {
    position: absolute;
    top: -16px;
    left: 50%;
    width: 12px;
    height: 12px;
    overflow: hidden;
    margin-left: -6px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: #2B558C;
    content: '';
}
/*End*/


.media-info h4 {
    text-align:left;
}

.top_head {
    color: #E3F0FF;
    font-size: 18px;
    font-weight: bold;
}

.carousel-indicators li {
    background-color:#8FAFD9;
}

.modal-title {
    color: #666666
}

.modal-content {
    background-color:#E3F0FF;
}

.owl-carousel .owl-item img {
    background-color: #E3F0FF; /*#2B558C;*/
}


.team_icon_css {
    color:rgb(13,12,80);
}

#featured-services {
    background: #000;
}

#featured-services .box-bg {
    /*background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);*/
}

#universitlist {
    background: rgb(0,0,0,0.5);
    padding: 100px 0px 20px 0px;
}