/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'Roboto', sans-serif;
    color: #4a4a4a;
    font-size: 15px !important;
}

a {
    color: #000777;
}

    a:hover {
        color: #f1775d;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background-color: #000777;
    border-color: #000777;
}

.bt-wrapper {
    margin-bottom: -35px;
}

.dblue {
    color: #000777;
}

.map {
    max-width: 1900px;
}

#service1 div .img-fluid, #service3 div .img-fluid, #service5 div .img-fluid, #service4 div .img-fluid, #service2 div .img-fluid {
    border: 1px solid #000777;
}

.category {
    padding-left: 20px;
    padding-bottom: 10px;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

.category-sub {
    padding-left: 20px;
    padding-bottom: 10px;
    margin-top: 5px;
    font-weight: 400;
    font-size: 13px;
}

.border-blue {
    border: 1px solid #000777;
}

.category-wrapper {
    background: white;
    border: 1px solid #EEEEEE;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
/*--------------------------------------------------------------
# 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 #000777;
        border-top-color: white;
        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);
    }
}

/*--------------------------------------------------------------
# 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: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #000777;
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #f06f54;
            color: #fff;
        }*/

.company h4 {
    font-weight: 700;
    color: #000777;
}

.company p {
    font-size: 15px;
    line-height: 1.75;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

    #header.header-scrolled {
        padding: 12px 0;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    #header .logo {
        font-size: 26px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #0b2341;
        }

        #header .logo img {
            max-height: 63px;
        }

@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 15px;
    }

        .nav-menu > ul > li:first-child {
            position: relative;
            white-space: nowrap;
            padding: 10px 0 10px 38px;
        }

.nav-menu a {
    display: block;
    position: relative;
    color: #0b2341;
    transition: 0.3s;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
        color: #000777;
        border-bottom: 2px solid #000777;
    }

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    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;
}

.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: #0b2341;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #000777;
    }

.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";
    }
}


@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 20px 7px 20px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    top: 23px;
    right: 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: #0b2341;
    }

.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: #0b2341;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #000777;
            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(4, 12, 21, 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;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 94vh;
    background-color: rgba(4, 12, 21, 0.8);
    overflow: hidden;
    position: relative;
}

    #hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }

    #hero .carousel-item {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }

        #hero .carousel-item::before {
            content: '';
            background-color: rgba(0, 0, 0, 0.2);
        }

    #hero .carousel-container {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 82px;
        left: 50px;
        right: 50px;
    }

    #hero h2 {
        color: #fff;
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        text-align: center;
    }

    #hero p {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        color: #fff;
        margin-top: 10px;
    }

@media (min-width: 1200px) {
    #hero p {
        width: 50%;
    }
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

    #hero .carousel-inner .carousel-item-next,
    #hero .carousel-inner .carousel-item-prev,
    #hero .carousel-inner .active.carousel-item-left,
    #hero .carousel-inner .active.carousel-item-right {
        left: 0;
        transform: translate3d(0, 0, 0);
    }

#hero .carousel-control-prev, #hero .carousel-control-next {
    width: 10%;
    top: 112px;
}

@media (max-width: 992px) {
    #hero .carousel-control-prev, #hero .carousel-control-next {
        top: 66px;
    }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 20px;
    line-height: 1;
    width: auto;
    height: auto;
    border-radius: 50px;
    border: 1px solid white;
    padding: 10px;
    transition: 0.3s;
    color: rgba(255, 255, 255);
}

    #hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.8);
    }

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s;
}

    #hero .carousel-indicators li.active {
        opacity: 1;
        background: #000777;
    }

#hero .btn-get-started {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #000777;
    margin-top: 15px;
}

    #hero .btn-get-started:hover {
        background: #ef6445;
    }

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }

        #hero .carousel-container {
            text-align: center;
            top: 74px;
        }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# Projects Carousel
--------------------------------------------------------------*/

.carousel-inner img {
    width: 100%;
    height: 100%;
}

.carousel .carousel-indicators {
    position: static;
    margin-top: 20px;
}

    .carousel .carousel-indicators > li {
        width: 100px;
    }

    .carousel .carousel-indicators li img {
        display: block;
        opacity: 0.5;
    }

    .carousel .carousel-indicators li.active img {
        opacity: 1;
    }

    .carousel .carousel-indicators li:hover img {
        opacity: 0.75;
    }

.carousel-item img {
    width: 80%;
}

.carousel-control-prev span, .carousel-control-next span {
    color: #000777;
    font-size: 34px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f8f8f8;
    padding: 0 0 90px 0;
}

.section-title {
    padding-bottom: 40px;
    text-align: center;
}

.contact h4 {
    font-size: 36px;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #404040;
    padding-bottom: 20px;
}

.section-title h4 {
    font-size: 36px;
    font-weight: 900;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #404040;
    font-family: 'Roboto', sans-serif;
}

    .section-title h4::before {
        content: "";
        width: 78px;
        height: 1px;
        display: inline-block;
        background: url(../img/dottedline.png);
        margin: 12px 10px;
    }

    .section-title h4::after {
        content: "";
        width: 78px;
        height: 1px;
        display: inline-block;
        background: url(../img/dottedline.png);
        margin: 12px 10px;
    }

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #0f2f57;
}


.section-title h4 span, .contact h4 span {
    color: #000777;
}

.desc h6 {
    color: #000777;
}

.desc p {
    font-size: 14px;
    text-align: justify;
}

@media (min-width: 768px) {
    .modal-xl {
        width: 90%;
        max-width: 1200px;
    }
}



/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.services {
    background: #f8f8f8;
}

.card {
    box-shadow: 0px 3px 16px rgba(0,0,0,16%);
    border-radius: 0 !important;
    border: none;
}

.card-img-top {
    padding: 20px 20px 0 20px;
}


.card-title {
    font-weight: 400;
    font-size: 24px;
}

/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/

.project-img {
    height: 400px;
}

.view {
    width: 100%;
    height: 400px;
    cursor: pointer;
    transition: background 0.5s ease-out;
    background: rgba(0,7,119,0.2);
    text-align: center;
    vertical-align: middle;
}

    .view a {
        display: none;
        width: 100px;
        height: 100px;
        position: absolute;
        top: 40%;
    }

    .view:hover {
        height: 400px;
        background: rgba(0,7,119,0.5);
    }

        .view:hover a {
            color: white;
            position: relative;
            display: inline-table;
            font-size: 30px;
            border-radius: 50%;
            border: 1px solid white;
            text-align: center;
            vertical-align: middle;
        }

    .view a i {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    padding: 0;
    background: url(../img/cta-bg.jpg);
    max-height: 210px;
}

.ctacover {
    background: rgba(0,7,119,0.8);
    padding: 40px 0 40px 0;
}

.cta h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 1px solid #07ccfd;
    background: #07ccfd;
    color: #fff;
    margin-left: 25px;
    margin-bottom: 15px;
}

    .cta .cta-btn:hover {
        background: #FFF;
        border: 1px solid #FFF;
        color: #000777;
    }

/*--------------------------------------------------------------
# Accordion menu
--------------------------------------------------------------*/
.jquery-accordion-menu, .jquery-accordion-menu * {
    font-family: 'Roboto', sans-serif;
    ;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: 0;
}

.jquery-accordion-menu {
    min-width: 260px;
    float: left;
    position: relative;
    box-shadow: 0 20px 50px #333;
}

    .jquery-accordion-menu .jquery-accordion-menu-footer, .jquery-accordion-menu .jquery-accordion-menu-header {
        width: 100%;
        height: 50px;
        padding-left: 22px;
        float: left;
        line-height: 50px;
        font-weight: 600;
        color: #f0f0f0;
        background: #000777;
    }

    .jquery-accordion-menu nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .jquery-accordion-menu nav ul li {
        width: 100%;
        display: block;
        float: left;
        position: relative;
    }

        .jquery-accordion-menu nav ul li a {
            width: 100%;
            padding: 14px 22px;
            float: left;
            text-decoration: none;
            color: #000777;
            font-size: 13px;
            background: #FFF;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            -o-transition: color .2s linear,background .2s linear;
            -moz-transition: color .2s linear,background .2s linear;
            -webkit-transition: color .2s linear,background .2s linear;
            transition: color .2s linear,background .2s linear;
        }

    .jquery-accordion-menu > nav > ul > li.active > a, .jquery-accordion-menu > nav > ul > li:hover > a {
        color: #fff;
        background: #000777;
    }

    .jquery-accordion-menu > nav > ul > li > a {
        border-bottom: solid 1px #3b424d;
    }

    .jquery-accordion-menu nav ul li a i {
        width: 34px;
        float: left;
        line-height: 18px;
        font-size: 16px;
        text-align: left;
    }

    .jquery-accordion-menu .submenu-indicator {
        float: right;
        right: 22px;
        position: absolute;
        line-height: 19px;
        font-size: 20px;
        -o-transition: transform .3s linear;
        -moz-transition: transform .3s linear;
        -webkit-transition: transform .3s linear;
        -ms-transition: transform .3s linear;
    }

    .jquery-accordion-menu nav ul ul.submenu .submenu-indicator {
        line-height: 16px;
    }

    .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .jquery-accordion-menu nav ul ul.submenu, .jquery-accordion-menu nav ul ul.submenu li ul.submenu {
        width: 100%;
        display: none;
        position: static;
    }

        .jquery-accordion-menu nav ul ul.submenu li {
            clear: both;
            width: 100%;
        }

            .jquery-accordion-menu nav ul ul.submenu li a {
                width: 100%;
                float: left;
                font-size: 11px;
                background: #FFF;
                border-top: none;
                position: relative;
                border-left: solid 6px transparent;
                -o-transition: border .2s linear;
                -moz-transition: border .2s linear;
                -webkit-transition: border .2s linear;
                transition: border .2s linear;
            }

            .jquery-accordion-menu nav ul ul.submenu li:hover > a {
                border-left-color: #414956;
            }

        .jquery-accordion-menu nav ul ul.submenu > li > a {
            padding-left: 30px;
        }

        .jquery-accordion-menu nav ul ul.submenu > li > ul.submenu > li > a {
            padding-left: 45px;
        }

        .jquery-accordion-menu nav ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
            padding-left: 60px;
        }

        .jquery-accordion-menu nav ul li .jquery-accordion-menu-label, .jquery-accordion-menu nav ul ul.submenu li .jquery-accordion-menu-label {
            min-width: 20px;
            padding: 1px 2px 1px 1px;
            position: absolute;
            right: 18px;
            top: 14px;
            font-size: 11px;
            font-weight: 800;
            color: #555;
            text-align: center;
            line-height: 18px;
            background: #f0f0f0;
            border-radius: 100%;
        }

        .jquery-accordion-menu nav ul ul.submenu li .jquery-accordion-menu-label {
            top: 12px;
        }

.ink {
    display: block;
    position: absolute;
    background: rgba(255,255,255,.3);
    border-radius: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.animate-ink {
    -webkit-animation: ripple .5s linear;
    -moz-animation: ripple .5s linear;
    -ms-animation: ripple .5s linear;
    -o-animation: ripple .5s linear;
    animation: ripple .5s linear;
}

@-webkit-keyframes ripple {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
    }
}

@-moz-keyframes ripple {
    100% {
        opacity: 0;
        -moz-transform: scale(2.5);
    }
}

@-o-keyframes ripple {
    100%;

{
    opacity: 0;
    -o-transform: scale(2.5);
}

}

@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

.blue.jquery-accordion-menu .jquery-accordion-menu-footer, .blue.jquery-accordion-menu .jquery-accordion-menu-header, .blue.jquery-accordion-menu nav ul li a {
    background: #4A89DC;
}

.blue.jquery-accordion-menu > nav > ul > li.active > a, .blue.jquery-accordion-menu > nav > ul > li:hover > a {
    background: #3e82da;
}

.blue.jquery-accordion-menu > nav > ul > li > a {
    border-bottom-color: #3e82da;
}

.blue.jquery-accordion-menu nav ul ul.submenu li:hover > a {
    border-left-color: #3e82da;
}

.green.jquery-accordion-menu .jquery-accordion-menu-footer, .green.jquery-accordion-menu .jquery-accordion-menu-header, .green.jquery-accordion-menu nav ul li a {
    background: #03A678;
}

.green.jquery-accordion-menu > nav > ul > li.active > a, .green.jquery-accordion-menu > nav > ul > li:hover > a {
    background: #049372;
}

.green.jquery-accordion-menu > nav > ul > li > a {
    border-bottom-color: #049372;
}

.green.jquery-accordion-menu nav ul ul.submenu li:hover > a {
    border-left-color: #049372;
}

.red.jquery-accordion-menu .jquery-accordion-menu-footer, .red.jquery-accordion-menu .jquery-accordion-menu-header, .red.jquery-accordion-menu nav ul li a {
    background: #ED5565;
}

.red.jquery-accordion-menu > nav > ul > li.active > a, .red.jquery-accordion-menu > nav > ul > li:hover > a {
    background: #DA4453;
}

.red.jquery-accordion-menu > nav > ul > li > a {
    border-bottom-color: #DA4453;
}

.red.jquery-accordion-menu nav ul ul.submenu li:hover > a {
    border-left-color: #DA4453;
}

.white.jquery-accordion-menu .jquery-accordion-menu-footer, .white.jquery-accordion-menu .jquery-accordion-menu-header, .white.jquery-accordion-menu nav ul li a {
    background: #fff;
    color: #555;
}

.white.jquery-accordion-menu > nav > ul > li.active > a, .white.jquery-accordion-menu > nav > ul > li:hover > a {
    background: #f0f0f0;
}

.white.jquery-accordion-menu > nav > ul > li > a {
    border-bottom-color: #f0f0f0;
}

.white.jquery-accordion-menu nav ul ul.submenu li:hover > a {
    border-left-color: #f0f0f0;
}

.white.jquery-accordion-menu nav ul ul.submenu li a {
    color: #f0f0f0;
}

.white.jquery-accordion-menu > nav > ul > li > a > .ink {
    background: rgba(0,0,0,.1);
}

.black.jquery-accordion-menu .jquery-accordion-menu-footer, .black.jquery-accordion-menu .jquery-accordion-menu-header, .black.jquery-accordion-menu nav ul li a {
    background: #292929;
}

.black.jquery-accordion-menu > nav > ul > li.active > a, .black.jquery-accordion-menu > nav > ul > li:hover > a {
    background: #222;
}

.black.jquery-accordion-menu > nav > ul > li > a {
    border-bottom-color: #222;
}

.black.jquery-accordion-menu nav ul ul.submenu li:hover > a {
    border-left-color: #222;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 80px 40px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    background: #fff;
    text-align: center;
}

.pricing h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 28px;
}

.pricing h4 {
    font-size: 46px;
    color: #0b2341;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 25px;
}

    .pricing h4 span {
        color: #bababa;
        font-size: 18px;
        display: block;
    }

.pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

    .pricing ul li {
        padding-bottom: 12px;
    }

    .pricing ul i {
        color: #000777;
        font-size: 18px;
        padding-right: 4px;
    }

    .pricing ul .na {
        color: #ccc;
    }

        .pricing ul .na i {
            color: #ccc;
        }

        .pricing ul .na span {
            text-decoration: line-through;
        }

.pricing .get-started-btn {
    display: inline-block;
    padding: 10px 40px 11px 40px;
    border-radius: 4px;
    color: #0b2341;
    transition: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #0b2341;
    background: #fff;
}

    .pricing .get-started-btn:hover {
        background: #0b2341;
        color: #fff;
    }

.pricing .featured {
    z-index: 10;
    padding: 100px 40px;
    border: 4px solid #000777;
}

    .pricing .featured .get-started-btn {
        background: #000777;
        color: #fff;
        border-color: #000777;
    }

        .pricing .featured .get-started-btn:hover {
            background: #ef6445;
        }

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #e9f1fb;
}

    .faq .faq-item i {
        color: #669ee5;
        font-size: 20px;
        float: left;
        line-height: 0;
        padding: 13px 0 0 0;
        margin: 0;
    }

    .faq .faq-item h4 {
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
        margin: 0 0 10px 28px;
        font-family: "Poppins", sans-serif;
    }

    .faq .faq-item p {
        font-size: 15px;
    }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #0b2341;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

    .contact .info-box i {
        font-size: 32px;
        color: #000777;
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #fbdad2;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #777777;
        font-weight: 700;
        margin: 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 100px;
    margin-top: -200px;
    background: #fff;
}

    .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 {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

        .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
            border-color: #000777;
        }

    .contact .php-email-form input {
        padding: 20px 15px;
        background: #f8f7f7;
    }

    .contact .php-email-form textarea {
        padding: 12px 15px;
        background: #f8f7f7;
    }

    .contact .php-email-form button[type="submit"] {
        background: #000777;
        border: 0;
        padding: 10px 30px;
        border-radius: 4px;
        color: #fff;
        transition: 0.4s;
    }

        .contact .php-email-form button[type="submit"]:hover {
            background: #ef6445;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 25px 0 15px 0;
    background: #000777;
    min-height: 40px;
    margin-top: 100px;
}

    .breadcrumbs li a, .breadcrumbs li {
        color: #FFF;
    }

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 74px;
    }
}

.breadcrumbs h2 {
    font-size: 40px;
    font-weight: 600;
    color: #FFF;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 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: #FFF;
            content: "/";
        }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-container {
        position: relative;
    }

    .portfolio-details .portfolio-details-carousel {
        position: relative;
        z-index: 1;
    }

        .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
            margin-top: 5px;
            text-align: left;
        }

        .portfolio-details .portfolio-details-carousel .owl-dot {
            display: inline-block;
            margin: 0 10px 0 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd !important;
        }

            .portfolio-details .portfolio-details-carousel .owl-dot.active {
                background-color: #000777 !important;
            }

    .portfolio-details .portfolio-info {
        padding: 30px;
        position: absolute;
        right: 0;
        bottom: -70px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 50px;
    }

        .portfolio-details .portfolio-description h2 {
            width: 50%;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0 0 0 0;
        }

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #071527;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .footer-top {
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 15px;
            background: #05101e;
            border-top: 4px solid #000777;
            text-align: center;
            padding: 30px 20px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 24px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: 'Roboto', sans-serif;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
            background: #0a1e38;
        }

            #footer .footer-top .social-links a:hover {
                color: #fff;
                background: #000777;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #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: 2px;
                    color: #FFF;
                    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: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                    padding-left: 10px;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #07ccfd;
                    }

        #footer .footer-top .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
        }

            #footer .footer-top .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 4px;
                width: calc(100% - 110px);
            }

            #footer .footer-top .footer-newsletter form input[type="submit"] {
                position: absolute;
                top: 0;
                right: -2px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px 2px 20px;
                background: #000777;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
            }

                #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
                    background: #ef6445;
                }

    #footer .copyright {
        border-top: 1px solid #0f2f57;
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }

    .map {
        max-width: 370px;
    }

    #header .logo img {
        max-height: 35px;
        padding-left: 10px;
    }

    .contact .php-email-form {
        padding: 10px;
        margin-top: -50px;
    }

    .section-title h4 {
        font-size: 20px;
    }

        .section-title h4::before, .section-title h4::after {
            width: 30px;
            margin: 7px 10px;
        }

    .card {
        margin-left: 0!important;
    }

    .modal {
        z-index: 100000;
    }

    .desc {
        margin-top: 65px;
    }
}
