﻿
/* ===================
fonts
====================== */


:root {
    --teal: #00B09B;
    --teal-light: #00CDB6;
    --teal-pale: #E6FAF8;
    --teal-dark: #008C7A;
    --navy: #1A2E6C;
    --navy-dark: #0F1D4A;
    --navy-light: #253A82;
    --white: #FFFFFF;
    --gray-bg: #F5F7FA;
    --border: #E2E8F0;
    --muted: #6B7A99;
    --text: #111827;
}



/* latin >> Imp file >> MH Menu css*/
@font-face {
    font-family: 'Rajdhani';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    /* src: url(../../../assets/fonts/latin-rajdhani-700.woff2) format('woff2');*/
    src: url(../fonts/latin-rajdhani-700.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ===================
general css
====================== */

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: #757F95;
    line-height: 1.8;
}

a {
    color: #04294d;
    display: inline-block;
}


    a,
    a:active,
    a:focus,
    a:hover {
        outline: none;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
    }

        a:hover {
            color: #0049D0;
        }

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #041a2f;
    margin: 0px;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

/* ===================
preloader
====================== */

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #04294d; /* mojammel Hossain >> code 1*/
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .loader-ripple div {
        position: absolute;
        border: 4px solid #fff;
        opacity: 1;
        border-radius: 50%;
        animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .loader-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}




/* ===================
theme default css
====================== */

.ovrflow-hidden {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.bg {
    background-color: #F3F7FA;
}

.theme-bg-dark {
    background-color: #1d9f96;
}


/* ===================
site title css
====================== */

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #04294d;
    position: relative;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 50px;
    color: #1d9f96;
    margin-bottom: 0;
}

    .site-title span {
        color: #04294d;
    }

.site-heading p {
    margin-top: 15px;
}

.heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #04294d;
    width: 90px;
    overflow: hidden;
}

    .heading-divider:after {
        content: '';
        position: absolute;
        left: 0;
        top: -1.1px;
        height: 7px;
        width: 8px;
        background-color: #ffffff;
        -webkit-animation: heading-move 5s infinite linear;
        animation: heading-move 5s infinite linear;
    }

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(85px);
    }

    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(85px);
    }

    100% {
        transform: translateX(-1px);
    }
}


@media all and (max-width: 992px) {
    .shadow-title {
        font-size: 100px;
    }
}



/* ===================
margin & padding
====================== */

.pb-140 {
    padding-bottom: 140px;
}

.pd-50 {
    padding: 50px 0;
}

.py-120 {
    padding: 120px 0;
}

.py-60 {
    padding: 60px 0;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mr-300 {
    margin-right: 300px;
}

.ml-300 {
    margin-left: 300px;
}

.pos-rel {
    position: relative;
    z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
    font-size: 16px;
    color: #ffffff;
    padding: 12px 24px;
    transition: all 0.5s;
    text-transform: uppercase;
    position: relative;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #04294d;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    z-index: 1;
}

    .theme-btn::before {
        content: "";
        height: 300px;
        width: 300px;
        background: #1d9f96;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%) scale(0);
        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }

    .theme-btn:hover {
        color: #fff;
    }

        .theme-btn:hover::before {
            transform: translateY(-50%) translateX(-50%) scale(1);
        }

    .theme-btn i {
        margin-left: 5px;
    }

.theme-btn2 {
    background: #fff;
    color: #1d9f96;
}

    .theme-btn2::before {
        background: #1d9f96;
    }

    .theme-btn2:hover {
        color: #fff;
    }



/* ===================
container
====================== */

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1185px;
    }
}


/* ===================
scroll-top css
====================== */

#scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 3px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: #fff;
    background-color: #1d9f96; /*#04294d;*/
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .5s ease-in-out;
    z-index: 1;
}


#scroll-top2 {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 3px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: #fff;
    background-color: #1d9f96; /*#04294d;*/
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .5s ease-in-out;
    z-index: 1;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top {
        bottom: 100px;
    }
}


@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top2 {
        bottom: 100px;
    }
}



/* ===================
header top css
====================== */

.header-top {
    padding: 8px 0;
    position: relative;
    background: #04294d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

    .header-top::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 35%;
        height: 100%;
        background: #1d9f96;
        clip-path: polygon(5% 0, 100% 0, 100% 100%, 2% 100%, 0 65%);
        z-index: -1;
    }

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .header-top-contact ul li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.header-top-contact-icon {
    width: 45px;
    height: 45px;
    line-height: 41px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
}

    .header-top-contact-icon img {
        width: 24px;
    }

.header-top-contact-info h6 {
    color: #fff;
    font-size: 18px;
}

.header-top-contact ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 17px;
}

    .header-top-contact ul li a i {
        color: #fff;
        margin-right: 5px;
    }

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-social span {
    color: #fff;
    margin-right: 10px;
}

.header-top-social a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    transition: all .5s ease-in-out;
}

    .header-top-social a:hover {
        color: #04294d;
    }

.header-phone {
    display: flex;
    align-items: center;
    gap: 15px
}

.header-phone-content span {
    display: block;
    margin-bottom: 13px;
    line-height: .6;
    color: #1d9f96;
    font-weight: 500
}

.header-phone-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #04294d;
    border-radius: 50px;
    text-align: center
}

    .header-phone-icon img {
        width: 27px
    }

.header-phone-number {
    font-size: 20px;
    line-height: 1
}

    .header-phone-number a {
        color: #04294d;
    }


@media all and (max-width: 1199px) {
    .header-top-account {
        display: none;
    }

    .header-top::before {
        width: 320px;
    }

    .header-top-contact ul {
        gap: 10px;
    }

    .header-top-social a {
        width: 34px;
        height: 34px;
        line-height: 37px;
        margin-left: 0;
    }

    .header-top-left {
        margin-right: 5px;
    }
}

@media all and (max-width: 992px) {
    .header-top {
        display: none;
    }
}




/* ===================
nav menu css
====================== */

.main {
    margin-top: 0rem;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 20px;
        padding: 30px 0 30px 0;
        font-size: 17px;
        font-weight: 700;
        color: #7f98b0;
        font-family: 'Rajdhani', sans-serif;
        text-transform: uppercase;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: 0;
        border: none;
        left: -15px;
        border-radius: 0px;
        background: #fff;
        width: 220px;
        box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    }

        .navbar .nav-item .dropdown-menu li {
            border-bottom: 1px solid #eee;
        }

            .navbar .nav-item .dropdown-menu li:last-child {
                margin-bottom: 0;
                border-bottom: none;
            }

        .navbar .nav-item .dropdown-menu .dropdown-item {
            font-size: 16px;
            font-weight: 700;
            padding: 10px 0px 10px 25px;
            color: #7f98b0; /*Mojammel hossain */
            font-family: 'Rajdhani', sans-serif;
            position: relative;
            text-transform: uppercase;
            transition: all .5s ease-in-out;
            z-index: 1;
            text-wrap: wrap;
        }

            .navbar .nav-item .dropdown-menu .dropdown-item:hover {
                background: transparent;
                color: #fff;
                padding-left: 35px;
            }

            .navbar .nav-item .dropdown-menu .dropdown-item::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 0;
                height: 100%;
                background: #04294d;
                transition: all .5s ease-in-out;
                z-index: -1;
            }

            .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
                width: 100%;
            }

    .navbar .nav-item .nav-link {
        position: relative;
    }

        .navbar .nav-item .nav-link.active,
        .navbar .nav-item:hover .nav-link {
            /* color: #04294d;*/
            color: #1d9f96;
        }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    .header-nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-left: 30px;
    }

    .header-nav-link {
        position: relative;
        width: 45px;
        height: 45px;
        line-height: 45px;
        color: #1d9f96;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .header-nav-link:hover {
            color: #04294d;
        }

        .header-nav-link.search-box-outer {
            font-size: 18px;
        }

    #main_nav {
        justify-content: flex-end;
    }
}


/*bootstrap nav*/
.navbar {
    background: #fff;
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 999;
}

    .navbar.fixed-top {
        background: #fff;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
        animation: slide-down 0.7s;
    }

        .navbar.fixed-top .nav-item .nav-link {
            color: #7f98b0; /*MH  update*/
        }

        .navbar.fixed-top .header-nav-link {
            color: #5a91c6;
        }

            .navbar.fixed-top .header-nav-link:hover {
                color: #04294d;
            }

        .navbar.fixed-top .nav-item .nav-link.active,
        .navbar.fixed-top .nav-item:hover .nav-link {
            /*color: #04294d; >> M H active menu color >> 15 Sept 2024*/
            color: #1d9f96;
        }




@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-btn-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand {
    margin-right: 0;
}

    .navbar-brand img {
        width: 190px;
    }

/* dropdown toggler */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}


@media all and (max-width: 1199px) {
    .header-nav-right {
        gap: 5px;
        margin-left: 15px;
    }

    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }

    .navbar .header-btn {
        display: none;
    }
}


/* mobile menu */
.mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed;
    }

    .navbar-bg {
        height: 59px;
    }

        .navbar-bg::before {
            transform: translateY(0px) skew(-15deg);
            left: -8px;
        }

    .navbar-brand {
        padding-left: 10px;
    }

        .navbar-brand img {
            width: 130px;
        }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: #fff;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .navbar .nav-item .nav-link {
        color: #7f98b0; /*MH >> small window >> 12 Sept 2024 */
        font-weight: 700;
        transition: all .5s ease-in-out;
    }

        .navbar .nav-item .nav-link:hover {
            color: #04294d !important;
        }

        .navbar .nav-item .nav-link:active {
            color: #1d9f96 !important;
        }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .mobile-menu-right {
        display: flex;
        align-items: center;
    }

    .mobile-menu-link {
        font-size: 20px;
        color: #1d9f96;
        font-weight: 500;
        padding-right: 20px;
        margin-bottom: 0px;
        position: relative;
    }

        .mobile-menu-link:hover {
            color: #04294d;
        }

    .navbar-toggler-btn-icon {
        font-size: 25px;
        color: #1d9f96;
        font-weight: 500;
    }

    .navbar.fixed-top .mobile-menu-link {
        color: #1d9f96;
    }

    .navbar.fixed-top .navbar-toggler-btn-icon {
        color: #1d9f96;
    }

    .navbar .dropdown-menu {
        border-radius: 8px;
    }

    .header-nav-right {
        display: none;
    }
}



/* ======================
multi level dropdown menu
========================= */

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

    .navbar .nav-item .dropdown-submenu .dropdown-menu::before {
        display: none;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 15px;
        top: 12px;
        font-weight: 600;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        background: transparent;
        color: #fff;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        top: 120%;
        left: 100%;
        opacity: 0;
        visibility: hidden;
    }

    .navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

@media all and (max-width: 991px) {
    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 4px;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: #04294d;
    }
}


/* ======================
search popup
====================== */

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, .8);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50px;
    text-align: center;
    background: #04294d;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

    .search-popup .form-group input[type="text"],
    .search-popup .form-group input[type="search"] {
        position: relative;
        width: 100%;
        height: 60px;
        outline: none;
        border-radius: 50px;
        border: none;
        padding: 0 100px 0 35px;
        transition: all 500ms ease;
        text-transform: capitalize;
    }

    .search-popup .form-group input[type="submit"],
    .search-popup .form-group button {
        position: absolute;
        right: 5px;
        top: 5px;
        border-radius: 8px;
        background: #04294d;
        text-align: center;
        font-size: 20px;
        color: #fff !important;
        height: 50px;
        width: 50px;
        border: none;
        cursor: pointer;
        transition: all 500ms ease;
    }

        .search-popup .form-group input[type="submit"]:hover,
        .search-popup .form-group button:hover {
            background: #04294d;
        }

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #1d9f96;
}



/* ===================
hero css 
====================== */

.hero-section {
    position: relative;
}

.hero-single {
    padding-top: 1px; /* MH >> 12 Sept 2024 >> old >>  100px;*/
    padding-bottom: 1px; /* MH >> 12 Sept 2024 >> old >>  130px;*/
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

    .hero-single::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: -0.5px;
        top: 0;
        /*    background-image: linear-gradient(to right, #fff, rgba(0, 96, 255, 0.3)); >> MH disabled >> slider bg color >> 18 Sept 2024*/
        background-image: linear-gradient(to right, #fff, rgba(0, 96, 255, 0.3));
        opacity: 0.97;
        z-index: -1;
    }

    .hero-single .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

        .hero-single .hero-content .hero-title {
            color: #1d9f96;
            font-size: 70px;
            font-weight: 700;
            margin: 20px 0;
            text-transform: capitalize;
        }

            .hero-single .hero-content .hero-title span {
                color: #04294d;
            }

        .hero-single .hero-content .hero-sub-title {
            color: #04294d;
            font-size: 20px;
            letter-spacing: 5px;
            position: relative;
            font-weight: 700;
            text-transform: uppercase;
        }

        .hero-single .hero-content p {
            color: #1d9f96;
            line-height: 30px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-single .hero-content .hero-btn {
            gap: 2rem;
            display: flex;
            margin-top: 1rem;
            justify-content: start;
        }

.hero-section .owl-dots {
    position: absolute;
    text-align: center;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

    .hero-section .owl-dots .owl-dot {
        display: block;
    }

        .hero-section .owl-dots .owl-dot span {
            border: 3px solid #fff;
            margin: 5px;
            border-radius: 50px;
            width: 15px;
            height: 15px;
            display: inline-block;
            background-color: #fff;
            transition: all .5s ease-in-out;
        }

        .hero-section .owl-dots .owl-dot.active span {
            background-color: #04294d;
        }


/* hero-slider2 */

.hero-slider2.owl-theme .owl-nav {
    margin-top: 0px;
}

    .hero-slider2.owl-theme .owl-nav [class*=owl-] {
        color: #fff;
        font-size: 30px;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.2);
        display: inline-block;
        cursor: pointer;
        height: 55px;
        width: 55px;
        border-radius: 50px;
        line-height: 55px;
        text-align: center;
        transition: all .5s ease-in-out;
    }

        .hero-slider2.owl-theme .owl-nav [class*=owl-]:hover {
            background: #fff;
            color: #04294d;
        }

    .hero-slider2.owl-theme .owl-nav .owl-prev {
        left: 40px;
    }

    .hero-slider2.owl-theme .owl-nav .owl-next {
        right: 40px;
    }

    .hero-slider2.owl-theme .owl-nav .owl-prev,
    .hero-slider2.owl-theme .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }

@media all and (max-width: 1199px) {

    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }

    .hero-slider2.owl-theme .owl-nav .owl-prev,
    .hero-slider2.owl-theme .owl-nav .owl-next {
        top: unset;
        bottom: 5px !important;
    }

    .hero-slider2.owl-theme .owl-nav .owl-prev {
        left: unset;
        right: 120px;
    }

    .hero-slider2.owl-theme .owl-nav .owl-next {
        right: 40px;
    }
}

@media all and (max-width: 991px) {

    .hero-single .hero-content .hero-title {
        font-size: 35px;
    }

    .hero-single .hero-content .hero-btn {
        gap: 1.5rem;
    }

        .hero-single .hero-content .hero-btn .theme-btn {
            padding: 12px 15px
        }

    .hero-section .owl-dots {
        top: unset;
        right: 20px;
        bottom: 20px;
    }

        .hero-section .owl-dots .owl-dot {
            display: inline-block;
        }
}

@media all and (max-width: 767px) {

    .hero-single .hero-content .hero-sub-title {
        font-size: 18px;
    }

    .hero-single .hero-content .theme-btn {
        padding-left: 20px;
    }

    .hero-img {
        display: none;
    }
}





/* =====================
play btn
===================== */

.play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 20px;
    text-align: center;
    background: #04294d;
    color: #fff !important;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

    .play-btn i::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: #04294d;
        border-radius: 50px;
        animation: ripple-wave 1s linear infinite;
        -webkit-transform: scale(1);
        transform: scale(1);
        transition: all 0.5s ease-in-out;
    }

@keyframes ripple-wave {
    0% {
        opacity: 0.8;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}



/* ===================
category css
====================== */

.category-area {
    padding: 20px 0;
    background: #04294d;
}

.category-item {
    text-align: center;
}

.category-icon {
    transition: all .5s ease-in-out;
}

.category-item:hover .category-icon {
    transform: translateY(-5px);
}

.category-icon img {
    width: 50px;
}

.category-title {
    margin-top: 10px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1.5px;
}


@media all and (max-width: 991px) {
    .category-item {
        margin-bottom: 25px;
    }
}


/* ===================
banner css 
====================== */

.banner-item {
    width: 100%;
    height: Auto;
    border-radius: 10px;
    position: relative;
}

    .banner-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background: rgba(0, 0, 0, .3);
    }

    .banner-item img {
        border-radius: 10px;
        width: 100%;
    }

.banner-item-content {
    position: absolute;
    top: 20px;
    right: 20px;
}

    .banner-item-content h2 {
        color: #fff;
    }

    .banner-item-content p {
        color: #fff;
    }

    .banner-item-content a {
        padding: 6px 20px;
        color: #fff;
        background: #04294d;
        margin-top: 20px;
        border-radius: 50px;
        font-weight: 500;
        transition: all .5s ease-in-out;
    }

        .banner-item-content a:hover {
            background: #04294d;
        }

.banner-item2 .banner-item-content {
    top: unset;
    right: unset;
    left: 20px;
    bottom: 20px;
}

.banner-item3 .banner-item-content {
    top: unset;
    bottom: 20px;
}

@media all and (max-width: 991px) {
    .banner-item {
        margin-bottom: 25px;
    }
}




/* ===================
about css 
====================== */

.about-area {
    position: relative;
}

.about-left {
    width: 80%;
    position: relative;
}

.about-shape {
    position: absolute;
    left: -50px;
    bottom: -50px;
    z-index: -1;
}

.about-left::before {
    content: "";
    position: absolute;
    left: -15px;
    width: 70%;
    top: -15px;
    bottom: -15px;
    border-radius: 10px;
    border: 5px solid #04294d;
}

.about-img {
    position: relative;
}

    .about-img img {
        border-radius: 10px;
    }

.about-img-2 {
    position: absolute;
    right: -70px;
    bottom: -50px;
    width: 70%;
    border-left: 5px solid #fff;
    border-top: 5px solid #fff;
}

.about-experience {
    width: 130px;
    height: 130px;
    position: absolute;
    right: -70px;
    top: 50px;
    border-radius: 50%;
    background: #04294d;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .about-experience::before {
        content: "";
        position: absolute;
        left: 5px;
        right: 5px;
        top: 5px;
        bottom: 5px;
        border: 2px dashed #fff;
        border-radius: 50%;
    }

    .about-experience h1 {
        color: #fff;
    }

    .about-experience p {
        line-height: 1.2;
        font-size: 14px;
    }

.about-right {
    position: relative;
    display: block;
    padding-left: 30px;
}

.about-list-wrapper {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-list {
    position: relative;
    display: block;
}

    .about-list li {
        position: relative;
        padding-left: 25px;
        margin-top: 10px;
    }

        .about-list li::before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 0;
            font-family: "Font Awesome 6 Pro";
            color: #1d9f96;
        }

@media all and (max-width: 991px) {
    .about-right {
        margin-top: 100px;
    }
}

@media all and (max-width: 767px) {
    .about-experience {
        right: -45px;
    }
}




/* ===================
service css 
====================== */

.service-area {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-shape {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .1;
}

.service-item {
    position: relative;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    overflow: hidden;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

    .service-item::before {
        content: "";
        position: absolute;
        right: -20px;
        top: -20px;
        content: "";
        height: 250px;
        width: 100%;
        background: url(../img/shape/06.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
        z-index: -1;
        opacity: 0.8;
    }

    .service-item.active,
    .service-item:hover {
        background: #04294d;
    }

    .service-item:hover {
        transform: translateY(-10px);
    }

.service-img {
    overflow: hidden;
}

    .service-img img {
        border-radius: 0px;
    }

.service-item:hover .service-img img {
    transform: scale(1.2) rotate(5deg);
    transition: all .5s ease-in-out;
}

.service-content {
    position: relative;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    /* background: #04294d; >> MH >> service icon >> 04 Oct 2024 */
    background: #dde4ea;
    border-radius: 50px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

.service-item.active .service-icon,
.service-item:hover .service-icon {
    background: #fff;
}

.service-icon i {
    color: #fff;
    font-size: 60px;
    line-height: 1;
}

.service-item.active .service-icon i,
.service-item:hover .service-icon i {
    color: #04294d;
}

.service-icon img {
    width: 70px;
}

.service-item:hover .service-icon {
    transform: rotateY(360deg);
}

    .service-item:hover .service-icon img {
        transform: rotate(360deg);
    }

.service-arrow {
    margin-top: 25px;
}

.service-title a {
    font-size: 22px;
    margin-top: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d9f96;
}

    .service-title a:hover {
        color: #04294d;
    }


.service-item.active p,
.service-item.active .service-title a,
.service-item:hover p,
.service-item:hover .service-title a {
    color: #fff;
}

.service-item.active .theme-btn,
.service-item:hover .theme-btn {
    background: #1d9f96;
}

    .service-item:hover .theme-btn::before {
        background: #fff;
    }

.service-item .theme-btn:hover {
    color: #04294d;
}

.service-area2 {
    position: relative;
}

    .service-area2 .service-item {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
    }

        .service-area2 .service-item::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            background: rgba(7, 25, 61, .8);
            height: 100%;
            width: 100%;
            z-index: -1;
        }

        .service-area2 .service-item p,
        .service-area2 .service-item .service-title a {
            color: #fff;
        }

        .service-area2 .service-item:hover .theme-btn {
            background: #04294d;
        }



/* ====================
service single
==================== */

.service-single-wrapper .widget-title {
    font-weight: 700;
}

.service-single-list i {
    color: #04294d;
    margin-right: 10px;
}

.service-download a {
    border: 2px solid #04294d;
    padding: 10px 20px;
    color: #1d9f96;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all .5s ease-in-out;
}

    .service-download a i {
        margin-right: 10px;
    }

    .service-download a:hover {
        background-color: #04294d;
        color: #fff;
    }

.service-details h3 {
    color: #1d9f96;
    font-weight: 700;
}

.service-details img {
    border-radius: 7px;
}




/* ===================
skill css 
====================== */

.skill-left img {
    border-radius: 7px;
}

.skills-section {
    margin-top: 40px;
}

.progress-box {
    margin-bottom: 30px;
    position: relative;
}

    .progress-box:last-child {
        margin-bottom: 0;
    }

    .progress-box h5 {
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .progress-box .progress {
        box-shadow: 0px 10px 31px rgb(169 177 193 / 17%);
        border: 1px solid #D5E0F5;
        height: 16px;
        padding: 4px;
        border-radius: 50px;
        background-color: #fff;
    }

        .progress-box .progress .progress-bar {
            background-color: #1d9f96;
            border-radius: 50px;
        }

@media all and (max-width: 991px) {
    .skill-right .site-heading {
        font-size: 30px;
    }

    .skill-img img {
        width: 100%;
    }
}




/* ===================
feature css 
====================== */

.feature-area {
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.feature-item {
    padding: 20px 20px;
    position: relative;
    background: #fff;
    margin-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
    z-index: 1;
}

.feature-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 73px;
    font-size: 40px;
    color: #fff;
    /* background: #1d9f96; >> MH 04Oct 2024 */
    /*background:#04294d;*/
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

    .feature-icon img {
        width: 50px;
    }

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1d9f96;
    margin-bottom: 10px;
}

.feature-content p {
    color: #1d9f96;
}



@media all and (max-width: 1199px) {
    .feature-area {
        margin-top: -20px;
    }
}



/* ===================
video css 
====================== */

.video-content {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
}

    .video-content::before {
        content: "";
        position: absolute;
        background: rgba(3, 2, 7, .2);
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 8px;
    }

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    height: 550px;
    z-index: 100;
}

.video-area .play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media all and (max-width: 767px) {
    .video-wrapper {
        height: 250px;
    }
}



/* ===================
step/process css 
====================== */

.process-single {
    position: relative;
}

    .process-single .icon {
        height: 100px;
        width: 100px;
        line-height: 100px;
        display: inline-block;
        position: relative;
        border-radius: 50px;
        font-size: 55px;
        color: #fff;
        background: #04294d;
        padding: 5px;
        margin-bottom: 30px;
        box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    }

        .process-single .icon img {
            border-radius: 50%;
        }

    .process-single span {
        position: absolute;
        height: 35px;
        width: 35px;
        font-size: 14px;
        background: #04294d;
        line-height: 35px;
        color: #ffffff;
        left: -8px;
        top: -13px;
        font-weight: 600;
        border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
    }

    .process-single h4 {
        margin-bottom: 10px;
        font-weight: 700;
    }

    .process-single::before {
        content: "";
        position: absolute;
        background: url(../img/icon/arrow.png);
        background-repeat: no-repeat;
        width: 110px;
        height: 110px;
        right: -65px;
        top: 0px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .process-single::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-single::before {
        display: none;
    }
}

.process-area .col-lg-3:last-child .process-single::before {
    display: none;
}



/* ===================
choose css 
====================== */

.choose-area {
    position: relative;
    z-index: 1;
}

    .choose-area::before {
        content: "";
        position: absolute;
        background: url(../img/shape/09.jpg);
        background-repeat: no-repeat;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
}

.choose-icon {
    height: 55px;
    width: 55px;
    line-height: 60px;
    text-align: center;
    background: #04294d;
    border-radius: 50% 6px 50% 50%;
    color: #fff;
    transition: 0.4s;
    margin-top: 5px;
    font-size: 30px;
}

.choose-item-content {
    flex: 1;
}

.choose-img {
    position: relative;
    z-index: 1;
}

    .choose-img::before {
        content: "";
        position: absolute;
        left: -10px;
        top: -10px;
        background: #04294d;
        border-radius: 50% 50% 20px 50%;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .choose-img img {
        border-radius: 50% 50% 20px 50%;
    }



@media all and (max-width: 991px) {
    .choose-area {
        padding-top: 0;
    }

        .choose-area::before {
            display: none;
        }

    .choose-img {
        margin-top: 60px;
    }
}




/* ===================
testimonial css 
====================== */

.testimonial-area {
    position: relative;
    background: url(../../../assets/img/testimonial/bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

    .testimonial-area::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        /* background: rgba(10, 24, 81, 0.85); MH >> 12 Sept 2024 */
        /* background: rgba(181, 199, 227, 0.8);*/
        /*background: rgba(8, 36, 76, 0.85);*/
        background: rgba(181, 199, 227, 0.8);
        z-index: -1;
    }

.testimonial-single {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 40px 30px 40px 30px;
    position: relative;
    margin-top: 50px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.testimonial-quote p {
    color: #1d9f96;
}

.testimonial-author-info {
    margin: 30px 0 10px 0;
}

.testimonial-author-img {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 20px;
    width: 90px;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid #fff;
}

    .testimonial-author-img img {
        border-radius: 50%;
    }

.testimonial-author-info h4 {
    font-size: 20px;
    color: #1d9f96;
}

.testimonial-author-info p {
    color: #04294d;
}

.testimonial-quote-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 120px;
    opacity: .2;
}

.testimonial-area .owl-dots {
    text-align: center;
    margin-top: 30px;
}

    .testimonial-area .owl-dots .owl-dot span {
        background: transparent;
        margin: 5px;
        border: 3px solid #fff;
        border-radius: 50px;
        width: 16px;
        height: 16px;
        display: inline-block;
        transition: all .5s ease-in-out;
    }

    .testimonial-area .owl-dots .owl-dot.active span {
        background-color: #04294d;
    }

.testimonial-rate {
    color: #04294d;
    margin-top: 15px;
}




/* ===================
counter css 
====================== */

.counter-area {
    position: relative;
    background: #04294d;
    z-index: 1;
}

    .counter-area::before {
        content: "";
        position: absolute;
        background: url(../img/shape/07.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;
    }

.counter-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
}

    .counter-box .icon {
        position: relative;
        font-size: 55px;
        border-radius: 50px;
        width: 100px;
        height: 100px;
        line-height: 115px;
        text-align: center;
        background: #fff;
        color: #04294d;
    }

        .counter-box .icon img {
            width: 65px;
        }

    .counter-box .counter {
        display: block;
        line-height: 1;
        color: #fff;
        font-size: 50px;
        font-weight: 600;
    }

    .counter-box .title {
        color: #fff;
        margin-top: 20px;
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
    }

@media all and (max-width: 991px) {
    .counter-area .counter-box {
        margin: 40px 0;
    }
}



/* ===================
cta-area css 
====================== */

.cta-area {
    background: linear-gradient(90deg, #00102D 0%, #0059FC 56%);
    position: relative;
    z-index: 1;
}

    .cta-area::before {
        content: "";
        position: absolute;
        background: url(../img/shape/05.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0px;
        opacity: .7;
        z-index: -1;
    }

.cta-text h1 {
    color: #fff;
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.cta-text p {
    color: #fff;
}

.cta-border-btn {
    font-size: 32px;
    color: #fff !important;
    font-weight: 700;
}

    .cta-border-btn i {
        margin-right: 15px;
    }

.cta-divider {
    position: relative;
}

    .cta-divider::before {
        position: absolute;
        content: close-quote;
        width: 2px;
        bottom: 0;
        background-color: #fff;
        right: -117px;
        top: 0;
    }

.cta-area .theme-btn {
    background: #fff;
    color: #1d9f96;
}

    .cta-area .theme-btn:hover {
        color: #fff;
    }





/* ========================
project css 
=========================== */

.project-item {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.project-img {
    height: 100%;
}

    .project-img img {
        width: 100%;
        border-radius: 8px;
    }

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

    .project-content::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 15px;
        right: 15px;
        bottom: 15px;
        background: #04294d;
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .project-content:hover::before {
        opacity: 0.9;
        visibility: visible
    }

.project-link {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 70px;
    top: 70px;
    transition: 0.5s;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    font-size: 28px;
    color: #04294d;
}

    .project-link:hover {
        color: #04294d;
    }

.project-content:hover .project-link {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.project-info {
    position: absolute;
    bottom: 35px;
    left: 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.project-content:hover .project-info {
    opacity: 1;
    visibility: visible;
    bottom: 45px;
}

.project-subtitle {
    font-size: 14px;
    color: #fff;
    margin-bottom: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .project-subtitle span {
        color: #fff;
    }

.project-title {
    color: #fff;
    font-size: 30px;
}

.filter-btns {
    text-align: center;
    margin-bottom: 30px;
}

    .filter-btns li {
        display: inline-block;
        text-transform: capitalize;
        margin: 4px;
        font-weight: 500;
        font-size: 16px;
        color: #1d9f96;
        border-radius: 5px;
        padding: 4px 15px;
        border: 2px solid #04294d;
        cursor: pointer;
        transition: all .5s ease-in-out;
    }

        .filter-btns li:hover,
        .filter-btns li.active {
            color: #fff;
            background: #04294d;
        }

.project-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}

    .project-slider .owl-dots .owl-dot span {
        background: #CED7E7;
        margin: 5px;
        width: 15px;
        height: 15px;
        border-radius: 50px;
        display: inline-block;
        transition: all .5s ease-in-out;
    }

    .project-slider .owl-dots .owl-dot.active span {
        background-color: #04294d;
    }



/* ======================
project single
====================== */

.project-details img {
    border-radius: 7px;
}

.project-sidebar .project-sidebar-content ul li {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 33px;
}

    .project-sidebar .project-sidebar-content ul li:last-child {
        border-bottom: none;
    }

.project-sidebar-title {
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 700;
}

.project-sidebar .project-sidebar-content ul li span {
    display: block;
    font-weight: normal;
    margin: 0;
}

.project-sidebar .project-sidebar-content .rating a {
    color: #04294d;
}

.new-project {
    background: #04294d !important;
}

    .new-project h4 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 28px;
    }

.new-project-btn {
    background: #fff;
    color: #1d9f96;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all .5s ease-in-out;
}

    .new-project-btn:hover {
        background: #1d9f96;
        color: #fff;
    }

    .new-project-btn i {
        margin-left: 8px;
    }

.project-single-list i {
    color: #04294d;
    margin-right: 10px;
}

.project-details h3 {
    font-weight: 700;
}





/* ===================
blog css 
====================== */

.blog-item {
    margin-bottom: 25px;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

.blog-item-img {
    overflow: hidden;
    border-radius: 8px;
}

    .blog-item-img img {
        border-radius: 8px;
    }

.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}

.blog-item-info {
    padding: 15px;
}

.blog-item-meta ul {
    margin: 0;
    padding: 0;
    margin-bottom: 14px;
    border-bottom: 1px solid #e6e8eb;
    padding-bottom: 18px;
}

    .blog-item-meta ul li {
        display: inline-block;
        margin-right: 15px;
        position: relative;
        color: #1d9f96;
    }

        .blog-item-meta ul li i {
            margin-right: 5px;
            color: #04294d;
        }

.blog-item-meta a:hover {
    color: #04294d;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.blog-item-info p {
    margin-bottom: 16px;
}

.blog-btn {
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    border: 2px solid #04294d;
    background: #04294d;
    color: #fff;
}

    .blog-btn i {
        margin-left: 5px;
    }

    .blog-btn:hover {
        background: transparent;
        color: #04294d;
    }

.blog-item-info h4 a {
    color: #1d9f96;
}

    .blog-item-info h4 a:hover {
        color: #04294d;
    }

@media all and (max-width: 991px) {
    .blog-item-info {
        padding: 23px 15px 30px 15px;
    }
}




/* ===========================
blog single css
=========================== */

.blog-thumb-img {
    margin-bottom: 20px;
}

.blog-single-content img {
    border-radius: 7px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .blog-meta .blog-meta-left ul {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .blog-meta .blog-meta-left ul li {
            font-weight: 500;
        }

    .blog-meta i {
        margin-right: 5px;
        color: #04294d;
    }

    .blog-meta a {
        color: #66788a;
        font-weight: 500;
    }

        .blog-meta a:hover {
            color: #04294d;
        }

.blog-details-title {
    font-size: 34px;
    color: #1d9f96;
}

.blockqoute {
    background: #F5F7FA;
    border-left: 5px solid #04294d;
    padding: 30px;
    font-size: 17px;
    font-style: italic;
    margin: 20px 0;
    border-radius: 0px;
}

.blockqoute-author {
    margin-top: 20px;
    padding-left: 60px;
    position: relative;
    color: #1d9f96;
}

    .blockqoute-author::before {
        content: "";
        position: absolute;
        height: 2px;
        width: 40px;
        background: #04294d;
        left: 0;
        top: 10px;
    }

.blog-details-tags {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .blog-details-tags h5 {
        color: #1d9f96;
        font-weight: 700;
    }

    .blog-details-tags ul {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .blog-details-tags ul a {
            background: #F5F7FA;
            color: #1d9f96;
            padding: 6px 18px;
            border-radius: 5px;
            transition: all .5s ease-in-out;
        }

            .blog-details-tags ul a:hover {
                background: #04294d;
                color: #fff;
            }

.blog-author {
    display: flex;
    justify-content: start;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    margin: 50px 0;
    padding: 20px;
}

.blog-author-img {
    width: 320px;
}

    .blog-author-img img {
        border-radius: 20px;
    }

.author-name {
    font-size: 22px;
    color: #04294d;
    margin: 8px 0;
}

.author-info {
    padding: 0 20px;
}

.author-social {
    margin-top: 10px;
}

    .author-social a {
        width: 35px;
        height: 35px;
        line-height: 32px;
        text-align: center;
        border: 2px solid #04294d;
        border-radius: 50px;
        margin-right: 5px;
        color: #04294d;
        transition: all .5s ease-in-out;
    }

        .author-social a:hover {
            color: #fff;
            background: #04294d;
        }

.blog-comments {
    margin-bottom: 50px;
}

    .blog-comments h3 {
        color: #1d9f96;
        font-weight: 700;
    }

.blog-comments-wrapper {
    margin: 30px 0;
}

.blog-comments-single {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin-top: 50px;
}

    .blog-comments-single img {
        border-radius: 50%;
    }

.blog-comments-content {
    padding: 0 0 0 20px;
}

    .blog-comments-content span {
        font-size: 14px;
        color: #04294d;
        font-weight: 500;
    }

    .blog-comments-content a {
        font-weight: 600;
        margin-top: 5px;
        color: #04294d;
    }

        .blog-comments-content a:hover {
            color: #1d9f96;
        }

    .blog-comments-content h5 {
        color: #1d9f96;
        font-weight: 700;
    }

.blog-comments-reply {
    margin-left: 50px;
}

.blog-comments-form {
    padding: 30px;
    margin-top: 50px;
    border-radius: 7px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

    .blog-comments-form h3 {
        margin-bottom: 20px;
    }

    .blog-comments-form .form-group {
        margin-bottom: 20px;
    }

    .blog-comments-form .form-control {
        padding: 12px 20px;
        border-radius: 7px;
        box-shadow: none;
        transition: all .5s ease-in-out;
    }

        .blog-comments-form .form-control:focus {
            border-color: #04294d;
        }



@media all and (max-width: 767px) {
    .blog-meta {
        flex-direction: column;
        font-size: 15px;
    }

        .blog-meta .blog-meta-left ul {
            gap: 10px;
        }

    .blog-details-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 25px 0 0 0;
    }

    .blog-comments-single {
        flex-direction: column;
        text-align: center;
        padding: 30px 0px;
        box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .blog-comments-reply {
        margin-left: 0px;
    }
}


/* =========================
sidebar css
========================= */

.widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 7px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

    .widget .widget-title {
        padding-bottom: 10px;
        margin-bottom: 30px;
        position: relative;
        font-size: 25px;
        color: #1d9f96;
    }

        .widget .widget-title::before {
            position: absolute;
            content: '';
            width: 15px;
            border-bottom: 3px solid #04294d;
            bottom: 0;
            left: 0;
        }

        .widget .widget-title::after {
            position: absolute;
            content: '';
            width: 30px;
            border-bottom: 3px solid #04294d;
            bottom: 0;
            left: 22px;
        }

    .widget .search-form .form-control {
        padding: 12px 15px 12px 15px;
        border-radius: 7px;
        box-shadow: none;
    }

    .widget .search-form {
        position: relative;
    }

        .widget .search-form .form-control:focus {
            border-color: #04294d;
        }

        .widget .search-form button {
            position: absolute;
            right: 0;
            top: 0;
            font-size: 18px;
            padding: 8px 18px 6px 18px;
            background: transparent;
            border: none;
            color: #04294d;
        }

    .widget .category-list a {
        display: block;
        padding: 10px 0;
        font-weight: 500;
        border-bottom: 1px solid #ced4da;
        transition: all .5s ease-in-out;
        font-weight: bold;
        font-size: 15px;
    }

        .widget .category-list a:last-child {
            margin-bottom: 0px;
            border-bottom: none;
        }

        .widget .category-list a:hover {
            padding-left: 10px;
            color: #1d9f96;
        }

        .widget .category-list a i {
            margin-right: 5px;
            color: #1d9f96;
        }

        .widget .category-list a span {
            float: right;
        }

    .widget .recent-post-single {
        display: flex;
        justify-content: start;
        align-items: center;
        margin-bottom: 20px;
    }

    .widget .recent-post-img {
        margin-right: 20px;
    }

        .widget .recent-post-img img {
            width: 120px;
            border-radius: 7px;
        }

    .widget .recent-post-bio h6 {
        font-size: 18px;
    }

    .widget .recent-post-bio span {
        font-size: 14px;
        color: #04294d;
        font-weight: 500;
    }

        .widget .recent-post-bio span i {
            margin-right: 5px;
        }

    .widget .recent-post-bio h6 a:hover {
        color: #04294d;
    }

    .widget .social-share-link a {
        width: 35px;
        height: 35px;
        line-height: 31px;
        border: 2px solid #04294d;
        color: #04294d;
        text-align: center;
        margin-right: 5px;
        border-radius: 7px;
        transition: all .5s ease-in-out;
    }

        .widget .social-share-link a:hover {
            background: #04294d;
            color: #fff;
        }

    .widget .tag-list a {
        background: #F5F7FA;
        color: #1d9f96;
        padding: 5px 15px;
        margin-bottom: 10px;
        margin-right: 10px;
        border-radius: 6px;
        display: inline-block;
        transition: all .5s ease-in-out;
    }

        .widget .tag-list a:hover {
            background-color: #04294d;
            color: #fff;
        }


/* =========================
partner css
========================= */

.partner-area {
    background: #04294d;
}



/* ===================
contact us css 
====================== */

.contact-wrapper {
    position: relative;
}

.contact-form {
    background: #fff;
    border-radius: 8px;
    padding: 30px 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-form-header {
    margin-bottom: 30px;
}

    .contact-form-header h2 {
        font-size: 30px;
        margin-bottom: 10px;
        font-weight: 700;
        color: #1d9f96;
    }

.contact-form .form-group {
    /*margin-bottom: 25px; >> MH >> reduce gap >> 01 Oct 2024*/
    margin-bottom: 11px;
}

    .contact-form .form-group .form-control {
        padding: 7px 15px;
        border-radius: 5px;
        box-shadow: none;
        transition: all .5s ease-in-out;
    }

        .contact-form .form-group .form-control:focus {
            border-color: #04294d;
        }

.contact-map {
    margin-bottom: -9px;
}

    .contact-map iframe {
        width: 100%;
        height: 450px;
    }

.contact-content {
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 7px;
    border: 2px solid #04294d;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-info-icon i {
    font-size: 25px;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50px;
    background: #04294d;
}

.contact-info h5 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #1d9f96;
}


@media all and (max-width: 768px) {
    .contact-content {
        margin-top: 50px;
        margin-bottom: 0;
    }
}




/* ===================
quote css
====================== */

.quote-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.quote-thum img {
    border-radius: 40% 10px 40% 40%;
}

.quote-content {
    padding: 30px;
}

    .quote-content .quote-header h6 {
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: #04294d;
        font-size: 18px;
        letter-spacing: 2px;
    }

    .quote-content .quote-header h2 {
        color: #1d9f96;
        font-size: 35px;
        margin-bottom: 30px;
        margin-top: 10px;
        font-weight: 700;
    }

    .quote-content .form-group {
        margin-bottom: 20px
    }

        .quote-content .form-group .form-control {
            padding: 15px 22px;
            font-size: 16px;
            background: 0 0;
            border-radius: 7px;
            background: #F3F7FA;
            border: none;
            box-shadow: none
        }

    .quote-content .theme-btn:hover {
        color: #fff;
    }

@media all and (max-width:1199px) {
    .quote-content .quote-header h2 {
        font-size: 25px
    }
}

@media all and (max-width:991px) {
    .quote-thum {
        margin-top: 40px;
    }
}





/* ===================
team css 
====================== */

.team-area {
    position: relative;
}

.team-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 28%;
    opacity: .2;
}

.team-item {
    padding: 15px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
    z-index: 1;
}

    .team-item::before {
        content: "";
        position: absolute;
        background: #fff;
        border-radius: 8px;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .team-item::after {
        content: "";
        position: absolute;
        background: #04294d;
        border-radius: 8px;
        left: 10px;
        right: 10px;
        bottom: -10px;
        height: 100%;
        z-index: -2;
    }

.team-img img {
    border-radius: 8px;
    margin-top: -50px;
}

.team-content {
    padding: 10px 0;
}

.team-bio h5 {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

    .team-bio h5 a {
        color: #1d9f96;
    }

.team-bio span {
    color: #04294d;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-bio h5 a:hover {
    color: #04294d;
}

.team-social {
    position: absolute;
    margin-bottom: 10px;
    text-align: center;
    top: 10px;
    right: 0px;
    bottom: 0;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.team-item:hover .team-social {
    opacity: 1;
    right: 20px;
}

.team-social a {
    display: block;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-bottom: 10px;
    border-radius: 50px;
    background: #04294d;
}

    .team-social a:hover {
        background: #fff;
        color: #04294d;
    }

.team-social h6 {
    margin-top: 28px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transform: rotate(-90deg);
}

    .team-social h6::before {
        content: "";
        position: absolute;
        width: 40px;
        height: 3px;
        background: #fff;
        left: -50px;
        top: 7px;
    }



/* ===================
download css 
====================== */

.download-btn {
    margin-top: 50px;
}

    .download-btn a {
        margin-right: 10px;
    }

    .download-btn .theme-btn {
        padding: 5px 25px;
    }

.download-btn-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.download-text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.download-btn-icon {
    font-size: 35px;
}

.download-text-subtitle {
    font-size: 12px;
}

.download-text-title {
    line-height: 1;
}

@media all and (max-width: 991px) {
    .download-content {
        margin-top: 40px;
    }
}

@media all and (max-width: 768px) {
    .download-btn a:last-child {
        margin-top: 15px;
    }
}



/* ===================
commercial css 
====================== */

.commercial-area {
    position: relative;
}

.commercial-content {
    max-width: 500px;
    margin-left: 30px;
}

.commercial-list li {
    font-weight: 500;
    padding-top: 5px;
    position: relative;
    padding-left: 50px;
    color: #1d9f96;
    margin-top: 10px;
}

    .commercial-list li:before {
        top: 7px;
        left: 0px;
        width: 28px;
        height: 28px;
        font-weight: 400;
        content: "\f00c";
        line-height: 28px;
        text-align: center;
        position: absolute;
        border-radius: 5px;
        color: #fff;
        background-color: #04294d;
        font-family: "Font Awesome 6 Pro";
    }

@media all and (max-width: 1199px) {
    .commercial-content {
        padding: 50px 0;
    }
}


/* ===================
pricing css 
====================== */

.pricing-item {
    position: relative;
    overflow: hidden;
    background: #002666;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .9s ease-in-out;
    z-index: 1;
}

    .pricing-item:hover {
        transform: translateY(-10px);
    }

.pricing-bg {
    position: relative;
}

    .pricing-bg::before {
        content: "";
        position: absolute;
        background: #1d9f96;
        left: 0;
        top: 0;
        width: 100%;
        height: 50%;
    }

    .pricing-bg::after {
        content: "";
        position: absolute;
        background-image: url(../img/shape/07.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 50%;
        width: 100%;
        left: 0;
        top: 0;
    }

.pricing-header {
    padding: 50px;
    position: relative;
    z-index: 1;
}

    .pricing-header::before {
        content: "";
        position: absolute;
        background: #04294d;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        clip-path: polygon(100% 0, 100% 100%, 68% 72%, 0 100%, 0 0);
        z-index: -1;
    }

.pricing-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: #fff;
    position: relative;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

    .pricing-icon::before {
        content: "";
        position: absolute;
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
        border: 3px solid #fff;
        border-radius: 50%;
    }

    .pricing-icon i {
        font-size: 60px;
        line-height: 1;
        color: #04294d;
    }

.pricing-content {
    margin: 30px 0 20px 0;
}

    .pricing-content h4 {
        margin-bottom: 10px;
        color: #fff;
    }

.pricing-amount {
    color: #fff;
}

.pricing-feature {
    padding: 40px;
    padding-top: 0;
}

    .pricing-feature ul {
        margin-bottom: 35px;
    }

        .pricing-feature ul li {
            position: relative;
            margin: 10px 0;
            padding-left: 25px;
            color: #fff;
        }

            .pricing-feature ul li::before {
                content: "";
                position: absolute;
                width: 13px;
                height: 13px;
                border: 3px solid #fff;
                border-radius: 50px;
                left: 0;
                top: 8px;
            }

    .pricing-feature .theme-btn:hover {
        color: #04294d;
    }

    .pricing-feature .theme-btn::before {
        background: #fff;
    }




/* ===================
faq css 
====================== */

.faq-area .accordion-item {
    border: none;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 8px !important;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

    .faq-area .accordion-item span {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .faq-area .accordion-item i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        border-radius: 8px;
        background: #04294d;
        text-align: center;
        color: #fff;
    }

.faq-area .accordion-button:not(.collapsed) {
    color: #04294d;
    background: transparent;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
    border-radius: 0px !important;
    background: transparent;
    font-weight: 700;
    font-size: 20px;
    color: #1d9f96;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        border-bottom: 1px solid #04294d;
    }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

@media all and (max-width: 991px) {
    .faq-right {
        margin-top: 50px;
    }

    .accordion-button {
        font-size: 16px;
    }
}



/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
    z-index: 1;
}

    .site-breadcrumb::before {
        content: "";
        position: absolute;
        /* background: rgba(7, 25, 61, .8); >> MH >> 12 Sept 2024 */
        /*  background: rgba(181, 199, 227, 0.8);*/
        /*   background: rgba(8, 36, 76, 0.85);*/
        /*background: rgba(181, 199, 227, 0.8);*/
        background: rgba(7, 25, 61, .8);
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .site-breadcrumb .breadcrumb-title {
        font-size: 45px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .site-breadcrumb .breadcrumb-menu {
        position: relative;
        z-index: 1;
    }

        .site-breadcrumb .breadcrumb-menu li {
            position: relative;
            display: inline-block;
            margin-left: 25px;
            color: #fff;
            font-weight: 500;
            text-transform: capitalize;
        }

            .site-breadcrumb .breadcrumb-menu li a {
                color: #fff;
                transition: all 0.5s ease-in-out;
            }

            .site-breadcrumb .breadcrumb-menu li::before {
                position: absolute;
                content: '\f101';
                font-family: 'Font Awesome 6 Pro';
                right: -21px;
                top: 1px;
                text-align: center;
                font-size: 16px;
                color: #fff;
            }

            .site-breadcrumb .breadcrumb-menu li:first-child {
                margin-left: 0;
            }

            .site-breadcrumb .breadcrumb-menu li:last-child:before {
                display: none;
            }

            .site-breadcrumb .breadcrumb-menu li a:hover {
                /* color: #04294d;*/
                color: #1d9f96;
            }

            .site-breadcrumb .breadcrumb-menu li.active {
                color: #1d9f96;
            }

@media (max-width: 991px) {
    .site-breadcrumb {
        padding-top: 240px;
    }
}




/* ===================
pagination css 
====================== */

/*.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

    .pagination .page-link {
        border: none;
        background: #1d9f96;
        color: #fff;
        margin: 0 10px;
        border-radius: 8px !important;
        width: 40px;
        height: 40px;
        line-height: 28px;
        text-align: center;
        transition: all .5s ease-in-out;
    }

        .pagination .page-link:hover,
        .pagination .page-item.active .page-link {
            background: #04294d;
            color: #fff;
        }
*/

/* ===================
RTL css
====================== */

body.rtl-mode {
    direction: rtl;
}

    body.rtl-mode .item-area {
        direction: ltr;
    }

    body.rtl-mode .price-wrapper {
        direction: rtl;
    }

@media (min-width: 992px) {
    body.rtl-mode .navbar-brand {
        margin-left: 3rem;
    }

    body.rtl-mode .navbar .nav-item .nav-link {
        margin-left: 3rem;
        margin-right: 0;
    }
}

/* ===================
auth css 
====================== */

.login-form {
    padding: 40px;
    background: #fff;
    border-radius: 7px;
    border-bottom: 3px solid #04294d;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

    .login-form .login-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .login-form .login-header img {
            /*width: 200px; >> MH >> 12 Sept 2024 */
            margin-bottom: 10px;
        }

        .login-form .login-header h3 {
            color: #04294d;
            margin-bottom: 5px;
            font-weight: 800;
        }

        .login-form .login-header p {
            font-size: 20px;
        }

    .login-form .login-footer {
        margin-top: 25px;
    }

        .login-form .login-footer p {
            text-align: center;
        }

        .login-form .login-footer a {
            color: #04294d;
            transition: .5s;
        }

            .login-form .login-footer a:hover {
                color: #1d9f96;
            }

    .login-form .form-group {
        margin-bottom: 20px;
    }

    .login-form label {
        color: #04294d;
        margin-bottom: 5px;
    }

    .login-form .form-group .form-control {
        border: 1px solid #e8e8e8;
        border-radius: 7px;
        /* padding: 12px 18px; >> MH >> 12 Sept 2024*/
        padding: 7px 7px;
        box-shadow: none;
        transition: .5s;
    }

        .login-form .form-group .form-control:focus {
            border-color: #04294d;
        }

    .login-form .form-check-input {
        box-shadow: none;
    }

    .login-form .forgot-pass {
        color: #04294d;
        transition: .5s;
    }

        .login-form .forgot-pass:hover {
            color: #1d9f96;
        }

    .login-form .theme-btn {
        width: 100%;
    }

        .login-form .theme-btn::before {
            width: 420px;
            height: 420px;
        }

        .login-form .theme-btn i {
            margin-right: 5px;
        }

    .login-form .form-check-input {
        margin-top: 6.3px;
    }

    .login-form .form-check-label a {
        color: #04294d;
        transition: .5s;
    }

        .login-form .form-check-label a:hover {
            color: #04294d;
        }

.form-check-input:checked {
    background-color: #04294d;
    border-color: #04294d;
}

.social-login {
    border-top: 1px solid #F1F1F1;
    margin-top: 15px;
}

    .social-login p {
        margin: 10px 0;
    }

.social-login-list {
    text-align: center;
}

    .social-login-list a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: #04294d;
        border-radius: 5px;
        margin: 5px;
    }

        .social-login-list a i {
            color: #fff;
        }

        .social-login-list a:hover {
            background: #1d9f96;
        }


@media only screen and (max-width: 991px) {
    .login-form {
        padding: 40px 20px;
    }
}




/* ===================
coming soon css 
====================== */

.coming-soon {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
}

    .coming-soon .container {
        position: relative;
    }

    .coming-soon:before {
        position: absolute;
        content: '';
        background: rgba(0, 0, 0, .7);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .coming-soon .newsletter-form {
        position: relative;
        margin-top: 30px;
    }

        .coming-soon .newsletter-form .input-newsletter {
            height: 55px;
            display: block;
            width: 100%;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            padding-top: 0;
            padding-right: 0;
            padding-bottom: 0;
            padding-left: 25px;
        }

        .coming-soon .newsletter-form button {
            position: absolute;
            right: 4px;
            top: 4px;
            bottom: 4px;
            height: auto;
            border: none;
            border-radius: 6px;
            background: #04294d;
            display: inline-block;
            color: #fff;
            padding-left: 30px;
            padding-right: 30px;
            font-weight: 500;
            transition: .5s;
        }

            .coming-soon .newsletter-form button:hover {
                background-color: #04294d;
                color: #fff;
            }

.coming-social {
    margin-top: 30px;
    text-align: center;
}

    .coming-social a {
        color: #fff;
        margin: 5px;
        width: 40px;
        height: 40px;
        line-height: 36px;
        text-align: center;
        border-radius: 5px;
        border: 2px solid #fff;
        display: inline-block;
        transition: .5s;
    }

        .coming-social a:hover {
            background: #04294d;
            border-color: #04294d;
        }

.countdown-wrap {
    margin-top: 30px;
}

.countdown-single {
    background: #04294d;
    padding: 20px;
    margin: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

    .countdown-single h2 {
        color: #fff;
    }

    .countdown-single h5 {
        color: #fff;
    }




/* ===================
error css 
====================== */

.error-wrapper {
    text-align: center;
}

    .error-wrapper h1 {
        font-size: 250px;
        letter-spacing: 5px;
        font-weight: bold;
        color: #04294d;
    }

        .error-wrapper h1 span {
            color: #1d9f96;
        }

    .error-wrapper h2 {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .error-wrapper img {
        width: 100%;
    }

    .error-wrapper .theme-btn {
        margin-top: 30px;
    }



@media all and (max-width: 767px) {
    .error-wrapper h1 {
        font-size: 160px;
    }
}

/* ===================
terms/privacy css 
====================== */

.terms-content:not(:last-child) {
    margin-bottom: 54px;
}

.terms-content:first-child {
    margin-top: -3px;
}

.terms-content .terms-list {
    margin-top: 37px;
}

.terms-content h3 {
    margin-bottom: 23px;
    position: relative;
    font-weight: 700;
}

.terms-content p:not(:last-child) {
    margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
    margin-bottom: 16px;
}




/* ===================
footer css 
====================== */

.footer-area {
    /*    background: url(../img/footer/01.jpg);*/
    /*background: url(../../../assets/img/footer/01.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer-widget::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* background: rgba(8, 36, 76, 0.85);*/
    /* background-color: #253A6F;*/
    background-color: #04294d;
    z-index: -1;
}

.footer-widget-box {
    margin-bottom: 20px;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 30px;
}

.copyright {
    padding: 20px 0;
    background: #0B2048;
}

    .copyright .footer-menu {
        margin: 0;
        padding: 0;
        text-align: right;
    }

        .copyright .footer-menu li {
            display: inline-block;
            margin-left: 25px;
            font-size: 16px;
        }

            .copyright .footer-menu li a {
                color: #f5faff;
                transition: all .5s ease-in-out;
            }

                .copyright .footer-menu li a:hover {
                    color: #04294d;
                }

    .copyright .copyright-text {
        color: #f5faff;
        margin-bottom: 0px;
        font-size: 16px;
    }

        .copyright .copyright-text a {
            color: #04294d;
            font-weight: 500;
        }

.footer-widget-title {
    color: #fff;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
    font-size: 24px;
    z-index: 1;
}

    .footer-widget-title::before {
        position: absolute;
        content: '';
        z-index: -1;
        width: 12px;
        height: 2px;
        background-color: #1d9f96;
        bottom: 0;
        left: 0;
    }

    .footer-widget-title::after {
        position: absolute;
        content: '';
        z-index: -1;
        width: 30px;
        height: 2px;
        background-color: #1d9f96;
        bottom: 0;
        left: 18px;
    }

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

    .footer-list li a {
        color: #fff;
        transition: all .5s ease-in-out;
    }

        .footer-list li a i {
            margin-right: 5px;
            color: #FFFFFF;
            font-weight: 400;
            font-size: 13px;
        }

        .footer-list li a:hover {
            padding-left: 10px;
            color: #1d9f96;
        }

.footer-widget-box p {
    color: #fff;
    padding-right: 18px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end;
}

    .footer-social li a i {
        height: 38px;
        width: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 50px;
        background: #fff;
        color: #04294d;
        transition: all .5s ease-in-out;
    }

        .footer-social li a i:hover {
            background: #1d9f96;
            color: #fff;
        }

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #f5faff;
    font-size: 16px;
    margin-bottom: 7px;
}

    .footer-contact li a {
        color: #f5faff;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .footer-contact li i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        margin-right: 15px;
        border-radius: 5px;
        background: #04294d;
        text-align: center;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        color: #fff;
    }

.subscribe-form .form-control {
    padding: 14px 20px;
    border-radius: 5px;
    box-shadow: none;
    border: none;
}

.subscribe-form .theme-btn {
    margin-top: 20px;
    width: 100%;
}

    .subscribe-form .theme-btn:hover {
        color: #04294d;
    }

        .subscribe-form .theme-btn:hover::before {
            background: #fff;
        }




@media all and (max-width: 1199px) {
    .footer-widget-box {
        margin-bottom: 50px;
    }
}

@media all and (max-width: 991px) {
    .footer-widget-wrapper {
        padding-bottom: 0px;
    }

    .copyright .footer-menu {
        float: left;
        margin-top: 20px;
        text-align: left;
    }

        .copyright .footer-menu li {
            margin-left: 0;
            margin-right: 15px;
        }
}

@media all and (max-width: 767px) {
    .footer-widget-wrapper {
        padding-bottom: 0px;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }
}


/* ======================
home 2
====================== */

.home-2.main {
    margin-top: -6rem;
}

.home-2 .navbar {
    background: transparent;
}

    .home-2 .navbar.navbar.fixed-top {
        background: #fff;
    }

.home-2 .custom-nav-bg {
    background: #fff;
}

.home-2 .hero-single {
    padding-top: 220px;
    position: relative;
    background: linear-gradient(90deg, #00102D 0%, #0059FC 56%);
}

    .home-2 .hero-single::before {
        display: none;
    }

    .home-2 .hero-single::after {
        content: "";
        position: absolute;
        background: url(../img/shape/05.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0px;
        opacity: .7;
        z-index: -1;
    }

    .home-2 .hero-single .hero-content p,
    .home-2 .hero-single .hero-sub-title,
    .home-2 .hero-single .hero-title {
        color: #fff !important;
    }

.home-2 .call-center {
    position: absolute;
    background: #fff;
    bottom: -50px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    padding: 20px 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}

.home-2 .call-center-icon {
    width: 80px;
    height: 80px;
    background: #04294d;
    color: #fff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.home-2 .call-center-number {
    font-size: 30px;
    font-weight: 700;
    margin-top: 5px;
}

.home-2 .call-center-content span {
    font-weight: 500;
    text-transform: uppercase;
}

.home-2.footer-area {
    background-image: url(../img/footer/02.jpg);
}

    .home-2.footer-area::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: 300px;
        width: 300px;
        background: #104cba;
        border-radius: 50%;
        -webkit-filter: blur(150px);
        filter: blur(150px);
    }

    .home-2.footer-area .copyright {
        background-color: #15101E;
    }

.home-2 .footer-widget-title::before {
    width: 80px;
    height: 3px;
    background: #423B4E;
}

.home-2 .footer-widget-title::after {
    height: 3px;
}

.home-2 .footer-social li a i {
    border-radius: 5px;
}

.home-2#scroll-top {
    border-radius: 7px;
}


@media all and (max-width: 767px) {
    .home-2 .call-center {
        left: 5%;
    }
}




/* ======================
home 3
====================== */

.home-3.main {
    margin-top: -6rem;
}

.home-3 .navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .home-3 .navbar.fixed-top {
        background: #1d9f96;
    }

.home-3 .hero-single {
    padding-top: 250px;
    padding-bottom: 180px;
}

    .home-3 .hero-single::before {
        background: rgba(10, 24, 81, 0.95);
    }

    .home-3 .hero-single .hero-content p,
    .home-3 .hero-single .hero-sub-title,
    .home-3 .hero-single .hero-title {
        color: #fff;
    }

        .home-3 .hero-single .hero-title span {
            color: transparent;
            -webkit-text-stroke: 1px #fff;
        }

    .home-3 .hero-single .hero-shape {
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
    }

@media (min-width: 992px) {
    .home-3 .navbar .nav-item .nav-link {
        color: #fff;
        font-weight: 600;
    }

    .home-3 .header-nav-link {
        color: #fff !important;
    }

        .home-3 .header-nav-link:hover {
            color: #04294d !important;
        }
}

@media (max-width: 991px) {
    .home-3 .mobile-menu-link {
        color: #fff !important;
    }

    .home-3 .navbar-toggler-btn-icon {
        color: #fff !important;
    }
}

/*MH >> new >> 12 Sept 2024*/


.MHmodalClosebtn {
    border: 0px;
    color: #ff0000;
}


/* ===========================================
table >> MH >> 14 Sept 2024
============================================= */

/*modal popup css >> mojammel hossain >> 13 June 2024*/


.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

/* partial Modal popup >> call another page >> MH 25 Dec 2023*/

.modalMH {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100px !important;
    z-index: 3050;
}

#partialModal .modal-content {
    min-width: 1392px;
    left: 0px !important;
    max-height: 750px;
    overflow-y: auto;
}


.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #FFF;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: 0.5;
    }

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

    .modal-header .close {
        padding: 1rem;
        margin: -1rem -1rem -1rem auto;
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

    .modal-footer > :not(:first-child) {
        margin-left: .25rem;
    }

    .modal-footer > :not(:last-child) {
        margin-right: .25rem;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}


.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.765625rem;
    word-wrap: break-word;
    opacity: 0;
}

    .tooltip.show {
        opacity: 0.9;
    }

    .tooltip .arrow {
        position: absolute;
        display: block;
        width: 0.8rem;
        height: 0.4rem;
    }

        .tooltip .arrow::before {
            position: absolute;
            content: "";
            border-color: transparent;
            border-style: solid;
        }

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0;
}

    .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
        bottom: 0;
    }

        .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
            top: 0;
            border-width: 0.4rem 0.4rem 0;
            border-top-color: #000;
        }

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem;
}

    .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
        left: 0;
        width: 0.4rem;
        height: 0.8rem;
    }

        .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
            right: 0;
            border-width: 0.4rem 0.4rem 0.4rem 0;
            border-right-color: #000;
        }

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0;
}

    .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
        top: 0;
    }

        .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
            bottom: 0;
            border-width: 0 0.4rem 0.4rem;
            border-bottom-color: #000;
        }

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem;
}

    .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
        right: 0;
        width: 0.4rem;
        height: 0.8rem;
    }

        .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
            left: 0;
            border-width: 0.4rem 0 0.4rem 0.4rem;
            border-left-color: #000;
        }

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #FFF;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}


.mhTxtbxCssNoBorder {
    border-width: 0;
    border: none;
    outline: none;
    width: 100%;
    max-width: 100%;
    font-weight: bold;
    color: #032756;
}


/* -- spnner css >> M Hossain @ 29 Nov 2023 */

.center-div {
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -150px;
}

.spinner {
    position: fixed;
    z-index: 999999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.loader {
    margin: auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #15a0ec;
    border-bottom: 16px solid #15a0ec;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.inner-div {
    background-color: white;
    border-radius: 15px;
    margin: auto;
    padding: 2%;
    width: 150px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* -- spnner css >> M Hossain @ 29 Nov 2023 >> ENDS HERE */

/*
mojammel hossain >> text box >> right radius >> 20 June 2024*/

.input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 4px;
}


/*mh >> data table >> June 2024*/


table.dataTable {
    clear: both;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    max-width: none !important;
    font-size: 14px;
}

    table.dataTable td,
    table.dataTable th {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

        table.dataTable td.dataTables_empty,
        table.dataTable th.dataTables_empty {
            text-align: center;
        }

    table.dataTable.nowrap th,
    table.dataTable.nowrap td {
        white-space: nowrap;
    }

.tile div.dataTables_wrapper {
    padding: 0;
}

div.dataTables_wrapper div.dataTables_length label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length select {
    width: 75px;
    display: inline-block;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
}

    div.dataTables_wrapper div.dataTables_filter label {
        font-weight: normal;
        white-space: nowrap;
        text-align: left;
    }

    div.dataTables_wrapper div.dataTables_filter input {
        margin-left: 0.5em;
        display: inline-block;
        width: auto;
    }

div.dataTables_wrapper div.dataTables_info {
    padding-top: 0.85em;
    white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin: 2px 0;
        white-space: nowrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
    padding-right: 30px;
}

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
    outline: none;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative;
}

    table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
    table.dataTable thead .sorting_asc:before,
    table.dataTable thead .sorting_asc:after,
    table.dataTable thead .sorting_desc:before,
    table.dataTable thead .sorting_desc:after,
    table.dataTable thead .sorting_asc_disabled:before,
    table.dataTable thead .sorting_asc_disabled:after,
    table.dataTable thead .sorting_desc_disabled:before,
    table.dataTable thead .sorting_desc_disabled:after {
        position: absolute;
        bottom: 0.9em;
        display: block;
        opacity: 0.3;
    }

    table.dataTable thead .sorting:before,
    table.dataTable thead .sorting_asc:before,
    table.dataTable thead .sorting_desc:before,
    table.dataTable thead .sorting_asc_disabled:before,
    table.dataTable thead .sorting_desc_disabled:before {
        right: 1em;
        content: "\2191";
    }

    table.dataTable thead .sorting:after,
    table.dataTable thead .sorting_asc:after,
    table.dataTable thead .sorting_desc:after,
    table.dataTable thead .sorting_asc_disabled:after,
    table.dataTable thead .sorting_desc_disabled:after {
        right: 0.5em;
        content: "\2193";
    }

    table.dataTable thead .sorting_asc:before,
    table.dataTable thead .sorting_desc:after {
        opacity: 1;
    }

    table.dataTable thead .sorting_asc_disabled:before,
    table.dataTable thead .sorting_desc_disabled:after {
        opacity: 0;
    }

div.dataTables_scrollHead table.dataTable {
    margin-bottom: 0 !important;
}

div.dataTables_scrollBody table {
    border-top: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

    div.dataTables_scrollBody table thead .sorting:after,
    div.dataTables_scrollBody table thead .sorting_asc:after,
    div.dataTables_scrollBody table thead .sorting_desc:after {
        display: none;
    }

    div.dataTables_scrollBody table tbody tr:first-child th,
    div.dataTables_scrollBody table tbody tr:first-child td {
        border-top: none;
    }

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
        margin-top: 0 !important;
        border-top: none;
    }

@media screen and (max-width: 767px) {
    div.dataTables_wrapper div.dataTables_length,
    div.dataTables_wrapper div.dataTables_filter,
    div.dataTables_wrapper div.dataTables_info,
    div.dataTables_wrapper div.dataTables_paginate {
        text-align: center;
    }
}

table.dataTable.table-sm > thead > tr > th {
    padding-right: 20px;
}

table.dataTable.table-sm .sorting:before,
table.dataTable.table-sm .sorting_asc:before,
table.dataTable.table-sm .sorting_desc:before {
    top: 5px;
    right: 0.85em;
}

table.dataTable.table-sm .sorting:after,
table.dataTable.table-sm .sorting_asc:after,
table.dataTable.table-sm .sorting_desc:after {
    top: 5px;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
    border-left-width: 0;
}

    table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
    table.table-bordered.dataTable td:last-child,
    table.table-bordered.dataTable td:last-child {
        border-right-width: 0;
    }

table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
    border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
    border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
    margin: 0;
}

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
        padding-left: 0;
    }

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
        padding-right: 0;
    }


/*mh >> data table >> ends here >>  June 2024*/


/*now table >>  mojammel >> */


.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

    .table th,
    .table td {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
        background-color: #47617B;
        color: #FFFFFF;
    }



    .table tbody + tbody {
        border-top: 2px solid #dee2e6;
    }

    .table .table {
        background-color: #FFF;
    }

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #dee2e6;
    }

    .table-bordered thead th,
    .table-bordered thead td {
        border-bottom-width: 2px;
    }

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #b8e2de;
}

.table-hover .table-primary:hover {
    background-color: #a6dbd6;
}

    .table-hover .table-primary:hover > td,
    .table-hover .table-primary:hover > th {
        background-color: #a6dbd6;
    }

.table-secondary,
.table-secondary > th,
.table-secondary > td {
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf;
}

    .table-hover .table-secondary:hover > td,
    .table-hover .table-secondary:hover > th {
        background-color: #c8cbcf;
    }

.table-success,
.table-success > th,
.table-success > td {
    background-color: #c3e6cb;
}

.table-hover .table-success:hover {
    background-color: #b1dfbb;
}

    .table-hover .table-success:hover > td,
    .table-hover .table-success:hover > th {
        background-color: #b1dfbb;
    }

.table-info,
.table-info > th,
.table-info > td {
    background-color: #bee5eb;
}

.table-hover .table-info:hover {
    background-color: #abdde5;
}

    .table-hover .table-info:hover > td,
    .table-hover .table-info:hover > th {
        background-color: #abdde5;
    }

.table-warning,
.table-warning > th,
.table-warning > td {
    background-color: #ffeeba;
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1;
}

    .table-hover .table-warning:hover > td,
    .table-hover .table-warning:hover > th {
        background-color: #ffe8a1;
    }

.table-danger,
.table-danger > th,
.table-danger > td {
    background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7;
}

    .table-hover .table-danger:hover > td,
    .table-hover .table-danger:hover > th {
        background-color: #f1b0b7;
    }

.table-light,
.table-light > th,
.table-light > td {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

    .table-hover .table-light:hover > td,
    .table-hover .table-light:hover > th {
        background-color: #ececf6;
    }

.table-dark,
.table-dark > th,
.table-dark > td {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

    .table-hover .table-dark:hover > td,
    .table-hover .table-dark:hover > th {
        background-color: #b9bbbe;
    }

.table-active,
.table-active > th,
.table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

    .table-hover .table-active:hover > td,
    .table-hover .table-active:hover > th {
        background-color: rgba(0, 0, 0, 0.075);
    }

.table .thead-dark th {
    color: #FFF;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #FFF;
    background-color: #212529;
}

    .table-dark th,
    .table-dark td,
    .table-dark thead th {
        border-color: #32383e;
    }

    .table-dark.table-bordered {
        border: 0;
    }

    .table-dark.table-striped tbody tr:nth-of-type(odd) {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .table-dark.table-hover tbody tr:hover {
        background-color: rgba(255, 255, 255, 0.075);
    }

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-sm > .table-bordered {
            border: 0;
        }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-md > .table-bordered {
            border: 0;
        }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-lg > .table-bordered {
            border: 0;
        }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .table-responsive-xl > .table-bordered {
            border: 0;
        }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .table-responsive > .table-bordered {
        border: 0;
    }

/*now table >>  mojammel >>  ends here */




input[type="radio"]:disabled {
    /*-webkit-appearance: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    padding: 0px;
    background-clip: content-box;
    border: 1px solid #060d31;
    background-color: #97c2f1;
    border-radius: 50%;*/
}


input[type="radio"]:checked {
    background-color: #97c2f1;
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    height: 16px;
    width: 16px;
    -webkit-appearance: none;
}

input[type="radio"][disabled] + label {
    color: purple;
}

input[type="radio"][disabled] {
    border-color: purple;
}


fieldset.scheduler-border {
    border: 1px solid !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
    border-radius: 5px;
    border-color: #EAF2F7;
}

legend.scheduler-border {
    width: inherit; /* Or auto */
    padding: 0 10px; /* To give a bit of padding on the left and right */
    border-bottom: none;
    color: #0c3367;
    border-color: #EAF2F7;
    font-size: 15px;
}

/*Mojammel Hossain >> 08 Sept 2024*/

input[type="radio"]:disabled {
    -webkit-appearance: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    padding: 0px;
    background-clip: content-box;
    border: 1px solid #060d31;
    background-color: white;
    border-radius: 50%;
}

input[type="radio"]:checked {
    background-color: #97c2f1;
}




/* ===========================================
table >> ENDS >> MH >> 14 Sept 2024
============================================= */

/*MH >> form validation css*/

.input-validation-error {
    /* background-color: #ef8282;*/
    border: solid 1px #eb2121;
}



.form-control.mhradious.valid {
    border: solid 1px #68c407;
    /*background-color:#e9faef;*/
}

.text-danger.field-validation-error {
    font-size: 12px;
}

/* MH service icon >> 04 oct 2024*/
.mhSoftwareDev:before {
    content: url('../../../assets/img/icon/soft.png');
    background-repeat: no-repeat;
}

.mhWebDev:before {
    content: url('../../../assets/img/icon/web.png');
    background-repeat: no-repeat;
}

.mhRPA:before {
    content: url('../../../assets/img/icon/rpa.png');
    background-repeat: no-repeat;
}

.mhpay:before {
    content: url('../../../assets/img/icon/pay.png');
    background-repeat: no-repeat;
}

.mhsign:before {
    content: url('../../../assets/img/icon/sign.png');
    background-repeat: no-repeat;
}

.mhCustomer:before {
    content: url('../../../assets/img/icon/customer.png');
    background-repeat: no-repeat;
}


.mhCost:before {
    content: url('../../../assets/img/icon/cost.png');
    background-repeat: no-repeat;
}

.mhQlty:before {
    content: url('../../../assets/img/icon/qlty.png');
    background-repeat: no-repeat;
}

/* MH service icon >> 04 oct 2024  >> ends */


.mhprod_Telehlth:before {
    content: url('../../../assets/img/products/01.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
}



/* PROCESS >> MH >> index >> 23 May 2026 */
.process {
    /*  padding: 80px 0;*/
    padding: 10px 0px 70px 0px;
    background: var(--gray-bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}

    .steps::before {
        content: '';
        position: absolute;
        top: 26px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--teal) 0%, var(--navy-light) 100%);
        z-index: 0;
    }

.step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--teal);
    margin: 0 auto 16px;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}



/* CTA STRIP */
.cta-strip {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-strip::before {
        content: '';
        position: absolute;
        top: -80px;
        right: 10%;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,176,155,0.14) 0%, transparent 65%);
    }

    .cta-strip h2 {
        font-size: clamp(24px, 3.5vw, 38px);
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .cta-strip p {
        font-size: 15px;
        color: rgba(255,255,255,0.55);
        margin-bottom: 34px;
    }

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cbtn-main {
    background: var(--teal);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 10px;
    border: none;
    transition: background .2s, transform .15s;
}

    .cbtn-main:hover {
        background: var(--teal-dark);
        transform: translateY(-2px);
    }

.cbtn-out {
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.28);
    transition: border-color .2s;
}

    .cbtn-out:hover {
        border-color: rgba(255,255,255,0.65);
    }