body {
    color: #797979;
    background: #ffffff; /*#3f72af*/
    font-family: 'Lato', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #092a49;
    font-family: 'Oswald', sans-serif;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #092a49;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.top-fill {
    position: relative;
    width: 100%;
    height: 100px;
    min-height: 150px;
    background: #092a49;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #092a49;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #ffffff;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 150px;
    }
}

/**********************************/
/*********** Top Bar **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
    color: #ffffff;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 0px;
    font-weight: 200;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    padding-right: 10px;
    max-width: 100%;
    max-height: 40px;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 35px;
        padding: 20px 60px;
        background: rgba(9, 42, 73, .2)!important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #092a49 !important;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #092a49 !important;
    }
}


/*******************************/
/********** Header Detail ***********/
/*******************************/
.header {
    position: relative;
    width: 100%;
    height: 100px;
    min-height: 350px;
    background: #092a49;
}

.header .header-item {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .header,
    .header .header-item {
        height: calc(100vh - 105px);
    }

    .top-fill {
        min-height: 50px;
    }
}

@media (max-width: 767.98px) {
    .header,
    .header .header-item {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 575.98px) {
}


/*******************************/
/********** Simple Menus ***********/
/*******************************/
.simple-menu {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.simple-menu .simple-menu-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
}

.simple-menu .simple-menu-item:hover {
    border-color: rgba(0, 0, 0, .1);
    box-shadow: none;
}

.simple-menu .simple-menu-item img {
    max-height: 50px;
    margin-bottom: 15px;
}

.simple-menu .simple-menu-item h2 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.simple-menu .simple-menu-item span {
    font-size: 50px;
}


/*******************************/
/********* Detail Menus *********/
/*******************************/
.detail-menu {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.detail-menu .detail-menu-info {
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.detail-menu .detail-menu-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.detail-menu .detail-menu-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.detail-menu .detail-menu-icon i {
    font-size: 18px;
    color: #0796fe;
}

.detail-menu .detail-menu-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.detail-menu .detail-menu-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #092a49;
    letter-spacing: 1px;
}

.detail-menu .detail-menu-text p {
    margin: 0;
    font-size: 16px;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    background: #092a49;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #0796fe;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}
