.site-logo img {
    width: 250px;
}

.header-area {
    top: 0;
    position: absolute;
    z-index: 9999;
    width: 100%;
    background: transparent;
    transition: 0.5s;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.header-area .header-main {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 2000px;
    margin: 0 auto;
}

.header-area.header-bg-on-scroll {
    position: fixed;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.header-area .theme-btn.normal a {
    border: 2px solid #fff;
    color: #fff !important;
}

.header-bg-on-click,
.header-bg-on-scroll {
    -webkit-animation: 0.6s ease-out fadeInDown;
    animation: 0.6s ease-out fadeInDown;
    background-color: var(--theme-primary-color);
}

@media all and (max-width: 1399px) {
    .header-area .header-main {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media all and (max-width: 1199px) {
    .header-area .header-main {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media all and (max-width: 575px) {
    .site-logo img {
        max-width: 150px;
    }
}

/*======Search box css======*/
.searchBoxHeader button.btn.btn-outline-secondary {
    font-size: 17px;
    width: 50px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    background-color: #fff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border: none;
    border-left: 1px solid #dcdcdc;
}

.searchBoxHeader .input-group>input {
    font-size: 14px;
    width: 300px;
    height: 40px;
    border: none;
    padding: 10px;
    line-height: 50px;
    border-radius: 50px;
    padding-left: 25px;
    text-align: center;
}

.searchBoxHeader .btn-outline-secondary:focus {
    box-shadow: none;
}

.searchBoxHeader .btn-outline-secondary:not(:disabled):not(.disabled).active,
.searchBoxHeader .btn-outline-secondary:not(:disabled):not(.disabled):active,
.searchBoxHeader .show>.btn-outline-secondary.dropdown-toggle {
    background-color: var(--theme-secondary-color);
    border-color: initial;
    box-shadow: none;
}

.searchBoxHeader .form-control:focus {
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgb(165 165 165 / 25%);
}

@media (max-width: 991px) {
    .header-area .searchBoxHeader {
        margin-top: 15px;
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
}

/*====== Left Nav and Hamburger css ======*/
.menu-icon {
    display: flex;
    margin-left: auto;
    text-align: center;
    width: 30px;
    height: 30px;
}

.menu-icon-in {
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: inline-block;
}

.menu-icon-in span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    background-color: #ffffff;
    border-radius: 10px;
}

.menu-icon-in span:nth-child(1) {
    top: 10%;
}

.menu-icon-in span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-icon-in span:nth-child(3) {
    bottom: 10%;
}

.menu-icon-in.open span:nth-child(1) {
    top: 13px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    width: 100%;
    background-color: #f3f3f3;
}

.menu-icon-in.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-icon-in.open span:nth-child(3) {
    top: 13px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    width: 100%;
    background-color: #f3f3f3;
}

.menu-icon-in:hover span {
    background-color: #f3f3f3;
}

.dvLeft {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 9998;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #1b6357;
    padding: 15px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 1px 0px 5px #0000003d;
    -moz-box-shadow: 1px 0px 5px #0000003d;
    -webkit-box-shadow: 1px 0px 5px #0000003d;
}

.dvLeft.open {
    left: 0;
}

.overflow-nav {
    overflow-y: scroll;
}

.mask-overlay {
    content: "";
    position: fixed;
    background: linear-gradient(180deg, rgb(0 0 0 / 50%), rgb(41 61 102 / 30%));
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

#slidebar-out {
    color: #732525;
    font-size: 1.6rem;
    position: absolute;
    right: 12px;
    top: 8px;
    cursor: pointer;
}

@media all and (min-width: 1199px) {
    .dvLeft {
        display: none;
    }
}

@media all and (max-width: 1199px) {
    .dvRight {
        margin-left: 0;
    }

    .dvLeft {
        left: -320px;
        width: 300px;
    }

    .dvLeft {
        padding-top: 120px;
    }
}

@media all and (max-width: 767px) {
    .dvLeft {
        padding-top: 86px;
    }
}

/*===== Navigation =====*/
.navbar {
    padding: 0;
}

.navbar-nav.ml-auto {
    margin-left: 0 !important;
}

.navbar a:hover {
    text-decoration: none;
}

/* left nav items CSS Start*/

.nav-item {
    position: relative;
}

.nav-item a {
    color: #ffffff !important;
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    line-height: 1.5;
    padding: 0.8rem;
    z-index: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.nav-item a.nav-link:hover {
    color: #ffffff;
    text-decoration: none;
    background: rgb(0 0 0 / 50%);
}

.nav-item a:before {
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    content: "";
    z-index: -1;
    position: absolute;
    background: var(--theme-secondary-color);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.nav-item a:hover:before {
    right: 0;
}

.nav-item.active a.nav-link.collapsed {
    background: #eeeeee;
}

.nav-item.active>a.nav-link {
    color: #ffffff !important;
    background: var(--theme-secondary-color) !important;
}

.nav-item.mainDropdown>span,
.nav-item.subDropdown>span {
    position: absolute;
    top: 2px;
    right: 0;
    cursor: pointer;
    padding: 10px;
    color: #ffffff;
}

.nav-item.active span {
    color: #000;
}

.nav-item.active .nav-link {
    background: 0 0;
}

.collapse.show {
    background: rgb(183 183 182 / 61%);
}

.collapse.show .nav-link {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 500;
}

.nav-item.active a.nav-link.collapsed {
    background: 0 0;
}

.collapse.show .nav-item.active>a.nav-link.collapsed {
    background: #575757 !important;
    color: #ffffff !important;
}

.collapse.show .collapse.show {
    background: #000f1f;
}

.nav-item a:hover {
    text-decoration: none;
}

/* left nav items CSS End*/
@media (min-width: 992px) {
    .navbar-nav>li {
        position: relative;
        padding: 0 1.5rem;
    }

    .navbar-nav>li:first-child {
        padding-left: 0;
    }

    .navbar-nav>li:last-child {
        padding-right: 0;
    }

    .navbar-light .navbar-nav>li>a {
        color: #fff;
        position: relative;
        text-transform: capitalize;
        padding: 1rem 0;
        display: block;
        border-radius: 0;
        font-size: 1.7rem;
        font-weight: 600;
    }

    .navbar-light .navbar-nav>li.dropdown>a {
        padding-right: 20px;
    }

    .navbar-light .navbar-nav>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 3px;
        left: 0;
        background: rgb(0 0 0 / 0%);
        box-shadow: 0 0 3px 1px #fff;
        visibility: hidden;
        border-radius: 5px;
        transform: scaleX(0);
        -webkit-transition: 0.25s linear;
        -moz-transition: 0.25s linear;
        -o-transition: 0.25s linear;
        -ms-transition: 0.25s linear;
        transition: 0.25s linear;
    }

    .navbar-light .navbar-nav>li.dropdown:hover>a:before,
    .navbar-light .navbar-nav>li>a:hover:before {
        visibility: visible;
        transform: scaleX(1);
    }

    .dropdown .dropdown-menu {
        top: 120%;
        z-index: 99;
        display: block;
        min-width: 24rem;
        width: max-content;
        border-radius: 0;
        border: 0;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.21);
        padding: 0;
        position: relative;
        margin: 0;
        -webkit-transition: top 0.3s;
        -moz-transition: top 0.3s;
        -o-transition: top 0.3s;
        -ms-transition: top 0.3s;
        transition: top 0.3s;
    }

    .dropdown:hover>.dropdown-menu {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav>li:last-child>.dropdown-menu {
        left: inherit;
        right: 0;
    }

    .navbar-light .navbar-nav .dropdown-menu a {
        color: #000;
        font-weight: 500;
        text-transform: capitalize;
        font-size: 1.5rem;
        padding: 10px;
        display: block;
        line-height: normal;
        border-radius: 0;
        position: relative;
        -webkit-transition: transform 0.3s;
        -moz-transition: transform 0.3s;
        -o-transition: transform 0.3s;
        -ms-transition: transform 0.3s;
        transition: transform 0.3s;
    }

    .navbar-light .navbar-nav>li:hover>a {
        color: #fff;
    }

    .navbar-light .navbar-nav .dropdown-menu a:hover {
        color: var(--theme-secondary-color);
        transform: translateX(5px);
        -webkit-transition: transform 0.3s;
        -moz-transition: transform 0.3s;
        -o-transition: transform 0.3s;
        -ms-transition: transform 0.3s;
        transition: transform 0.3s;
    }

    .navbar-nav .dropdown-menu>li {
        position: relative;
        border-bottom: 1px solid rgb(0 0 0 / 10%);
    }

    .navbar-nav .dropdown-menu li:last-child {
        border-bottom: 0;
    }

    .navbar-nav>.dropdown>a::after {
        position: absolute;
        right: 2px;
        content: "\f0d7";
        font-family: FontAwesome;
        color: #fff;
        top: 50%;
        transform: translateY(-50%);
    }
}

/*===== Breadcrumb =====*/
.inline-breadcum {
    background-image: url("./../../images/background/common-banner.svg");
    background-position: bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #206c68;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    width: 100%;
    min-height: 150px;
}

.breadcrumb {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: transparent;
    font-size: 1.6rem;
    padding: 0;
    margin-top: 115px;
}

.breadcrumb ul {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.breadcrumb ul:after {
    display: table;
    content: "";
    clear: both;
}

.breadcrumb ul>li {
    float: left;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    content: "\f105";
    font-family: FontAwesome;
    font-weight: bold;
    color: rgb(242 134 10);
    margin-left: 10px;
    margin-right: 10px;
}

.breadcrumb ul>li>a,
.breadcrumb ul>li>em {
    color: #ffffff;
    padding: 0.5rem;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    line-height: 1;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: rgb(242 134 10);
}

.breadcrumb ul>li.active>a,
.breadcrumb ul>li.active>em {
    text-decoration: none;
    cursor: text;
    color: rgb(255 255 255 / 70%);
    pointer-events: none;
}

@media (min-width: 1999px) {
    .header-area .header-main {
        padding-left: 400px;
        padding-right: 400px;
    }
}

@media all and (max-width: 1399px) {
    .inline-breadcum {
        min-height: 147px;
    }
}

@media all and (max-width: 1199px) {
    .inline-breadcum {
        min-height: 150px;
    }
}

@media all and (max-width: 991px) {
    .inline-breadcum {
        min-height: 153px;
    }
}

@media all and (max-width: 767px) {
    .inline-breadcum {
        min-height: 150px;
    }
}

@media all and (max-width: 575px) {
    .inline-breadcum {
        min-height: 110px;
    }
}