﻿/* # Font Family */
@font-face {
    font-family: 'suisse_intlregular';
    src: url('../fonts/suisse_intl_regular-webfont.woff2') format('woff2'), url('../fonts/suisse_intl_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'source_sans_proregular';
    src: url('../fonts/sourcesanspro-regular-webfont.woff2') format('woff2'), url('../fonts/sourcesanspro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'source_sans_probold';
    src: url('../fonts/sourcesanspro-bold-webfont.woff2') format('woff2'), url('../fonts/sourcesanspro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsblack';
    src: url('../fonts/poppins-black.woff2') format('woff2'), url('../fonts/poppins-black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsblack_italic';
    src: url('../fonts/poppins-blackitalic.woff2') format('woff2'), url('../fonts/poppins-blackitalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsbold';
    src: url('../fonts/poppins-bold.woff2') format('woff2'), url('../fonts/poppins-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsbold_italic';
    src: url('../fonts/poppins-bolditalic.woff2') format('woff2'), url('../fonts/poppins-bolditalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsextrabold';
    src: url('../fonts/poppins-extrabold.woff2') format('woff2'), url('../fonts/poppins-extrabold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsextrabold_italic';
    src: url('../fonts/poppins-extrabolditalic.woff2') format('woff2'), url('../fonts/poppins-extrabolditalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsextralight';
    src: url('../fonts/poppins-extralight.woff2') format('woff2'), url('../fonts/poppins-extralight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsextralight_italic';
    src: url('../fonts/poppins-extralightitalic.woff2') format('woff2'), url('../fonts/poppins-extralightitalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsitalic';
    src: url('../fonts/poppins-italic.woff2') format('woff2'), url('../fonts/poppins-italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinslight';
    src: url('../fonts/poppins-light.woff2') format('woff2'), url('../fonts/poppins-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinslight_italic';
    src: url('../fonts/poppins-lightitalic.woff2') format('woff2'), url('../fonts/poppins-lightitalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsmedium';
    src: url('../fonts/poppins-medium.woff2') format('woff2'), url('../fonts/poppins-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'montserratregular';
    src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2'), url('../fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserratmedium';
    src: url('../fonts/montserrat-medium-webfont.woff2') format('woff2'), url('../fonts/montserrat-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserratsemibold';
    src: url('../fonts/montserrat-semibold-webfont.woff2') format('woff2'), url('../fonts/montserrat-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserratblack';
    src: url('../fonts/montserrat-black.woff2') format('woff2'), url('../fonts/montserrat-black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

/* # Reset */
body {
    font-family: 'source_sans_proregular';
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    line-height: 1.5;
    color: #000;
    font-size: clamp(16px, 2vw, 20px);
}

a {
    text-decoration: none;
    color: #282728;
    cursor: pointer !important;
    outline: 0;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

    a:hover, a:focus {
        color: #c45506;
        text-decoration: none;
    }

    a:focus {
        outline: none;
    }

input:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
}

p {
    margin: 0 0 15px 0;
    line-height: 1.5;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-style: normal;
}

/* # Button */
.btn {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    transition: all .2s;
    font-family: 'EIL Sans';
    font-weight: bold;
    font-style: normal;
}

/* # Listing */
ul.list-default {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.list-default li {
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 15px;
    }

        ul.list-default li:before {
            position: absolute;
            top: 10px;
            margin: 0px 0 0 -15px;
            vertical-align: top;
            display: inline-block;
            content: "\f111";
            font-family: FontAwesome;
            color: #c45506;
            font-size: 7px;
        }

ol.list-number {
    margin: 0;
    padding: 0;
    list-style: decimal;
    margin-left: 15px;
}

    ol.list-number > li {
        margin: 0;
        padding-left: 10px;
        padding-bottom: 1rem;
    }

/* # Scroll Down */
.scroll-down-container {
    position: absolute;
    margin: auto;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 99;
    text-align: center;
}

    .scroll-down-container span {
        font-size: 10px;
        color: #ff4f1f;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
        text-transform: uppercase;
        font-weight: bold;
    }

/* # Scroll top button */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 995;
    background: #ff4e1e;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--color-white);
        line-height: 0;
    }

    .scroll-top:hover {
        background: rgba(var(--color-primary-rgb), 0.85);
        color: var(--color-white);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/* # Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* # Header */
.header {
    padding: 0px 0;
    transition: all 0.5s;
    z-index: 997;
    top: 0px;
    background: rgb(255 255 255 / 41%);
    border-radius: 0px;
}

    .header.sticked {
        box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
        margin-top: 0px;
        top: 0px;
        background: rgba(255, 255, 255, 1);
    }

    .header .logo img {
        padding: 10px 0px
    }

    .header .btn-language, .header .btn-language:focus {
        font-size: 16px;
        color: #fff;
        background-color: #a60800;
        padding: 8px 25px;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .btn-language:hover, .header .btn-language:focus:hover {
            color: #fff;
            background-color: #000;
        }

    .header .container {
        border-bottom: 1px solid #fff;
    }

.header-bg {
    background: rgba(5, 26, 107, 1);
}

@media (max-width: 1279px) {
    .header .logo {
        overflow: hidden;
        padding: 10px 0px 15px 0px;
    }

    .header {
        top: 0px;
    }

    .header {
        border-radius: 0px;
        max-width: 100%;
        background: rgba(255, 255, 255, 1);
    }

        .header .btn-language,
        .header .btn-language:focus {
            margin-right: 50px;
        }

        .header .search-form-navbar {
            margin-right: 60px;
            margin-top: 3px;
        }
}

/* # Desktop Navigation */
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
        position: relative;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            /*align-items: center;*/
        }

        .navbar li {
            position: relative;
        }

        .navbar > ul > li {
            white-space: nowrap;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 15px 15px;
            font-size: 15px;
            font-weight: 400;
            color: #000;
            white-space: normal;
            transition: 0.3s;
            position: relative;
            font-family: 'montserratmedium';
            text-transform: uppercase;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

        .navbar > ul > li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #c45506;
            visibility: hidden;
            transition: all 0.3s ease-in-out 0s;
            transform: scaleX(0);
            transition: all 0.3s ease-in-out 0s;
        }

        .navbar a:hover:before,
        .navbar li:hover > a:before,
        .navbar .active:before {
            visibility: visible;
            transform: scaleX(0.7);
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #c45506;
        }

        .navbar h5 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px 0px;
            font-family: var(--font-secondary);
            font-size: 14px;
            font-weight: 600;
            /*color: rgba(var(--color-secondary-dark-rgb), 0.7);*/
            color: #fff;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

        .navbar .dropdown a:hover:before,
        .navbar .dropdown:hover > a:before,
        .navbar .dropdown .active:before {
            visibility: hidden;
        }

        .navbar .dropdown a:hover,
        .navbar .dropdown .active,
        .navbar .dropdown .active:focus,
        .navbar .dropdown:hover > a {
            color: #fff;
            background: #c45506;
            border-radius: 6px 6px 0 0;
        }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 0;
            top: 100%;
            margin: 0;
            padding: 0 0 0px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #c45506;
            transition: 0.3s;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 16px;
                text-transform: none;
                font-weight: 400;
                color: #fff;
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: #fff;
                    background-color: #000;
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            visibility: visible;
        }

        .navbar .megamenu {
            position: static;
        }

            .navbar .megamenu ul {
                right: 0;
                padding: 10px;
                display: flex;
            }

                .navbar .megamenu ul li {
                    flex: 1;
                }

                    .navbar .megamenu ul li a,
                    .navbar .megamenu ul li:hover > a {
                        color: rgba(var(--color-white-rgb), 1);
                        background: none;
                    }

                        .navbar .megamenu ul li a:hover,
                        .navbar .megamenu ul li .active,
                        .navbar .megamenu ul li .active:hover {
                            color: var(--color-white);
                            /*background: var(--color-primary);*/
                            background: #051a6b;
                        }

        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }

        .navbar .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/* # Mobile Navigation */
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: calc(100% - 70px);
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 10px 0;
            margin: 0;
            /*background: rgba(var(--color-secondary-rgb), 0.9);*/
            background: rgba(255,255,255,0.9);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            font-size: 15px;
            font-weight: 600;
            color: rgba(var(--color-white-rgb), 0.9);
            white-space: nowrap;
            transition: 0.3s;
            text-transform: uppercase;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: var(--color-white);
            }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            transition: all 0.5s ease-in-out;
            border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    .mobile-nav-toggle {
        display: block !important;
        color: #000;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        top: 25px;
        z-index: 9999;
        right: 20px;
    }

        .mobile-nav-toggle.bi-x {
            color: #000;
        }

    .mobile-nav-active {
        overflow: hidden;
        z-index: 9995;
        position: relative;
    }

        .mobile-nav-active .navbar {
            left: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(255,255,255,0.5);
                z-index: 9996;
            }
}

.navbar h5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 0px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.search-form-navbar {
    margin-top: 22px;
}

    .search-form-navbar a {
        color: #fff !important;
    }



/* # Home Page -------- */

/* # Hero Section */
#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    padding: 0;
}

    #hero .carousel-item {
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        transition: 0.3;
    }

        #hero .carousel-item::before {
            content: ""; /*background-color: rgba(0, 0, 0, 0.5);*/
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
        }

    #hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .carousel-content {
        text-align: left;
    }

    #hero h2 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 80px;
        font-weight: 700;
        font-family: 'Montserrat';
        font-style: normal;
    }

        #hero h2 span {
            color: #5c9f24;
        }

    #hero p {
        width: 90%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
        font-family: 'Montserrat';
        font-weight: 300;
        font-style: normal;
        font-size: 60px;
        line-height: 1;
    }

    #hero .carousel-inner .carousel-item {
        transition-property: opacity;
        background-position: center top;
    }

    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-start,
    #hero .carousel-inner .active.carousel-item-end {
        opacity: 0;
    }

    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-start,
    #hero .carousel-inner .carousel-item-prev.carousel-item-end {
        opacity: 1;
        transition: 0.5s;
    }

        #hero .carousel-inner .carousel-item-next,
        #hero .carousel-inner .carousel-item-prev,
        #hero .carousel-inner .active.carousel-item-start,
        #hero .carousel-inner .active.carousel-item-end {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

    #hero .carousel-control-next-icon,
    #hero .carousel-control-prev-icon {
        background: none;
        font-size: 30px;
        line-height: 0;
        width: auto;
        height: auto;
        background: #c45506;
        border-radius: 50px;
        transition: 0.3s;
        color: rgba(255, 255, 255, 0.5);
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #hero .carousel-control-next-icon:hover,
        #hero .carousel-control-prev-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

    #hero .carousel-indicators {
        display: none;
    }

        #hero .carousel-indicators li {
            cursor: pointer;
            background-color: transparent;
            overflow: hidden;
            border: 1px solid #fff;
            width: 12px;
            height: 12px;
            border-radius: 50px;
            transition: 0.3s;
        }

            #hero .carousel-indicators li.active {
                opacity: 1;
                background: #fff;
                border: 1px solid #fff;
            }

    #hero .btn-read-more {
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 30px 12px 30px;
        border-radius: 25px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        border: 2px solid #0039a2;
        background: #0039a2;
    }

        #hero .btn-read-more:hover {
            background: #fe572a;
            border-color: #fe572a;
            color: #fff;
        }

    #hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }

    #hero p {
        font-size: 30px;
        line-height: 1.2;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 100%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

.hero-inner {
    height: 50vh !important;
}

    .hero-inner .carousel-item {
        width: 100%;
        height: 50vh !important;
    }

        .hero-inner .carousel-item p {
            margin-bottom: 0px !important;
        }

#hero.hero-inner .carousel-container {
    justify-content: flex-start;
    left: auto;
    right: auto;
}

#hero.hero-inner .carousel-caption {
    left: 15%;
    right: 15%;
    margin-top: 40px;
    margin-left: 30px;
}

.carousel-indicators {
    bottom: 100px;
}

.slider-mobile-banner {
    display: none !important;
}

/* # Footer */
.footer {
    background-color: #636466;
    padding: 0px 0px 0px 0px;
}

/* # Back to top */
.back-to-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    background: #c45506;
    border-radius: 50%;
    z-index: 9999 !important;
}

    .back-to-top:hover {
        background: #000;
    }

    .back-to-top i {
        color: #ffffff;
    }

@-webkit-keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

.animate-typo {
    overflow: hidden;
    transform: translatey(0px);
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 5s ease-in-out infinite;
}


/* # Owl Nav Button */
.owl-nav-active .owl-next, .owl-nav-active .owl-prev {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: #ff7722 !important;
}

.owl-nav-active .owl-next {
    left: auto;
    right: 5%;
}

.owl-nav-active .owl-prev {
    left: 5%;
    right: auto;
}

    .owl-nav-active .owl-next:hover, .owl-nav-active .owl-prev:hover {
        /*background: rgba(190, 8, 0, 0.7) !important;*/
        background: #000 !important;
    }

    .owl-nav-active .owl-next img, .owl-nav-active .owl-prev img {
        filter: brightness(0) invert(1);
    }

/* # Owl Dots */
.slider .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 35px;
}

    .slider .owl-dots button.owl-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
        background: rgba(255, 255, 255, 1) !important;
        margin: 0 5px;
    }

        .slider .owl-dots button.owl-dot.active {
            background: rgba(255, 204, 0, 1) !important;
        }

        .slider .owl-dots button.owl-dot:focus {
            outline: none;
        }

/* # Owl Carousel */
.slider {
    position: relative;
}

/* # Button */
.btn_default {
    background: #c45506 url("../images/icons/btn-arrow-white.png") no-repeat 87% 50%;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    text-transform: capitalize;
    letter-spacing: .1rem;
    cursor: pointer;
    outline: 0;
    transition: all 0.4s ease-out;
    text-align: left;
    height: 60px;
    line-height: 60px;
    border-radius: 5px;
    display: inline-block;
    padding: 0px 60px 0px 25px;
}

    .btn_default:hover {
        background: #231f20 url("../images/icons/btn-arrow-white.png") no-repeat 89% 50%;
        color: #fff
    }

/* Section Space ------------- */
.section_padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* # Section heading */
.section_heading {
    margin-bottom: 2.5rem;
    font-family: 'poppinslight';
}

    .section_heading span {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 900;
        color: #c45506;
    }

    .section_heading h1 {
        font-family: 'poppinslight';
        font-size: 3.5rem;
        line-height: 1;
    }

    .section_heading h2 {
        font-family: 'poppinslight';
        font-size: 3.5rem;
        line-height: 1;
    }

.section_sub_heading h2 {
    font-family: 'montserratmedium';
    font-size: 2.5rem;
}

.section_sub_heading {
    font-family: 'montserratmedium';
}

.section_heading p {
    padding-top: 0px
}

/* # Notice */
.notice-bar {
    background-color: #c45506;
    color: #fff;
    padding: 10px 0;
    overflow: hidden
}

.notice-title {
    display: flex;
    align-items: center
}

    .notice-title h2 {
        font-weight: 700;
        font-family: 'Montserrat';
        font-style: normal;
        text-transform: uppercase;
        font-size: 2.5rem;
        line-height: 1
    }

    .notice-title img {
        margin-right: 10px
    }

.notice-texts {
    overflow: hidden;
    white-space: nowrap;
    position: relative
}

    .notice-texts ul {
        display: inline-block;
        padding-left: 100%;
        animation: ticker 25s linear infinite;
        margin: 0
    }

    .notice-texts li {
        display: inline-block;
        margin-right: 50px;
        list-style: none;
        font-weight: 600
    }

        .notice-texts li::before {
            content: "• ";
            margin-right: 5px
        }

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .notice-title h2 {
        font-size: 1rem;
    }

    .notice-title img {
        width: 50px;
    }
}

@media(max-width:768px) {
    .notice-title h2 {
        font-size: 1rem
    }

    .notice-title img {
        width: 50px
    }
}



/* # Leaders */
.leaders_message {
    background: #fff;
    padding-top: 100px
}

    .leaders_message .leaders_message_img {
        border-radius: 20px;
    }

.leader_message_text {
    padding: 30px 0px 0px 0px;
}

/* # Citizen services */
.citizen_services {
    position: relative;
    overflow: hidden
}

    .citizen_services::before {
        content: url("../images/home/bg-top-gray.png");
    }

    .citizen_services::after {
        content: url("../images/home/bg-bottom-gray.png")
    }

    .citizen_services .content {
        background: #f1f1eb;
        width: 100%;
        padding-top: 30px;
        margin-top: -10px
    }

.service-cards-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch
}

.service-card {
    flex: 1 1 0;
    max-width: 20%;
    transition: transform .3s ease;
    border: 1px solid transparent;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 1rem;
}

    .service-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
        border-color: #c45506;
    }

        .service-card:hover a {
            color: #000;
        }

.service-icon {
    width: 80px;
    height: auto
}

.service-content {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.2
}

.arrow-icon {
    color: #c45506;
    font-size: 1.25rem
}


/* # Picture gallery */
.picture_gallery .image-block {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out 0.1s;
    -moz-transition: all 0.2s ease-in-out 0.1s;
    transition: all 0.2s ease-in-out 0.1s;
}

    .picture_gallery .image-block:hover img {
        transform: scale(1.15);
        -webkit-transition: all 0.2s ease-in-out 0.1s;
        -moz-transition: all 0.2s ease-in-out 0.1s;
        transition: all 0.2s ease-in-out 0.1s;
    }

    .picture_gallery .image-block .overlay {
        position: absolute;
        bottom: 0px;
        color: #fff;
        left: 0px;
        z-index: 9;
        padding: 15px;
        height: 30%;
        overflow: hidden
    }

.picture_gallery .mask {
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,0.8631827731092436) 5%, rgba(0,0,0,0.17130602240896353) 40%);
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.picture_gallery .image-block:hover .overlay {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: rgb(0,0,0,0.2);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 15px;
    -webkit-transition: all 0.5s ease-in-out 0.1s;
    -moz-transition: all 0.5s ease-in-out 0.1s;
    transition: all 0.5s ease-in-out 0.1s;
    background-position: 100% -100%;
}

.picture_gallery .circle-vector-left {
    left: 0px;
    position: absolute;
    top: 10%;
}

.picture_gallery .image-block h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffac24;
    line-height: 1;
}

.picture_gallery .image-block p {
    line-height: 1.2;
    font-size: 1.2rem;
}

.owl_picture_gallery .owl-stage {
    padding: 20px 0
}

.owl_picture_gallery .owl-item {
    -webkit-transition: all 0.2s ease-in-out 0.1s;
    -moz-transition: all 0.2s ease-in-out 0.1s;
    transition: all 0.2s ease-in-out 0.1s;
}

    .owl_picture_gallery .owl-item:hover {
        margin-top: -20px;
        -webkit-transition: all 0.2s ease-in-out 0.1s;
        -moz-transition: all 0.2s ease-in-out 0.1s;
        transition: all 0.2s ease-in-out 0.1s;
    }

/* # Tender Notice */
.tender_notice {
    background-color: #f4f5f0;
    position: relative;
    overflow: hidden;
}

.notice_item {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .notice_item .notice_post_dsc {
        padding: 10px
    }

    .notice_item .notice_post::before {
        content: url("../images/icons/quote_left.png");
        display: block
    }

    .notice_item .notice_post::after {
        content: url("../images/icons/quote_left.png");
        transform: rotate(180deg);
        display: block;
        margin-top: -60px
    }

    .notice_item .notice_post {
        color: #000000
    }

        .notice_item .notice_post .name {
            padding-left: 15px;
            font-size: 22px
        }

        .notice_item .notice_post .text-primary {
            padding-left: 15px;
            color: #000 !important;
            font-weight: 600;
        }

    .notice_item .owl-nav {
        position: absolute;
        top: 45%;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .notice_item .notice_post p:last-child {
        border-left: 1px solid #e00a00;
        padding: 10px
    }

/* # Step 9 ways */
.step_9_ways .section_sub_heading h2 {
    font-size: 2rem;
}

.step_row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center
}

.step_card {
    flex: 0 1 calc(20% - 1.2rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    padding: 2.5rem 1.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    min-height: 100%;
    transition: transform .2s ease;
}

    .step_card:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
    }

    .step_card p {
        line-height: 1.2
    }

.step_number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center
}

    .step_number .number {
        font-weight: 700;
        font-family: 'Montserrat';
        font-style: normal;
        font-size: 2rem;
        color: #1a1a1a;
        background-color: #fff;
        padding: 0 15px
    }

    .step_number .dot {
        width: 10px;
        height: 10px;
        background: #b80000;
        border-radius: 50%
    }

.icon_circle {
    width: 80px;
    height: 80px;
    background: #b80000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

/* # Footer */
.footer {
    font-size: 15px;
    background-color: #414141;
    padding: 50px 0px 20px 0px;
    color: #fff;
    background-image: url('../images/common/footer-bg.png');
    background-repeat: no-repeat;
    background-size: 500px 500px;
    background-position: left center;
}

    .footer .social-icons .icon-border {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border: 2px solid #fff;
        border-radius: 50%;
        font-size: 20px;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .footer .social-icons .icon-border:hover {
            background-color: #414141;
            color: #fff;
            border-color: #fff;
        }

    .footer h4, .footer .footer-links h4 {
        font-weight: 700;
        font-style: normal;
        color: #fff;
        border-bottom: 1px solid #4e4d4d;
        padding-bottom: 10px;
        margin-bottom: 1rem;
        font-family: 'poppinslight';
        text-transform: uppercase;
        display: inline-block;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                color: #fff;
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 5px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: #fff;
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: #fcfcfc;
                    opacity: 0.7;
                    text-decoration: underline;
                }

        .footer .footer-links .contact-wrapper {
            display: flex;
            flex-wrap: wrap !important;
        }

            .footer .footer-links .contact-wrapper li {
                display: flex;
                align-items: center;
                margin: 5px 5px;
                padding: 0px;
                position: relative;
            }

                .footer .footer-links .contact-wrapper li a {
                    padding: 0px;
                }

                .footer .footer-links .contact-wrapper li:first-child {
                    margin-left: 0px;
                }

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 0rem;
    border-top: 1px solid #4e4d4d;
}

/* # Inside Pages -------- */

/* Masthead Banner */
/* Masthead Banner */
.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 110px;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.banner-caption-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Text aligned left */
    padding-left: 15px; /* Add some left spacing */
    text-align: left;
}

.banner-caption {
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,.6);
    font-size: 1.5rem; /* Default for very small screens */
    font-family: 'poppinslight';
}

/* Extra small screens (down to 350px) */
@media (max-width: 432px) {
    .banner-caption {
        font-size: 1.2rem;
    }
}

@media (min-width:432px) {
    .banner-caption {
        font-size: 2rem;
    }
}

@media (min-width:576px) {
    .banner-caption {
        font-size: 2.5rem;
    }
}

@media (min-width:768px) {
    .banner-caption {
        font-size: 3rem;
    }
}

@media (min-width:992px) {
    .banner-caption {
        font-size: 3.5rem;
    }
}

@media (min-width:1200px) {
    .banner-caption {
        font-size: 4rem;
    }
}

/* # Contact Us */
#content .contact-us .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.contact-us .heading {
    color: #000;
    font-size: 3rem
}

.contact-us select {
    color: #212529;
    border: 1px solid #6d6d6d
}

    .contact-us select option {
        color: #212529
    }

.contact-us .form-control {
    border: 1px solid #6d6d6d;
    padding: .5rem .75rem;
    font-size: 1.4rem;
    margin-bottom: 1.5rem
}

.contact-section {
    background-color: #f4f5f0
}

.address_box {
    padding: 3rem
}

    .address_box h5 {
        font-family: 'Montserrat';
        padding-bottom: .5rem
    }

.contact-icon {
    color: #c45506;
    font-size: 1.5rem;
    margin-right: 10px
}

.contact-item {
    margin-bottom: 1.5rem
}

.contact-heading {
    font-family: 'poppinslight';
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px
}

.contact-info a {
    color: inherit;
    text-decoration: none
}

    .contact-info a:hover {
        color: #c45506;
        text-decoration: underline
    }

.zone-list {
    list-style: none;
    padding-left: 0
}

    .zone-list li {
        margin-bottom: 1.5rem;
    }

.zone-title {
    font-weight: bold;
    color: #000
}

.zone-address {
    margin-top: .25rem
}

/* # About us */
.about_us_page {
    position: relative;
}

.quick_links {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    padding: 0px 0px 0px;
    border-radius: 6px;
    box-shadow: 0px 3px 13px 0px rgba(112, 112, 112, 0.34);
}

    .quick_links li {
        color: #000;
        border-bottom: 1px solid rgba(0,0,0,.125);
        padding: 10px 15px;
        display: flex;
        gap: 10px;
        font-size: 1.2rem;
        line-height: 1.3
    }

        .quick_links li:last-child {
            border: 0 !important
        }

        .quick_links li::before {
            content: url("../images/icons/bullet-arrow-red.png");
        }

    .quick_links h5 {
        padding: 10px 15px;
        text-transform: uppercase;
        background-color: #c45506;
        color: #fff;
    }

.heading-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.heading-title {
    font-size: 1.5rem;
    font-family: 'montserratmedium';
    color: #000;
    margin: 0;
    white-space: nowrap
}

.heading-line {
    flex-grow: 1;
    height: 1px;
    background-color: #c45506;
    min-width: 50px
}

@media(max-width:576px) {
    .heading-title {
        font-size: 1.5rem;
        white-space: pre-wrap
    }
}

.heading-bg {
    text-align: center
}

    .heading-bg span {
        display: block;
        margin-bottom: 15px
    }

    .heading-bg h2 {
        background-color: #c45506;
        padding: 10px 35px 10px;
        font-size: 25px;
        font-family: 'Helvetica';
        color: #fff;
        border-radius: 30px;
        width: fit-content;
        margin: 0 auto;
    }

@media(max-width:576px) {
    .heading-bg h2 {
        padding: 10px 15px 10px;
        font-size: 16px;
    }
}

.statistics_table th {
    padding: 10px;
    color: #fff;
    text-align: left;
}

.statistics_table tr td {
    padding: 10px;
    text-align: left;
}


.text-shadow {
    text-shadow: 1px 1px 1px black;
}

.text-shadow2 {
    text-shadow: 3px 1px 4px black;
}

/* # Quick Access */
.Quick_Access {
    position: relative;
    overflow: hidden
}
    /* .Quick_Access::before{content:url("../images/home/bg-top-gray.png");}
.Quick_Access::after{content:url("../images/home/bg-bottom-gray.png")} */
    .Quick_Access .content {
        background: #f1f1eb;
        width: 80%;
        padding-top: 30px;
        margin-top: -10px
    }

.Quick_Access-cards-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch
}

.Quick_Access-card {
    flex: 1 1 0;
    max-width: 25%;
    transition: transform .3s ease;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 1rem;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
}

    .Quick_Access-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
        border-color: #c45506;
    }

.Quick_Access:hover a {
    color: #000;
}

.Quick_Access-icon {
    width: 60px;
    height: auto
}

.Quick_Access-content {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.2
}

.Quick_Access-arrow-icon {
    color: #c45506;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .Quick_Access-cards-wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .Quick_Access-card {
        max-width: 100%;
        flex: 1 1 auto;
        flex-direction: row;
    }

    .Quick_Access-content {
        font-size: 1rem;
    }

    .Quick_Access-icon {
        width: 50px;
    }
}

/* .Quick_Access-arrow-icon:hover{
    transform: translateX(150px);
} */

/* # View More Button */
.btn_ViewMore {
    background: #c45506 url("../images/icons/btn-arrow-white.png") no-repeat right 10px center;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    text-transform: capitalize;
    letter-spacing: 0.1rem;
    cursor: pointer;
    outline: 0;
    transition: all 0.4s ease-out;
    text-align: left;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    display: inline-block;
    padding: 0 15px 0 05px; /* 35px right padding for arrow space */
    background-size: 05px auto; /* scale arrow icon if needed */
}

    .btn_ViewMore:hover {
        background: #231f20 url("../images/icons/btn-arrow-white.png") no-repeat right 10px center;
        background-size: 12px auto;
        color: #fff;
    }

/* officer */

.officer-section {
    background-image: url('../images/banner/texturewave.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.officer-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #ccc; /* ✅ Light gray border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    height: 140px;
    position: relative; /* 👈 Added */
    transition: transform 0.3s ease;
}

    .officer-card:hover {
        transform: translateY(-4px);
    }

.officer-image {
    position: absolute; /* 👈 Added */
    top: -12px; /* 👈 Distance from top */
    left: -12px; /* 👈 Distance from left */
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0; /* 👈 Remove margin since it's absolute */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35); /* ✅ Shadow added */
    background-color: #fff; /* Optional: adds background to avoid transparency glitches */
}

.officer-text {
    flex: 1;
    margin-left: 80px; /* 👈 To avoid overlapping with image */
}

.officer-name {
    font-family: Katibeh;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.officer-title {
    font-size: 0.95rem;
    font-weight: 500;
}

.officer-subtitle {
    font-size: 0.85rem;
    color: #555;
}
/* === Colonies Section with Blurred Background === */
.colonies-section {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f8f8;
}

    .colonies-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('../images/banner/BANNER2.png'); /* Update path if needed */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: blur(3px);
        transform: scale(1.1);
        z-index: 0;
        opacity: 0.9;
    }

    /* Content sits above the blur */
    .colonies-section .colonies-container {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    /* === Section Titles === */
    .colonies-section .colonies-title {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #fff;
    }

    .colonies-section .colonies-subtitle {
        font-size: 16px;
        color: #ddd;
        font-weight: 400;
        margin-bottom: 40px;
    }

    /* === Card Grid === */
    .colonies-section .colonies-cards-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px;
    }

    /* === Card === */
    .colonies-section .colonies-card {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 30px 10px 30px 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        width: 335px;
        padding: 30px 20px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        backdrop-filter: blur(3px);
        position: relative;
        min-height: 400px;
    }

        /* Card Hover Effect */
        .colonies-section .colonies-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
        }

    /* === Circular Image === */
    .colonies-section .colonies-card-img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .colonies-section .colonies-card:hover .colonies-card-img {
        transform: scale(1.05);
    }

    /* === Card Title === */
    .colonies-section .colonies-card-title {
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0;
        color: #222;
    }

    /* === Card Text === */
    .colonies-section .colonies-card-text {
        font-size: 16px;
        font-weight: 400;
        color: #444;
        padding: 0 10px;
        line-height: 1.8;
        flex-grow: 1;
    }

    /* === Button === */
    .colonies-section .colonies-card-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 25px;
        background-color: #c45506;
        color: #fff;
        text-decoration: none;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background-color 0.3s ease;
        min-width: 160px;
    }

        .colonies-section .colonies-card-btn:hover {
            background-color: black;
        }

/* === Responsive === */
@media (max-width: 768px) {
    .colonies-section .colonies-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .colonies-section .colonies-card {
        width: 90%;
    }
}
/*Team icon*/
.officer-float-btn {
    position: fixed;
    right: -100px; /* initially hidden */
    top: 50%;
    transform: translateY(-50%);
    background-color: #c45506;
    padding: 10px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: right 0.5s ease;
    z-index: 999;
}

    .officer-float-btn img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        display: block;
    }

    .officer-float-btn.show {
        right: 0px;
    }
/* === Social Section Styling === */
.social-posts .row {
    display: flex;
    flex-wrap: wrap;
}

.social-posts .col-md-4 {
    display: flex;
    flex-direction: column;
}

.social-posts .social-card {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.social-posts .social-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}