@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: rgb(33, 37, 41);
}

body {
    --bg: #fff;
    --bg-theme: #083371;
    --bg-2: #f8f9fc;
    --bg-3: #f3f4f6;
    --bg-4: rgba(169, 210, 255, 0.1);
    --bg-5: #f2f5fb;
    --bg-6: #f9fafc;
    --bg-7: #fdfdfd;
    --bg-8: #e6f8f9;
    --bg-9: rgba(230, 248, 249, 0.4);
    --color-headings: #25373f;
    --color-headings-2: white;
    --color-headings-3: #000;
    --color-texts: rgba(37, 55, 63, 0.7);
    --color-texts-2: #3b4656;
    --color-texts-3: rgba(38, 39, 41, 0.7);
    --border-color: rgba(128, 138, 142, 0.2);
    --border-color-2: rgba(37, 55, 63, 0.1);
    --border-color-3: rgba(38, 39, 41, 0.1);
    --border-color-4: rgba(181, 181, 181, 0.2);
    --border-color-5: rgba(38, 39, 41, 0.3);
    --border-color-6: rgba(130, 130, 136, 0.3);
}





a {
    color: #428bca;
    text-decoration: none;
}

    a:hover {
        color: #9eccf4;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6, .font-primary {
    font-family: 'Inter', sans-serif;
}

.bg_theme {
    background-color: var(--bg-theme);
}

.card-body {
    max-height: 169px;
    overflow-y: scroll;
    padding: 4px;
    overflow-x: hidden;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    background: #006400;
    z-index: 99999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #228B22;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }
/* Footer */

#footer {
    background-image: url('/SiteImage/Setting/flag-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 12px;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    padding-left: 2rem;
    padding-right: 2rem
}

    /*#footer .footer-end{
  border-top: 1px solid white;

}*/
    #footer .footer-top .footer-info {
        margin-bottom: 30px;
    }

        #footer .footer-top .footer-info h3 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 2px 0 2px 0;
            line-height: 1;
            font-weight: 700;
        }

    #footer .footer-top p {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 0;
        text-align: justify;
        color: #fff;
    }

    #footer .footer-top .social-links a {
        font-size: 18px;
        display: inline-block;
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
    }

.footer_title::before {
    content: "";
    width: 45px;
    height: 3px;
    background-color: white;
    position: absolute;
    bottom: 0;
    margin-bottom: 7px;
    left: 0;
}


.fixed-card {
    height: 120px; /* adjust height as you like */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer .footer-top .social-links .twitter {
    background-color: #55ACEE;
}

#footer .footer-top .social-links .linkedin {
    background-color: #0976B4;
}

#footer .footer-top .social-links .instagram {
    background: linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%) !important;
}

    #footer .footer-top .social-links .instagram:hover {
        background: linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%) !important;
    }

#footer .footer-top .social-links a:hover {
    background: #428bca;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 20px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #footer .footer-top .footer-links ul i {
            padding-right: 15px;
            color: white;
            font-size: 15px;
        }

        #footer .footer-top .footer-links ul li {
            padding: 6px 0;
            display: flex;
        }
            #footer .footer-top .footer-links ul li:hover i {
                color: #006400;
            }

        #footer .footer-top .footer-links ul .mail {
            color: white !important;
            margin-top: 25px;
        }

        #footer .footer-top .footer-links ul .phone {
            color: white !important;
            margin-top: 0px;
            padding-top: 0px;
        }

        #footer .footer-top .footer-links ul li:first-child {
            padding-top: 0;
        }

        #footer .footer-top .footer-links ul a {
            color: #fff;
            display: inline-block;
            line-height: 1.5;
            font-size: 13px;
        }

            #footer .footer-top .footer-links ul a:hover {
                color: #006400;
            }

#footer .copyright {
    text-align: left;
    padding-top: 0px;
    color: white;
    font-size: 15px;
}

    #footer .copyright a {
        color: white !important;
    }

@media (max-width:992px) {
    #footer {
        padding: 0px 10px !important;
    }
}

/* For Map */

.map-container {
    margin-bottom: -50px;
}


/*Header Css StaRT*/
.site-navbar {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 6%);
    /* box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 6%); */
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 992px) {
    .site-navbar {
        flex-flow: row nowrap;
        justify-content: flex-start;
        padding-top: 0px;
    }
}

.site-navbar .menu-block-wrapper {
    flex-grow: 1;
    align-items: center;
}

@media (min-width: 992px) {
    .site-navbar .menu-block-wrapper {
        display: flex !important;
        flex-basis: auto;
    }
}

.navbar {
    padding-bottom: 0px !important;
}

.main-header {
    /* height: 70px; */
    z-index: 997;
    background-color: #006400;
    /**/ /* box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 6%); */
}
/*888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888*/
.fixed-top {
    z-index: 999;
}

.main-header .custom-navbar {
    background-color: #006400 !important;
}

.main-header .custom-navbar {
    /* padding-bottom: 8px !important;*/
    margin-bottom: 0rem;
}


.main-header .navbar-nav .nav-item .nav-link {
    color: #ffffff !important;
}

.main-header .navbar-nav .dropdown-menu .nav-item .nav-link {
    color: #000000 !important;
}






@media (max-width: 992px) {
    .main-header .custom-navbar {
        padding-bottom: 8px !important;
        margin-bottom: 0rem;
    }
}

/*888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888*/
.site-header--absolute {
    position: absolute;
    top: 10;
    left: 0;
    width: 100%;
    /*z-index: 1;*/
}

.header-top {
    margin-top: -15px;
}

header {
    background-color: white;
}

.site-header--sticky:not(.mobile-sticky-enable) {
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

@media (min-width: 1500px) {
    .site-header--sticky:not(.mobile-sticky-enable) {
        transition: 0.4s;
    }
}

@media (min-width: 992px) {

    .site-header--sticky:not(.mobile-sticky-enable) {
        transition: 0.4s;
    }

        .site-header--sticky:not(.mobile-sticky-enable).scrolling {
            transform: translateY(-100%);
            transition: 0.4s;
        }

        .site-header--sticky:not(.mobile-sticky-enable).reveal-header {
            transform: translateY(0%);
            box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
            z-index: 1000;
        }

            .site-header--sticky:not(.mobile-sticky-enable).reveal-header a {
                color: #262729;
            }

            .site-header--sticky:not(.mobile-sticky-enable).reveal-header .btn-link {
                color: var(--color-headings-2);
            }
}

.site-header--sticky.mobile-sticky-enable {
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: 0.4s;
}

    .site-header--sticky.mobile-sticky-enable.scrolling {
        transform: translateY(-100%);
        transition: 0.4s;
    }

    .site-header--sticky.mobile-sticky-enable.reveal-header {
        transform: translateY(0%);
        box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
        z-index: 9999;
    }

.site-header--menu-center .container {
    position: relative;
}

.site-header--menu-center .menu-block-wrapper {
    position: static;
}

@media (min-width: 992px) {
    .site-header--menu-center .menu-block {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .site-header--menu-left .container-fluid .sub-menu.megamenu {
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }
}

@media (min-width: 992px) {
    .site-header--menu-left .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
        transform: translateX(-50%) translateY(-2px);
        left: 50%;
        margin-top: -1px;
    }
}

.site-header--menu-left .menu-block .site-menu-main {
    justify-content: center;
    display: flex;
    padding-left: 15px;
}

@media (min-width: 1200px) {
    .site-header--menu-left .menu-block {
        width: 100%;
    }
}

@media (max-width:992px) {
    .site-header--menu-left .menu-block .site-menu-main {
        display: block;
    }
}

.site-header--menu-right .menu-block {
    margin-left: auto;
}

@media (min-width: 992px) {
    .site-header--menu-right > .container-fluid .sub-menu.megamenu {
        left: 100%;
        transform: translateX(-100%) translateY(10px);
    }
}

@media (min-width: 992px) {
    .site-header--menu-right > .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
        transform: translateX(-100%) translateY(-10px);
        margin-top: 40px;
        left: 100%;
    }
}

@media (min-width: 480px) {
    .header-btns {
        margin-right: 15px;
    }
}

@media (min-width: 992px) {
    .header-btns {
        margin-right: 0;
    }
}

.dynamic-sticky-bg.reveal-header {
    background: var(--bg);
}

.dynamic-sticky-bg.dark-mode-texts .menu-block.active .nav-link-item {
    color: #262729 !important;
}

.dynamic-sticky-bg.dark-mode-texts .menu-social-share li a {
    color: var(--color-headings-2);
}

.sticky-bg-white.reveal-header {
    background: #fff;
}

    .sticky-bg-white.reveal-header .dark-version-logo {
        display: none !important;
    }

    .sticky-bg-white.reveal-header .light-version-logo {
        display: block !important;
    }

    .sticky-bg-white.reveal-header .menu-sep-left {
        position: relative;
    }

        .sticky-bg-white.reveal-header .menu-sep-left::before {
            content: "";
            border-left: rgba(38, 39, 41, 0.5) !important;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 26px;
            z-index: 9;
        }

.notification-block {
    position: relative;
}

    .notification-block .count {
        position: absolute;
        top: 0;
        right: 0;
        margin-top: -4px;
        margin-right: -5px;
    }

body[data-theme="dark"] .reveal-header .menu-social-share li a,
.dark-mode-texts .reveal-header .menu-social-share li a {
    color: #fff;
    transition: 0.4s;
}

    body[data-theme="dark"] .reveal-header .menu-social-share li a:hover,
    .dark-mode-texts .reveal-header .menu-social-share li a:hover {
        color: #5034fc;
    }

body[data-theme="dark"] .reveal-header .nav-link-item,
.dark-mode-texts .reveal-header .nav-link-item {
    color: #262729 !important;
}

@media (min-width: 992px) {
    body[data-theme="dark"] .reveal-header .nav-link-item,
    .dark-mode-texts .reveal-header .nav-link-item {
        color: var(--color-headings-2) !important;
    }
}

@media (min-width: 992px) {
    .row-lg {
        display: flex;
    }
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.menu-block-wrapper {
    position: relative;
}

.site-menu-main {
    margin-bottom: 0;
    padding-left: 0;
}

@media (min-width: 992px) {
    .site-menu-main {
        display: flex;
        margin-bottom: 0;
        padding-left: 0;
    }
}

.site-menu-main li {
    list-style: none;
}

.site-menu-main ul {
    list-style: none;
    margin-left: 0;
}

.site-menu-main a {
    text-decoration: none;
}

.site-menu-main .nav-item {
    display: inherit;
    margin-right: 30px;
}

.site-menu-main .nav-link-item {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: white;
    line-height: 1.75;
    position: relative;
}

@media (min-width: 992px) {
    .site-menu-main .nav-link-item {
        /* margin-right: 20px; */
        font-size: 11.5px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.carousel-control-next, .carousel-control-prev {
    z-index: 0 !important;
}


@media (min-width: 1200px) {
    .site-menu-main .nav-link-item {
        /* margin-right: 30px !important; */
        padding-top: 8px;
        font-size: 13px;
        padding-bottom: 8px;
    }
}

@media (max-width: 992px) {
    .site-navbar {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

.site-menu-main .sub-menu--item a {
    font-size: 13px;
}

.site-menu-main .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #fff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -999;
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu {
        top: 100%;
        min-width: 210px;
    }
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu .sub-menu {
        top: 0 !important;
        left: 100%;
    }
}

.site-menu-main .sub-menu--item {
    color: #262729 !important;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    transition: 0.4s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu--item {
        padding-top: 0;
        padding-bottom: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0);
    }
}

.site-menu-main .sub-menu--item > a {
    color: inherit;
    transition: 0.4s;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu--item > a {
        transition: 0.4s;
        padding-top: 7px;
        padding-bottom: 10px;
        border-bottom: 1px dashed #d3d3d3;
        padding-left: 25px;
        padding-right: 25px;
    }
}

.site-menu-main .sub-menu--item > a > i {
    margin-top: 8px;
    min-width: 10px;
    max-width: 10px;
    min-height: 10px;
    max-height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-menu-main .sub-menu--item:hover > a {
    color: #083371;
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu--item:first-child a {
        padding-top: 0;
        padding-bottom: 7px;
    }
}

.site-menu-main .sub-menu--item:last-child {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
}

    .site-menu-main .sub-menu--item:last-child a {
        padding-bottom: 0;
    }

@media (min-width: 992px) {
    .site-menu-main .sub-menu.megamenu {
        background-color: #fff;
    }
}

.site-menu-main .sub-menu.megamenu .dropdown-image-block {
    max-height: 336px;
}

@media (min-width: 320px) and (max-width: 992px) {
    .site-menu-main .sub-menu.megamenu {
        border: 0;
    }
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu.megamenu {
        padding-top: 30px;
        padding-bottom: 15px;
        padding-left: 40px;
        padding-right: 40px;
        min-width: 925px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        will-change: transform;
        top: 100%;
        box-shadow: 0 42px 54px rgba(0, 0, 0, 0.09);
        border: 1px solid #e7e9ed;
        visibility: hidden;
        z-index: -99;
        opacity: 0;
        pointer-events: none;
    }

        .site-menu-main .sub-menu.megamenu.megadropdown-center {
            transform: translate(-50%, 10px);
        }

        .site-menu-main .sub-menu.megamenu.megadropdown-right {
            right: 0%;
            transform: translate(-12%, 10px);
        }

        .site-menu-main .sub-menu.megamenu.megadropdown-left {
            left: 0%;
            transform: translate(-16%, 10px);
        }
}

@media (min-width: 1200px) {
    .site-menu-main .sub-menu.megamenu {
        min-width: 1250px;
    }

        .site-menu-main .sub-menu.megamenu.megadropdown-center {
            transform: translate(-50%, 10px);
        }

        .site-menu-main .sub-menu.megamenu.megadropdown-right {
            right: 0%;
            transform: translate(-12%, 10px);
        }

        .site-menu-main .sub-menu.megamenu.megadropdown-left {
            left: 0%;
            transform: translate(-13%, 10px);
        }
}

@media (min-width: 1366px) {
    .site-menu-main .sub-menu.megamenu {
        min-width: 1250px;
        margin-top: 10px;
    }

        .site-menu-main .sub-menu.megamenu.megadropdown-center {
            transform: translate(-50%, -10px);
        }

        .site-menu-main .sub-menu.megamenu.megadropdown-right {
            right: 0%;
            transform: translate(-12%, 0);
        }

        .site-menu-main .sub-menu.megamenu.megadropdown-left {
            left: 0%;
            transform: translate(-12%, 0);
        }
}

.site-menu-main .sub-menu.megamenu .single-dropdown-block .mega-drop-menu-item {
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #d3d3d3;
    display: block;
}

.site-menu-main .sub-menu.megamenu .single-dropdown-block h3 {
    color: rgba(38, 39, 41, 0.5) !important;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    transition: 0.4s;
    margin-left: 10px;
    padding-top: 12px;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu.megamenu .single-dropdown-block h3 {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 15px;
    }
}

.navbar .border-right {
    border-right: 1px solid #d3d3d3;
}

.site-menu-main .sub-menu.megamenu .single-dropdown-block .mega-drop-menu-item {
    padding-top: 8px;
    padding-bottom: 8px;
    display: block;
}

.site-menu-main .sub-menu.megamenu .single-dropdown-block a {
    color: #262729 !important;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    transition: 0.4s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu.megamenu .single-dropdown-block a {
        padding-top: 0;
        padding-bottom: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0);
    }
}

@media (max-width: 772px) {
    .site-menu-main .nav-link-item:hover {
        color: #083371;
        border-bottom: none;
    }
}

@media (max-width: 1200px) {
    .border-search {
        display: none !important;
    }
}

header .bi-search {
    color: #204293;
}

header .border-search {
    border-left: 1px solid #D3D5DB !important;
    padding-left: 20px;
    height: 25px;
}

.site-menu-main .sub-menu.megamenu .single-dropdown-block a:hover {
    color: #083371;
}

.site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s;
    color: #000;
}

@media (min-width: 320px) and (max-width: 992px) {
    .site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
        color: var(--color-headings);
        border-bottom: 1px solid #083371;
        padding-left: 20px;
        padding-bottom: 13px;
        padding-top: 13px;
    }
}

@media (min-width: 992px) and (max-width: 1250px) {
    .site-header--menu-left .menu-block .site-menu-main {
        display: inline-block;
    }

    .site-menu-main .sub-menu {
        min-width: 150px;
        left: -30px;
    }
}

@media (min-width: 992px) {
    .site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
        padding-left: 10px;
        padding-right: 10px;
    }

        .site-menu-main .sub-menu.megamenu .mega-drop-menu-item:hover {
            color: #083371 !important;
        }
}

@media (min-width: 320px) and (max-width: 992px) {
    .site-menu-main .sub-menu.megamenu [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .site-menu-main .sub-menu.megamenu [class*="row-"] {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    li.nav-item-has-children:not(.has-megamenu) {
        position: relative;
    }
}

@media (min-width: 992px) {
    li.nav-item-has-children:hover > .sub-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
        z-index: 99;
        pointer-events: visible;
    }
}

.site-menu-main > li .sub-menu > ul > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.site-menu-main > li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/*responsive*/
@media (max-width: 991px) {
    .site-header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

        .site-header .mobile-menu-trigger span {
            display: block;
            height: 2px;
            background-color: var(--color-headings-2);
            width: 24px;
            position: relative;
        }

            .site-header .mobile-menu-trigger span:before,
            .site-header .mobile-menu-trigger span:after {
                content: "";
                position: absolute;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--color-headings-2);
            }

    .dark-mode-texts .mobile-menu-trigger span {
        background-color: #fff;
    }

        .dark-mode-texts .mobile-menu-trigger span:before,
        .dark-mode-texts .mobile-menu-trigger span:after {
            background-color: #fff;
        }

    .site-header .mobile-menu-trigger span:before {
        top: -6px;
    }

    .site-header .mobile-menu-trigger span:after {
        top: 6px;
    }

    .site-header .item-right {
        align-items: center;
    }

    .site-header .menu-block {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

        .site-header .menu-block.active {
            transform: translate(0%);
        }

    .site-menu-main > li {
        line-height: 1;
        margin: 0;
        display: block;
    }

        .site-menu-main > li > a {
            line-height: 50px;
            padding-left: 10px;
            padding-right: 10px;
            padding-top: 8px;
            padding-bottom: 8px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
}

@media (max-width: 991px) and (min-width: 992px) {
    .site-menu-main > li > a {
        display: block;
    }
}

@media (max-width: 991px) {
    .site-menu-main > li > a i {
        position: absolute;
        /* top: 5px; */
        right: 0;
        transform: rotate(-90deg);
        min-width: 50px;
        max-width: 50px;
        min-height: 50px;
        max-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-header .menu-block .mobile-menu-head {
        display: flex;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: -webkit-sticky;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

        .site-header .menu-block .mobile-menu-head .go-back {
            height: 50px;
            width: 50px;
            border-right: 1px solid rgba(0, 0, 0, 0.1);
            cursor: pointer;
            line-height: 50px;
            text-align: center;
            color: #000000;
            font-size: 16px;
            display: none;
        }

        .site-header .menu-block .mobile-menu-head.active .go-back {
            display: block;
        }

        .site-header .menu-block .mobile-menu-head .current-menu-title {
            font-size: 15px;
            font-weight: 500;
            color: #000000;
            visibility: hidden;
        }

        .site-header .menu-block .mobile-menu-head.active .current-menu-title {
            visibility: visible;
        }

        .site-header .menu-block .mobile-menu-head .mobile-menu-close {
            height: 50px;
            width: 50px;
            border-left: 1px solid rgba(0, 0, 0, 0.1);
            cursor: pointer;
            line-height: 50px;
            text-align: center;
            color: #000000;
            font-size: 25px;
        }

    .site-header .menu-block .site-menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .site-menu-main > li .sub-menu.mega-menu,
    .site-menu-main > li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 50px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
        overflow-x: hidden;
    }

        .site-menu-main > li .sub-menu.active {
            display: block;
            z-index: 99;
        }

        .site-menu-main > li .sub-menu > ul > li > a,
        .site-menu-main > li .sub-menu.mega-menu > .list-item > ul > li > a {
            display: block;
        }

        .site-menu-main > li .sub-menu.mega-menu > .list-item > ul {
            margin-bottom: 15px;
        }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        /* transition: all 0.5s ease; */
    }

        .menu-overlay.active {
            visibility: visible;
            opacity: 1;
        }
}

.to-breaking {
    margin-top: -35px !important;
}

@media (max-width:600px) {
    .to-breaking {
        margin-top: 10px !important;
    }
}
/*Custom Css for menu*/
@media (min-width: 992px) {
    .has-megamenu ul {
        margin-left: auto;
    }

    .site-menu-main a {
        display: flex;
        align-items: center;
    }

    .site-menu-main i {
        margin-left: 5px;
        font-size: 15px;
    }
}

@media (min-width: 1200px) and (min-width: 992px) {
    .site-header--menu-center .menu-block-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

.nav-item-has-children a {
    display: flex;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .reveal-header .nav-link-item {
        color: var(--color-headings-2) !important;
    }
}

@media (min-width: 992px) {
    .reveal-header li.nav-item-has-children:hover > .sub-menu {
        top: 100%;
    }

    .reveal-header li.nav-item-has-children:hover > .megamenu {
        top: 100%;
    }
}

.menu-block.active .nav-link-item {
    color: #262729 !important;
}

@media (min-width: 480px) {
    .d-xs-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .menu-block-3 .megadropdown-center {
        transform: translate(-50%, 0) !important;
    }
}

@media (min-width: 1200px) {
    .menu-block-3 .megadropdown-center {
        transform: translate(-40%, 0) !important;
    }
}

@media (min-width: 1366px) {
    .menu-block-3 .megadropdown-center {
        transform: translate(-40%, 0) !important;
    }
}

@media (min-width: 1366px) {
    .menu-block-4 .megadropdown-center {
        transform: translate(-45%, 0) !important;
    }
}

@media (min-width: 1366px) {
    .menu-block-5 .megadropdown-center {
        transform: translate(-49%, 0) !important;
    }
}


/* Top Bar */
#topbar {
    background: #eaeaea;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    height: 33px;
    padding: 0;
    color: #083371;
}

    #topbar .contact-info a {
        line-height: 0;
        color: #444;
        transition: 0.3s;
    }

    #topbar .social_icons i {
        padding: 5px;
        color: white;
    }

    /* FACEBOOK ORIGINAL BLUE */
    #topbar .social_icons .facebook-icon {
        background: rgb(59, 89, 152) !important;
    }

    /* TWITTER (X) ORIGINAL BLUE */
    #topbar .social_icons .twitter-icon {
        background-color: rgb(2, 176, 232) !important;
    }

    #topbar .social_icons a:hover i {
        color: #eeeeee !important;
    }

    #topbar .contact-info a:hover {
        color: #428bca;
    }

    #topbar .contact-info i {
        line-height: 0;
        color: #083371;
        margin-right: 5px;
    }

    #topbar .contact-info .phone-icon {
        margin-left: 15px;
    }

    #topbar .social-links a {
        color: #083371;
        padding: 4px 9px;
        display: inline-block;
        line-height: 1px;
        transition: 0.3s;
    }

        #topbar .social-links a:hover {
            color: #083371;
        }

.border-right {
    border-right: 1px solid #083371;
}

@media (max-width:1300px) {
    .logo-text {
        width: 100% !important;
    }
}

/* Top Section */

@media (max-width: 480px) {
    .logo-img img {
        margin-right: 0px;
        float: left;
    }
}

@media (max-width: 540px) {
    .logo-img img {
        margin-right: 0px;
        float: left;
    }
}

.logo-img img {
    margin-right: 0px;
    float: left;
}

@media (max-width: 480px) {
    .logo-img span {
        float: left;
        margin-left: 10px;
        width: 60%;
    }
}

@media (max-width: 540px) {
    .logo-img span {
        float: left;
        margin-left: 10px;
        width: 60%;
    }
}

.logo-img span {
    float: left;
    margin-left: 0px;
    padding-left: 10px;
    display: grid;
}

@media (max-width: 992px) {
    .logo-img span {
        float: left;
        width: 100%;
        margin-left: 0px;
        padding-left: 10px;
    }

    .ehsaas-logo img {
        max-width: 22% !important;
    }
}

@media (max-width: 480px) {
    .logo-img .logo-text h4 {
        margin: 10px 0 4px 0;
    }
}

@media (max-width: 540px) {
    .logo-img .logo-text h4 {
        margin: 10px 0 4px 0;
    }

    .logo-img span {
        float: left;
        width: 80%;
    }
}

@media (max-width: 600px) {
    .logo-img span {
        float: left;
        width: 80%;
    }
}

.logo-img .logo-text h4 {
    font-size: 14px;
    margin: 19px 0 4px 0;
    border-bottom: #3A3A3A 1px solid;
    float: left;
    color: #3A3A3A;
    text-transform: uppercase;
    padding-bottom: 3px;
    font-weight: 600;
}

.logo-img .logo-text h5 {
    font-size: 14px;
    color: #3A3A3A;
    font-weight: 500;
    text-transform: uppercase;
    float: left;
    margin-top: 0px;
    margin-bottom: 0px;
}

.ehsaas-logo img {
    max-width: 17%;
    margin-top: -7px;
}

.logo-text {
    width: 100%;
}

.brand-logo {
    padding-left: 10px;
}

.bg_house {
    background-image: url('../img/1.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: inherit;
    background-position: right;
}

@media(max-width:992px) {
    .logo-img img {
        width: 80px !important;
    }

    .logo-img .logo-text h4 {
        font-size: 12px !important;
    }

    .logo-img .logo-text h4 {
        font-size: 12px !important;
    }
}

/* Main Section Styling */

main {
    /*margin-top: 199px;*/
    margin-top: 189px;
}



/* Breadcurumbs */
.breadcrumbs h2 {
    font-size: 20px;
    font-weight: 300;
}

.breadcrumbs a {
    color: rgb(33, 37, 41);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin: 0;
    font-size: 15px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            content: ">";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

.main-text h6 {
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 50px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.main-text h5 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
}

/**************************** Index Page 1 *********************************/
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    bottom: 15%;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}

    .carousel-caption h5 {
        font-size: 23px;
        text-align: center;
    }

    .carousel-caption p {
        font-size: 14px;
    }

.section-container {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
}

.demo-box {
    margin-left: 0px;
}

.slider_caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 25px;
    border-radius: 5px;
}

.index_Page .carousel-item img {
    height: 440px !important;
}

@media (max-width:992px) {
    .index_Page .carousel-item img {
        height: auto !important;
    }

    .gallery_margin {
        margin-bottom: 20px;
    }
}

.w-30 {
    width: 100px;
}

.white_button {
    background: var(--bg);
}

.theme_button {
    background-color: var(--bg) !important;
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 0px !important;
    border-left: 4px solid var(--bg-theme);
    color: var(--bg-theme);
}

    .theme_button:hover {
        color: white;
        background-color: var(--bg-theme) !important;
    }

.search-button {
    padding: 3px 10px;
    background-color: #006400;
    color: #fff;
}

.search-form .form-control {
    height: 32px;
    font-size: 13px;
    border-radius: 3px !important;
    box-shadow: none;
}

/* Services */
.ccn-color-cat-boxes {
    padding: 20px 10px 25px;
    margin-top: 0;
    height: calc(100% - 30px);
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    position: relative;
    top: 0;
}

.icon_hvr_img_box {
    display: block;
    background-size: cover;
    border-radius: 4px;
    padding: 23px 10px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: .5s;
}

    .icon_hvr_img_box:hover {
        -webkit-transform: translateY(-3px);
        transform: translateY(-6px);
        -moz-box-shadow: 0 20px 20px rgba(0,0,0,.1);
        webkit-box-shadow: 0 0 25px -5px #9e9c9e;
        box-shadow: 0 0 25px -5px #9e9c9e;
    }

    .icon_hvr_img_box:before {
        background-color: #fff;
        border: 1px solid #eaebf0;
        border-radius: 4px;
        bottom: 0;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transition: all .3s ease 0s;
        -moz-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
    }

.ccn-color-cat-boxes:before, .ccn-color-cat-boxes:hover:before {
    background-color: transparent;
    border-color: transparent;
}

.ccn-color-cat-boxes .icon {
    font-size: 75px;
}

.icon_hvr_img_box .icon {
    color: #2441e7;
    font-size: 48px;
    margin-bottom: 8px;
    position: relative;
    text-align: center;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.ccn_icon_2 {
    width: auto;
    height: auto;
}

.icon_hvr_img_box .details {
    position: relative;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

    .icon_hvr_img_box .details h5 {
        font-size: 18px;
        font-weight: 700;
        color: #2441e7;
    }

    .icon_hvr_img_box .details p {
        color: #6d6d6d;
        font-size: 14px;
    }

.color-white {
    color: #fff !important;
}

.ccn-color-cat-boxes .icon {
    font-size: 55px;
}

.main-heading h5 {
    text-align: center;
    line-height: 35px;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    color: black;
}

    .main-heading h5::before {
        background: #104591;
        content: "";
        display: inline-block;
        height: 2px;
        margin-right: 1rem;
        margin-top: -1px;
        vertical-align: middle;
        width: 40px;
    }

    .main-heading h5::after {
        background: #104591;
        content: "";
        display: inline-block;
        height: 2px;
        margin-left: 1rem;
        margin-top: -1px;
        vertical-align: middle;
        width: 40px;
    }

.btn-theme {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 0px;
    color: white !important;
    padding: 7px 25px;
    border: 1px solid #083371;
    outline-offset: 0px;
    background-color: #083371;
    text-shadow: none;
}

.box1 {
    width: 100%;
    padding-left: 30px;
}

@media (max-width:992px) {
    .box1 {
        width: 100%;
        padding-left: 15px;
    }
}

.tpstyle-3-l {
    border-color: transparent #7d90a3 transparent transparent;
    border-style: solid;
    border-width: 15px;
    height: 0;
    width: 0;
    position: absolute;
    left: -30px;
    top: 48px;
    z-index: -1;
}

.tpstyle-3-r {
    border-color: transparent transparent transparent #7d90a3;
    border-style: solid;
    border-width: 15px;
    height: 0;
    width: 0;
    position: absolute;
    left: 100%;
    top: 47px;
    z-index: -1;
}

.tpstyle-3-info {
    padding: 30px 20px 15px;
}

.box1 img {
    width: 100px;
    border-radius: 50%;
    height: 100px;
    margin-left: -25px;
}

.box1 .card {
    border: none;
    margin-right: 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.box-component h3 {
    font-size: 14px;
    color: #fff;
    margin-top: 13px;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 20%);
    text-align: center;
    margin: 0;
    padding: 12px 0;
    line-height: 1;
}

.box-component {
    font-size: 14px;
    color: #fff !important;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 20%);
    text-align: center;
    margin: 0;
    line-height: 1;
    height: 38px;
    width: calc(100% + 30px);
    position: relative;
    left: -15px;
    top: 24px;
    float: left;
    box-shadow: 0 0 1px rgb(0 0 0 / 25%);
    background-color: #083371 !important;
}

    .box-component a {
        color: white !important;
    }

.tpstyle-3-info h5 {
    font-size: 16px !important;
}

.slick-dots li button:before {
    font-size: 50px !important;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #083371;
}
/* -------- Footer & Sidebar Widgets ---------- */


.social-widget > div {
    box-shadow: none !important;
}

.social-widget .tab-content {
    border-radius: 5px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.twitter-tab {
    background: #1DA1F2 !important;
    padding: 10px;
    color: white !important;
    font-size: 15px !important;
}

.fb-tab {
    background: #339 !important;
    min-width: 50px;
    color: white !important;
    padding: 10px;
    font-size: 15px !important;
}


.social-widget .nav-tabs > li.active a, .social-widget .nav-tabs > li.active a:hover, .social-widget .nav-tabs > li.active a:focus {
    color: #fff;
}
/* .fb_iframe_widget span {
    height: 300px !important;
  }
  
    .fb_iframe_widget span iframe {
        height: 300px !important;
    } */

.section-content {
    width: 100%;
}

.fb-comments, .fb_iz_widget, .fb-comments > span, .fb_iframe_widget > span, .fb-comments > span > iframe, .fb_iframe_widget > span > iframe {
    display: block !important;
    margin: 0;
    width: 100% !important;
}

.timeline-Widget {
    border: 1px solid #707070 !important;
    background-color: #fff;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
/* Justify Border Title
  -----------------------------------------------------------------*/
.fancy-title {
    position: relative;
    margin-bottom: 10px;
}

    .fancy-title h1, .fancy-title h2, .fancy-title h3, .fancy-title h4, .fancy-title h5, .fancy-title h6 {
        position: relative;
        display: inline-block;
        background-color: #FFF;
        padding-right: 15px;
        margin-bottom: 0;
    }

    .fancy-title h4, .fancy-title h5, .fancy-title h6 {
        padding-right: 10px;
    }

    .fancy-title.title-double-border:before, .fancy-title.title-border:before, .fancy-title.title-border-color:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 0;
        border-top: 3px double #E5E5E5 !important;
        left: auto;
        top: 46%;
        right: 0;
    }

    .fancy-title.title-border:before {
        top: 49%;
        border-top: 1px solid #EEE;
    }

    .fancy-title.title-border-color:before {
        top: 49%;
        border-top: 1px solid #1ABC9C;
        opacity: 0.6;
    }

.aqua-heading {
    background-color: #1abc9c !important;
    margin-bottom: 0 !important;
    padding: 5px 10px !important;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.related-posts {
    float: left;
    width: 100%;
    background: #fff;
    padding: 15px 10px;
    box-shadow: 0 2px 3px 2px rgb(0 0 0 / 3%);
    border-radius: 2px;
}

.news-scroll {
    max-height: 425px;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
}

@media (max-width: 767.98px) {
    .news-scroll {
        max-height: 430px;
    }
}

.aqua-heading {
    background-color: #1abc9c !important;
    margin-bottom: 0 !important;
    padding: 5px 10px !important;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.widget .widget-title {
    margin-top: 0;
    margin-bottom: 20px;
}

.title-dots.small {
    height: 23px;
    margin-bottom: 15px;
}

.title-dots {
    background: url(../img/title-dots.png) repeat scroll 0 5px;
    height: 30px;
    margin-bottom: 20px;
}

.info-right-link, .title-dots2 span .info-right-link {
    background: none !important;
    font-size: 14px !important;
    padding-top: 0 !important;
    margin-top: -2px;
}
/*.widget.dark .tags a:hover, .title-dots span {
    background-color: #c7474c;
}*/
.label-danger {
    background-color: #d9534f;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.custom-All-label {
    padding: 0.5em 0.6em 0.5em;
    text-transform: uppercase;
    border-radius: 2px;
    /* padding: 1px 6px 2px; */
    font-size: 10px;
    font-weight: 600;
}

.pull-right {
    float: right !important;
}

.label:not(.md-skip) {
    text-transform: uppercase;
    padding: 1px 6px 2px;
    font-size: 10px;
    font-weight: 600;
}

.title-dots.small span {
    font-size: 15px;
    line-height: 23px;
    padding: 8px 10px;
    font-weight: normal;
}

.title-dots span {
    background-color: #c7474c;
    color: white;
}

.title-dots .bg-news {
    background-color: #e8a91c;
    color: white;
}

.stories-scroll {
    max-height: 438px;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.latest-posts .media-post:hover {
    background-color: #F7FAFD;
}

.latest-posts .media-post {
    padding: !important;
    background-color: white;
}

.post.media-post .post-thumb {
    float: left;
    margin: 0 10px 10px 0;
    width: 100px;
    height: 100px;
}

.post .post-thumb {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    height: 190px;
    object-fit: cover;
}

.post.media-post .post-thumb img {
    width: 100%;
    height: 100%;
}

li.pr-0 {
    list-style: none !important;
}

.post-right {
    padding-bottom: 1px;
}

.lnews a {
    color: black !important;
}
.post-right a,
.post-right a:visited {
    color: rgb(68, 68, 68) !important;
    text-decoration: none; /* remove underline if you want */
}
.lnews-sec {
    min-height: 101px;
}

.section-content ul {
    margin-left: 30px;
}

.post-right .list-inline li {
    margin-bottom: 0;
    padding-bottom: 0;
    color: #c7474c;
    font-size: 12px;
    font-style: italic;
    padding-left: 0;
}

.section-content ul li {
    list-style: disc;
    line-height: 22px !important;
    padding-bottom: 6px !important;
}

.widget ul li {
    margin-bottom: 5px;
    padding-bottom: 5px;
}
/*
    .main-content ul li {
        float: left;
        width: 100%;
        list-style: disc;
        padding: 5px 0;
        line-height: 20px;
        margin-left: 40px;
    }
*/
.lnews {
    text-align: justify;
    padding: 0px 10px;
    font-size: 13px;
}

    .lnews a {
        color: rgb(33, 37, 41);
    }

.insight_3 .card {
    background-color: white;
    border-color: #D3D5DB !important;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    height: 436px;
    overflow: hidden;
}

.insight_3 a {
    background: aliceblue;
    padding: 7px 10px;
    color: white;
    font-size: 14px;
    margin-bottom: 20px !important;
    background-color: #083371;
}

.insight_3 .card .card-head img {
    border-radius: 5px 5px 0px 0px;
    max-width: 100%;
    height: 200px;
    padding: 0px;
}

.insight_3 p {
    font-size: 14px;
    text-align: justify;
}

.insight_3 .main-topic {
    font-size: 13px;
    font-weight: 500;
}

.insight_3 .date2 {
    color: #606991;
    font-size: 13px;
}

.insight_3 .card-body h4 {
    font-size: 15px;
}

.insight_3 .btn_article {
    background-color: #D3DDED;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 0px;
    color: #083371 !important;
    padding: 7px 25px;
    outline-offset: 0px;
    text-shadow: none;
}

.date2 span {
    font-size: 16px;
}

.insight_3 .card img {
    transition: all ease-in-out 0.4s;
}

.insight_3 .card:hover img {
    transform: scale(1.1);
}

.insight_3 .card-head {
    display: contents;
}

.bg-light {
    background: #FAFAFA !important;
}

.box8-1 .icon, .box8-1 .title {
    margin: 0;
    position: absolute;
    text-align: center;
}

    .box8-1 .icon li {
        display: inline-block;
    }

.box8-1 {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;
}

    .box8-1 img {
        width: 100%;
        height: 100%;
    }

    .box8-1 .box-content {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.4);
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transform: perspective(400px) rotateX(-90deg);
        transform-origin: center top 0;
        transition: all .5s ease 0s;
    }

    .box8-1 .icon li a, .box8-1 .title {
        font-size: 20px;
        color: #fff;
        width: 100%;
        height: 100%;
    }

.slick-slide {
    margin-right: 35px;
}

.box8-1 .icon li a {
    background: #FFB300 !important;
    font-size: 20px;
    color: #fff !important;
    width: 100%;
    height: 100%;
}

.box8-1:hover .box-content {
    opacity: 1;
    transform: perspective(400px) rotateX(0);
}

.box8-1 .title {
    padding: 5px 15px;
    /* border-radius: 5px; */
    font-size: 14px;
    font-weight: 500;
    bottom: 0px;
    align-items: center;
    left: 0px;
    display: flex;
    justify-content: center;
    text-align: center;
    transition: all .9s ease 0s;
    padding-top: 20px;
    line-height: 20px;
}

.box8-1 .icon li a, .box9 .box-content, .box9 .icon li, .box9 img {
    transition: all .35s ease 0s;
}

.box8-1:hover .title {
    bottom: -40px;
    display: none;
}

.box8-1 .icon {
    list-style: none;
    padding: 0;
    top: 42%;
    left: 0;
    right: 0;
}

    .box8-1 .icon li a {
        display: block;
        width: 35px;
        height: 35px;
        font-size: 17px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-right: 7px;
    }

.box9 .icon, .box9 .title {
    width: 100%;
    font-size: 22px;
}

.box8-1 .icon li a:hover {
    background: #fff;
    color: #000;
}

@media only screen and (max-width:990px) {
    .box8 {
        height: 100%;
        margin-bottom: 20px;
    }
}


.slick-prev, .slick-next {
    background-color: rgba(115, 115, 115, 0.8);
}

.services-cont {
    padding: 20px;
    z-index: 99;
    margin-top: 0px;
    border-radius: 13px;
    box-shadow: 0 1px 5px 0px rgb(211 211 211 / 50%);
    position: relative;
}

.services-cont-inner {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 0 40px;
}

.services-cont2 {
    padding: 20px;
    z-index: 99;
    margin-top: 0px;
    border-radius: 13px;
    position: relative;
}

.services-cont-inner2 {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 0 40px;
}

.MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 15px 0 10px 0;
    width: 100%;
}

    .MultiCarousel .MultiCarousel-inner {
        transition: 1s ease all;
        float: left;
    }

        .MultiCarousel .MultiCarousel-inner .item {
            float: left;
        }

.services-cont-inner .MultiCarousel .MultiCarousel-inner .item > div {
    text-align: center;
    padding: 8px 4px;
    margin: 10px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(238, 238, 238, 1) 100%);
    color: #666;
    border-radius: 12px;
    border: #EEEEEE 1px solid;
    transition: transform .5s ease;
}

.services-cont-inner2 .MultiCarousel .MultiCarousel-inner .item > div {
    text-align: center;
    background-color: transparent !important;
    margin: 10px;
    color: #666;
    border-radius: 12px;
    transition: transform .5s ease;
}

.services-cont-inner .MultiCarousel-inner .item > div:hover {
    background: #fff !important;
    transform: scale(1.1);
}

    .services-cont-inner .MultiCarousel-inner .item > div:hover p {
        color: #000 !important;
        font-weight: 700 !important
    }

.services-cont-inner .MultiCarousel .MultiCarousel-inner .item > div p {
    color: var(--bg-theme);
    font-weight: 500;
    margin: 1px 0 5px 0;
}

.MultiCarousel .MultiCarousel-inner .item .ser-urdu-text {
    margin: 0 0 10px 0;
    font-family: 'Jameel Noori';
    font-size: 18px;
    line-height: 24px
}

.board .MultiCarousel .leftLst, .board .MultiCarousel .rightLst {
    position: absolute;
    border-radius: 50%;
    top: calc(55% - 5px);
}

.profile_spr .MultiCarousel .leftLst, .profile_spr .MultiCarousel .rightLst {
    position: absolute;
    border-radius: 50%;
    top: calc(55% - 5px);
}

.MultiCarousel .leftLst, .MultiCarousel .rightLst {
    position: absolute;
    border-radius: 50%;
    top: calc(45% - 5px);
}

.MultiCarousel .leftLst {
    left: 25px;
    padding: 1.82px 11px
}

.pad15 h5 {
    font-size: 16px !important
}

.MultiCarousel .leftLst span:before {
    line-height: 35px
}

.MultiCarousel .rightLst {
    right: 25px;
    padding: 1.82px 11px
}

    .MultiCarousel .rightLst span:before {
        line-height: 35px
    }

    .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over {
        pointer-events: none;
        background: #fff;
        border: #939393 1px solid;
        color: var(--bg-theme);
    }

.btn-theme-slider {
    background-color: var(--bg-theme);
    color: white;
}

.services-cont-inner .pad15 img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    margin-top: 5px;
    border-radius: 50%;
}

.box9 .icon, .box9 .title {
    margin: 0;
    position: absolute;
    text-align: center;
}

    .box9 .icon li {
        display: inline-block;
    }

.box9 {
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    position: relative;
    height: 100%;
    width: 100%;
    margin-right: 20px;
}

    .box9 img {
        width: 100%;
        height: 100%;
    }

    .box9 .box-content {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.4);
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transform: perspective(400px) rotateX(-90deg);
        transform-origin: center top 0;
        transition: all .5s ease 0s;
    }

    .box9 .icon li a, .box9 .title {
        background: rgba(0,0,0,.4);
        font-size: 20px;
        color: #fff;
        width: 100%;
        height: 100%;
    }

    .box9 .icon li a {
        background: #FFB300 !important;
        font-size: 20px;
        color: #fff !important;
        width: 100%;
        height: 100%;
    }

    .box9:hover .box-content {
        opacity: 1;
        transform: perspective(400px) rotateX(0);
    }

    .box9 .title {
        padding: 5px 15px;
        /* border-radius: 5px; */
        font-size: 14px;
        font-weight: 500;
        bottom: 0px;
        align-items: center;
        left: 0px;
        display: flex;
        justify-content: center;
        text-align: center;
        transition: all .9s ease 0s;
        padding-top: 20px;
        line-height: 20px;
    }

    .box9 .icon li a, .box9 .box-content, .box9 .icon li, .box9 img {
        transition: all .35s ease 0s;
    }

    .box9:hover .title {
        bottom: -40px;
        display: none;
    }

    .box9 .icon {
        list-style: none;
        padding: 0;
        top: 42%;
        left: 0;
        right: 0;
    }

        .box9 .icon li a {
            width: 35px;
            height: 35px;
            font-size: 17px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 7px;
        }

    .box9 .icon, .box9 .title {
        width: 100%;
        font-size: 22px;
    }

        .box9 .icon li a:hover {
            background: #fff;
            color: #000;
        }

@media only screen and (max-width:990px) {
    .box8 {
        height: 100%;
        margin-bottom: 20px;
    }
}





.services-cont-inner h5 {
    font-size: 16px;
    color: var(--bg-theme);
    text-transform: uppercase;
    margin-bottom: 0px;
}

.box8 .icon, .box8 .title {
    margin: 0;
    position: absolute;
    text-align: center;
}

    .box8 .icon li {
        display: inline-block;
    }

.box8 {
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    position: relative;
    height: 100%;
    width: 100%;
    margin-right: 20px;
}

    .box8 img {
        width: 100%;
        height: 100%;
    }

    .box8 .box-content {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.4);
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transform: perspective(400px) rotateX(-90deg);
        transform-origin: center top 0;
        transition: all .5s ease 0s;
    }

    .box8 .icon li a, .box8 .title {
        background: rgba(0,0,0,.4);
        font-size: 20px;
        color: #fff;
        width: 100%;
        height: 100%;
    }

    .box8 .icon li a {
        background: #FFB300 !important;
        font-size: 20px;
        color: #fff !important;
        width: 100%;
        height: 100%;
    }

    .box8:hover .box-content {
        opacity: 1;
        transform: perspective(400px) rotateX(0);
    }

    .box8 .title {
        padding: 5px 15px;
        /* border-radius: 5px; */
        font-size: 14px;
        font-weight: 500;
        bottom: 0px;
        align-items: center;
        left: 0px;
        display: flex;
        justify-content: center;
        text-align: center;
        transition: all .9s ease 0s;
        padding-top: 20px;
        line-height: 20px;
    }

    .box8 .icon li a, .box9 .box-content, .box9 .icon li, .box9 img {
        transition: all .35s ease 0s;
    }

    .box8:hover .title {
        bottom: -40px;
        display: none;
    }

    .box8 .icon {
        list-style: none;
        padding: 0;
        top: 42%;
        left: 0;
        right: 0;
    }

        .box8 .icon li a {
            display: block;
            width: 35px;
            height: 35px;
            font-size: 17px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 7px;
        }

.box9 .icon, .box9 .title {
    width: 100%;
    font-size: 22px;
}

.box8 .icon li a:hover {
    background: #fff;
    color: #000;
}

@media only screen and (max-width:990px) {
    .box8 {
        height: 100%;
        margin-bottom: 20px;
    }
}


.box8-2 .icon, .box8 .title {
    margin: 0;
    position: absolute;
    text-align: center;
}

    .box8-2 .icon li {
        display: inline-block;
    }

.box8-2 {
    position: relative;
    height: 190px;
    width: 190px;
    margin-right: 20px;
}

    .box8-2 img {
        width: 100%;
        height: 100%;
    }

    .box8-2 .box-content {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.4);
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transform: perspective(400px) rotateX(-90deg);
        transform-origin: center top 0;
        transition: all .5s ease 0s;
    }

    .box8-2 .icon li a, .box8 .title {
        background: rgba(0,0,0,.4);
        font-size: 13px;
        color: #fff;
        width: 100%;
        height: 100%;
    }

    .box8-2 .icon li a {
        background: #FFB300 !important;
        font-size: 20px;
        color: #fff !important;
        width: 100%;
        height: 100%;
    }

    .box8-2:hover .box-content {
        opacity: 1;
        transform: perspective(400px) rotateX(0);
    }

    .box8-2 .title {
        padding: 5px 15px;
        /* border-radius: 5px; */
        font-size: 13px;
        font-weight: 500;
        bottom: 0px;
        align-items: center;
        left: 0px;
        display: flex;
        justify-content: center;
        text-align: center;
        transition: all .9s ease 0s;
        padding-top: 20px;
        line-height: 20px;
    }

    .box8-2 .icon li a, .box9 .box-content, .box9 .icon li, .box9 img {
        transition: all .35s ease 0s;
    }

    .box8-2:hover .title {
        bottom: -40px;
        display: none;
    }

    .box8-2 .icon {
        list-style: none;
        padding: 0;
        top: 10%;
        left: 0;
        right: 0;
    }

        .box8-2 .icon li a {
            display: block;
            width: 35px;
            height: 35px;
            font-size: 13px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 7px;
        }

    .box8-2 .icon, .box9 .title {
        width: 100%;
        font-size: 13px;
        color: white !important;
    }

        .box8-2 .icon li a:hover {
            background: #fff;
        }

@media only screen and (max-width:990px) {
    .box8 {
        height: 100%;
        margin-bottom: 20px;
    }
}

.gallery_margin {
    margin-bottom: 12px;
}

.about-us__image,
.video-box {
    position: relative;
}

.bg-counter {
    background-color: #FAFAFA;
    padding: 10px 25px 0px 25px;
    padding-top: 30px;
    margin-top: 65px;
    border-radius: 5px;
}

.counter-border {
    border-left: 4px solid #CCA000;
    margin-left: 20px;
    padding-left: 30px;
    margin-bottom: 20px;
}

    .counter-border p {
        color: #223555;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .counter-border .purecounter {
        color: #223555;
        font-size: 30px;
        margin-bottom: 5px;
    }

    .counter-border .purecounterr {
        color: #223555;
        font-size: 30px;
        margin-bottom: 5px;
    }
/* Tenders Style */

.portlet.light {
    padding: 12px 0px 0px 0px;
    background-color: #fff;
}

.portlet {
    margin-top: 0;
    margin-bottom: 25px;
    padding: 0;
    border-radius: 2px;
    box-shadow: 0 2px 3px 2px rgb(0 0 0 / 3%);
}

    .portlet.light > .portlet-title {
        padding: 0;
        min-height: 34px;
    }

    .portlet > .portlet-title {
        border-bottom: 1px solid #eee;
        padding: 0;
        margin-bottom: 10px;
        min-height: 41px;
        -webkit-border-radius: 2px 2px 0 0;
        -moz-border-radius: 2px 2px 0 0;
        -ms-border-radius: 2px 2px 0 0;
        -o-border-radius: 2px 2px 0 0;
        border-radius: 2px 2px 0 0;
    }

        .portlet > .portlet-title > .caption {
            float: left;
            display: inline-block;
            font-size: 18px;
            line-height: 18px;
            margin-left: 15px;
            padding: 0;
            color: #222;
        }

        .portlet > .portlet-title > .actions {
            float: right;
            margin-right: 15px;
            color: white !important;
            display: inline-block;
            padding: 0;
        }

.label:not(.md-skip).label-sm {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
}

.label-warning {
    color: white !important;
    background-color: #f0ad4e;
}

.info-scroll {
    height: 370px;
    overflow-y: scroll;
    overflow-x: hidden;
}

    .info-scroll ul {
        margin-left: 0 !important;
    }

.section-content ul li {
    list-style: disc;
    line-height: 22px !important;
    padding-bottom: 6px !important;
}

.info-scroll ul li {
    list-style: none !important;
    margin-left: 0 !important;
}


.section-content ul li {
    list-style: disc;
    line-height: 22px !important;
    padding-bottom: 6px !important;
}

.info-scroll ul li {
    list-style: none !important;
    margin-left: 0 !important;
}

/*  .main-content ul li {
        float: left;
        width: 100%;
        list-style: disc;
        padding: 5px 0;
        line-height: 20px;
    }*/

.task-list > li {
    position: relative;
    padding: 10px 0px 10px 0px;
    border-bottom: 1px solid #F4F6F9;
    color: #333;
    width: 96%;
}

.task-list .task-title {
    padding-left: 20px;
    padding-right: 20px;
}

.task-title-sp {
    font-weight: 500;
    font-size: 13px;
}

.task-list > li a {
    color: #333;
    text-decoration: none;
}

.task-list .task-date {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

    .task-list .task-date i {
        color: #ff9600;
        margin-right: 5px;
    }

.info-scroll ul li:hover {
    background-color: rgb(245, 243, 243);
    border-left: 2px solid #ff9600;
}

.task-list {
    padding-left: 0px !important;
    padding-right: 0px !important;
}




.info-scroll2 {
    height: 370px;
    overflow-y: scroll;
    overflow-x: hidden;
}

    .info-scroll2 ul {
        margin-left: 0 !important;
    }

        .info-scroll2 ul li {
            list-style: none !important;
            margin-left: 0 !important;
        }




.task-list2 > li {
    position: relative;
    padding: 10px 0px 10px 0px;
    border-bottom: 1px solid #F4F6F9;
    color: #333;
    width: 96%;
}

.task-list2 .task-title {
    padding-left: 20px;
    padding-right: 20px;
}

.task-title-sp {
    font-weight: 500;
    font-size: 13px;
}

.task-list2 > li a {
    color: #333;
    text-decoration: none;
}

.label-apply {
    background-color: #C7474C;
    color: white !important;
}

.task-list2 .task-date {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

    .task-list2 .task-date i {
        color: #C7474C;
        margin-right: 5px;
    }

.info-scroll2 ul li:hover {
    background-color: rgb(245, 243, 243);
    border-left: 2px solid #C7474C;
}

.task-list2 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}




.info-scroll3 {
    height: 370px;
    overflow-y: scroll;
    overflow-x: hidden;
}

    .info-scroll3 ul {
        margin-left: 0 !important;
    }

        .info-scroll3 ul li {
            list-style: none !important;
            margin-left: 0 !important;
        }




.task-list3 > li {
    position: relative;
    padding: 10px 0px 10px 0px;
    border-bottom: 1px solid #F4F6F9;
    color: #333;
    width: 98%;
}

.task-list3 .task-title {
    padding-left: 20px;
    padding-right: 35px;
}

.task-title-sp {
    font-weight: 500;
    font-size: 13px;
}

.task-list3 > li a {
    color: #333;
    text-decoration: none;
}

.label-download {
    background-color: #0B6E0B;
    color: white !important;
}

.task-list3 .task-date {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

    .task-list3 .task-date i {
        color: #0B6E0B;
        margin-right: 5px;
    }

.info-scroll3 ul li:hover {
    background-color: rgb(245, 243, 243);
    border-left: 2px solid #0B6E0B;
}

.task-list3 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
/* Buttons */

.my_button {
    width: 150px;
    height: 50px;
    border: 2px solid #333;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    transition: 2s
}

    .my_button::before, .my_button::after {
        position: absolute;
        background: #eee;
        z-index: -1;
        transition: 1s;
        content: ''
    }

    .my_button::before {
        height: 50px;
        width: 130px
    }

    .my_button::after {
        width: 150px;
        height: 30px
    }

    .my_button:hover::before {
        width: 0px;
        background: #fff
    }

    .my_button:hover::after {
        height: 0px;
        background: #fff
    }

    .my_button:hover {
        background: #fff
    }

.btn-animated-2 {
    width: 200px;
    height: 45px;
    border-radius: 45px;
    cursor: pointer;
    font-size: 14px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    box-shadow: 0px 8px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .btn-animated-2:hover {
        background: #2ceae5;
        transform: translateY(-7px);
        color: #fff;
        box-shadow: 0px 10px 25px rgba(46,223,229,0.445);
    }

@media (min-width:1235px) and (max-width:1284px) {
    .to-breaking {
        margin-top: -10px !important;
    }
}

@media (min-width:300px) and (max-width:772px) {
    .to-breaking {
        margin-top: 10px !important;
    }

    .main-heading h5 {
        font-size: 18px;
    }

    .box8-2 {
        width: 90%;
        height: 90%;
    }
}

@media (min-width:772px) and (max-width:1200px) {
    .to-breaking {
        margin-top: 140px !important;
    }

    main {
        margin-top: 215px;
    }
}
/* Index Page 2 */


.dd-step-2 {
    position: relative;
    padding: 15px 10px;
    background-color: #fff;
    text-align: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 29px -2px rgb(0 0 0 / 9%);
}

    .dd-step-2 h3 {
        font-size: 12px;
        color: white !important;
        text-transform: uppercase;
        margin-bottom: 8px;
        text-align: center;
    }

    .dd-step-2 p {
        font-size: 14px;
        text-align: justify;
    }

.step2 {
    width: 50px;
    height: 50px;
    text-align: center;
    justify-content: center;
    font-size: 25px;
    padding: 8px;
    border-radius: 50%;
    margin-bottom: 20px;
    /* right: -33px; */
}

.bg_step_1 {
    background-color: #D4F0F5;
    color: #1390a7;
}

.bg_step_12 {
    /*background-color: #f17abc;*/
    color: white;
}

.bg_step_13 {
    background-color: #57b36f;
    color: white;
}

.bg_step_2 {
    background-color: #fff1c9;
    color: #FFC424;
}

.bg_step_3 {
    background-color: #CCF8CC;
    color: #0B6E0B;
}

.bg_step_4 {
    background-color: #FB7A7A;
    color: #c91616;
}

.bg_step_11 {
    background-color: #1390a7;
    color: white;
}

.bg_step_22 {
    background-color: #FFC424;
    color: white;
}

.bg_step_33 {
    background-color: #0B6E0B;
    color: white;
}

.bg_step_44 {
    background-color: #c91616;
    color: white;
}

.bg_step_card1 {
    background-color: #D4F0F5;
}

.bg_step_card12 {
    background-color: #ffdbe9;
}

.bg_step_card13 {
    background-color: #d1efd9;
}

.bg_step_card2 {
    background-color: #fff1c9;
}

.bg_step_card3 {
    background-color: #CCF8CC;
}

.bg_step_card4 {
    background-color: #FB7A7A;
}

.jobs_tenders_2 .nav-pills .nav-link {
    width: 95%;
    height: 100%;
}

.index_Page_2 .carousel-item img {
    height: 400px !important;
}

@media (max-width:992px) {
    .index_Page_2 .carousel-item img {
        height: auto !important;
    }

    .banner_top {
        margin-top: 10px !important;
    }
}

.banner_top {
    max-width: 100%;
    margin-top: 90px;
}
/************* Tables Page *******************/
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #D3DDED;
}

.light_stripped .table-striped > tbody > tr:nth-child(odd) > td,
.light_stripped .table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #F7FAFD;
}

.light_stripped_two thead {
    background-color: #083371;
    border-bottom: 0px !important;
    color: white;
}

.light_stripped_two .table-striped > tbody > tr:nth-child(odd) > td,
.light_stripped_two .table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #F7FAFD;
}

.light_stripped_two tbody {
    border-top: 0px !important;
}

.download {
    background: #E8A91C;
    color: white !important;
    border-radius: 5px;
    /* width: 18px; */
    margin-right: 5px;
    padding: 6px;
    font-size: 18px;
    line-height: 1;
    /* padding: 7px; */
}

.download_2 {
    background: #C7474C;
    color: white !important;
    border-radius: 5px;
    /* width: 18px; */
    padding: 6px;
    font-size: 18px;
    line-height: 1;
    /* padding: 7px; */
}

table {
    padding-left: 10px;
    padding-right: 10px;
}
/* Grid System */

.bg_highlight {
    background-color: #D3DDED;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Slick Sliders */

.variable2 .slick-prev:before, .slick-next:before {
    color: black;
    font-size: 14px;
}

.variable2 .slick-prev, .slick-next {
    background: rgb(233, 232, 232);
    height: 30px;
    width: 30px;
    /*        border-radius: 50%;
*/
}

.bg_set {
    background-color: #D3DDED;
    padding: 20px;
}

.bg-theme-blue {
    background-color: #e6e6e6;
    color: #444;
}

.border_bottom_dash {
    border-bottom: 1px dashed lightgray;
    margin-bottom: 5px;
}
/*************** Breadcurumbs *********************/
.breadcrumbs h2 {
    font-size: 20px;
    font-weight: 300;
}

.breadcrumbs a {
    color: rgb(33, 37, 41);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin: 0;
    font-size: 15px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            content: ">";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

.main-text h6 {
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 50px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.main-text h5 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
}
/***************** Contact Us Page ******************/
.bg-contact {
    background-color: #F7FAFD;
    padding-bottom: 30px;
    padding-top: 20px;
    margin-top: -70px;
}

.height_40 {
    height: 45px;
}

.faq .form-control {
    padding: 4px 10px;
    border-color: #C3CAD9;
    font-size: 15px;
    color: #828181 !important;
    border-radius: 3px;
}

.faq .btn-success {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 0px;
    padding: 7px 25px;
    border: 1px solid #083371 !important;
    outline-offset: 0px;
    background-color: #083371 !important;
    text-shadow: none;
}

.form-control:focus {
    box-shadow: none !important;
}

.error {
    color: red;
}

.border-set {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: 20px 40px;
    border-radius: 3px;
}

.double-service {
    position: relative;
    background-color: white;
    -webkit-transition: .3s;
    height: 100%;
    transition: .3s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border-bottom: 3px solid white;
    padding: 25px 20px;
}

    .double-service .service-hover {
        display: none;
    }

    .double-service:hover:after,
    .double-service:hover:before {
        width: 50%;
        height: 2px;
        -webkit-transition: .3s;
        transition: .3s
    }

    .double-service:hover {
        box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 1px, rgba(0, 0, 0, 0.06) 1px 1px 2px 1px;
        border-color: #083371;
    }

.service {
    border: 1px solid #F8F6F5;
    height: 90px;
    background-color: #F8F6F5;
    width: 90px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

    .service img {
        max-width: 90%;
    }

.double-service img {
    line-height: 77px;
    margin-bottom: 3px;
    padding: 13px 11px;
    color: #ECCED0;
}

.double-service:hover .service {
    color: #fff;
    background-color: #083371;
}

.double-service:hover .service-hover {
    display: block;
}

.double-service:hover .service-img {
    display: none !important;
}


.double-service h6 {
    font-size: 14px !important;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 20px;
    text-transform: uppercase;
}

@media(max-width:600px) {
    .border-set {
        padding: 20px 20px !important;
    }

    .bg_part {
        margin-left: 0px !important;
    }
}

.bg_contact_two {
    background-color: white;
    -webkit-transition: .3s;
    transition: .3s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border-bottom: 3px solid white;
    padding: 25px 20px;
}

.bg_part {
    background-image: url('../img/part.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px;
    margin-left: -30px;
}

    .bg_part h6 {
        color: white;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 400;
    }

    .bg_part h5 {
        color: white;
        font-size: 14px;
        text-transform: none;
        font-weight: 400;
    }

hr {
    border-bottom: 1px solid white;
}

.negative {
    margin-top: -30px;
}
/* Project Page Style */

.entry {
    position: relative;
    margin: 0 0 30px;
    border: #eee 1px solid;
    padding: 20px;
}

@media (max-width: 767.98px) {
    .small-thumbs .entry-image, .ievent .entry-image {
        float: none !important;
        width: 100% !important;
        margin: 0 0 20px !important;
        left: 0;
    }
}

.small-thumbs .entry-image {
    float: left;
    width: 230px;
    margin: 0 -50px 0 0;
    position: relative;
    left: -43px;
}

.small-thumbs .entry-image, .ievent .entry-image {
    float: left;
    width: 230px;
    margin: 0 30px 0 0;
}

.entry-image, .entry-image > a, .entry-image .slide a, .entry-image img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.entry-image {
    margin-bottom: 10px;
}

    .entry-image, .entry-image > a, .entry-image .slide a, .entry-image img {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
    }

.entry a {
    text-decoration: none !important;
    color: #083371;
}

.small-thumbs .entry-image img, .ievent .entry-image img {
    border-radius: 0;
}

.entry-image, .entry-image > a, .entry-image .slide a, .entry-image img {
    display: block;
    position: relative;
    max-width: 100%;
    height: auto;
}

.small-thumbs .entry-title h2, .ievent .entry-title h2 {
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .entry-title h2, .post-grid .entry-title h2 {
        font-size: 18px !important;
        font-weight: 600;
    }

    .small-thumbs .entry-image {
        left: 0px;
    }
}

.entry-title h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#posts .entry-content {
    margin-top: 20px;
}

.entry-content {
    position: relative;
}

#content p {
    line-height: 1.8;
    text-align: justify;
    font-size: 14px;
}

.more-link {
    display: inline-block;
    border-bottom: 1px solid #083371;
    padding: 0 2px;
    font-style: italic;
}

.bg_project_one {
    background-color: #FBEEEE;
}

.bg_project_two {
    background-color: #EEEEEE;
}

.bg_project_three {
    background-color: #D4F0F5;
}

.insight_project .card {
    border-color: #D3D5DB !important;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    overflow: hidden;
}

    .insight_project .card .card-head img {
        border-radius: 5px 5px 0px 0px;
        /* max-width: 99%; */
        padding: 0px;
        width: 100%;
        height: 250px;
    }

.insight_project p {
    font-size: 14px;
    text-align: justify;
}

.insight_project .main-topic {
    color: #204293;
    font-size: 13px;
    font-weight: 500;
}

.insight_project .card-body h4 {
    font-size: 15px;
}

.insight_project .btn_article {
    background-color: #083371;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 0px;
    color: white !important;
    padding: 7px 25px;
    outline-offset: 0px;
    text-shadow: none;
}

.insight_project .card img {
    transition: all ease-in-out 0.4s;
}

.insight_project .card:hover img {
    transform: scale(1.1);
}
/**************** Detail Page ******************/

.insight-blog-detail .date {
    color: #083371;
    font-size: 13px;
}

.insight-blog-detail .main-topic {
    font-size: 14px;
    color: #083371;
    font-weight: bold;
}

.insight-blog-detail img {
    width: 100%;
    overflow: hidden;
}

.share-social i {
    color: #083371 !important;
    font-size: 25px;
    margin-left: 10px;
}

.share-social span {
    font-size: 14px;
    color: #083371;
    margin-top: 3px;
    font-weight: bold;
}

.insight-blog-detail .main-data p {
    font-size: 14px;
    text-align: justify;
}

.list-blog h6 {
    font-size: 20px;
    font-weight: bold !important
}

.keyword .form-control {
    background-color: #f6f7f9;
    height: 60px;
    border-radius: 9px !important;
    width: 100% !important;
    margin-left: t0px !important;
    padding: 10px !important;
    border: none !important;
}

.keyword .has-main .form-control-feedback {
    float: right;
    margin-right: 12px;
    margin-top: -52px;
    position: relative;
    z-index: 2;
    color: #1A1A1A;
    border-radius: 5px;
    padding: 10px;
    background-color: none !important;
}
/* About Us Page */
.about-content p {
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
}

.about-content-two p {
    font-size: 15px;
    text-align: justify;
    font-weight: 400;
}

.main-img {
    width: 100%;
    border: 5px solid #E9E7E7;
}

.heading-about {
    font-size: 20px;
}

/* About-us Start*/

.about-us {
    padding: 30px 0px;
    float: left;
    width: 100%;
    background-color: #fff;
}

    .about-us h4 {
        font-size: 16px;
        font-weight: 400;
        color: #f99312;
    }

    .about-us h5 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0px;
        color: #000000;
        text-transform: uppercase;
    }

    .about-us img {
        box-shadow: -1px 10px 22px -13px rgba(0, 0, 0, 0.75);
        -webkit-box-shadow: -1px 10px 22px -13px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: -1px 10px 22px -13px rgba(0, 0, 0, 0.75);
        width: 98%;
        border: 2px solid #dbdbdb;
        border-radius: 5px;
        height: auto;
    }

.about-cont p {
    max-width: 100%;
    font-size: 14px;
    color: #000000;
    margin-bottom: 0px;
    margin-top: 14px;
}

.about-cont h4 {
    font-size: 15px;
    font-weight: 600;
    color: #f99312;
    margin-bottom: 0px;
}

.about-cont span {
    font-size: 14px;
    color: #000000;
}

.ab-class {
    margin-bottom: 3.5rem;
}
/*team-img*/

.team-img {
    padding-top: 30px;
    padding-bottom: 30px;
    /* float: left; */
    width: 100%;
}

    .team-img .my-img {
        position: relative;
        float: left;
        width: 100%;
        margin-bottom: 28px;
    }

        .team-img .my-img img.person-img {
            border-radius: 50%;
            margin: auto;
            position: absolute;
            left: 0;
            right: 0;
            border: 2px solid #083371;
        }

        .team-img .my-img img.team-bg {
            margin-top: 13px;
            margin-left: 5px;
        }

.person-detail {
    float: left;
    width: 100%;
    text-align: center;
}

    .person-detail h4 {
        color: #333333;
        text-transform: uppercase;
        font-size: 17px;
        font-weight: bold;
        margin-bottom: 0px;
    }

    .person-detail h6 {
        color: #333333;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0px;
        max-width: 230px;
        margin: auto;
        height: 34px;
    }

    .person-detail p {
        color: #333333;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 5px;
    }

.social-icons {
    float: left;
    width: 100%;
    text-align: center;
}

    .social-icons ul li {
        display: inline-block;
        text-align: center;
        margin-left: 2px;
        margin-right: 2px;
    }

    .social-icons ul {
        margin-bottom: 30px;
        padding-left: 0px;
        margin-top: 6px;
    }

.facebook-hover {
    color: #fff;
    transition: 0.5s ease;
    background-color: #4267b2;
}

.social-icons ul li a {
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    height: 30px;
    line-height: 31px;
    width: 30px;
    display: block;
}

    .social-icons ul li a i {
        color: #fff !important;
        font-size: 14px;
        margin-left: 0px;
    }

.twitter-hover {
    color: #fff;
    transition: 0.5s ease;
    background-color: #1da1f2;
}

.instagram-hover {
    color: #fff;
    transition: all 0.5s ease;
    background: linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%) !important;
}

.linked-in-hover {
    color: #fff;
    transition: 0.5s ease;
    background-color: #2867b2;
}

.person-detail p a {
    text-decoration: none;
}

.img-maxwidth {
    margin: auto;
    display: block;
}

.team-img h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner_img2 {
    background-image: url(../images/Team_02.png) !important;
}

*main-teammember */ .main-teammember {
    /* float: left; */
    width: 100%;
    background-color: #f4f4f4;
    padding-top: 30px;
}

.main-teammember .my-img {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.main-teammember img.team-bg {
    margin-top: 13px;
    margin-left: 5px;
}

.main-teammember .my-img img.person-img {
    border-radius: 50%;
    margin: auto;
    position: absolute;
    z-index: 22;
    left: 0;
    right: 0;
    border: 2px solid #083371;
}

.main-teammember h4 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #333333;
}

.main-teammember h5 {
    font-size: 16px;
    font-weight: 400;
}

/*team-popup*/

.team-popup .my-img img.person-img {
    border-radius: 5%;
    margin: auto;
    position: absolute;
    z-index: 22;
    left: 18px;
    right: auto;
    border: 0px;
    top: 33px;
}

.team-popup {
    background-color: #ffffff !important;
}

    .team-popup .social-icons {
        text-align: left;
    }

        .team-popup .social-icons ul {
            margin-bottom: 0px;
        }

    .team-popup img.team-bg {
        margin-top: 17px;
        margin-left: 11px;
        width: 185px;
        transform: rotateZ(95deg);
    }
/*Responsive Start Here*/

@media (min-width: 1400px) {
    .team-img .my-img img.team-bg {
        margin-top: 13px;
        margin-left: 30px;
    }

    .main-teammember .my-img img.team-bg {
        margin-top: 13px;
        margin-left: 30px;
    }

    .team-popup .my-img img.person-img {
        border-radius: 5%;
        margin: auto;
        position: absolute;
        z-index: 22;
        left: 36px;
        right: auto;
        border: 0px;
        top: 30px;
    }
}

@media (max-width: 1200px) {
    .team-img .my-img img.team-bg {
        margin-top: 13px;
        margin-left: -7px;
    }

    .main-teammember .my-img img.team-bg {
        margin-top: 13px;
        margin-left: -7px;
    }
}

@media (max-width: 992px) {
    .team-img .my-img img.team-bg {
        margin-top: 0px;
        margin-left: 0px;
        visibility: hidden;
    }

    .main-teammember .my-img img.team-bg {
        margin-top: 0px;
        margin-left: 0px;
        visibility: hidden;
    }
}

@media (max-width: 640px) {
    .custom-flex {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-us img {
        margin-bottom: 20px;
    }

    .ab-class {
        margin-bottom: 2.5rem;
    }

    .person-detail h6 {
        height: auto;
    }
}

.main-teammember .my-img img.person-img, .team-img .my-img img.person-img {
    width: 187px;
    height: 187px;
}

/* Services Page */

/* ----------------------------------------------------------------
	Flip Cards
-----------------------------------------------------------------*/
.flip-card {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.flip-card-front, .flip-card-back {
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
    height: 180px;
    border-radius: 6px;
    font-size: 1.5rem;
}

.flip-card h3 {
    font-size: 16px;
    margin-top: 15px;
}

.flip-card-back {
    background-color: #666;
}

    .flip-card-front.no-after:after, .flip-card-back.no-after:after {
        content: none
    }

    .flip-card-front:after, .flip-card-back:after {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        content: "";
        display: block;
        opacity: 0.6;
        background-color: #f5f5f5;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 6px;
        box-shadow: #c7c7c7 0px 0px 6px;
    }

.flip-card:hover .flip-card-front, .flip-card:hover .flip-card-back {
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.flip-card-inner {
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
}

.flip-card-back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card:hover .flip-card-back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.top-to-bottom .flip-card-back {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.top-to-bottom .flip-card-front, .top-to-bottom:hover .flip-card-back {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.top-to-bottom:hover .flip-card-front {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-card-inner span {
    font-size: 17px !important;
    line-height: 20px;
    font-weight: 300;
}

.flip-card-inner p {
    position: relative;
    font-size: 14px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6
}

.flip-card .card {
    background-color: transparent;
    border: 0px;
}

.flip-card img {
    width: 60px;
}

.step-main-service {
    width: 65px;
    height: 65px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 27px;
    color: white;
    left: 2px;
    border-radius: 50%;
    /* right: -33px; */
    background-color: #083371;
}

.services_two h4 {
    font-size: 18px;
}

.services_two p {
    font-size: 14px;
}

.gallary_2 img {
    width: 100%;
    height: 100%;
}

.gallary_2 h3 {
    font-size: 17px;
    text-align: center;
    margin-top: 10px;
}

.post_two img {
    width: 60%;
}

@media (max-width:772px) {
    .post_two img {
        width: 100%;
    }
}

.post_two .table td {
    font-size: 14px;
}

.banner_top {
    margin-top: 60px;
}

figure.snip0015 {
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    max-width: 310px;
    max-height: 220px;
    width: 100%;
    text-align: center;
}

    figure.snip0015 img {
        opacity: 1;
        width: 100%;
        -webkit-transition: opacity 0.35s;
        transition: opacity 0.35s;
    }

    figure.snip0015 figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 3em 3em;
        width: 100%;
        height: 100%;
    }

        figure.snip0015 figcaption::before {
            position: absolute;
            top: 50%;
            right: 30px;
            bottom: 50%;
            left: 30px;
            border-top: 1px solid #083371;
            border-bottom: 1px solid #083371;
            content: '';
            opacity: 0;
            background-color: #ffffff;
            -webkit-transition: all 0.4s;
            transition: all 0.4s;
            -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
        }

    figure.snip0015 h2,
    figure.snip0015 p {
        margin: 0 0 5px;
        opacity: 0;
        color: #083371;
        font-size: 23px;
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s,-webkit-transform 0.35s,-moz-transform 0.35s,-o-transform 0.35s,transform 0.35s;
    }

    figure.snip0015 h2 {
        word-spacing: -0.15em;
        font-weight: 300;
        text-transform: uppercase;
        -webkit-transform: translate3d(0%, 50%, 0);
        transform: translate3d(0%, 50%, 0);
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

        figure.snip0015 h2 span {
            font-weight: 800;
        }

    figure.snip0015 p {
        font-weight: 200;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    figure.snip0015 a {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        color: #ffffff;
    }

    figure.snip0015:hover img {
        opacity: 0.35;
    }

    figure.snip0015:hover figcaption h2 {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    figure.snip0015:hover figcaption p {
        opacity: 0.9;
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }

    figure.snip0015:hover figcaption::before {
        background: rgba(255, 255, 255, 0);
        top: 30px;
        bottom: 30px;
        opacity: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }


/*interactive-session*/

.interactive-session img {
    margin: auto;
    display: block;
    height: auto;
}

.interactive-session {
    padding: 30px 0px;
}

    .interactive-session h5 {
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 5px;
    }

/*interactive-session End*/

.home-page h3 {
    font-size: 24px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 3px;
    line-height: 20px;
    margin-top: 5px;
    text-transform: uppercase;
}

@media (max-width:772px) {
    .bg-contact {
        margin-top: -30px !important;
    }
}

.insight_2 .card {
    background-color: white;
    border-color: #D3D5DB !important;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    overflow: hidden;
}

    .insight_2 .card .card-head img {
        border-radius: 5px 0px 0px 5px;
        max-width: 100%;
        padding: 0px;
    }

.insight_2 p {
    font-size: 14px;
    text-align: justify;
}

.insight_2 .main-topic {
    color: #204293;
    font-size: 13px;
    font-weight: 500;
}

.insight_2 .date {
    color: #606991;
    font-size: 13px;
}

.insight_2 .card-body h4 {
    font-size: 15px;
}

.insight_2 .btn_article {
    background-color: #D3DDED;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 0px;
    color: #083371 !important;
    padding: 7px 25px;
    outline-offset: 0px;
    text-shadow: none;
}

.insight_2 .card img {
    transition: all ease-in-out 0.4s;
}

.insight_2 .card:hover img {
    transform: scale(1.1);
}

/* Career Page style */
.Career h5 {
    text-align: center;
    line-height: 35px;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 20px;
}

.color_theme {
    color: #2C2292;
}

.btn-theme {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 0px;
    color: white !important;
    padding: 7px 25px;
    border: 1px solid #083371;
    outline-offset: 0px;
    background-color: #083371;
    text-shadow: none;
}

.detail .card, .job .card {
    padding: 20px 25px;
    border-color: white;
    border-radius: 10px;
}

.job .card {
    padding: 20px 25px;
    border-color: white;
    border-bottom: 3px solid #083371;
    border-radius: 0px;
    transition: .3s;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px, rgb(0 0 0 / 6%) 0px 1px 2px 0px;
}

    .job .card img {
        margin-bottom: 20px;
    }

.detail i {
    color: #083371;
    font-size: 35px;
    margin-bottom: 10px;
}

.Career .card h6 {
    text-transform: uppercase;
}

.Career .card p {
    font-size: 14px;
}

.btn-apply {
    background-color: #D3DDED;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 0px;
    color: #083371 !important;
    padding: 7px 25px;
    outline-offset: 0px;
    text-shadow: none;
}

.bg-theme {
    background-color: #083371;
    padding: 50px 0px 30px 0;
}

    .bg-theme .counter-box span {
        color: white;
        font-size: 40px;
        font-weight: 500;
    }

    .bg-theme .counter-box p {
        color: white;
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 0px;
    }

.Career img {
    max-width: 100%;
}

.text-justify {
    text-align: justify;
}

.insight .card {
    background-color: white;
    border-color: #D3D5DB !important;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    overflow: hidden;
}


    .insight .card .card-head img {
        border-radius: 5px 5px 0px 0px;
        max-width: 100%;
        padding: 0px;
    }

.insight p {
    font-size: 14px;
    text-align: justify;
}

.insight .main-topic {
    color: #204293;
    font-size: 13px;
    font-weight: 500;
}

.insight .date {
    color: #606991;
    font-size: 13px;
}

.insight .card-body h4 {
    font-size: 15px;
}

.insight .btn_article {
    background-color: #D3DDED;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 0px;
    color: #083371 !important;
    padding: 7px 25px;
    outline-offset: 0px;
    text-shadow: none;
}

.date {
    position: absolute;
    font-size: 18px;
    color: white !important;
    min-width: 140px;
    margin-top: 10px;
    text-align: center;
    background: #083371;
    padding: 5px 10px;
}

    .date span {
        font-size: 16px;
    }

.insight .card img {
    transition: all ease-in-out 0.4s;
}

.insight .card:hover img {
    transform: scale(1.1);
}

.Background_one {
    background-image: url('../img/bg-grey.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 40px 30px 30px;
}

    .Background_one p, .Background_two p, .Background_two h5, .Background_one h5 {
        color: white;
    }

    .Background_one p {
        font-size: 14px;
    }

.Background_two p {
    font-size: 14px;
}

.Background_two {
    background-image: url('../img/bg-blue.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 40px 30px 30px;
}

    .Background_one .fbox-effect .fbox-icon i, .Background_two .fbox-effect .fbox-icon i {
        background-color: white;
        color: #073370;
    }
/* About Us Page */

.feature-box {
    position: relative;
    margin-top: 20px;
    padding: 0 0 0 80px;
}

    .feature-box .fbox-icon {
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        top: 3px;
        left: 10px;
    }

    .feature-box.fbox-rounded .fbox-icon {
        border-radius: 3px !important;
    }

    .feature-box .fbox-icon a, .feature-box .fbox-icon i, .feature-box .fbox-icon img {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        color: #FFF;
    }

    .feature-box .fbox-icon i, .feature-box .fbox-icon img {
        border-radius: 50%;
        background-color: #083371;
    }

    .feature-box .fbox-icon i {
        font-style: normal;
        font-size: 28px;
        text-align: center;
        transition: .3s;
        line-height: 64px;
    }

.fbox-effect .fbox-icon i {
    z-index: 1;
}

    .fbox-effect .fbox-icon i:after {
        top: -3px;
        left: -3px;
        padding: 3px;
        box-shadow: 0 0 0 2px #333;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
        -webkit-transform: scale(.8);
        -moz-transition: -moz-transform 0.3s, opacity 0.3s;
        -moz-transform: scale(.8);
        -ms-transform: scale(.8);
        transition: transform 0.3s, opacity 0.3s;
        transform: scale(.8);
        opacity: 0;
    }

    .fbox-effect .fbox-icon i:after {
        pointer-events: none;
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        content: '';
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

.feature-box h5, .feature-box p {
    margin-left: 20px;
}

.insight_abt .card {
    background-color: white;
    border-color: none !important;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    overflow: hidden;
}


    .insight_abt .card .card-head img {
        border-radius: 0px 0px 0px 0px;
        max-width: 100%;
        padding: 0px;
    }

.insight_abt p {
    font-size: 15px;
    text-align: justify;
}

.insight_abt .main-topic {
    color: #204293;
    font-size: 13px;
    font-weight: 500;
}

.insight_abt .date {
    color: #606991;
    font-size: 13px;
}

.insight_abt .card-body h4 {
    font-size: 17px;
}

.insight_abt .itallic {
    color: #083371;
    font-style: italic;
    font-weight: 500;
    font-size: 16px !important;
}

.insight_abt .card img {
    transition: all ease-in-out 0.4s;
}

.insight_abt .card:hover img {
    transform: scale(1.1);
}

.insight_abt b {
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.insight_abt span {
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
}

.about-us__image,
.video-box {
    position: relative;
}

    .about-us__image .video-btn,
    .video-box .video-btn {
        min-width: 96px;
        max-width: 96px;
        min-height: 96px;
        max-height: 96px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

.video-us__image,
.video-box {
    position: relative;
}

    .video-us__image .video-btn,
    .video-box .video-btn {
        min-width: 60px;
        max-width: 60px;
        min-height: 60px;
        max-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

.btn-primary {
    color: #000;
    background-color: #C7474C;
    border-color: #C7474C;
}

    .btn-primary:hover {
        color: #000;
        background-color: #C7474C;
        border-color: #C7474C;
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #000;
        background-color: #C7474C;
        border-color: #C7474C;
        box-shadow: 0 0 0 0.2rem rgba(217, 74, 29, 0.5);
    }

    .btn-check:checked + .btn-primary,
    .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active,
    .show > .btn-primary.dropdown-toggle {
        color: #000;
        background-color: #C7474C;
        border-color: #C7474C;
    }

        .btn-check:checked + .btn-primary:focus,
        .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus,
        .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(217, 74, 29, 0.5);
        }



.sonar-emitter {
    position: relative;
}

    .sonar-emitter::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        content: "";
        background-color: white;
        z-index: -1;
        pointer-events: none;
        opacity: 0;
    }

    .sonar-emitter::after {
        -webkit-animation: sonarWave 2s linear infinite;
        animation: sonarWave 2s linear infinite;
    }

.sonar-emitter-2 {
    position: relative;
}

    .sonar-emitter-2::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        content: "";
        background-color: #fff;
        z-index: -1;
        pointer-events: none;
        opacity: 0;
    }

@-webkit-keyframes sonarWave {
    from {
        opacity: 0.4;
    }

    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes sonarWave {
    from {
        opacity: 0.4;
    }

    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.sonar-emitter-2::after {
    -webkit-animation: sonarWave 2s linear infinite;
    animation: sonarWave 2s linear infinite;
}

.welcome-area--l5 .popup-btn {
    display: flex;
    align-items: center;
}

    .welcome-area--l5 .popup-btn .play-btn {
        min-width: 50px;
        max-width: 50px;
        min-height: 50px;
        max-height: 50px;
        box-shadow: -12px 12px 50px rgba(255, 30, 56, 0.3);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #C7474C;
        margin-right: 20px;
    }

    .welcome-area--l5 .popup-btn .btn-text {
        color: #C7474C;
        transition: 0.4s;
        font-size: 13px;
        font-weight: 500;
        font-style: normal;
        letter-spacing: normal;
        line-height: 22px;
    }

    .welcome-area--l5 .popup-btn:hover .btn-text {
        text-decoration: underline;
    }

.about-us__image img {
    width: 100%;
}

.about-us__image img {
    opacity: 0.6;
    border-radius: 10px;
}

.about-us__image .video-btn-2, .video-box .video-btn {
    min-width: 62px;
    max-width: 62px;
    min-height: 62px;
    max-height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.video-span span {
    margin-right: 20px;
    margin-top: 15px;
    color: #74787C;
    font-size: 14px;
    display: inline-block;
}

.video-span {
    text-align: left;
}

    .video-span h6 {
        color: #2E2E36;
        font-size: 22px;
    }

.variable h6 {
    text-transform: uppercase;
    font-size: 14px;
}

.jobs_tenders .nav-pills .nav-link {
    width: 100%;
}

.latest-jobs {
    max-height: 388px;
    overflow-y: scroll;
    padding: 10px 20px;
    overflow-x: hidden;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
}

    .latest-jobs .border_bottom:hover {
        background-color: #f7f7f7;
    }

.date-set {
    background-color: #D3DDED;
    padding: 5px;
    min-width: 60px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    margin-right: 20px;
    color: black;
    height: 50px;
}

.tenders_1 .date-set {
    height: 100% !important;
    margin-top: 10px;
}

.tenders_1 p {
    font-size: 13px !important;
    text-transform: none !important;
}


.tenders_1 .date-set h6 {
    font-size: 13px !important;
}

.tenders_1 .date-set h5 {
    font-size: 14px !important;
}

.date-set h6 {
    font-size: 14px;
}

.date-set h5 {
    font-size: 16px;
}

.latest-jobs p {
    text-transform: lowercase;
    font-size: 14px;
}

.date-set h6, .date-set h5 {
    margin-bottom: 0px;
}

.latest-jobs .w-20 {
    width: 20%;
}

.border_bottom {
    border-bottom: 1px solid rgb(230, 230, 230);
    padding-bottom: 10px;
    background-color: white;
}

.latest-jobs .badge {
    background-color: #D3DDED !important;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 5px;
    color: #083371 !important;
    padding: 7px 7px;
    outline-offset: 0px;
    text-shadow: none;
}
/* Buttons Style */
.btn.btn-link {
    background: transparent;
    color: #494ca2;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}

.btn.btn-primary {
    background: #494ca2;
    border-color: #494ca2;
    color: #fff;
}

    .btn.btn-primary:focus {
        border-color: #414490 !important;
        background: #414490 !important;
    }

    .btn.btn-primary.btn-link {
        background: transparent;
        color: #494ca2;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.btn.btn-white {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.btn.btn-round {
    border-radius: 40px;
}

.btn.btn-link {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.btn-secondary {
    color: #fff;
    border-color: #6c757d;
    background: #6c757d;
}

    .btn.btn-secondary:focus {
        border-color: #60686f !important;
        background: #60686f !important;
    }

    .btn.btn-secondary.btn-link {
        color: #6c757d;
        background: transparent;
    }

.btn.btn-success {
    color: #fff;
    background: #94aa2a;
    border-color: #94aa2a;
}

    .btn.btn-success:focus {
        border-color: #829625 !important;
        background: #829625 !important;
    }

    .btn.btn-success.btn-link {
        color: #94aa2a;
        background: transparent;
    }

.btn.btn-danger {
    color: #fff;
    border-color: #f0134d;
    background: #f0134d;
}

    .btn.btn-danger:focus {
        border-color: #dc0e44 !important;
        background: #dc0e44 !important;
    }

    .btn.btn-danger.btn-link {
        color: #f0134d;
        background: transparent;
    }

.btn.btn-warning {
    color: #fff;
    border-color: #f1bc31;
    background: #f1bc31;
}

    .btn.btn-warning:focus {
        border-color: #efb419 !important;
        background: #efb419 !important;
    }

    .btn.btn-warning.btn-link {
        color: #f1bc31;
        background: transparent;
    }

.btn.btn-info {
    color: #fff;
    border-color: #64c4ed;
    background: #64c4ed;
}

    .btn.btn-info:focus {
        border-color: #4dbbea !important;
        background: #4dbbea !important;
    }

    .btn.btn-info.btn-link {
        color: #64c4ed;
        background: transparent;
    }

.btn.btn-dark {
    color: #fff;
    border-color: #343a40;
    background: #343a40;
}

    .btn.btn-dark:focus {
        border-color: #292d32 !important;
        background: #292d32 !important;
    }

    .btn.btn-dark.btn-link {
        color: #343a40;
        background: transparent;
    }

.btn.btn-outline-primary {
    color: #494ca2;
    border-color: #494ca2;
}

    .btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
        color: #fff;
        background: #494ca2 !important;
        border-color: #494ca2 !important;
    }

.btn.btn-outline-success {
    border-color: #94aa2a;
    color: #94aa2a;
}

    .btn.btn-outline-success:hover, .btn.btn-outline-success:focus {
        color: #fff;
        background: #94aa2a !important;
        border-color: #94aa2a !important;
    }

.btn.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

    .btn.btn-outline-secondary:hover, .btn.btn-outline-secondary:focus {
        color: #fff;
        background: #6c757d !important;
        border-color: #6c757d !important;
    }

.btn.btn-outline-info {
    border-color: #64c4ed;
    color: #64c4ed;
}

    .btn.btn-outline-info:hover, .btn.btn-outline-info:focus {
        color: #fff;
        background: #64c4ed !important;
        border-color: #64c4ed !important;
    }

.btn.btn-outline-warning {
    border-color: #f1bc31;
    color: #f1bc31;
}

    .btn.btn-outline-warning:hover, .btn.btn-outline-warning:focus {
        color: #fff;
        background: #f1bc31 !important;
        border-color: #f1bc31 !important;
    }

.btn.btn-outline-danger {
    border-color: #f0134d;
    color: #f0134d;
}

    .btn.btn-outline-danger:hover, .btn.btn-outline-danger:focus {
        color: #fff;
        background: #f0134d !important;
        border-color: #f0134d !important;
    }

.btn.btn-outline-dark {
    border-color: #343a40;
    color: #343a40;
}

    .btn.btn-outline-dark:hover, .btn.btn-outline-dark:focus {
        color: #fff;
        background: #343a40 !important;
        border-color: #343a40 !important;
    }

.btn.btn-outline-light {
    border-color: #f8f9fa;
}

.btn.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
}

.btn.btn-lg, .btn-group-lg > .btn {
    padding: 17px 24px;
    font-size: 16px;
    border-radius: 40px;
}

.btn.btn-fb {
    background: #4f69a2;
    border-color: #4f69a2;
    color: #fff;
}

.btn.btn-outline-fb {
    background: transparent;
    border: 1px solid #4f69a2;
    color: #4f69a2;
}

.btn.btn-link-fb {
    color: #4f69a2;
}

.btn.btn-twitter {
    background: #69b6f0;
    border-color: #69b6f0;
    color: #fff;
}

.btn.btn-outline-twitter {
    background: transparent;
    border: 1px solid #69b6f0;
    color: #69b6f0;
}

.btn.btn-link-twitter {
    color: #69b6f0;
}

.btn.btn-linkedin {
    background: #2884ba;
    border-color: #2884ba;
    color: #fff;
}

.btn.btn-outline-linkedin {
    background: transparent;
    border: 1px solid #2884ba;
    color: #2884ba;
}

.btn.btn-link-linkedin {
    color: #2884ba;
}

.btn.btn-pinterest {
    background: #d03940;
    border-color: #d03940;
    color: #fff;
}

.btn.btn-outline-pinterest {
    background: transparent;
    border: 1px solid #d03940;
    color: #d03940;
}

.btn.btn-link-pinterest {
    color: #d03940;
}

.btn.btn-dribbble {
    background: #ea6294;
    border-color: #ea6294;
    color: #fff;
}

.btn.btn-outline-dribbble {
    background: transparent;
    border: 1px solid #ea6294;
    color: #ea6294;
}

.btn.btn-link-dribbble {
    color: #ea6294;
}



.checkbox-primary input[type="checkbox"]:checked:after {
    color: #494ca2;
}

.checkbox-danger input[type="checkbox"]:checked:after {
    color: #f0134d;
}

.checkbox-info input[type="checkbox"]:checked:after {
    color: #64c4ed;
}

.checkbox-warning input[type="checkbox"]:checked:after {
    color: #f1bc31;
}

.checkbox-success input[type="checkbox"]:checked:after {
    color: #94aa2a;
}

.checkbox-dark input[type="checkbox"]:checked:after {
    color: #343a40;
}

.checkbox-primary {
    color: #494ca2;
}

.checkbox-danger {
    color: #f0134d;
}

.checkbox-info {
    color: #64c4ed;
}

.checkbox-warning {
    color: #f1bc31;
}

.checkbox-success {
    color: #94aa2a;
}

.checkbox-dark {
    color: #343a40;
}

.checkbox span {
    margin-left: 35px;
}

.checkbox input[type=checkbox],
input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    margin-top: 0;
    margin-left: 0;
}

    .checkbox input[type=checkbox]:disabled,
    input[type="checkbox"]:disabled {
        opacity: 0.65;
    }

    input[type="checkbox"]:checked:after,
    input[type="checkbox"]:after {
        visibility: visible;
        font-family: 'Ionicons';
        display: inline-block;
        color: rgba(0, 0, 0, 0.2);
        line-height: 1;
        margin-top: 0;
    }

        input[type="checkbox"]:checked:after:disabled,
        input[type="checkbox"]:after:disabled {
            cursor: not-allowed;
            opacity: 0.65;
        }

    input[type="checkbox"]:checked:after {
        font-size: 30px;
        content: '\f148';
        line-height: .4;
        margin-top: 7px;
    }

    input[type="checkbox"]:after {
        font-size: 37px;
        content: '\f15c';
        line-height: .4;
        margin-top: 6px;
    }

input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    input[type="radio"]:checked + label,
    input[type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
    }

        input[type="radio"]:checked + label:before,
        input[type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 100%;
            background: #000;
        }

        input[type="radio"]:checked + label:after,
        input[type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        input[type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            -ms-transform: scale(0);
            transform: scale(0);
        }

        input[type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
        }

.radio-primary {
    color: #494ca2;
}

.radio-success {
    color: #94aa2a;
}

.radio-danger {
    color: #f0134d;
}

.radio-warning {
    color: #f1bc31;
}

.radio-info {
    color: #64c4ed;
}

.radio-dark {
    color: #343a40;
}

.radio-primary input[type="radio"]:checked + label:after {
    background: #494ca2;
    border-color: #494ca2;
}

.radio-success input[type="radio"]:checked + label:after {
    background: #94aa2a;
    border-color: #94aa2a;
}

.radio-danger input[type="radio"]:checked + label:after {
    background: #f0134d;
    border-color: #f0134d;
}

.radio-warning input[type="radio"]:checked + label:after {
    background: #f1bc31;
    border-color: #f1bc31;
}

.radio-info input[type="radio"]:checked + label:after {
    background: #64c4ed;
    border-color: #64c4ed;
}

.radio-dark input[type="radio"]:checked + label:after {
    background: #343a40;
    border-color: #343a40;
}

.radio-primary input[type="radio"]:checked + label:before {
    border-color: #494ca2;
}

.radio-success input[type="radio"]:checked + label:before {
    border-color: #94aa2a;
}

.radio-danger input[type="radio"]:checked + label:before {
    border-color: #f0134d;
}

.radio-warning input[type="radio"]:checked + label:before {
    border-color: #f1bc31;
}

.radio-info input[type="radio"]:checked + label:before {
    border-color: #64c4ed;
}

.radio-dark input[type="radio"]:checked + label:before {
    border-color: #343a40;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    text-align: center;
    margin-top: 20px;
    min-height: 320px;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-left: 20px;
        margin: 0 auto;
    }

    .testimonials .testimonial-item h3 {
        font-size: 14px;
        font-weight: bold;
        margin: 10px 0 5px 0;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        margin: 0;
        color: var(--color-texts);
    }

    .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
        font-size: 26px;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
    }

    .testimonials .testimonial-item p {
        margin: 0 15px 15px 15px;
        padding: 20px;
        font-size: 14px;
        background: #F2F2F2;
        position: relative;
        height: 100%;
        border: 0px;
        margin-bottom: 35px;
        color: #1C1C1C !important;
        border-radius: 6px;
        padding-top: 30px;
    }

        .testimonials .testimonial-item p::after {
            width: 0;
            height: 0;
            border-top: 20px solid #fff;
            border-right: 20px solid transparent;
            border-left: 20px solid transparent;
            position: absolute;
            bottom: -20px;
            left: calc(50% - 20px);
        }

.swiper-pagination-bullet {
    border-radius: 20% !important;
}

.testimonials .swiper-pagination {
    margin-top: -30px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #F2F2F2;
        opacity: 1;
        border: 1px solid #F2F2F2;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #083371;
        border: 1px solid #083371;
    }

.testimonial-icon {
    margin-bottom: -19px;
    z-index: 1;
    position: relative;
}

.form-control:focus {
    box-shadow: none !important;
}

/* Frequently Asked Questions */


.faq .accordion-flush .accordion-button {
    border: 1px solid #C3CAD9 !important;
}

.faq .accordion-body {
    border-bottom: 1px solid #C3CAD9;
    border-left: 1px solid #C3CAD9;
    border-right: 1px solid #C3CAD9;
    font-size: 15px;
}

.faq .accordion-item {
    margin-bottom: 10px !important;
}

.faq .accordion-button {
    color: #4D5852;
    font-size: 15px;
    padding: 13px 15px;
}


/* Tab Style */
.tab_one .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #D3DDED;
    color: #083371;
}

.tab_two.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #D3DDED;
    color: #083371;
}

/* Footer Style 2 */

.map-container_two {
    margin-top: 60px;
}

@media (max-width:992px) {
    .map-container_two {
        margin-top: 0px;
    }
}

#footer form {
    /*background: #252525;*/
    padding: 0px 0px;
    position: relative;
    color: white;
    border-radius: 0px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    text-align: left;
}


    #footer form input[type="submit"] {
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: 0;
        border: 0;
        height: 41px;
        background: none;
        font-size: 14px;
        border: 1px solid #083371;
        text-transform: uppercase;
        padding: 0px 20px;
        background: #083371;
        color: white;
        box-shadow: 0px 5px 20px rgb(0 0 0 / 10%);
    }


@media(min-width: 1200px) {
    .col-1-5 {
        width: 20%;
        float: left;
        position: relative;
        /*min-height: 1px;*/
        padding-right: 5px;
        padding-left: 5px;
    }
}

@media(max-width: 1199px) {
    .col-1-5 {
        width: 25%;
        float: left;
        position: relative;
        /*min-height: 1px;*/
        padding-right: 5px;
        padding-left: 5px;
    }
}

@media(max-width: 1024px) {
    .col-1-5 {
        width: 50%;
        float: left;
        position: relative;
        /*min-height: 1px;*/
        padding-right: 5px;
        padding-left: 5px;
    }
}

@media(max-width: 768px) {
    .col-1-5 {
        width: 100%;
        float: left;
        position: relative;
        /*min-height: 1px;*/
        padding-right: 5px;
        padding-left: 5px;
    }
}

/*fouzzia css*/
/* --- NEW STYLES FOR THE LOGO SECTION --- */

.three-services-logos-section .service-logo-box {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

    .three-services-logos-section .service-logo-box img {
        border: 2px solid #006400; /* Light blue border */
        height: 100%;
        max-height: 160px;
        border-radius: 10px;
        object-fit: contain;
    }

@media (max-width: 576px) {

    .three-services-logos-section {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
}




/*fouzzia css*/

/*department logo css start*/

.dept-container {
    padding-top: 20px;
}

/* Title Wrapper */
.dept-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.dept-title-text {
    text-align: center;
    line-height: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 30px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .dept-title-text::before,
    .dept-title-text::after {
        content: "";
        flex: 0 0 40px;
        height: 2px;
        background: rgb(16, 69, 145);
    }

@media (max-width: 768px) {
    .dept-title-text {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .dept-title-text {
        font-size: 14px;
        gap: 8px;
    }

        .dept-title-text::before,
        .dept-title-text::after {
            flex: 0 0 25px;
        }
}

/* Logos */
.dept-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.dept-item {
    padding: 0 10px;
    text-align: center;
}

.dept-card {
    display: inline-block;
    width: 100%;
    max-width: 200px;
}

/* Slick Arrows */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background: rgba(115, 115, 115, 0.8);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    z-index: 10;
    cursor: pointer;
}

    .slick-prev:before,
    .slick-next:before {
        font-size: 22px;
        background: rgba(115, 115, 115, 0.8);
        width: 40px;
        height: 40px;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .slick-prev:before {
        content: "\2039";
    }

    .slick-next:before {
        content: "\203A";
    }

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

/*department logo css end*/



#footer iframe {
    height: 320px !important;
    width: 99.8% !important;
}

/* Toggler icon white on mobile only */
@media (max-width: 768px) {
    .navbar-toggler {
        border-color: #fff !important;
    }

        .navbar-toggler .navbar-toggler-icon {
            filter: invert(1);
        }
}


div.table-responsive > div.dt-container > div.row {
    padding-bottom: 2rem;
}

.table-download-link a {
    color: #006400 !important; /* sets link color to green */
    text-decoration: none !important; /* removes underline */
}

.page-link {
    color: #006400;
    border-color: #006400;
    background-color: #fff;
}

    .page-link:hover {
        color: #fff;
        background-color: #006400;
        border-color: #006400;
    }

    .page-item.active .page-link,
    .page-link.active {
        color: #fff;
        background-color: #006400;
        border-color: #006400;
    }

.page-item.disabled .page-link {
    color: #a9a9a9;
    background-color: #f8f9fa;
    border-color: #006400;
}

#dt-search-0 {
    color: #006400;
    border: 1px solid #006400;
}

    #dt-search-0::placeholder {
        color: #006400;
        opacity: 1; /* ensures full color for placeholder */
    }
