/**
* Template Name: UpConstruction - v1.3.0
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Playfair:opsz,wght@5..1200,300;5..1200,500;5..1200,800&family=Poppins:wght@100;200;300;500;700&display=swap');
/* Fonts */

:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Playfair", serif;
}

/* Colors */
:root {
    --color-dark: #25333b;
    --color-secondary: #52565e;
    --color-blue: #1f0e75;
    --color-blue2: #8dd3de;
    --color-white: #fff;
    --color-lightBlue: #e2f1f9;
    --color-skin: #ffd78b;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-dark);
    overflow-x: hidden;
    background: #FAFFFD;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

    a:hover {
        color: #ffc732;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f6f7;
}

.section-header {
    padding-bottom: 30px;
}

    .section-header h2 {
        font-size: 2.5em;
        font-weight: 700;
        font-family: var(--font-secondary);
        position: relative;
        color: var(--color-dark);
    }

    .section-header h4 {
        background: #e2ebf9;
        padding: 10px 15px;
        border-radius: 5px;
        color: var(--color-blue);
    }



    .section-header p {
        margin: 0 auto 0 auto;
    }


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 140px 0 60px 0;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .breadcrumbs:before {
        content: "";
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        inset: 0;
    }

    .breadcrumbs h2 {
        font-size: 56px;
        font-weight: 500;
        color: #fff;
        font-family: var(--font-secondary);
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 0 10px 0;
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--color-primary);
    }

        .breadcrumbs ol a {
            color: rgba(255, 255, 255, 0.8);
            transition: 0.3s;
        }

            .breadcrumbs ol a:hover {
                text-decoration: underline;
            }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #fff;
                content: "/";
            }

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--color-secondary);
        line-height: 0;
    }

    .scroll-top:hover {
        background: var(--color-blue);
        color: #fff;
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #fff;
        border-color: var(--color-primary) transparent var(--color-primary) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1.5s linear infinite;
        animation: animate-preloader 1.5s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    z-index: 997;
    position: relative;
    padding: 10px 0;
    top: 0;
    left: 0;
    right: 0;
}

    .header .logo img {
        max-height: 60px;
        margin-right: 6px;
    }

    .header .logo h1 {
        font-size: 24px;
        font-weight: 700;
        color: #0c2f63;
        margin-bottom: 0;
        font-family: var(--font-primary);
    }

        .header .logo h1 span {
            color: white;
            background: #0c2f63;
            padding: 5px 10px;
            border-radius: 10px;
        }


/*--------------------------------------------------------------
# Header Full Width
--------------------------------------------------------------*/

header .content {
    width: 100%;
    opacity: 0;
    height: 100vh;
    display: block;
    position: absolute;
    right: 100%;
    transition: 0.5s;
    background-color: rgb(250 250 250 / 90%);
    top: 0;
    z-index: 2;
}


header .show {
    right: 0px;
    opacity: 1;
}



header .flex {
    min-height: 100vh;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 100;
    top: 0;
    /* width: 100%; */
    background: #fff;
    min-width: 370px;
}


header .content .navigation {
    list-style-type: none;
    padding-left: 0px;
    font-size: 30px;
    font-weight: 300;
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* padding: 0 350px; */
    /* justify-content: center; */
}

    header .content .navigation li {
        padding: 15px;
        padding-left: 30px;
    }

    header .content .navigation a {
        text-decoration: none;
        position: relative;
        display: inline-block;
        overflow-x: hidden;
        transition: all 0.2s;
    }

        header .content .navigation a:before {
            content: "";
            overflow: hidden;
            width: 100%;
            position: absolute;
            left: -150%;
            bottom: 0px;
            height: 3px;
            /* background-color: var(--color-blue); */
            transition: all 0.3s;
        }

        header .content .navigation a:hover {
            color: var(--color-white);
        }

            header .content .navigation a:hover:before {
                left: 0px;
            }

header .content button.menu_btn {
    position: absolute;
    right: 114px;
    top: 30px;
    font-size: 2.5em;
    z-index: 1000;
}

.focus .burger {
    transition: all 0.3s;
}

    .focus .burger:first-of-type {
        background-color: var(--color-blue);
        transition-delay: 0.4s;
        transform: translate3d(0px, 0px, 0px) rotateZ(45deg);
        width: 40px;
        transform-origin: left top;
    }

    .focus .burger:nth-of-type(2) {
        opacity: 0;
    }

    .focus .burger:last-of-type {
        background-color: var(--color-blue);
        transition-delay: 0.4s;
        transform: translate3d(0px, 0px, 0px) rotateZ(-45deg);
        width: 40px;
        transform-origin: left bottom;
    }



.hasSubmenu {
    /* position: relative; */
}

    header .content .navigation li:hover,
    .hasSubmenu:hover {
        box-shadow: none;
        background: #1f0e75;
        color: #fff;
    }

.subMenu {
    display: none;
    position: absolute;
    top: 0;
    z-index: 1;
    background: #1f0e75;
    min-width: 300px;
     font-size: 20px; 
    list-style: none;
    left: 100%;
    height: 100%;
}

.subMenuItem {
    float: none;
}

header .content .navigation li.subMenuItem {
    padding: 8px 15px;
    white-space: nowrap;
}

.hasSubmenu:hover .subMenu {
    display: block;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1080px) {
    .navbar {
        padding: 0;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar > ul > li {
            white-space: nowrap;
            padding: 10px 0 10px 28px;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3px;
            font-family: var(--font-primary);
            font-size: 16px;
            font-weight: 500;
            color: rgb(0 0 0 / 60%);
            text-transform: capitalize;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .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: 4px;
            bottom: -15px;
            border-radius: 3px;
            left: 0;
            background-color: var(--color-primary);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navbar a:hover:before,
        .navbar li:hover > a:before,
        .navbar .active:before {
            visibility: visible;
            width: 100%;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--color-primary);
        }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 28px;
            top: calc(100% + 30px);
            margin: 0;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: 0.3s;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--color-dark);
                font-weight: 400;
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: var(--color-primary);
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .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: 1080px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1080px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1079px) {
    header .content button.menu_btn {
        right: 14px;
        font-size: 2em;
    }

    header .flex {
        width: 100%;
        padding-top: 40px;
    }

    header .content .navigation li.subMenuItem {
        white-space: unset;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
        display: none;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: rgba(0, 0, 0, 0.8);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-family: var(--font-primary);
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            text-transform: uppercase;
            transition: 0.3s;
        }

            .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: #fff;
            }

        .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 #222428;
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    .mobile-nav-show {
        position: relative;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .navbar {
            right: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.6);
                z-index: 9996;
            }

    header .content {
        background-color: rgb(63 63 63 / 90%);
    }

        header .content .navigation {
            font-size: 15px;
            padding: 0 0;
            flex-direction: column;
        }

    .subMenu {
        position: relative;
        top: 0;
        background: transparent;
        min-width: auto;
        font-size: 1em;
        left: auto;
    }
}
/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
    padding: 30px 0;
}

    .get-started .content h3 {
        font-size: 36px;
        color: var(--color-secondary);
        font-weight: 600;
        margin-bottom: 25px;
        padding-bottom: 25px;
        position: relative;
    }

        .get-started .content h3:after {
            content: "";
            position: absolute;
            display: block;
            width: 60px;
            height: 4px;
            background: var(--color-primary);
            left: 0;
            bottom: 0;
        }

    .get-started .content p {
        font-size: 14px;
    }

.get-started .php-email-form {
    background: #fff;
    padding: 30px;
    height: 100%;
}

@media (max-width: 575px) {
    .get-started .php-email-form {
        padding: 20px;
    }
}

.get-started .php-email-form h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-started .php-email-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

.get-started .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.get-started .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.get-started .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .get-started .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #059652;
        border-top-color: #fff;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

.get-started .php-email-form input,
.get-started .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

    .get-started .php-email-form input:focus,
    .get-started .php-email-form textarea:focus {
        border-color: var(--color-primary);
    }

.get-started .php-email-form input {
    padding: 12px 15px;
}

.get-started .php-email-form textarea {
    padding: 12px 15px;
}

.get-started .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

    .get-started .php-email-form button[type=submit]:hover {
        background: rgba(254, 185, 0, 0.8);
    }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.borderd-img {
    border-radius: 20px;
}

/*--------------------------------------------------------------
# Vision 4Es Section
--------------------------------------------------------------*/

.vision_4Es {
    background: var(--color-lightBlue);
}

.pm_msg {
    background: #E2F9F7;
}

.vision_box {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    height: 100%;
}

    .vision_box .icon {
        background: grey;
        padding: 10px;
        color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

    .vision_box .content {
    }

        .vision_box .content .title {
        }

    .vision_box .read_more {
        display: block;
        padding: 0px;
        line-height: 60px;
        text-align: center;
        position: absolute;
        right: 40px;
        bottom: -30px;
    }


    .vision_box.education .icon,
    .vision_box.education .read_more {
        background-color: #0972a5;
    }

    .vision_box.employment .icon,
    .vision_box.employment .read_more {
        background-color: #e36816;
    }

    .vision_box.engagement .icon,
    .vision_box.engagement .read_more {
        background-color: #f9d12e;
    }

    .vision_box.environment .icon,
    .vision_box.environment .read_more {
        background-color: #01b556;
    }


/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
    border: 1px solid rgba(82, 86, 94, 0.2);
    background: #fff;
    position: relative;
    border-radius: 0;
}

    .constructions .card-item .card-bg {
        min-height: 300px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .constructions .card-item .card-body {
        padding: 30px;
    }

    .constructions .card-item h4 {
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--color-secondary);
    }

    .constructions .card-item p {
        color: var(--color-secondary);
        margin: 0;
    }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.opportunities .opportunity-item {
    padding: 40px;
    background: var(--color-white);
    height: 100%;
    color: #2b2b2b;
    border-top: 15px solid;
    border-radius: 20px;
    box-shadow: 0px 9px 15px 2px #e9e9e9;
}

    .opportunities .opportunity-item.pink {
        border-color: #ef8990;
    }

    .opportunities .opportunity-item.green {
        border-color: #4fe084;
    }

    .opportunities .opportunity-item.yellow {
        border-color: #f6d45b;
    }

    .opportunities .opportunity-item.blue {
        border-color: #7d8dd5;
    }

    .opportunities .opportunity-item.orange {
        border-color: #eb7c53;
    }

    .opportunities .opportunity-item.cyan {
        border-color: #56d6b3;
    }

    .opportunities .opportunity-item.teal {
        border-color: #3cbebe;
    }

    .opportunities .opportunity-item.indigo {
        border-color: mediumpurple;
    }

    .opportunities .opportunity-item.red {
        border-color: #e07f7f;
    }

    .opportunities .opportunity-item.darkBlue {
        border-color: #5c72d4;
    }


    .opportunities .opportunity-item .icon {
        height: 100px;
        margin-right: 10px;
    }

        .opportunities .opportunity-item .icon img {
            height: 100%;
        }

        .opportunities .opportunity-item .icon i {
            color: var(--color-secondary);
            font-size: 40px;
            transition: ease-in-out 0.3s;
            z-index: 2;
            position: relative;
            line-height: 1.8;
        }

    .opportunities .opportunity-item h3 {
        font-weight: 700;
        margin: 0 0 20px 0;
        padding-bottom: 8px;
        font-size: 30px;
        position: relative;
        display: inline-block;
        border-bottom: 3px dashed #eee;
        transition: 0.3s;
        font-family: var(--font-secondary);
    }

    .opportunities .opportunity-item p {
        line-height: 30px;
        font-size: 16px;
        margin-bottom: 0;
    }

    .opportunities .opportunity-item .readmore {
        margin-top: 15px;
        display: inline-block;
        position: absolute;
        left: 35%;
        font-family: var(--font-secondary);
        bottom: -18px;
        padding: 7px 15px;
        border-radius: 3px;
        color: black;
    }

    .opportunities .opportunity-item.pink .readmore {
        background: #ef8990;
    }

    .opportunities .opportunity-item.green .readmore {
        background: #4fe084;
    }

    .opportunities .opportunity-item.yellow .readmore {
        background: #f6d45b;
    }

    .opportunities .opportunity-item.blue .readmore {
        background: #7d8dd5;
    }

    .opportunities .opportunity-item.orange .readmore {
        background: #eb7c53;
    }

    .opportunities .opportunity-item.cyan .readmore {
        background: #56d6b3;
    }

    .opportunities .opportunity-item.teal .readmore {
        background: #3cbebe;
    }

    .opportunities .opportunity-item.indigo .readmore {
        background: mediumpurple;
    }

    .opportunities .opportunity-item.red .readmore {
        background: #e07f7f;
    }

    .opportunities .opportunity-item.darkBlue .readmore {
        background: #d0d45c;
    }

    .opportunities .opportunity-item:hover .icon:before {
        background: var(--color-primary);
    }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    padding: 15px 0;
    transition: 0.3s;
    color: var(--color-secondary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 4px solid #e2e4e6;
}

    .features .nav-link i {
        padding-right: 15px;
        font-size: 48px;
    }

    .features .nav-link h4 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

@media (max-width: 575px) {
    .features .nav-link h4 {
        font-size: 16px;
    }
}

.features .nav-link:hover {
    color: var(--color-primary);
}

.features .nav-link.active {
    color: var(--color-primary);
    background-color: transparent;
    border-color: var(--color-primary);
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

    .features .tab-pane h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 60px;
        height: 3px;
        background: var(--color-primary);
        left: 0;
        bottom: 0;
    }

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

    .features .tab-pane ul li {
        padding-top: 10px;
    }

    .features .tab-pane ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--color-primary);
    }

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

ul.portfolio-flters {
    position: absolute;
    top: 10px;
    right: 0;
    margin: 0;
}

.projects .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

    /* .projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
} */


    .projects .portfolio-flters li:hover:after,
    .projects .portfolio-flters li.filter-active:after {
        content: '';
        height: 3px;
        width: 100%;
        bottom: -10px;
        position: absolute;
        left: 0;
        border-radius: 5px;
        border-bottom: 5px solid var(--color-blue);
    }

    .projects .portfolio-flters li:first-child {
        margin-left: 0;
    }

    .projects .portfolio-flters li:last-child {
        margin-right: 0;
    }

@media (max-width: 575px) {
    .projects .portfolio-flters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.projects .portfolio-content {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}


.projects .img_outer {
    max-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
}

.projects .img_outer img {
    height: auto;
    width: 100%;
}

    .projects .portfolio-content img {
        transition: 0.3s;
    }

    .projects .portfolio-content .portfolio-info {
        transition: all ease-in-out 0.3s;
        background: var(--color-blue);
        padding: 15px;
        color: var(--color-white);
    }

        .projects .portfolio-content .portfolio-info h4 {
            font-size: 18px;
            background-color: var(--color-primary);
        }

        .projects .portfolio-content .portfolio-info p {
            font-size: 13px;
            font-weight: 300;
        }

        .projects .portfolio-content .portfolio-info .preview-link,
        .projects .portfolio-content .portfolio-info .details-link {
            position: absolute;
            left: calc(50% - 40px);
            font-size: 26px;
            top: calc(50% - 14px);
            color: #fff;
            transition: 0.3s;
            line-height: 1.2;
        }

            .projects .portfolio-content .portfolio-info .preview-link:hover,
            .projects .portfolio-content .portfolio-info .details-link:hover {
                color: var(--color-primary);
            }

        .projects .portfolio-content .portfolio-info .details-link {
            left: 50%;
            font-size: 34px;
            line-height: 0;
        }

    .projects .portfolio-content:hover .portfolio-info {
        opacity: 1;
    }

    .projects .portfolio-content:hover {
        transform: scaleY(1.1);
    }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    /* padding-left: 50px; */
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 40px;
    margin: 50px 15px 30px 0;
    min-height: 200px;
    box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
    position: relative;
    background: #e2ebf9;
    border-radius: 30px;
}

    .testimonials .testimonial-item .testimonial-img {
        position: absolute;
        top: -45px;
        left: 0;
        border-radius: 50%;
        right: 0;
        text-align: center;
    }

        .testimonials .testimonial-item .testimonial-img img {
            width: 120px;
            border: 6px solid #efefef;
            border-radius: 50%;
        }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #000;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        font-family: var(--font-secondary);
        margin: 0;
    }

    .testimonials .testimonial-item .stars {
        margin: 10px 0;
    }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: var(--color-blue);
        font-size: 3em;
        line-height: 0;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px auto 15px auto;
    }

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #d5d7da;
        opacity: 1;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--color-primary);
    }

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

        .testimonials .testimonial-item .testimonial-img {
            position: static;
            left: auto;
        }
}

/*--------------------------------------------------------------
# Alt opportunities Section
--------------------------------------------------------------*/
.alt-services .img-bg {
    background-size: cover;
    background-position: center center;
    min-height: 400px;
}

.alt-services h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .alt-services h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--color-primary);
        left: 0;
        bottom: 0;
    }

.alt-services .icon-box {
    margin-top: 50px;
}

    .alt-services .icon-box i {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
        margin-right: 25px;
        font-size: 28px;
        width: 56px;
        height: 56px;
        border-radius: 4px;
        line-height: 0;
        box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
        background-color: #fff;
        transition: 0.3s;
    }

    .alt-services .icon-box:hover i {
        background-color: var(--color-primary);
        color: #fff;
    }

    .alt-services .icon-box h4 {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 18px;
    }

        .alt-services .icon-box h4 a {
            color: #000;
            transition: 0.3s;
        }

            .alt-services .icon-box h4 a:hover {
                color: var(--color-primary);
            }

    .alt-services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-secondary);
    margin: 30px 0;
}

@media (min-width: 991px) {
    .about h2 {
        max-width: 65%;
        margin: 0 0 80px 0;
    }
}

.about .our-story {
    padding: 40px;
    background-color: #f5f6f7;
}

@media (min-width: 991px) {
    .about .our-story {
        padding-right: 35%;
    }
}

.about .our-story h4 {
    text-transform: uppercase;
    font-size: 18px;
    color: #838893;
}

.about .our-story h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.about .our-story p:last-child {
    margin-bottom: 0;
}

.about ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .about ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .about ul i {
        font-size: 20px;
        margin-right: 4px;
        color: var(--color-primary);
    }

.about .watch-video i {
    font-size: 32px;
    transition: 0.3s;
    color: var(--color-primary);
}

.about .watch-video a {
    font-weight: 600;
    color: var(--color-secondary);
    margin-left: 8px;
    transition: 0.3s;
}

.about .watch-video:hover a {
    color: var(--color-primary);
}

.about .about-img {
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
    }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/

.stats-counter {
}

.stats-outer {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 15px 2px #e9e9e9;
}

    .stats-outer .row {
        --bs-gutter-x: .5rem;
    }

    .stats-outer .col {
        padding: 0;
    }

.stats-counter .stats-box {
    text-align: center;
    border-right: 1px solid #eee;
    padding: 40px 2px 30px;
    position: relative;
    z-index: 1;
    height: 100%;
}


    .stats-counter .stats-box:before {
        content: '';
        width: 100px;
        height: 100px;
        position: absolute;
        border-radius: 50%;
        left: 20px;
        top: 18px;
        z-index: -1;
    }


    .stats-counter .stats-box .count {
        font-size: 2.2rem;
        font-weight: 900;
        font-family: var(--font-primary);
    }

    .stats-counter .stats-box.orange .count {
        color: #ffae21;
    }

    .stats-counter .stats-box.orange:before {
        background: #fff0d6;
    }

    .stats-counter .stats-box.blue .count {
        color: #45a9ff;
    }

    .stats-counter .stats-box.blue:before {
        background: #d6ecff;
    }

    .stats-counter .stats-box.red .count {
        color: #ff5858;
    }

    .stats-counter .stats-box.red:before {
        background: #feeeee;
    }

    .stats-counter .stats-box.purple .count {
        color: #d41aff;
    }

    .stats-counter .stats-box.purple:before {
        background: #fbeefe;
    }

    .stats-counter .stats-box.yellow .count {
        color: #d3cf22;
    }

    .stats-counter .stats-box.yellow:before {
        background: #fffed3;
    }

    .stats-counter .stats-box.ferozi .count {
        color: #22c1d3;
    }

    .stats-counter .stats-box.ferozi:before {
        background: #b6e9ef;
    }

    .stats-counter .stats-box.green .count {
        color: #33d533;
    }

    .stats-counter .stats-box.green:before {
        background: #daf8da;
    }

    .stats-counter .stats-box.pink .count {
        color: #f56da9;
    }

    .stats-counter .stats-box.pink:before {
        background: #ffdaea;
    }

    .stats-counter .stats-box .title {
        font-weight: 600;
        color: #868686;
        font-size: .9rem;
        margin: 0;
        line-height: 1;
    }

    .stats-counter .stats-box.last-child {
        border: none;
    }


/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

    .team .member .member-img {
        margin: 0 80px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
    }

@media (max-width: 1024px) {
    .team .member .member-img {
        margin: 0 60px;
    }
}

.team .member .member-img img {
    position: relative;
    z-index: 1;
}

.team .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

    .team .member .member-img .social a {
        transition: 0.3s;
        color: var(--color-white);
        font-size: 20px;
        margin: 0 8px;
    }

        .team .member .member-img .social a:hover {
            color: var(--color-primary);
        }

.team .member .member-info {
    margin-top: 30px;
}

    .team .member .member-info h4 {
        font-weight: 700;
        margin-bottom: 6px;
        font-size: 18px;
        color: var(--color-secondary);
    }

    .team .member .member-info span {
        font-style: italic;
        display: block;
        font-size: 15px;
        color: #838893;
        margin-bottom: 10px;
    }

    .team .member .member-info p {
        margin-bottom: 0;
        font-size: 14px;
    }

.team .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

.services-cards p {
    font-size: 15px;
}

.services-cards ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-top: 10px;
}

    .services-cards ul li i {
        font-size: 16px;
        color: var(--color-primary);
        margin-right: 6px;
    }

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
    width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

    .project-details .swiper-button-prev:after,
    .project-details .swiper-button-next:after {
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.2);
        font-size: 24px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .project-details .swiper-button-prev:hover:after,
    .project-details .swiper-button-next:hover:after {
        background-color: rgba(0, 0, 0, 0.6);
    }

@media (max-width: 575px) {

    .project-details .swiper-button-prev,
    .project-details .swiper-button-next {
        display: none;
    }
}

.project-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .project-details .portfolio-info h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--color-primary);
        left: 0;
        bottom: 0;
    }

.project-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .project-details .portfolio-info ul li {
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
    }

    .project-details .portfolio-info ul strong {
        text-transform: uppercase;
        font-weight: 400;
        color: #838893;
        font-size: 14px;
    }

.project-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    transition: 0.3s;
}

    .project-details .portfolio-info .btn-visit:hover {
        background: #ffc019;
    }

.project-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.project-details .portfolio-description p {
    padding: 0;
}

.project-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: #f5f6f7;
    height: 100%;
    margin-bottom: 50px;
}

    .project-details .portfolio-description .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid var(--color-white);
        float: left;
        margin: 0 10px 0 0;
    }

    .project-details .portfolio-description .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 15px 0 5px 0;
        padding-top: 20px;
    }

    .project-details .portfolio-description .testimonial-item h4 {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }

    .project-details .portfolio-description .testimonial-item .quote-icon-left,
    .project-details .portfolio-description .testimonial-item .quote-icon-right {
        color: #ffd565;
        font-size: 26px;
        line-height: 0;
    }

    .project-details .portfolio-description .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .project-details .portfolio-description .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .project-details .portfolio-description .testimonial-item p {
        font-style: italic;
        margin: 0 0 15px 0 0 0;
        padding: 0;
    }

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    padding: 10px 30px;
    border: 1px solid #d5d7da;
    margin-bottom: 20px;
}

    .service-details .services-list a {
        display: block;
        line-height: 1;
        padding: 8px 0 8px 15px;
        border-left: 3px solid #d9e3e8;
        margin: 20px 0;
        color: var(--color-secondary);
        transition: 0.3s;
    }

        .service-details .services-list a.active {
            font-weight: 700;
            border-color: var(--color-primary);
        }

        .service-details .services-list a:hover {
            border-color: var(--color-primary);
        }

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 28px;
    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(--color-primary);
    }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
}

    .contact .info-item i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        font-size: 24px;
        line-height: 0;
        color: var(--color-primary);
        border-radius: 50%;
        border: 2px dotted #ffd565;
    }

    .contact .info-item h3 {
        font-size: 20px;
        color: #6c757d;
        font-weight: 700;
        margin: 10px 0;
    }

    .contact .info-item p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form {
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

    .contact .php-email-form .form-group {
        padding-bottom: 20px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: var(--color-white);
        background: #df1529;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: var(--color-white);
        background: #059652;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: var(--color-white);
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #059652;
            border-top-color: var(--color-white);
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--color-primary);
        }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type=submit] {
        background: var(--color-primary);
        border: 0;
        padding: 10px 35px;
        color: var(--color-white);
        transition: 0.4s;
        border-radius: 5px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: rgba(254, 185, 0, 0.8);
        }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

    .recent-blog-posts .post-item .post-img img {
        transition: 0.5s;
    }

    .recent-blog-posts .post-item .post-date {
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: var(--color-primary);
        color: var(--color-white);
        text-transform: uppercase;
        font-size: 13px;
        padding: 6px 12px;
        font-weight: 500;
    }

    .recent-blog-posts .post-item .post-content {
        padding: 30px;
    }

    .recent-blog-posts .post-item .post-title {
        font-size: 24px;
        color: var(--color-secondary);
        font-weight: 700;
        transition: 0.3s;
        margin-bottom: 15px;
    }

    .recent-blog-posts .post-item .meta i {
        font-size: 16px;
        color: var(--color-primary);
    }

    .recent-blog-posts .post-item .meta span {
        font-size: 15px;
        color: #838893;
    }

    .recent-blog-posts .post-item hr {
        color: #888;
        margin: 20px 0;
    }

    .recent-blog-posts .post-item .readmore {
        display: flex;
        align-items: center;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
        color: #838893;
    }

        .recent-blog-posts .post-item .readmore i {
            line-height: 0;
            margin-left: 6px;
            font-size: 16px;
        }

    .recent-blog-posts .post-item:hover .post-title,
    .recent-blog-posts .post-item:hover .readmore {
        color: var(--color-primary);
    }

    .recent-blog-posts .post-item:hover .post-img img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    overflow-x: hidden;
    padding: 0;
}

    .hero .carousel {
        width: 100%;
        
        padding: 60px 0;
        margin: 0;
        position: relative;
        display: flex;
        align-items: center;
    }

    .hero .carousel-item {
        transition-duration: 0.4s;
    }

        .hero .carousel-item .--text {
            justify-content: center;
            display: flex;
            flex-direction: column;
            height: 100%;
            margin: 20px 0;
        }

    .hero .info {
        position: absolute;
        inset: 0;
        z-index: 2;
    }


@media (max-width: 768px) {
    .hero .info {
        padding: 0 50px;
    }
}

.hero .info h2 {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}


@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 36px;
    }
}

.hero .info p {
    font-size: 18px;
}

.hero .info .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

    .hero .info .btn-get-started:hover {
        background: var(--color-primary);
    }

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

    .hero .carousel-control-prev:focus,
    .hero .carousel-control-next:focus {
        opacity: 0.5;
    }

    .hero .carousel-control-prev:hover,
    .hero .carousel-control-next:hover {
        opacity: 0.9;
    }

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: #838893;
}

    .blog .blog-pagination ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .blog .blog-pagination li {
        margin: 0 5px;
        transition: 0.3s;
    }

        .blog .blog-pagination li a {
            color: var(--color-secondary);
            padding: 7px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog .blog-pagination li.active,
        .blog .blog-pagination li:hover {
            background: var(--color-primary);
            color: var(--color-white);
        }

            .blog .blog-pagination li.active a,
            .blog .blog-pagination li:hover a {
                color: var(--color-white);
            }

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.blog .posts-list .post-img img {
    transition: 0.5s;
}

.blog .posts-list .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.blog .posts-list .post-content {
    padding: 30px;
}

.blog .posts-list .post-title {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.blog .posts-list .meta i {
    font-size: 16px;
    color: var(--color-primary);
}

.blog .posts-list .meta span {
    font-size: 15px;
    color: #838893;
}

.blog .posts-list p {
    margin-top: 20px;
}

.blog .posts-list hr {
    color: #888;
    margin-bottom: 20px;
}

.blog .posts-list .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: #838893;
}

    .blog .posts-list .readmore i {
        line-height: 0;
        margin-left: 6px;
        font-size: 16px;
    }

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
    color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

    .blog .blog-details .post-img {
        margin: -30px -30px 20px -30px;
        overflow: hidden;
    }

    .blog .blog-details .title {
        font-size: 28px;
        font-weight: 700;
        padding: 0;
        margin: 20px 0 0 0;
        color: var(--color-secondary);
    }

    .blog .blog-details .content {
        margin-top: 20px;
    }

        .blog .blog-details .content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

        .blog .blog-details .content blockquote {
            overflow: hidden;
            background-color: rgba(82, 86, 94, 0.06);
            padding: 60px;
            position: relative;
            text-align: center;
            margin: 20px 0;
        }

            .blog .blog-details .content blockquote p {
                color: var(--color-dark);
                line-height: 1.6;
                margin-bottom: 0;
                font-style: italic;
                font-weight: 500;
                font-size: 22px;
            }

            .blog .blog-details .content blockquote:after {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background-color: var(--color-primary);
                margin-top: 20px;
                margin-bottom: 20px;
            }

    .blog .blog-details .meta-top {
        margin-top: 20px;
        color: #6c757d;
    }

        .blog .blog-details .meta-top ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            align-items: center;
            padding: 0;
            margin: 0;
        }

            .blog .blog-details .meta-top ul li + li {
                padding-left: 20px;
            }

        .blog .blog-details .meta-top i {
            font-size: 16px;
            margin-right: 8px;
            line-height: 0;
            color: var(--color-primary);
        }

        .blog .blog-details .meta-top a {
            color: #6c757d;
            font-size: 14px;
            display: inline-block;
            line-height: 1;
            transition: 0.3s;
        }

            .blog .blog-details .meta-top a:hover {
                color: var(--color-primary);
            }

    .blog .blog-details .meta-bottom {
        padding-top: 10px;
        border-top: 1px solid rgba(82, 86, 94, 0.15);
    }

        .blog .blog-details .meta-bottom i {
            color: #838893;
            display: inline;
        }

        .blog .blog-details .meta-bottom a {
            color: rgba(82, 86, 94, 0.8);
            transition: 0.3s;
        }

            .blog .blog-details .meta-bottom a:hover {
                color: var(--color-primary);
            }

        .blog .blog-details .meta-bottom .cats {
            list-style: none;
            display: inline;
            padding: 0 20px 0 0;
            font-size: 14px;
        }

            .blog .blog-details .meta-bottom .cats li {
                display: inline-block;
            }

        .blog .blog-details .meta-bottom .tags {
            list-style: none;
            display: inline;
            padding: 0;
            font-size: 14px;
        }

            .blog .blog-details .meta-bottom .tags li {
                display: inline-block;
            }

                .blog .blog-details .meta-bottom .tags li + li::before {
                    padding-right: 6px;
                    color: var(--color-dark);
                    content: ",";
                }

        .blog .blog-details .meta-bottom .share {
            font-size: 16px;
        }

            .blog .blog-details .meta-bottom .share i {
                padding-left: 5px;
            }

.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

    .blog .post-author img {
        max-width: 120px;
        margin-right: 20px;
    }

    .blog .post-author h4 {
        font-weight: 600;
        font-size: 22px;
        margin-bottom: 0px;
        padding: 0;
        color: var(--color-secondary);
    }

    .blog .post-author .social-links {
        margin: 0 10px 10px 0;
    }

        .blog .post-author .social-links a {
            color: rgba(82, 86, 94, 0.5);
            margin-right: 5px;
        }

    .blog .post-author p {
        font-style: italic;
        color: rgba(108, 117, 125, 0.8);
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

    .blog .sidebar .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        padding: 0;
        margin: 0;
        color: var(--color-secondary);
    }

    .blog .sidebar .sidebar-item + .sidebar-item {
        margin-top: 40px;
    }

    .blog .sidebar .search-form form {
        background: var(--color-white);
        border: 1px solid rgba(82, 86, 94, 0.3);
        padding: 3px 10px;
        position: relative;
    }

        .blog .sidebar .search-form form input[type=text] {
            border: 0;
            padding: 4px;
            border-radius: 4px;
            width: calc(100% - 40px);
        }

            .blog .sidebar .search-form form input[type=text]:focus {
                outline: none;
            }

        .blog .sidebar .search-form form button {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            border: 0;
            background: none;
            font-size: 16px;
            padding: 0 15px;
            margin: -1px;
            background: var(--color-primary);
            color: var(--color-secondary);
            transition: 0.3s;
            border-radius: 0 4px 4px 0;
            line-height: 0;
        }

            .blog .sidebar .search-form form button i {
                line-height: 0;
            }

            .blog .sidebar .search-form form button:hover {
                background: rgba(254, 185, 0, 0.8);
            }

    .blog .sidebar .categories ul {
        list-style: none;
        padding: 0;
    }

        .blog .sidebar .categories ul li + li {
            padding-top: 10px;
        }

        .blog .sidebar .categories ul a {
            color: var(--color-secondary);
            transition: 0.3s;
        }

            .blog .sidebar .categories ul a:hover {
                color: var(--color-dark);
            }

            .blog .sidebar .categories ul a span {
                padding-left: 5px;
                color: rgba(54, 77, 89, 0.4);
                font-size: 14px;
            }

    .blog .sidebar .recent-posts .post-item {
        display: flex;
    }

        .blog .sidebar .recent-posts .post-item + .post-item {
            margin-top: 15px;
        }

    .blog .sidebar .recent-posts img {
        max-width: 80px;
        margin-right: 15px;
    }

    .blog .sidebar .recent-posts h4 {
        font-size: 15px;
        font-weight: bold;
    }

        .blog .sidebar .recent-posts h4 a {
            color: var(--color-secondary);
            transition: 0.3s;
        }

            .blog .sidebar .recent-posts h4 a:hover {
                color: var(--color-primary);
            }

    .blog .sidebar .recent-posts time {
        display: block;
        font-style: italic;
        font-size: 14px;
        color: rgba(54, 77, 89, 0.4);
    }

    .blog .sidebar .tags {
        margin-bottom: -10px;
    }

        .blog .sidebar .tags ul {
            list-style: none;
            padding: 0;
        }

            .blog .sidebar .tags ul li {
                display: inline-block;
            }

            .blog .sidebar .tags ul a {
                color: #838893;
                font-size: 14px;
                padding: 6px 14px;
                margin: 0 6px 8px 0;
                border: 1px solid rgba(131, 136, 147, 0.4);
                display: inline-block;
                transition: 0.3s;
            }

                .blog .sidebar .tags ul a:hover {
                    color: var(--color-secondary);
                    border: 1px solid var(--color-primary);
                    background: var(--color-primary);
                }

                .blog .sidebar .tags ul a span {
                    padding-left: 5px;
                    color: rgba(131, 136, 147, 0.8);
                    font-size: 14px;
                }

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
    margin-top: 30px;
}

    .blog .comments .comments-count {
        font-weight: bold;
    }

    .blog .comments .comment {
        margin-top: 30px;
        position: relative;
    }

        .blog .comments .comment .comment-img {
            margin-right: 14px;
        }

            .blog .comments .comment .comment-img img {
                width: 60px;
            }

        .blog .comments .comment h5 {
            font-size: 16px;
            margin-bottom: 2px;
        }

            .blog .comments .comment h5 a {
                font-weight: bold;
                color: var(--color-dark);
                transition: 0.3s;
            }

                .blog .comments .comment h5 a:hover {
                    color: var(--color-blue);
                }

            .blog .comments .comment h5 .reply {
                padding-left: 10px;
                color: var(--color-secondary);
            }

                .blog .comments .comment h5 .reply i {
                    font-size: 20px;
                }

        .blog .comments .comment time {
            display: block;
            font-size: 14px;
            color: rgba(82, 86, 94, 0.8);
            margin-bottom: 5px;
        }

        .blog .comments .comment.comment-reply {
            padding-left: 40px;
        }

    .blog .comments .reply-form {
        margin-top: 30px;
        padding: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .comments .reply-form h4 {
            font-weight: bold;
            font-size: 22px;
        }

        .blog .comments .reply-form p {
            font-size: 14px;
        }

        .blog .comments .reply-form input {
            border-radius: 4px;
            padding: 10px 10px;
            font-size: 14px;
        }

            .blog .comments .reply-form input:focus {
                box-shadow: none;
                border-color: rgba(254, 185, 0, 0.8);
            }

        .blog .comments .reply-form textarea {
            border-radius: 4px;
            padding: 10px 10px;
            font-size: 14px;
        }

            .blog .comments .reply-form textarea:focus {
                box-shadow: none;
                border-color: rgba(254, 185, 0, 0.8);
            }

        .blog .comments .reply-form .form-group {
            margin-bottom: 25px;
        }

        .blog .comments .reply-form .btn-primary {
            border-radius: 4px;
            padding: 10px 20px;
            border: 0;
            background-color: var(--color-secondary);
        }

            .blog .comments .reply-form .btn-primary:hover {
                color: var(--color-secondary);
                background-color: var(--color-blue);
            }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: var(--color-dark);
    background-size: cover;
    font-size: 14px;
    padding: 10px 0 40px 0;
    position: relative;
}

    .footer:before {
        content: "";
        /* background: rgba(0, 0, 0, 0.8); */
        position: absolute;
        inset: 0;
    }

    .footer .footer-content .footer-info {
        margin-bottom: 30px;
    }

        .footer .footer-content .footer-info h3 {
            font-size: 28px;
            margin: 0 0 20px 0;
            padding: 2px 0 2px 0;
            line-height: 1;
            font-weight: 700;
            text-transform: uppercase;
        }

            .footer .footer-content .footer-info h3 span {
                color: var(--color-blue);
            }

        .footer .footer-content .footer-info p {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 0;
            font-family: var(--font-primary);
            color: var(--color-dark);
        }

    .footer .footer-content .social-links a {
        font-size: 18px;
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-dark);
        line-height: 1;
        margin-right: 8px;
        border-radius: 4px;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        .footer .footer-content .social-links a:hover {
            background: var(--color-blue);
            color: var(--color-white);
            text-decoration: none;
        }

    .footer .footer-content h4 {
        font-weight: 600;
        color: var(--color-blue);
        position: relative;
        padding-bottom: 12px;
        font-family: var(--font-secondary);
    }

    .footer .footer-content .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-content .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-content .footer-links ul li {
                padding: 3px 0;
            }

                .footer .footer-content .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-content .footer-links ul a {
                color: var(--color-dark);
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-content .footer-links ul a:hover {
                    color: var(--color-dark);
                }

    .footer .footer-legal .copyright {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer .footer-legal .credits {
        padding-top: 4px;
        font-size: 13px;
        color: var(--color-white);
    }

        .footer .footer-legal .credits a {
            color: var(--color-blue);
        }


/* new styles */

.menu_btn {
    border: 0;
    width: 35px;
    background: none;
    font-weight: 600;
}

.hero .light_blue_bg {
    background: var(--color-lightBlue);
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--color-blue);
    font-size: 1.2em;
}

.hero h2 {
    font-size: 2.8em;
    position: relative;
    color: var(--color-dark);
    padding: 10px 0 30px;
    margin-bottom: 25px;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1;
}

    .hero h2:after {
        content: '';
        position: absolute;
        left: 0;
        height: 5px;
        width: 12%;
        background: var(--color-blue);
        bottom: 0;
        border-radius: 3px;
    }


.hero .carousel-item .--text.special h2 {
    padding-bottom: 0;
}

.hero .carousel-item .--text.special h2:after {
    display: none;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
}

.btn-dark-blue {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn-dark-blue:hover,
.btn-dark-blue:active,
.btn-dark-blue:focus {
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    background: transparent;
}



.btn-blue {
    background: #2f5db1;
    color: var(--color-white);
}

.btn-blue:hover,
.btn-blue:active,
.btn-blue:focus {
    border: 2px solid #2f5db1;
    color: #2f5db1;
}


.btn-yellow {
    background: #f6d434;
    color: var(--color-white);
}

.btn-yellow:hover,
.btn-yellow:active,
.btn-yellow:focus {
    border: 2px solid #f6d434;
    color: #f6d434;
}

.btn-skin {
    background: var(--color-skin);
    color: var(--color-dark);
}

.btn-skin:hover,
.btn-skin:active,
.btn-skin:focus {
    border: 2px solid var(--color-skin);
    color: var(--color-skin);
    background: transparent;
}


.btn-light-blue2 {
    background: #89efff;
    color: var(--color-dark);
}

.btn-light-blue2:hover,
.btn-light-blue2:active,
.btn-light-blue2:focus {
    border: 2px solid #89efff;
    color: #89efff;
    background: transparent;
}


.btn-light-blue {
    background: var(--color-blue2);
    color: var(--color-dark);
}

    .btn-light-blue:hover,
    .btn-light-blue:active,
    .btn-light-blue:focus {
        border: 2px solid var(--color-blue2);
        color: var(--color-blue2);
        background: transparent;
    }


.btn-light-green {
    background: #bbf9bb;
    color: var(--color-dark);
}

    .btn-light-green:hover,
    .btn-light-green:active,
    .btn-light-green:focus {
        border: 2px solid #bbf9bb;
        color: var(--color-dark);
        background: transparent;
    }


.btn-purple {
    background: #8da5de;
    color: var(--color-dark);
}

.btn-purple:hover,
.btn-purple:active,
.btn-purple:focus {
    border: 2px solid #8da5de;
    color: var(--color-dark);
    background: transparent;
}






.search_btn {
    border: none;
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 1.4em;
    border-radius: 50%;
    padding: 6px 12px;
}

.login_btn {
    border: none;
    color: var(--color-blue);
    ;
    padding: 12px 20px;
    border-radius: 5px;
    background: var(--color-lightBlue);
}

    .login_btn:hover {
        background: var(--color-blue);
        color: var(--color-white);
    }

/* social media icons top */
.social-fixed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: fixed;
    z-index: 2;
}

    .social-fixed .social-btn {
        font-size: 1.5em;
        padding: 10px 20px;
        border-radius: 0 50% 50% 0;
        color: var(--color-blue);
    }

        .social-fixed .social-btn:hover {
            background: var(--color-blue);
            color: var(--color-white);
        }

    .social-fixed .color-facebook.social-btn:hover {
    }

    .social-fixed .color-tweeter.social-btn:hover {
    }

    .social-fixed .color-linkedin.social-btn:hover {
    }


.certification_section {
    background: #ffd859;
    padding: 0;
    overflow: initial;
    margin: 30px 0;
}

    .certification_section .img-outer {
        position: relative;
    }

        .certification_section .img-outer img {
            width: 100%;
            position: absolute;
            top: -60px;
        }

.impacteducation {
    background: var(--color-lightBlue);
    padding: 0;
    overflow: initial;
    margin: 30px 0;
    padding: 30px 0 80px;
}

    .impacteducation .img-outer {
        position: relative;
    }

.impacteducation .img-outer img {
    width: 100%;
    position: absolute;
    top: -80px;
}

.laptopScheme .img-outer {
    position: relative;
    height: 100%;
}
.impacteducation.laptopScheme .img-outer img {
    bottom: 0;
    top: auto;
}

    .icon-box2 {
        background: var(--color-white);
        padding: 25px;
        border-radius: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 100%;
        margin-top: 40px;
    }

    .icon-box2.orange {
        margin-top: 0;
    }

    .icon-box2 .icon {
    }

    .icon-box2 .text {
    }

    .icon-box2 .icon img {
        width: 70px;
    }

    .icon-box2 .count {
        font-size: 3rem;
        font-weight: 700;
    }
    .icon-box2 .count span {
        font-size: 1.9rem;
    }

    .icon-box2.blue .count {
        color: #3ba7f9;
    }

    .icon-box2.orange .count {
        color: #f47202;
    }

    .icon-box2.purple .count {
        color: #8d5fcf;
    }

    .icon-box2.red .count {
        color: #f40232;
    }

    .icon-box2.green .count {
        color: #31e55b;
    }

    .icon-box2.yellow .count {
        color: #ffbf0e;
    }


.impacteducation.laptopScheme {
    background: #d6ceff;
    padding-top: 80px;
}

.tabs_pills_card {
    background: white;
    border-radius: 20px;
}

    .tabs_pills_card .section_title {
        padding: 20px 20px 0;
        font-family: var(--font-secondary);
        font-weight: 700;
    }


.nav-pills .nav-link {
    width: 100%;
    padding: 15px;
    border-radius: 0;
    color: #506b7a;
    text-align: left;
    font-weight: 600;
    position: relative;
}

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        background-color: #e2ebf9;
        color: var(--color-dark);
    }

    .nav-pills .nav-link:after {
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        right: 20px;
        position: absolute;
    }


.category_box {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

    .category_box .img_outer {
        height: 200px;
        overflow: hidden;
    }

        .category_box .img_outer img {
            height: 100%;
            width: auto;
        }

    .category_box .text {
        padding: 15px 0;
    }

        .category_box .text ul {
            list-style: none;
            padding: 0;
        }

            .category_box .text ul li {
                padding: 5px 20px;
            }

                .category_box .text ul li.highlight {
                    background: #ddffdd;
                }

.download_app .btn {
    padding: 0;
    width: 165px;
}

    .download_app .btn img {
        width: 100%;
    }

section.download_ {
    background: url('../img/banners/app_download_banner.png');
    background-size: cover;
    background-position: 0px center;
}

.download_ .pre_head {
    font-size: 2em;
    margin: 0;
    font-family: var(--font-primary);
}

.download_ .section-header {
    font-size: 1.5em;
    padding-bottom: 0;
}

.entreprenuer {
    background: url('../img/banners/bg_laptop.png');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}

    .entreprenuer .big_tag img {
        width: 220px;
    }

    .entreprenuer .img_laptop {
        width: 500px;
    }

    .entreprenuer .applyFor {
        color: var(--color-blue);
        font-size: 1.5em;
        font-weight: 800;
        margin: 30px 0;
    }

        .entreprenuer .applyFor span {
            color: #9138c2;
        }

ul#employmentTabs .nav-link:after {
    display: none;
}

#employmentTabs .nav-link {
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    border-radius: 10px;
}

    #employmentTabs .nav-link.active {
        background: var(--color-blue);
        color: var(--color-white);
    }

.thematic_areas {
    background: #D4F9CA;
}

.--icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .--icons .box_3 {
        flex-basis: 18%;
        margin: 50px 3px;
    }

.engagement_thematic_areas .--icons .box_3 {
    flex-basis: 14%;
}

.box_3 > div {
    background: #fff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    height: 100%;
}

.box_3 .icon {
    width: 90px;
    height: 90px;
    background: blue;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    position: absolute;
    top: -50px;
    margin: auto;
}

    .box_3 .icon img {
        width: 100%;
    }

.--icons .box_3:nth-child(1) .icon {
    background: #2dd855;
}
/*first*/
.--icons .box_3:nth-child(2) .icon {
    background: #f37672;
}
/* 4 */
.--icons .box_3:nth-child(3) .icon {
    background: #0494d0;
}
/* 12 */
.--icons .box_3:nth-child(4) .icon {
    background: #fad84f;
}
/* 10 */
.--icons .box_3:nth-child(5) .icon {
    background: #34ddcb;
}
/* 7 */
.--icons .box_3:nth-child(6) .icon {
    background: #fdc044;
}

.--icons .box_3:nth-child(7) .icon {
    background: #5ac0e5;
}

.--icons .box_3:nth-child(8) .icon {
    background: #7581ce;
}

.--icons .box_3:nth-child(9) .icon {
    background: #ffa889;
}

.--icons .box_3:nth-child(10) .icon {
    background: #ffca6f;
}

.--icons .box_3:nth-child(11) .icon {
    background: #d57fef;
}

.--icons .box_3:nth-child(12) .icon {
    background: #e49fb6;
}




.box_3 > div .text {
    padding: 55px 15px 15px;
}

    .box_3 > div .text h4.title {
        font-size: 1.1em;
    }

.engagement_thematic_areas {
    background: var(--color-lightBlue);
}

.nyc_section {
    background: #C2CDCF;
    padding: 0;
}



.partners img {
    height: 120px;
    width: auto;
    margin: auto;
}

.inner_page_banner {
    padding-top: 150px;
    background-color: #12842d;
}


.about .icon-box {
    margin-top: 40px;
}

    .about .icon-box .icon {
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50px;
        transition: 0.5s;
        background: #b2dbc1;
        margin-right: 20px;
    }
    .about .icon-box .icon i {
        color: #0db14b;
        font-size: 20px;
    }

.graphic_banner {
    width: 50%;
    margin: auto;
}




.testimonials .item {
    width: 90%;
    margin: auto;
}


.testimonials .item img {
    width: 100%;
    border-radius: 30px;
}

section#partners {
    padding: 30px 0;
}

.coming-soon {
    text-align: center;
    font-size: 3em;
    padding: 3em;
}



.start_career .img_link {
    position: relative;
}

.start_career .img_link:after {
    content: '';
    
    position: absolute;
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    top: -20px;
    z-index: 2;
    right: -50px;
}

.start_career .img_link.blue_arrow:after {
    background-image: url(../img/icons/arrowRightBlue.png);
}


.start_career .img_link.purple_arrow:after {
    background-image: url(../img/icons/arrowRightPurple.png);
}
.modal-content {
    overflow: hidden;
    border-radius: 30px;
    max-width: 80%;
    margin: auto;
}

.modal-footer {
    background: #29a8d0;
}


.box_4 {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 8px 20px;
    flex-wrap: wrap;
}


    .box_4 .icon {
        width: 80px;
        height: 80px;
        background: #eee;
        border-radius: 50%;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .box_4 .icon img {
            /* width: 45px; */
        }

    .box_4.green .icon {
        background: #dcffe6;
    }

    .box_4.yellow .icon {
        background: #fffed3;
    }


    .box_4.pink .icon {
        background: #feeef5;
    }

    .box_4.purple .icon {
        background: #fbeefe;
    }

    .box_4.orange .icon {
        background: #fdf3b2;
    }

    .box_4.red .icon {
        background: #ffebeb;
    }

    .box_4.blue .icon {
        background: #dfefff;
    }

    .box_4.orange2 .icon {
        background: #fff6d3;
    }

    .box_4.green2 .icon {
        background: #dcfff4;
    }

    .box_4.yellow2 .icon {
        background: #fffed3;
    }

    .box_4.babyPink .icon {
        background: #f3c9ff;
    }

    .box_4.lilac .icon {
        background: #ffd8e5;
    }


.nia_stats .--box {
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    font-size: 1.2rem;
}

.nia_stats .--box .title {
    font-weight: 300;
    margin: 0;
}

.nia_stats .--box .count {
    font-weight: 900;
    font-size: 2.5rem;
    margin: 0;
}

.nia_stats .--box.--purple {
    background: #9c5ce8;
}

.nia_stats .--box.--yellow {
    background: #fac235;
}

.nia_stats .--box.--blue {
    background: #3bccd3;
}

.job_card {
    border-radius: 20px;
}
    .job_header {
        display: flex;
        align-items: center;
    }
        .job_header .--department {
        }

        .job_header .--department img {
            width: 80px;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 12px 15px;
        }

        .job_header .--title {
        }
        .job_header .--title .--designation {
                font-size: 1.5rem;
                font-weight: 600;
        }
        .job_header .--title .--location {
        }

        .job_header .--navigation {
        }


    .job_card .job_description {
    }
        .job_card .job_description .--icons {
            display: block;
        }
        .job_card .job_description .--pills {
            display: inline-block;
            margin-right: 20px;
            font-size: 90%;
        }
        .job_card .job_description .--pills i {
            font-size: 1.5em;
            color: var(--color-blue);
            margin-right: 5px;
        }
        .job_card .job_description .--jd {
        }

.job_card .job_posted {
    font-size: 90%;
    display: flex;
    justify-content: space-between;
}

    .job_card .job_posted .--date-posted {
        color: #19c200;
    }

    .job_card .job_posted .--deadline {
        color: #ff0000;
    }

.fillter_group select {
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
   

.fillter_group {
    display: flex;
    flex-direction: column;
}

.search-input {
    position: relative;
}

    .search-input span {
        position: absolute;
        top: 0;
        right: 0;
        padding: 7px 10px;
        background: var(--color-blue);
        color: var(--color-white);
        border-radius: 0 6px 6px 0;

    }

.page-link:hover,
.page-link:focus,
.page-link.active,
#Previous, #Next {
    color: var(--color-white);
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}


.job_header .btn {
    white-space: nowrap;
}

.icon-ydc {
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    margin: 30px 0;
    text-align: center;
    height: 230px;
}
.icon-ydc img {
    width: 140px;
    margin: auto;
    text-align: center;
    margin-top: -33px;
    margin-bottom: 30px;
}

.icon-ydc .title{
    color: #fff;
}

.icon-ydc.second img {
    height: 90px;
    width: auto;
    margin-bottom: 50px;
}

.icon-ydc.first {
    background-image: url(../img/ydc-assets/Blue.png);
}

.icon-ydc.second {
    background-image: url(../img/ydc-assets/Green.png);
}
.icon-ydc.third {
    background-image: url(../img/ydc-assets/Orange.png);
}
/* **************************************
******* Responsiveness ******************
*************************************** */
@media (max-width: 1199px) {
    .stats-counter .stats-box .count {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 991px) {
            .icon-box2 {
                flex-direction: row;
                margin-top: 0;
            }
            .icon-box2 .count {
                font-size: 2rem;
            }
            .tabs_pills_card {
                display: flex;
            }

                .tabs_pills_card .section_title {
                    margin-right: auto;
                }

            .nav-pills .nav-link:after {
                display: none;
            }

            .category_box .img_outer {
                height: auto;
            }

                .category_box .img_outer img {
                    height: auto;
                    width: 100%;
                }

            .certification_section .img-outer {
                position: relative;
                height: 100%;
                display: flex;
                align-items: center;
            }

                .certification_section .img-outer img {
                    width: 100%;
                    position: relative;
                    top: -20px;
                }

            .row.partner_row .col {
                width: 50%;
                /* flex-grow: 0; */
                flex-basis: 50%;
                text-align: center;
                margin: 15px 0;
            }

            .stats-outer .row .col {
                flex: 0 1 50%;
            }

            .stats-counter .stats-box:before {
                left: 40%;
            }

            .stats-counter .stats-box.orange {
                background: rgb(255 240 214/ 40%);
            }

            .stats-counter .stats-box.blue {
                background: rgb(214 236 255 / 40%);
            }

            .stats-counter .stats-box.red {
                background: rgb(254 238 238 / 40%);
            }

            .stats-counter .stats-box.purple {
                background: rgb(251 238 254 / 40%);
            }

            .stats-counter .stats-box.yellow {
                background: rgb(255 254 211 / 40%);
            }

            .stats-counter .stats-box.green {
                background: rgb(218 248 218 / 40%);
            }

            .stats-counter .stats-box.pink {
                background: rgb(255 218 234 / 40%);
            }
            section.download_ .img_outer {
                width: 70%;
                margin: auto;
                margin-top: 10%;
            }
        }

        @media (max-width: 767px) {
            .impacteducation .img-outer {
                width: 70%;
                margin: auto;
            }

                .impacteducation .img-outer img {
                    position: relative;
                }

            .icon-box2 {
                flex-direction: column;
            }

                .icon-box2.purple {
                    flex-direction: row;
                }

            .category_box .img_outer, .category_box .img_outer img {
                width: 100%;
            }

            .certification_section .img-outer img {
                width: 80%;
                top: unset;
                margin: auto;
            }

            .projects .portfolio-content {
                text-align: center;
            }

            .--icons .box_3 {
                flex-basis: 48%;
                margin: 40px 1%;
                flex-grow: 1;
            }

            .start_career .img_link:after {
                display: none;
            }
            .box_4 .icon {
                width: 60px;
                height: 60px;
                padding: 10px;
            }

            .box_4 .icon img {
                width: 80%;
            }
            section.download_ .img_outer {
                width: 100%;
            }
            .section-header h2 {
                font-size: 2em;
            }
        }
