/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}
/*

body {
    font-family: "Montserrat", sans-serif;
    color: #2a3142;
}



h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}
*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 100px 0 50px;
    /*background: #2f375a;*/
    background: url("../images/bg/inner-header.svg") no-repeat bottom right;
    background-size: cover;
    min-height: 40px;
    margin-top: 0;
    color: #fff;
}

@media (max-width: 992px) {
    .breadcrumbs {
        /*margin-top: 57px;*/
    }
}

.breadcrumbs h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    padding: 10px 0;
}
.breadcrumbs h2:before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #e9b000;
}


.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs a,
.breadcrumbs ol a {
    color: #29a3b0;
    transition: 0.3s;
}

.breadcrumbs a:hover,
.breadcrumbs ol a:hover {
    text-decoration: underline;
    color: #fff;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6;
    content: "/";
}
.inner-page-content{
    min-height: 600px;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 0;
}
.header > div{
    border-bottom: 1px solid rgba(255,255,255,0.30)
}
.inner-page .header,
.header.header-scrolled {
    background: #232a40;
    /*padding: 15px 0;*/
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 65px;
    margin-right: 6px;
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    margin-top: 3px;
}

.header .header-user {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.header .header-user .header-icon {
    text-align: center;
    margin: auto 7px;
}

.header .header-user .header-icon button,
.header .header-user .header-icon a {
    font-size: 0.9em;
    text-decoration: none;
    color: #fff;
}

.header .header-user .header-icon button:hover,
.header .header-user .header-icon a:hover {
    text-decoration: underline;
    color: #29a3b0;
}

.header .header-user .header-icon .dropdown-menu {
}

.header .header-user .header-icon .dropdown-item {
    color: #282e3f;
}

.header .header-user .header-icon .dropdown-item.active {
    color: #ffffff;
    background-color: #29a3b0;
}

.header .header-user .header-icon .dropdown-item:hover {
    text-decoration: none;
    color: #26758d;
    background-color: #c8ccd9;
}

.header .header-user {
}

.site-search {
    border: 1px solid #999;
    padding: 0;
    margin: 0;
    border-radius: 20px;
}

.site-search .search-input:active,
.site-search .search-input:hover,
.site-search .search-input:focus,
.site-search .search-input:focus-visible,
.site-search .search-input:focus-within,
.site-search .search-input {
    border: 0 !important;
    background: transparent !important;
    padding-left: 10px;
}

.site-search .search-button {
    background-color: #006680;
    border-color: #006680;
    border-width: 0 !important;
    border-radius: 20px;
    color: #fff;
    box-shadow: none !important;
    /*font-size: 14px;*/
}

.site-search .search-button:hover {
    background-color: #2b4250;
}

@media (max-width: 1199px) {
    .header .logo img {
        max-height: 45px;
    }

    .header .header-user a {
        display: none;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    border-top: 2px solid transparent;
    height: 70px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #fff;
    border-top: 3px solid #29a3b0;
    height: 70px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    color: #282e3f;
    border-top: transparent;
    height: 40px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul li.active,
.navbar .dropdown ul li.active a,
.navbar .dropdown ul li.active a:focus,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #fff;
    background-color: #29a3b0;
    border-top: none;
    height: 40px;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {

    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    left: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #434660;
    border: none;
    border-bottom: 1px solid #c8ccd9;
    height: 40px !important;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #fff;
    background-color: #29a3b0;
    height: 40px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #fff;
    background-color: #29a3b0;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*Mega menu*/
.icon-mega-menu {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    box-shadow: none;
}

.icon-mega-menu img {
    height: 18px;
    width: 18px;
}

.icon-mega-menu i {
    font-size: 12px;
}

.icon-mega-menu:hover {
    text-decoration: none;
    opacity: 0.5;
    color: #fff;
    box-shadow: none;
}

.icon-mega-menu:hover img {
}

.icon-mega-menu:hover i {
    color: #fff;
}

#megamenu {
    top: 40px
}

.modal-backdrop.show {
    opacity: 0;
    z-index: 1;
}

.megamenu {
    font-size: 14px;
}

.megamenu h4 {
    font-size: 16px;
    margin: 0px 0 20px;
    color: #34353f;
    font-weight: 600;
    position: relative;
}

.megamenu h4:before {
    content: "";
    background-color: #29a3b0;
    height: 3px;
    width: 70px;
    position: absolute;
    top: 25px;
    /*left: 0;*/
}

.megamenu p {
    margin: 3px 0;
}

.megamenu .badge {
    margin-left: 7px;
}

.megamenu a {
    font-size: 14px;
    color: #26758d;
    /*display: block;*/
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.megamenu a:hover {
    color: #fff;
    background-color: #29a3b0;
    text-decoration: none;
}
