@import url(https://db.onlinewebfonts.com/c/465749543b0a51df0a5cfcf1d129e392?family=EMprint+Semibold);

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --default-font: "EMprint Semibold";
    --heading-font: "EMprint Semibold";
    --nav-font: "EMprint Semibold";
}

:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #222222;
    --accent-color: #106eea;
}

:root {
    --nav-color: #222222;
    --nav-hover-color: #106eea;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #222222;
    --nav-dropdown-hover-color: #106eea;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    overflow-x: hidden;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

p {
    font-family: "Montserrat", serif;
}

section {
    padding: 30px 0;
}

.container {
    max-width: 1355px;
}


img {
    max-width: 100%;
    display: block;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: #ffffff;
    transition: all 0.5s;
    z-index: 99999;
    background-color: transparent;
    padding: 10px 0;
    transition: all 0.4s ease-in-out !important;
}

    .header .topbar {
        background-color: var(--accent-color);
        height: 40px;
        padding: 0;
        font-size: 14px;
        transition: all 0.5s;
    }

        .header .topbar .contact-info i {
            font-style: normal;
            color: var(--contrast-color);
        }

            .header .topbar .contact-info i a,
            .header .topbar .contact-info i span {
                padding-left: 5px;
                color: var(--contrast-color);
            }

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

    .header .topbar .contact-info i a:hover {
        color: var(--contrast-color);
        text-decoration: underline;
    }

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

    .header .topbar .social-links a:hover {
        color: var(--contrast-color);
    }

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

    .header .logo img {
        max-width: 100%;
    }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 600;
        color: var(--heading-color);
    }

    .header .logo span {
        color: #565656;
        font-size: 16px;
        font-weight: bold;
        margin-top: 8px;
    }

.scrolled .header {
    box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
    position: static;
}

.bottom-header .navmenu {
    background-color: #162f6a;
    padding: 0;
}


.scrolled .header .bottom-header {
    transition: all 0.4s ease-in-out;
}

.scrolled .header .bottom-header {
    position: fixed;
    top: 0;
    z-index: 99999;
    left: 0;
    right: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding-top: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
            position: relative;
        }

        .navmenu li {
            /* position: static; */
        }

        .navmenu > .container > ul > li + li {
            margin-left: 10px;
        }

        .navmenu a,
        .navmenu a:focus {
            color: #000000;
            padding: 15px 12px;
            font-size: 17px;
            font-weight: 600;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
            font-family: "Montserrat", serif;
        }



            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }


        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: #f37022;
            border-radius: 0;
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 5px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 0;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 0 0 10px 10px;
            z-index: 99;
            box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
            min-width: 200px;
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 8px;
                font-size: 15px;
                text-transform: none;
                color: #6d6e71;
                white-space: pre-wrap;
                line-height: 20px;
                font-family: "Montserrat", serif;
                font-weight: 400;
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: #02164f;
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 103%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: auto;
            visibility: hidden;
            right: -90%;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            right: -100%;
            visibility: visible;
        }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-dropdown-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

@media(max-width:1300px) {

    .navmenu a,
    .navmenu a:focus {
        color: #ffffff;
        padding: 10px 5px;
        font-size: 13px;
        font-family: var(--nav-font);
        font-weight: 400;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

    .service-details .services-list a {
        display: block;
        line-height: 1;
        padding: 8px 0 8px 15px;
        border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
        margin: 20px 0;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        transition: 0.3s;
    }

        .service-details .services-list a.active {
            color: var(--heading-color);
            font-weight: 700;
            border-color: var(--accent-color);
        }

        .service-details .services-list a:hover {
            border-color: var(--accent-color);
        }

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .service-details ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .service-details ul i {
        font-size: 20px;
        margin-right: 8px;
        color: var(--accent-color);
    }

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

    .portfolio-details .portfolio-info h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .portfolio-details .portfolio-info ul {
        list-style: none;
        padding: 0;
        font-size: 15px;
    }

        .portfolio-details .portfolio-info ul li + li {
            margin-top: 10px;
        }

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

    .portfolio-details .portfolio-description h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .portfolio-details .portfolio-description p {
        padding: 0;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

/* ===========================custom================= */
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-change ul li {
    margin: 0 0.5rem;
}

    .theme-change ul li .theme-item {
        height: 16px;
        width: 18px;
        display: flex;
        border: 1px solid #e4e4e4;
        cursor: pointer;
    }

        .theme-change ul li .theme-item:before,
        .theme-change ul li .theme-item:after {
            width: 50%;
            content: "";
        }

        .theme-change ul li .theme-item.theme-1:before {
            background-color: #797979;
        }

        .theme-change ul li .theme-item.theme-1:after {
            background-color: #030303;
        }

        .theme-change ul li .theme-item.theme-2:before {
            background-color: #df1a14;
        }

        .theme-change ul li .theme-item.theme-2:after {
            background-color: #fff;
        }

.topnav-list li + li a {
    padding-left: 10px;
    margin-left: 10px;
}


.topnav-list li a,
.font-adjust a {
    font-size: 15px;
    font-weight: 500;
    color: #02164f;
}

.topnav {
    margin-bottom: 10px;
}

.top-search form {
    width: 40%;
    margin-left: auto;
}

.logo-img {
    margin: 5px;
}

li.dropdown.lang-dropdown a {
    color: #02164f;
    margin: 0 5px;
}

.top-search a {
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
}

.top-search {
}

.date_box p {
    margin: 0;
    font-size: 13px;
    color: #222222;
    font-weight: 500;
}

.date_box img {
    margin-right: 10px;
}

.date_time_section {
    padding: 7px 0;
    background-color: #41a5e0;
}

.banner-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgb(7, 34, 46, 0.8);
    padding: 10px 30px;
}

    .banner-text h1 {
        font-size: 24px;
        font-weight: 500;
        color: #ffffff;
        line-height: 35px;
    }

    .banner-text p {
        color: #ffffff;
        margin: auto;
        margin-bottom: 10px;
    }

    .banner-text span {
        color: #ffffff;
    }

.play-pause {
    position: absolute;
    bottom: 13px;
    right: 40px;
    z-index: 9999;
    border: 1px solid #162f6a;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    display: block !important;
    border-radius: 50%;
    color: #162f6a;
    cursor: pointer;
}

.banner-section .owl-prev {
    width: 20px;
    height: 21px;
    top: auto;
    bottom: 15px;
    right: 70px;
    position: absolute;
}

.banner-section .owl-next {
    width: 20px;
    height: 16px;
    top: auto;
    bottom: 20px;
    position: absolute;
    right: 15px;
}

.banner-wrapper {
    position: relative;
}


.banner-section .owl-prev i,
.banner-section .owl-next i {
    color: #162f6a;
}

.banner-section {
    padding: 0;
    padding-bottom: 0;
    position: relative;
    height: 60vh;
}

/* .banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #b9dfffb0, #ffffff00);
} */


.logo-box {
    padding: 31px 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 4px gray;
}

    .logo-box + .logo-box {
        margin-top: 22px;
    }

.gov-logo-img img {
    height: 75px;
}

.whats_link_box {
    overflow: hidden;
    padding: 15px 12px;
    background-color: #07222e;
    border-radius: 0 0 0 30px;
}



    .whats_link_box ul {
        height: 250px;
    }

.whats_new {
    padding: 10px 12px;
    background-color: #41a5e0;
}

    .whats_new h3 {
        color: #ffffff;
        margin: 0;
        font-size: 20px;
    }

.whats_link_box ul li p {
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px;
}

.whats_link_box ul li + li {
    margin-top: 7px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    padding-top: 7px;
}

.whats_link_page a {
    color: #ffffff;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    font-size: 17px;
    justify-content: end;
    font-weight: 500;
}

    .whats_link_page a span {
        display: inline-block;
        height: 35px;
        width: 35px;
        line-height: 35px;
        border-radius: 50%;
        background-color: #41a5e0;
        text-align: center;
        color: #ffffff;
        margin-left: 10px;
    }

.whats_link_box ul li span {
    color: #ffffff;
    display: inline-block;
    padding: 6px 10px;
    background-color: rgb(65, 165, 224, 0.2);
    border-radius: 30px;
    font-size: 12px;
}

.fdf-list span {
    background-color: transparent !important;
    padding: 0 !important;
}

.fdf-list a {
    display: flex;
}

.marquee-wrapper a {
    color: #ffffff;
}

.marquee-section .marquee-wrapper {
    background-color: #07222e;
}

.marquee-wrapper {
    line-height: 1;
    padding: 15px;
}

.government_text {
    border-radius: 0 0 30px 0;
}

.about-section {
    background-color: #d3dfef;
    padding: 0;
}

.about-wrapper {
    padding: 20px 0;
}

    .about-wrapper h1 {
        color: #204879;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 32px;
    }

    .about-wrapper h4 {
        color: #204879;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 5px;
        font-size: 20px;
    }

    .about-wrapper p {
        color: #222222;
        font-size: 15px;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 10px;
    }

.about-button a {
    color: #f87408;
    justify-content: start;
    font-weight: 500;
}

.about-img {
    height: 100%;
    width: 100%;
    position: relative;
}

    .about-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: left;
    }

    .about-img::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.7);
    }

.post-wrapper {
    padding: 5px;
    border-radius: 10px;
}

    .post-wrapper.facebook {
        background-color: #fff;
        padding: 50px 10px 0;
        position: relative;
        margin-top: 20px;
        box-shadow: 0px 0px 16px 0px rgba(168, 168, 168, 0.3);
        border-radius: 0;
    }

    .post-wrapper.twitter {
        background-color: #00bff3;
    }

    .post-wrapper.contact {
        background-color: #204879;
    }

    .post-wrapper .heading-box {
        padding: 20px;
    }

        .post-wrapper .heading-box h3 {
            display: flex;
            align-items: center;
            padding: 15px;
            position: absolute;
            top: -20px;
            left: 0px;
            right: 0px;
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
            width: calc(100% - 20px);
            background-color: #fff;
            border-radius: 0 0 5px 5px;
            margin: 0 auto;
            font-size: 1.5rem;
            font-weight: normal;
        }

            .post-wrapper .heading-box h3::before {
                content: "";
                position: absolute;
                right: 100%;
                top: 0px;
                border-right: 10px solid #DFDFDF;
                border-top: 19px solid transparent;
                border-bottom: 0px solid transparent;
            }

            .post-wrapper .heading-box h3::after {
                content: "";
                position: absolute;
                left: 100%;
                top: 0px;
                border-left: 10px solid #DFDFDF;
                border-top: 19px solid transparent;
                border-bottom: 0px solid transparent;
            }

section.faceboo_twitter_section {
    background: #FFF5E9;
}

.fblef > div {
    width: 100% !important;
    border-radius: 10px !important;
}

.fblef > iframe {
    border-radius: 10px !important;
    display: block;
    margin: auto;
}

.new_logo-box {
    text-align: center;
    display: flex;
    height: 100%;
}

    .new_logo-box img {
        margin: auto;
        object-fit: contain;
    }

.new_logo-box {
    padding: 10px;
    box-shadow: 0px 0px 3px lightgray;
}

.list_headings {
    background-color: #204879;
    padding: 15px;
}

    .list_headings h3 {
        font-size: 22px;
        color: #ffffff;
        margin: 0;
    }

.list-wrapper {
    background-color: #f0f0f0;
}

.impHomeLinks {
    padding: 15px;
}

    .impHomeLinks li + li {
        margin-top: 8px;
    }

    .impHomeLinks li a {
        color: #222222;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.4s ease-in-out;
    }

        .impHomeLinks li a:hover {
            color: #204879;
        }

/* ===========================custom================= */


.Marquee {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em;
    color: #fff;
    font-weight: 200;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.Marquee-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-animation: marquee 25s linear infinite running;
    -moz-animation: marquee 25s linear infinite running;
    -o-animation: marquee 25s linear infinite running;
    -ms-animation: marquee 25s linear infinite running;
    animation: marquee 25s linear infinite running;
}

    .Marquee-content:hover {
        -webkit-animation-play-state: paused;
        -moz-animation-play-state: paused;
        -o-animation-play-state: paused;
        -ms-animation-play-state: paused;
        animation-play-state: paused;
    }

.Marquee-tag {
    width: 300px;
    margin: 0 0.5em;
    padding: 0.5em;
    background: #ffffff;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid lightgray;
}

    .Marquee-tag:hover {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        cursor: pointer;
    }

@-moz-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@-o-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

footer#footer {
    padding: 40px 0 0 0;
    background-color: #e24f2d;
    color: #ffffff;
}

.right_inner.embaddresscontent.tabHCI h4,
.footer-links h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.right_inner.embaddresscontent.tabHCI p {
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #fff;
    font-size: 16px;
    font-family: "Montserrat", serif;
}

.copyright {
    padding: 10px 0;
    border-top: 1px solid #ffffff6e;
    background: #02164f;
}

.container.footer-top {
    margin-bottom: 10px;
}

.footer-top .logo {
    padding: 10px;
    width: fit-content;
    margin: auto;
}

.footer-links {
}

.copyright p {
    margin: 0;
    font-size: 14px;
}

.dropdown ul li:hover a {
    border-radius: 0;
}

.inner_breadcrumb {
    background: #ffffff;
    position: relative;
    margin: 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

    .inner_breadcrumb .breadcrumb li {
        font-weight: 500;
        color: #eee;
        float: left;
        display: inline-block;
        line-height: 40px;
    }

        .inner_breadcrumb .breadcrumb li a {
            color: #41a5e0;
        }

        .inner_breadcrumb .breadcrumb li.active {
            color: #07222e;
        }

        .inner_breadcrumb .breadcrumb li + li:before {
            content: "/";
            float: left;
            padding: 0px 10px;
            color: #07222e;
        }

section.heading_banner {
    padding: 40px 0 40px 0;
    background-color: #41a5e0;
}

    section.heading_banner h1 {
        font-size: 30px;
        color: #ffffff;
        margin: 0;
        font-weight: 600;
    }

ul.breadcrumb {
    margin: 0;
    padding: 0;
}


/* ==============popup-form============ */


.form-wrapper input,
.form-wrapper input:focus {
    border: none;
    outline: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0px 25px;
    height: 45px;
    box-shadow: none;
}



.form-wrapper button {
    border: none;
    outline: none;
    box-shadow: none;
    text-align: center;
    width: 45px;
    line-height: 45px;
    height: 45px;
    font-size: 22px;
    display: block;
    color: #000000;
    background-color: transparent;
    padding-right: 15px;
}


.offcanvas.offcanvas-top {
    z-index: 999999;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.post-box {
    height: 400px;
    overflow: auto;
}


.logo-img p {
    font-size: 26px;
    font-weight: 700;
    padding: 0 15px;
    color: #07222e;
}

.recent_wrapper {
    /* background-color: #ffffff; */
}

    .recent_wrapper ul {
        /* height: 250px; */
        columns: 2;
    }

        .recent_wrapper ul li {
            border-bottom: 1px dashed #ccc;
            padding: 10px 0;
        }

        .recent_wrapper ul li {
            display: flex;
        }

            .recent_wrapper ul li .recent_img {
                margin-right: 10px;
                flex-shrink: 0;
            }

                .recent_wrapper ul li .recent_img img {
                    width: 110px;
                }

            .recent_wrapper ul li a {
                color: #222222;
                font-weight: 500;
                font-size: 15px;
            }


            .recent_wrapper ul li span {
                display: block;
                font-size: 13px;
                margin-top: 5px;
            }

    .recent_wrapper .whats_link_page a {
        color: #07222e;
    }

.recentupdate-nav {
    background: #07222e;
    height: 100%;
    width: 350px;
    margin-right: 30px;
    border-radius: 10px;
}

    .recentupdate-nav.nav-pills .nav-link.active {
        background-color: #41a5e0;
        color: #ffffff;
    }

    .recentupdate-nav.nav-pills .nav-link {
        outline: none;
        border-bottom: 1px solid #ffffff;
        padding: 47px 4px;
        font-size: 20.6px;
        display: block;
        color: #ffffff;
        border-radius: 0;
        position: relative;
        background: #07222e;
    }

        .recentupdate-nav.nav-pills .nav-link.active::before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-top: 12px solid #41a5e0;
            top: 50%;
            right: -10px;
            margin: auto;
            transform: translateY(-50%) rotate(-210deg);
        }


.twitter-tweet.twitter-tweet-rendered {
    margin: 0 !important;
}

.heading-box h3 img {
    width: 50px;
    margin-right: 20px;
}

.heading-box h3 {
    font-weight: 600;
}

.logo_wrap {
    box-shadow: 0px 0px 3px gray;
    margin: 5px 10px;
    padding: 10px 30px;
    background-color: #ffffff;
    border-radius: 10px;
}

.Initiatives-section {
    background: url(../img/inibg.svg) no-repeat;
    background-size: cover;
}

.initiatives-text h3 {
    font-size: 35px;
    font-weight: 600;
}


section.Initiatives-section button.owl-dot {
    background: #41a5e0;
    padding: 5px !important;
    border-radius: 50%;
    margin: 5px;
}

    section.Initiatives-section button.owl-dot.active {
        padding: 5px 20px !important;
        border-radius: 30px;
        background: #07222e;
    }

.Initiatives-section .owl-dots {
    text-align: center;
}

.footer-about p span {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-top: 0px;
}

.footer-about a {
    padding: 10px;
    background: transparent;
}


.loginbtn + .loginbtn {
    margin-left: 15px;
}

.loginbtn a {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    background-color: #07222e;
    text-align: center;
    line-height: 20px;
}

/* ==============popup-form============ */

@media (max-width:1300px) {
    .about-img img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }
}


.post_content h4 {
    font-size: 18px;
    color: #07222e;
    font-weight: bold;
    margin: 0;
}

.post_content h2 {
    color: #41a5e0;
    font-weight: 500;
    font-size: 25px;
    line-height: 32px;
}

.event_posts {
    padding: 12.5px;
    background: #fff;
    box-shadow: 0px 0px 8px lightgray;
}

.postallnew a {
    color: #41a5e0;
    font-weight: 500;
}

.post_content {
    margin-top: 10px;
}

    .post_content h6 {
        font-size: 14px;
        color: #41a5e0;
        font-weight: 400;
    }

    .post_content p {
        font-size: 15px;
        color: #222222;
    }

.posts_img img {
    aspect-ratio: 3/3;
    object-fit: cover;
}

.post_img img {
    aspect-ratio: 3/2;
}

.formbox {
    border-left: 1px solid #07222e42;
    padding: 20px;
}

section.services_section,
section.event-section {
    background: url(../img/inibg.svg) no-repeat;
    background-size: cover;
}

.services_ {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 4px lightgray;
}

    .services_ img {
        margin: auto;
    }

.govlogo {
    margin-right: 15px;
}

    .govlogo img {
        max-width: 100px;
    }

#menuLeft li a {
    background: url(../img/bullet-list-icon.png) left 1em no-repeat;
    color: #515151;
    display: block;
    line-height: 1.583em;
    padding: 8px 0 8px 15px;
    text-decoration: none;
}

#menuLeft li {
    display: block;
    width: 100%;
    border-bottom: 1px dotted #dbdbdb;
}

.innerContentPart .rightPart {
    padding: 30px 0 30px 20px;
    font-size: 1.250em;
}

.rightPart .menuTitle h3 {
    font-size: 36px;
    line-height: 1.228em;
    font-weight: 600;
    color: #000;
    display: block;
    margin: 10px 0;
}

ul#menuLeft {
    padding: 15px;
    box-shadow: 0px 0px 5px #2966ad5e;
    border-radius: 15px;
    background: #ffffff;
}

span.menuTitle h3 {
    font-size: 32px;
    color: #204879;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 18px;
}

div#ContentPlaceHolder1_UserLeftMiddleMenu1_LeftMenu {
    position: sticky;
    top: 50px;
}

.recentupdate-nav.nav-pills .nav-link:nth-child(1) {
    border-radius: 10px 10px 0 0;
}

.recentupdate-nav.nav-pills .nav-link:nth-child(3) {
    border-radius: 0 0 10px 10px;
}

.top-header {
    padding: 5px 0;
    background-color: #ffffff;
}

.form-wrapper form {
    border-bottom: 1px solid lightgray;
    border-radius: 0;
    width: 75%;
    margin: auto;
}

.form-wrapper input,
.form-wrapper input:focus {
    border: none;
    outline: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0px 25px 0 0;
    height: 60px;
    box-shadow: none;
    font-size: 40px;
    font-family: 'Montserrat';
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 0;
    color: #fff;
}

    .form-wrapper input::placeholder {
        color: #ffffff
    }

.form-wrapper button {
    border: none;
    outline: none;
    box-shadow: none;
    text-align: center;
    width: 160px;
    line-height: 45px;
    height: 45px;
    font-size: 22px;
    display: block;
    color: #ffffff;
    background-color: transparent;
    padding-right: 15px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.header .social-links a {
    color: #ffffff;
    transition: 0.3s;
    line-height: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    margin-left: 10px;
}

.instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.header .social-links a.twitter {
    background-color: #000000 !important;
}

.theme-change {
    padding: 0 5px;
    border-left: 1px solid #02164f;
    padding-left: 0;
    height: 18px;
}

.font-adjust {
    padding: 0 5px;
    border-right: 1px solid #02164f;
    line-height: 1;
}

.news-lang {
    padding: 0 5px;
}

.topnav-list {
    padding: 0 5px;
}

.sidebtn-box {
    position: fixed;
    bottom: 20px;
    right: 0;
    transform: translateY(-50%);
    z-index: 99999;
}

    .sidebtn-box img {
        max-width: 100px;
    }

.announcment-section {
    background: #114e85;
    height: 47px;
    display: flex;
    align-items: center;
    width: 100%;
}

.announcment-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

    .announcment-wrapper .a_leftText {
        padding-right: 30px;
    }

    .announcment-wrapper .a_leftText,
    .announcment-wrapper .a_rightText {
        color: #ffffff;
        font-size: 1.6rem;
        line-height: 28px;
        font-weight: 500;
        height: 47px;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

        .announcment-wrapper .a_leftText:before {
            content: "";
            height: 55px;
            border-left: 22px solid #ffffff;
            position: absolute;
            transform: rotate(22deg);
            right: -9px;
            top: 0;
        }

        .announcment-wrapper .a_leftText:after {
            content: "";
            height: 54px;
            border-left: 8px solid #162f6a;
            position: absolute;
            transform: rotate(20deg);
            right: 8px;
            top: -5px;
        }

.announcment-section {
    background: #00a554;
    height: 47px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

.announcment-wrapper .a_rightText:before {
    content: "";
    height: 55px;
    border-left: 22px solid #ffffff;
    position: absolute;
    transform: rotate(22deg);
    left: -9px;
    top: -5px;
}

.announcment-wrapper .a_rightText:after {
    content: "";
    height: 54px;
    border-left: 8px solid #162f6a;
    position: absolute;
    transform: rotate(20deg);
    left: 8px;
    top: -3px;
}

.lending_announce_dtls {
    overflow: hidden;
    background: #ffffff;
    height: 47px;
    display: flex;
    align-items: center;
    width: calc(100% - 260px);
    color: #000000;
}

.announcment-wrapper .a_rightText {
    padding-left: 30px;
    color: transparent;
}

.newscontainer {
    position: relative;
    padding: 30px;
    background-color: #ffffff;
    z-index: 1;
    overflow: hidden;
    border: 1px solid lightgray;
}

    .newscontainer::before {
        position: absolute;
        top: 0;
        left: -130px;
        content: "";
        height: 100%;
        width: 30%;
        background-color: #162f6a;
        z-index: -1;
        transform: skewX(-15deg);
    }

.newlist-wrapper {
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #b6b6b6;
    border-bottom: 5px solid #00a554;
}

.news-text p {
    font-size: 20px;
    color: #162f6a;
    font-weight: bold;
}

.news-text {
    margin-bottom: 10px;
}

.newsdate span {
    color: #162f6a;
    position: relative;
    font-size: 24px;
    font-weight: 600;
}

    .newsdate span sup {
        font-size: 16px;
        font-weight: 500;
        left: 0px;
        top: -0.7em;
    }

        .newsdate span sup::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -95px;
            height: 2px;
            width: 90px;
            background: #b6b6b6;
        }

.newsdate p {
    font-size: 20px;
    font-weight: 600;
    color: #162f6a;
}

.newsbtn a {
    background-color: #162f6a;
    padding: 10px 12px;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
    border-radius: 10px;
    border-bottom: 4px solid #00a554;
    display: inline-block;
    line-height: 1;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

    .newsbtn a::before {
        content: '';
        position: absolute;
        bottom: auto;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        z-index: -1;
        transition: all 0.4s ease-in-out;
        background-color: #00a554;
    }

    .newsbtn a:hover::before {
        height: 100%;
        top: auto;
        bottom: 0;
    }

.newsbtn {
    margin-top: 10px;
}

.headingbox {
    margin-top: 15px;
}

    .headingbox h2 {
        color: #ffffff;
        font-weight: 600;
        text-align: center;
    }

.newsicon-img img {
    margin: auto;
}

.news-headingbox {
    padding: 15px;
}



.news-section button.owl-prev,
.news-section button.owl-next {
    position: absolute;
    top: 50%;
    width: 35px;
    height: 35px;
    background: #ffffff !important;
    border-radius: 50%;
    border: 1px solid #b6b6b6 !important;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    color: #162f6a !important;
}



.news-section button.owl-prev {
    left: -20px;
}

    .news-section button.owl-prev:hover,
    .news-section button.owl-next:hover {
        background: #00a554 !important;
        color: #fff !important;
    }

.news-section button.owl-next {
    right: -20px;
}

.chairmen-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .chairmen-links a {
        border: 1px solid #ffffff;
        font-size: 13px;
        color: #fff;
        display: inline-block;
        padding: 5px;
    }

.chairmenbox {
    text-align: center;
}

.chairmen-img img {
    margin: auto;
    background: #ffffff;
    border-radius: 50%;
    width: 85px;
    height: 85px;
    object-fit: contain;
    border: 5px solid #162f6a;
}

.chairmenbox {
    padding: 30px 24px;
    height: 100%;
    background: linear-gradient(90deg, #162f6a, #00a554);
}

.chairmenttext h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.chairmenttext p {
    color: #ffffff;
    font-weight: 500;
}

.chairmenttext {
    margin-top: 20px;
}

.about-section {
    background: linear-gradient(90deg, #162f6a, #00a554);
    padding: 50px 0;
}

.about-wrapper p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
}

.about-wrapper h1 {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-btn a {
    display: inline-block;
    padding: 10px 12px;
}

.photo-wrapper {
    position: relative;
}

.gallery-wrapper .nav-pills .nav-link.active {
    background: #00a554;
    color: #ffffff;
}

.gallery-wrapper .nav-pills .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #162f6a;
    border-radius: 0;
}

.gallery-wrapper .nav.nav-pills {
    border-bottom: 2px solid #162f6a;
}

.gallery-img img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.photo-wrapper button.owl-prev,
.photo-wrapper button.owl-next {
    position: absolute;
    top: -17%;
    right: 50px;
    width: 35px;
    height: 35px;
    background: #ffffff !important;
    border-radius: 50%;
    border: 1px solid #b6b6b6 !important;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    color: #162f6a !important;
}

.photo-wrapper button.owl-prev {
    right: 90px;
}

.photo-wrapper .play-pause {
    top: -24%;
    right: 5px;
    border-color: #9E9E9E;
    color: #162f6a;
    bottom: auto;
    height: 35px;
    width: 35px;
    line-height: 34px;
}

.viewbox {
    margin-right: 140px;
}

    .viewbox a {
        color: #162f6a;
        font-weight: 600;
        font-size: 15px
    }

.gallery-box {
    border: 1px solid #d6d6d6;
    height: 100%;
    margin: 5px;
}

.gallery-text p {
    color: #222222;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}

.gallery-text {
    padding: 10px;
    /* height: 90px; */
}

.pdf-wrapper img {
    height: 183px;
    object-fit: contain;
    box-shadow: 0px 0px 10px #c5c5c5;
    width: auto !important;
    aspect-ratio: auto;
    margin: auto;
    padding: 9px;
}

.footer-links ul li + li {
    border-top: 1px dashed #ffffff;
    margin: 4px 0;
    padding: 4px 0;
}

.font-adjust ul li + li {
    margin-left: 8px;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
}

.gallery-text span {
    color: #222222;
    font-size: 14px;
    font-weight: 500;
}

.sec-title h6 {
    color: #222222;
    font-weight: 600;
}

.sec-title h2 {
    margin-top: 15px;
    font-size: 34px;
    font-weight: bold;
    color: #00a553;
}

.sec-title p {
    color: #162f6a;
    font-weight: 500;
    font-size: 17px;
    width: 80%;
    line-height: 28px;
}

.gallery-img {
    position: relative;
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



section.calculatore-section {
    position: relative;
}

    section.calculatore-section::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 7px;
        width: 100%;
        background: linear-gradient(45deg, #162f6a, #00a553);
    }

.headermenus {
    width: 75%;
}

.dropinner {
    position: absolute;
    top: 100px;
    left: 0;
    background-color: #ffffff;
    padding: 10px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 9;
}

.dropdown:hover .dropinner {
    opacity: 1;
    visibility: visible;
    top: 50px;
}

.bannerlayer {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
}

video {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
}

.header.header-hover {
    background: #ffffff;
}

.navmenu .dropdown > a {
    position: relative;
}

    .navmenu .dropdown > a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: auto;
        right: 0;
        height: 3px;
        width: 0%;
        transition: all 0.4s ease-in-out;
        background: #f37022;
    }

    .navmenu .dropdown > a:hover::before {
        width: 100%;
        right: auto;
        left: 0;
    }

.header-wrapper {
    border-bottom: 1px solid #555;
    width: 75%;
    margin-left: auto;
    padding: 5px 0;
}

.bannertext p {
    color: #6d6e71;
    font-size: 15px;
    margin-top: 15px;
}

/* 12. hover-border-2 */
.pagelinks.hover-border-2::before,
.pagelinks.hover-border-2::after {
    position: absolute;
    content: "";
    width: 10%;
    height: 25%;
    transition: 0.35s;
}

.pagelinks.hover-border-2::before {
    bottom: 0;
    left: 0;
    border-left: 1px solid rgb(2 22 79);
    border-bottom: 1px solid rgb(2 22 79);
}

.pagelinks.hover-border-2::after {
    top: 0;
    right: 0;
    border-right: 1px solid rgb(2 22 79);
    border-top: 1px solid rgb(2 22 79);
}

.pagelinks.hover-border-2:hover::before,
.pagelinks.hover-border-2:hover::after {
    width: 99%;
    height: 99%;
}


.pagelinks-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 10px auto 35px;
}

.pagelinks {
    position: relative;
    display: inline-block !important;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0;
    min-width: 150px;
    color: #02164f !important;
    text-align: center;
}

    .pagelinks span {
        position: relative;
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: capitalize;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        transition: 0.3s;
    }

.aboutpage {
    padding: 0 20px;
    border-right: 1px solid #6d6e71;
}

.business-box {
    text-align: center;
    position: relative;
}

    .business-box::before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: auto;
        right: 0;
        height: 5px;
        width: 0%;
        background: #e98247;
        transition: all 0.4s ease-in-out;
    }

    .business-box:hover::before {
        width: 100%;
        right: auto;
        left: 0;
    }

.business-wrapper {
    display: flex;
    justify-content: space-around;
}

.business-img img {
    margin: auto;
    height: 70px;
}

.business-text span {
    width: 35px;
    height: 35px;
    display: inline-block;
    border: 1px solid #e98247;
    line-height: 35px;
    border-radius: 50%;
    color: #e98247;
    transition: all 0.4s ease-in-out;
}

.business-box:hover .business-text span {
    background: #e98247;
    color: #ffffff;
}

.business-text h5 {
    font-size: 18px;
    font-weight: 400;
    height: 50px;
    margin-top: 10px;
}

.business-heading {
    margin-bottom: 30px;
    position: relative;
}

    .business-heading h3 {
        font-size: 40px;
        color: #02164f;
        position: relative;
        display: inline-block;
    }

        .business-heading h3::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -100%;
            height: 2px;
            width: 170px;
            background: #02164f85;
            transform: translateY(-50%);
        }

        .business-heading h3::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -100%;
            height: 2px;
            width: 170px;
            background: #02164f85;
            transform: translateY(-50%);
        }

section.business-section {
    padding: 50px 0;
    background: #fce2d8;
    position: relative;
    padding-bottom: 150px;
}

.header.fixed .container-fluid.topheader {
    display: none;
}

.container-fluid.topheader,
.navheader {
    transition: all 0.4s ease-in-out;
}

.header.fixed .navheader {
    align-items: center !important;
}

.report-section .business-heading h3::before {
    left: -60%;
}

.report-section .business-heading h3::after {
    right: -60%;
}

.set > a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    border-bottom: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 50px;
    height: 50px;
    background: #02164f;
    text-align: center;
    position: absolute;
    top: -75px;
    right: 180px;
    line-height: 50px;
    border-radius: 50%;
    z-index: 9999;
}

.set {
    position: relative;
    height: auto;
    background-color: #204879;
}

.accordion-container {
    position: relative;
    height: auto;
    margin: 10px auto;
    background: #204879;
}

.report-wrapper img {
    margin: auto;
    width: 100%;
}

.content {
    display: none;
    background: #e24f2d;
    transition: all 0.4s ease-in-out;
}

.searchModule--popular {
    padding: 40px 0;
    width: 75%;
    margin: auto;
}

    .searchModule--popular h4 {
        margin-bottom: 20px;
        color: #e24f2d;
    }

.searchModule--popular-item:not(:last-child) {
    margin-right: 40px;
}

.searchModule--popular-item a {
    line-height: 2rem;
    font-size: 1.05rem;
    color: #e5e5e5;
    font-family: 'Montserrat';
    transition: all 0.4s ease-in-out;
    position: relative;
}

    .searchModule--popular-item a::before {
        content: '';
        position: absolute;
        left: auto;
        right: 0;
        bottom: -5px;
        width: 0;
        height: 3px;
        background: #e24f2d;
        transition: all 0.4s ease-in-out;
    }

    .searchModule--popular-item a:hover {
        color: #e24f2d;
    }

        .searchModule--popular-item a:hover::before {
            width: 100%;
            left: 0;
            right: auto
        }

.businessbottom-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

    .businessbottom-box img {
        width: 100%;
    }

.businesstext {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

    .businesstext img {
        width: 70px !important;
        margin: auto;
    }

    .businesstext h3 {
        color: #ffffff;
        margin-top: 10px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        font-size: 24px;
        text-shadow: -1px 2px #4a4a4a;
    }

.business-carousel .owl-stage .owl-item:nth-child(even) .item {
    margin-top: 50px;
}

section.bannersection .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 40px;
    left: 50%;
}

    section.bannersection .owl-dots button.owl-dot {
        padding: 8px !important;
        background: #ec691f !important;
        margin: 0 5px;
        border-radius: 50%;
    }

        section.bannersection .owl-dots button.owl-dot.active {
            background: #212a4f !important;
        }

section.bannersection .owl-nav button.owl-prev,
section.bannersection .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    font-size: 24px;
    color: #212a4f;
    background: #ffffff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    transform: translateY(-50%);
}

section.bannersection .owl-nav button.owl-prev {
    left: 45px;
}

section.bannersection .owl-nav button.owl-next {
    right: 45px;
}

    section.bannersection .owl-nav button.owl-prev:hover,
    section.bannersection .owl-nav button.owl-next:hover {
        background: #ec691f;
        color: #ffffff;
    }

.businessimg > img {
    transition: all 1.5s ease-in-out;
    border-radius: 15px;
}

.businessimg,
.business {
    /* overflow: hidden; */
}

.socialmedia {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
}

    .socialmedia li {
        position: relative;
        width: 53px;
        height: 53px;
        display: block;
        margin: 0;
        padding: 0;
        cursor: pointer;
        color: #fff;
    }

        .socialmedia li .mystickyelements-social-icon {
            width: 53px;
            height: 53px;
            color: #fff;
            float: left;
            position: relative;
            text-align: center;
            font-size: 17px;
            -webkit-transition: .5s;
            -moz-transition: .5s;
            transition: .5s;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 1.2;
            flex-wrap: wrap;
            text-decoration: none;
        }

        .socialmedia li:nth-child(1) .mystickyelements-social-icon {
            border-radius: 10px 0 0;
        }

        .socialmedia li:nth-child(4) .mystickyelements-social-icon {
            border-radius: 0 0 0 10px;
        }


        .socialmedia li .mystickyelements-social-text {
            border-radius: 10px 0 0 10px;
            color: #fff;
            font-size: 14px;
            line-height: 1.2;
            position: absolute;
            top: 0;
            left: 100%;
            height: 53px;
            white-space: nowrap;
            -webkit-transform: rotateY(90deg);
            -moz-transform: rotateY(90deg);
            transform: rotateY(90deg);
            -webkit-transform-origin: 0 0 0;
            -moz-transform-origin: 0 0 0;
            transform-origin: 0 0 0;
            -webkit-transition: .5s;
            -moz-transition: .5s;
            transition: 1s;
            transform-origin: 100% 0 0;
        }

            .socialmedia li .mystickyelements-social-text.wigidst {
                border-radius: 10px 0 0 10px;
                color: #fff;
                font-size: 14px;
                line-height: 1.2;
                position: absolute;
                top: 0;
                left: 100%;
                height: auto;
                white-space: nowrap;
                -webkit-transform: rotateY(90deg);
                -moz-transform: rotateY(90deg);
                transform: rotateY(90deg);
                -webkit-transform-origin: 0 0 0;
                -moz-transform-origin: 0 0 0;
                transform-origin: 0 0 0;
                -webkit-transition: .5s;
                -moz-transition: .5s;
                transition: 1s;
                transform-origin: 100% 0 0;
                width: 300px;
            }

            .socialmedia li .mystickyelements-social-text > a {
                color: #fff;
                text-decoration: none;
                display: inline-block;
                vertical-align: top;
                min-width: 137px;
                height: 100%;
                padding-top: 19px;
                padding-right: 19px;
                padding-left: 19px;
                text-align: center;
                font-size: 15px;
            }

        .socialmedia li:hover .mystickyelements-social-text {
            transform: rotate(0);
            left: auto;
            right: 100%;
        }

        .socialmedia li:hover .mystickyelements-social-icon {
            border-radius: 0;
        }

.mystickyelements-social-icon.instagram {
    background: linear-gradient(135deg, #582bcd 0, #ed4c33 50%, #f7d36f 100%);
}

span.mystickyelements-social-icon a {
    color: #ffffff;
}

.searchtop-padd {
    padding-top: 10%;
}

.business {
    position: relative;
    transform-style: preserve-3d;
    perspective: 2000px;
}

.fliptext-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #212a4f;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    /*-180deg to flip direction*/
    transition: transform 1s;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    border-radius: 15px;
    padding: 10px;
}

.firstcard {
    transition: transform 1s;
}

.business:hover .firstcard {
    transform: rotateY(-180deg);
}

.business:hover .fliptext-wrapper {
    transform: rotateY(0deg);
}

.fliptext-wrapper p {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.read_more_1 {
    border: 2px solid #ec691f;
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: .1em;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    padding: 7px 20px 7px 20px;
    transition: .8s ease;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}



    .read_more_1:hover {
        border: solid 1px #ec691f;
        color: #fff;
    }

    .read_more_1 a {
        color: #ffffff;
    }

    .read_more_1 span {
        position: absolute;
        width: 25%;
        height: 100%;
        background-color: #ec691f;
        transform: translateY(150%);
        border-radius: 50%;
        transition: 1s;
        z-index: -1
    }


    .read_more_1:hover span {
        transform: translateY(0) scale(3.15)
    }

    .read_more_1 span:first-child {
        left: calc((1 - 1) * 25%);
        transition-delay: calc((1 - 1) * 0.1s)
    }

    .read_more_1 span:nth-child(2) {
        left: calc((2 - 1) * 25%);
        transition-delay: calc((2 - 1) * 0.1s)
    }

    .read_more_1 span:nth-child(3) {
        left: calc((3 - 1) * 25%);
        transition-delay: calc((3 - 1) * 0.1s)
    }

    .read_more_1 span:nth-child(4) {
        left: calc((4 - 1) * 25%);
        transition-delay: calc((4 - 1) * 0.1s)
    }

    .read_more_1 span:nth-child(5) {
        left: calc((5 - 1) * 25%);
        transition-delay: calc((5 - 1) * 0.1s)
    }

.fliptext-wrapper h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
}

button.btn-close.text-reset,
button.btn-close.text-reset:focus {
    color: #ffffff !important;
    opacity: 1;
    background: no-repeat;
    font-size: 20px;
    padding-right: 50px;
    padding-top: 50px;
    box-shadow: none;
    outline: none;
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

.accordion-body {
    display: none;
}

.card {
    margin-bottom: 0;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-body {
    padding: 0 15px;
    box-shadow: none;
    border-bottom: 2px solid #f06a1e;
}

.accordion-header {
    margin-bottom: 0;
    font-size: 18px;
    padding: 15px 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-body ul li + li {
    margin-top: 20px;
}

.accordion-body ul li a {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.document-section {
    background: #eee;
    padding: 50px 0;
}

.container-px-0 [class*='container'] {
    padding-left: 0;
    padding-right: 0;
}

.c-gutter-0 [class*="col-"],
.row.c-gutter-0 > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.service-v2 [class*="col-"]:nth-child(1) .service-single.with-icon.layout2 {
    background: rgb(1 38 90 / 90%);
}

.service-single.with-icon.layout2 {
    overflow: auto;
    padding: 55px;
    position: static;
    transition: none;
    height: 100%;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

    .service-single.with-icon.layout2:hover {
        background: linear-gradient(to top, #dd4454 0%, #dd9044 100%) !important;
    }

.ds a:not(.btn) {
    color: #fff;
}

.icon-box p {
    margin: 20px auto 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-single.with-icon.layout2 a.btn {
    border-radius: 50%;
    margin-top: 28px;
    min-width: 40px;
    border: 1px solid #ffff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    padding: 0;
}

.ds [class*="btn-outline-"] {
    color: #fff;
}

.service-single.with-icon.layout2 h6,
.service-single.with-icon.layout2 h5 {
    margin-bottom: 20px;
    margin-top: 20px;
    padding-bottom: 25px;
    position: relative;
    color: #fff;
}

.ds {
    background-color: #09445a;
    color: #fff;
    padding: 0;
    margin-bottom: 40px;
}

.icon-styled.fs-50 {
    width: 60px;
    display: block;
    margin: auto;
}



.service-single.with-icon.layout2:hover .icon-styled.fs-50 img {
    filter: brightness(0) invert(1);
}

.service-single.with-icon.layout2 h6:after,
.service-single.with-icon.layout2 h5:after {
    background: #dd4454;
    bottom: 0;
    content: "";
    display: inline-block;
    height: 2px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50px;
}

.service-v2 [class*="col-"]:nth-child(2) .service-single.with-icon.layout2 {
    background: rgb(1 38 90 / 80%);
}

.service-v2 [class*="col-"]:nth-child(3) .service-single.with-icon.layout2 {
    background: rgb(1 38 90 / 60%);
}

.service-v2 [class*="col-"]:nth-child(4) .service-single.with-icon.layout2 {
    background: rgb(1 38 90 / 40%);
}

.service-v2 [class*="col-"]:nth-child(5) .service-single.with-icon.layout2 {
    background: rgb(1 38 90 / 30%);
}

.service-v2 [class*="col-"]:nth-child(6) .service-single.with-icon.layout2 {
    background: rgb(1 38 90 / 10%);
}


.ls {
    clear: both;
    position: relative;
}

.cover-image {
    background-position: 50% 50%;
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
    background-size: cover;
    background-repeat: no-repeat;
}

    .cover-image.s-cover-left {
        width: 50%;
    }

.s-py-xl-160 > [class*='container'] {
    padding-bottom: 100px;
    padding-top: 100px;
}

.cover-image > img {
    visibility: hidden;
}

.content-center {
    margin: 0 auto;
    max-width: 650px;
}

.special-heading.numeric {
    position: relative;
}

.special-heading.numeric {
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(to top, #dd4454 0%, #dd9044 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Montserrat", serif;
    line-height: 60px;
}

.content-center p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #222;
}

.special-heading.numeric:before {
    left: 0;
}

.divider-45 {
    margin-top: 30px;
}

.cover-image.s-cover-right {
    left: auto;
    width: 50%;
}

a.clickbtn {
    padding: 10px 20px;
    background: linear-gradient(to top, #dd4454 0%, #dd9044 100%) !important;
    border-radius: 30px;
    outline: none;
    border: none;
    color: #ffff;
}

    a.clickbtn i {
        font-size: 12px;
    }

.funfact-section {
    position: relative;
    overflow: hidden;
    padding: 67px 0px 80px 0px;
    background-color: rgb(1 38 90 / 90%);
    margin-top: 40px;
}

    .funfact-section .big-text {
        position: absolute;
        left: 0px;
        bottom: -20px;
        width: 100%;
        text-align: center;
        font-size: 100px;
        line-height: 130px;
        font-family: 'Lexend', sans-serif;
        text-transform: uppercase;
        font-weight: 600;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: rgba(255, 255, 255, 0.10);
        letter-spacing: 5px;
    }

    .funfact-section .bg-layer .bg-1 {
        position: absolute;
        left: -40px;
        top: 0px;
        height: 100%;
        width: 382px;
        background-repeat: no-repeat;
        opacity: 0.1;
    }

    .funfact-section .bg-layer .bg-2 {
        position: absolute;
        top: 0px;
        right: 0px;
        height: 100%;
        width: 334px;
        background-repeat: no-repeat;
        opacity: 0.1;
    }

.stats .stats-item {
    padding: 10px 30px;
    width: 100%;
}

    .stats .stats-item span {
        font-size: 55px;
        display: block;
        color: #ffffff;
        font-weight: 700;
    }

.icontext {
    margin-left: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.stats .stats-item p {
    color: #ffffff;
    padding: 0;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}


.Marquee {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em;
    color: #fff;
    font-weight: 200;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.Marquee-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-animation: marquee 25s linear infinite running;
    -moz-animation: marquee 25s linear infinite running;
    -o-animation: marquee 25s linear infinite running;
    -ms-animation: marquee 25s linear infinite running;
    animation: marquee 25s linear infinite running;
}

    .Marquee-content:hover {
        -webkit-animation-play-state: paused;
        -moz-animation-play-state: paused;
        -o-animation-play-state: paused;
        -ms-animation-play-state: paused;
        animation-play-state: paused;
    }

.Marquee-tag {
    width: 300px;
    margin: 0 0.5em;
    padding: 0.5em;
    background: #ffffff;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid lightgray;
}

    .Marquee-tag:hover {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        cursor: pointer;
    }

@-moz-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@-o-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

.siteFooter {
    padding: 40px 0;
    border-top: 3px solid #003366;
    background: linear-gradient(rgb(0 51 102 / 16%) 0, rgb(36 45 82 / 0%) 51%, #ffffff);
    padding-bottom: 0;
}

footer.siteFooter h4 {
    font-size: 26px;
    color: #003366;
    font-weight: 600;
}

.info-lists,
ul.footerlinks {
    columns: 2;
}

    ul.footerlinks li a {
        color: #222222;
        font-size: 15px;
        font-weight: 500;
        padding-top: 4px;
        display: inline-block;
        font-family: "Montserrat", serif;
    }

.footer-about p {
    font-weight: 500;
    color: #222;
    font-size: 16px;
}

.footer-bottom p {
    color: #222;
    font-weight: 500;
    margin-top: 10px;
}

.fliptext-wrapper ul {
    padding-left: 15px;
}

    .fliptext-wrapper ul li + li {
        margin-top: 2px;
    }

    .fliptext-wrapper ul li a {
        color: #ffffff;
        font-size: 14px;
        transition: all 0.4s ease-in-out;
    }

        .fliptext-wrapper ul li a:hover {
            color: #ec691f;
        }



.oil-timeline {
    padding: 66px 0;
    background: #fff;
}

.timeline-grid {
    display: flex;
    /* gap: 90px; */
}

.timeline-left {
    width: 50%;
}

    .timeline-left h2 {
        font-size: 52px;
        line-height: 1.1;
        margin-bottom: 30px;
    }

.year-badge {
    color: #f05833;
    font-weight: 700;
    font-size: 22px;
}

.timeline-left p {
    color: #444;
    margin: 12px 0 15px;
    max-width: 420px;
}

.timeline-left a {
    color: #f05833;
    font-weight: 600;
    text-decoration: none;
}

.oilTimelineSwiper {
    height: 150px;
}

/* Navigation */
.timeline-nav button {
    border: 1px solid #f05833;
    background: transparent;
    color: #f05833;
    padding: 8px 14px;
    margin-right: 8px;
    cursor: pointer;
}

/* RIGHT SIDE */
.timeline-right {
    width: 30%;
    position: relative;
}

.timeline-rail {
    position: relative;
    padding-left: 30px;
}

    .timeline-rail::before {
        content: "";
        position: absolute;
        left: 34%;
        top: 0;
        height: 2px;
        width: 100%;
        background: #d1d1d1;
    }

.swiper-wrapper {
    position: relative;
    margin-bottom: 60px;
    cursor: pointer;
    color: #555;
}


#playPauseBtn {
    border: 1px solid #f05833;
    background: transparent;
    color: #f05833;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
}

    #playPauseBtn.play::after {
        content: " Play";
    }

.timeline-right {
    /* width: 100px; */
    position: relative;
}

.yearSwiper {
    /* height: calc(500px - 80px); */
}

    .yearSwiper .swiper-slide {
        color: #666;
        font-weight: 600;
        cursor: pointer;
        position: relative;
        padding-left: 25px;
    }

        .yearSwiper .swiper-slide::before {
            content: "";
            width: 10px;
            height: 10px;
            background: #bbb;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 6px;
        }

    .yearSwiper .swiper-slide-thumb-active {
        color: #f05833;
    }

        .yearSwiper .swiper-slide-thumb-active::before {
            background: #f05833;
            box-shadow: 0 0 0 6px rgba(215, 25, 32, 0.18);
        }

.timeline-gridbox {
    display: flex;
    gap: 20px;
    width: 50%;
    padding: 50px 0 0 60px;
}

.changeimg img {
    max-width: 100%;
}

.changeimg {
    width: 50%;
}

.dropdown:hover .dropinner ul {
    opacity: 1;
    visibility: visible;
}

/* ==========================timeline-design===================== */
.inner-pages .container {
    padding-right: 0;
    max-width: 100%;
    padding-left: 9%;
}

.timeline-carousel .owl-nav {
    text-align: center;
}


    .timeline-carousel .owl-nav button {
        width: 50px;
        height: 50px;
        border: 2px solid #929292 !important;
        margin: 0 10px;
        border-radius: 50%;
        color: #929292 !important;
    }

.timline-img img {
    width: 89px !important;
    margin-right: auto;
    margin: 0;
}

.timline-img {
    position: relative;
    margin-bottom: 0;
    height: 200px;
    display: flex;
    align-items: end;
    padding: 25px 0;
}

    .timline-img::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 40%;
        height: 4px;
        background: #f35933;
    }

.timeline-wrapper {
    position: relative;
}

    .timeline-wrapper::before {
        content: '';
        position: absolute;
        top: 42.3%;
        left: 0;
        width: 100%;
        height: 4px;
        background: #e5e5e5;
        transform: translateY(-50%);
    }

.timline-content {
    height: 200px;
    padding: 25px 0;
}

.timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(even) .item .timeline-box .timline-content h2 {
    color: #01265a;
}

.timline-content h2 {
    font-size: 30px;
    color: #f35933;
}

.timline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #989898;
    line-height: 28px;
}

.timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(even) .item .timeline-box {
    flex-direction: column-reverse;
}

    .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(even) .item .timeline-box .timline-img::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 0;
        width: 40%;
        height: 4px;
        background: #002559;
    }

    .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(even) .item .timeline-box .timline-img {
        align-items: start;
    }

.timeline-box {
    display: flex;
    flex-direction: column;
    padding-right: 80px;
}

.timline-content p {
    font-weight: 500;
    color: #989898;
}

.timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(even) .item .timeline-box .timline-img i {
    font-size: 65px;
    color: #01265a;
}

.timeline-carousel .owl-stage-outer .owl-stage .owl-item .item .timeline-box .timline-img i {
    font-size: 65px;
    color: #f35933;
}

/* ==========================timeline-design===================== */

.Internal a {
    color: #222222;
}



/* High contrast mode */
.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

    .high-contrast a {
        color: #ffff00 !important;
        text-decoration: underline;
    }

    .high-contrast button,
    .high-contrast .theme-item {
        background-color: #000 !important;
        color: #fff !important;
        border: 1px solid #fff !important;
    }

.Internal a {
    color: #222222;
}


.page-title {
    background: url(../img/inner-banner.jpg) no-repeat left center;
    background-size: cover;
    padding: 70px 0;
}

    .page-title h2.title {
        margin: 0 0 25px;
        font-size: 50px;
        color: #fff;
        font-weight: bold;
        line-height: 1.26;
    }

.breadcrumbs {
    background: #f4f5f8;
    padding: 15px 0;
}

    .breadcrumbs span {
        padding-right: 15px;
    }

    .breadcrumbs span,
    .breadcrumbs a {
        font-size: 15px;
        color: #61656f;
        font-weight: bold;
        text-transform: uppercase;
    }

    .breadcrumbs i {
        padding-right: 15px;
        color: #bebebe;
    }

table.capital-structure {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #01265a;
}

    table.capital-structure th,
    table.capital-structure td {
        border: 1px solid #01265a !important;
        padding: 14px;
        font-size: 15px;
    }

    table.capital-structure thead th {
        background-color: #01265a !important;
        color: #ffffff !important;
        font-weight: 600;
        text-transform: uppercase;
    }

    table.capital-structure tbody td {
        background-color: #ffffff !important;
    }

    table.capital-structure tbody tr:nth-child(even) td {
        background-color: #fff3ee !important;
    }

    table.capital-structure tbody td.title {
        color: #01265a !important;
        font-weight: 600;
    }

    table.capital-structure tbody td.amount {
        font-weight: 600;
        text-align: left;
    }

table.shareholding-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #01265a;
}

    /* CELL BORDERS */
    table.shareholding-table th,
    table.shareholding-table td {
        border: 1px solid #9a9a9a !important;
        padding: 12px;
        font-size: 14px;
        vertical-align: top;
    }

    /* HEADER */
    table.shareholding-table thead th {
        background-color: #01265a !important;
        color: #ffffff !important;
        font-weight: 600;
        text-align: left;
    }

    /* BODY */
    table.shareholding-table tbody tr:nth-child(even) td {
        background-color: #f7f7f7 !important;
    }

    /* TOTAL ROW */
    table.shareholding-table tbody tr.total-row td {
        font-weight: 700;
        color: #01265a !important;
        background-color: #fff0ea !important;
    }

/* ALIGNMENTS */
.text-center-force {
    text-align: center !important;
}
.news-item {
    background: #f3f3f3;
    padding: 12px 16px;
    border-radius: 4px;
}

.news-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.news-title {
    color: #ff5722;
    text-decoration: none;
    font-weight: 500;
}

    .news-title:hover {
        text-decoration: underline;
    }