/**********************************/
/********** General CSS ***********/
/**********************************/
* {
    box-sizing: border-box;
}

body {
    color: #666666;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background: #ffffff;
}

a {
    color: #ff0000;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #666666;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #666666;
    margin: 0 0 15px 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #ff0000;
    color: #ffffff;
    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: #ffffff;
}


/**********************************/
/********* Header Nav CSS *********/
/**********************************/
#header {
    padding: 34px 0;
    height: 120px;
    position: static;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background-color: #040A84;
   
}

#header.header-scrolled {
    background: rgba(4, 10, 132, .9);
    padding: 30px 0;
    height: 120px;
    transition: all 0.5s;
    position: sticky;
}

#header #logo {
    float: left;
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
}

#nav-menu-container {
    float: right;
    margin: 0;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li {
    position: relative;
    float: left;
    margin: 10px 10px 0 10px;
    white-space: nowrap;
}

.nav-menu a {
    padding: 0 0 3px 0;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
}

.nav-menu a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #ff0000;
    opacity: 0;
    transition: .3s;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
    color: #fff;
}

.nav-menu li:hover > a::after,
.nav-menu > .menu-active > a::after {
    opacity: 1;
}

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 40px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #ff0000;
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 30px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.8);
    left: -100%;
    width: 100%;
    text-align: center;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 600;
}

#mobile-nav ul li a:hover {
    color: #ff0000;
}

#mobile-nav ul li.menu-active a {
    color: #ff0000;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

@media (min-width: 992px) {
    #header #logo {
        padding-left: 60px;
    }

    #nav-menu-container {
        padding-right: 60px;
    }
}

@media (max-width: 767.98px) {
    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }
}



/**********************************/
/******** Header Carousel *********/
/**********************************/
#header-carousel {
    display: table;
    width: 100%;
    height: auto;
    background: #000;
}



#header-carousel .carousel-item {
    width: 100%;
    height: 34vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#header-carousel .carousel-item::before {
    content: '';
    background: rgba(4, 10, 132, .8);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#header-carousel .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#header-carousel .carousel-background img {
    max-width: 100%;
    background-position: bottom;
}

#header-carousel .carousel-content {
    max-width: 70%;
    text-align: center;
}

#header-carousel h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 1px;
}

#header-carousel p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-next-icon,
#header-carousel .carousel-control-prev-icon {
    width: 100%;
    height: 60px;
    padding: 15px;
    background: #3F69AA;
    font-size: 32px;
    line-height: 1;
}

#header-carousel .carousel-control-next-icon {
    border-radius: 50px 0 0 50px;
}

#header-carousel .carousel-control-prev-icon {
    border-radius: 0 50px 50px 0;
}

#header-carousel .carousel-indicators li {
    width: 15px;
    height: 15px;
    border: 1px solid transparent;
    border-radius: 15px;
    cursor: pointer;
}

#header-carousel .btn-get-started {
    display: inline-block;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s;
    color: #fff;
    background: #ff0000;
    border-radius: 50px;
}

#header-carousel .btn-get-started:hover {
    background: #fff;
    color: #040A84;
}



@media (max-width: 991.98px) {
    #header-carousel .carousel-content {
        max-width: 70%;
    }

    #header-carousel h2 {
        margin-bottom: 15px;
        font-size: 45px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    #header-carousel p {
        margin: 0 auto 15px auto;
        font-size: 18px;
        font-weight: 400;
    }
    
    #header-carousel .btn-get-started {
        padding: 12px 25px;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    #header-carousel .carousel-content {
        max-width: 80%;
    }

    #header-carousel h2 {
        margin-bottom: 15px;
        font-size: 35px;
        font-weight: 600;
        letter-spacing: 0;
    }

    #header-carousel p {
        margin: 0 auto 15px auto;
        font-size: 16px;
        font-weight: 400;
    }
}





/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.section-header h2,
.section-header h3 {
    position: relative;
    color: #040A84;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 15px;
}

.section-header h2::after,
.section-header h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    left: calc(50% - 25px);
    bottom: 0;
    background: #ff0000;
}

.section-header p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    margin: 0
}


/**********************************/
/********** Services CSS ***********/
/**********************************/

#services {
    position: relative;
    
    background-color: #ffffff;
}

#services .container{
    max-width: 100%;
    content: "";
     display: table;
     clear: both;
}

#services .column {
    float: left;
}

.service-title{
    width: 30%;
}

.service-details{
    width: 70%;
}

@media (max-width: 767.98px) {
    .service-title{
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .service-details{
        width: 100%;
    }
}

.service-title h3{
    color: #040A84;
    font-weight: 700;
    text-align: right;
}

#services .section-1{
    background-color: #fff;
    padding: 100px 200px;
}

#services .section-2{
    background-color: #f9f9f9;
    padding: 100px 200px;
}

#services .section-3{
    background-color: #fff;
    padding: 100px 200px;
}

#services .section-4{
    background-color: #f9f9f9;
    padding: 100px 200px;
}

#services .section-5{
    background-color: #fff;
    padding: 100px 200px;
}

#services .section-6{
    background-color: #f9f9f9;
    padding: 100px 200px;
}

#services .section-7{
    background-color: #fff;
    padding: 100px 200px;
}

#services .section-8{
    background-color: #f9f9f9;
    padding: 100px 200px;
}

@media (max-width: 767.98px) {
    #services .section-1{
        padding: 40px 10px;
    }
}

@media (max-width: 767.98px) {
    #services .section-2{   
        padding: 40px 10px;
    }
}

@media (max-width: 767.98px) {
    #services .section-3{   
        padding: 40px 10px;
    }
}

@media (max-width: 767.98px) {
    #services .section-4{   
        padding: 40px 10px;
    }
}

@media (max-width: 767.98px) {
    #services .section-5{   
        padding: 40px 10px;
    }
}

@media (max-width: 767.98px) {
    #services .section-6{   
        padding: 40px 10px;
    }
}

@media (max-width: 767.98px) {
    #services .section-7{   
        padding: 40px 10px;
    }
}

@media (max-width: 767.98px) {
    #services .section-8{   
        padding: 40px 10px;
    }
}

#services .service-details p{
    color: #212121;
    font-size: 18px;
    font-weight: 400;
    padding-left: 20px;
    width: 100%;
    line-height: 28px;
}

@media (max-width: 767.98px) {
    #services .service-title h3{
        position: static;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    #services .service-details p{
        font-size: 18px;
        padding: 0 30px;
        text-align: justify;
    }
}





/**********************************/
/********** Contact CSS ***********/
/**********************************/
#contact {
    position: relative;
    padding: 60px 0;
    background-color: #040A84;
}

#contact .container {
    max-width: 900px;
}


#contact .contact-info p {
    margin-bottom: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-left: 0px;
    width: 100%;
}

#contact .contact-info p i {
    color: #fff;
    margin-right: 10px;
}

#contact .social {
    position: relative;
    width: 100%;
}

#contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 3px 0;
    text-align: center;
    font-size: 20px;
    border: 2px solid #fff;
    border-radius: 30px;
}

#contact .social a i {
    color: #fff;
}

#contact .social a:hover {
    background: #ff0000;
}

#contact .social a:hover i {
    color: #ffffff;
}

#contact .form {
    color: #040A84;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    #contact .form {
        margin-bottom: 30px;
    }
}

#contact .form input,
#contact .form textarea {
    color: #040A84;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    box-shadow: none;
}

#contact .form input:focus,
#contact .form textarea:focus {
    box-shadow: 0 0 5px #040A84;
    font-weight: 600;
}

#contact .form button[type="submit"] {
    padding: 10px 30px 10px 30px;
    color: #040A84;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 30px;
    background: #fff;
    border: 0px;
    font-weight: 700;
}

#contact .form button[type="submit"]:hover {
    background: #ff0000;
    color: #FFFFFF;
}


/**********************************/
/********** Disclaimer CSS ************/
/**********************************/
#disclaimer {
    position: relative;
    padding: 30px 0;
    background: #ff0000;
    text-align: center;
}

#disclaimer .col-md-6:first-child p {
    text-align: center;
}

#disclaimer .col-md-6:last-child p {
    text-align: center;
}

@media (max-width: 767.98px) {
    #disclaimer .col-md-6:first-child p,
    #disclaimer .col-md-6:last-child p {
        text-align: center;
    }
}

.disclaimer-heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

#disclaimer p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

#disclaimer p a {
    font-weight: 700;
}

#disclaimer p a:hover {
    color: #ffffff;
}


/**********************************/
/********** Footer CSS ************/
/**********************************/
#footer {
    position: relative;
    padding: 15px 0;
    background: #222222;
    text-align: center;
}

#footer .col-md-6:first-child p {
    text-align: center;
}

#footer .col-md-6:last-child p {
    text-align: center;
}

@media (max-width: 767.98px) {
    #footer .col-md-6:first-child p,
    #footer .col-md-6:last-child p {
        text-align: center;
    }
}

#footer p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

#footer p a {
    font-weight: 700;
}

#footer p a:hover {
    color: #ffffff;
}
