@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'Alice', serif;
    font-size: 18px;
    color: #000000;
}
html, body {
    height: 100%;
    margin: 0;
}
a {
    text-decoration: none;
    color: #088bd0;
}

    a:hover {
        color: #2b99f8;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Alice', serif;
    font-weight: bold;
    letter-spacing:1.5px;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 90%;
}

.yellowTxt {
    color: #e4c100
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #0880e8;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #2194f7;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #0880e8;
        border-top-color: #bfe0fd;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s 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;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    z-index: 996;
    background: rgb(47,54,112);
    background: linear-gradient(180deg, rgba(47,54,112,1) 0%, rgba(58,47,111,1) 100%);
    position: inherit;
    top: 0;
    width: 100%;
}

    #topbar.topbar-scrolled {
        top: -60px;
    }

    #topbar .contact-info a {
        line-height: 0;
        color: rgba(255, 255, 255, 0.8);
        transition: 0.3s;
    }

        #topbar .contact-info a:hover {
            text-decoration: underline;
        }

    #topbar i {
        color: #ffd800;
        line-height: 0;
        margin-right: 5px;
    }

    #topbar .contact-info .phone-icon {
        margin-left: 15px;
    }

    #topbar .cta {
        background: transparent;
    }

        #topbar .cta a {
            color: #fff;
            background: #f6b024;
            padding: 6px 24px 8px 24px;
            display: inline-block;
            transition: 0.3s;
            border-radius: 50px;
        }

            #topbar .cta a:hover {
                background: #f1a40a;
            }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    z-index: 997;
    height:auto;
     background: rgb(50,1,76);
    background: linear-gradient(90deg, rgba(50,1,76,1) 0%, rgba(41,115,155,1) 100%, rgba(0,212,255,1) 100%);
}

    #header.header-scrolled {
        background: rgba(5, 87, 158, 0.9);
        top: 0;
    }

    #header .logo {
        font-size: 21px;
        margin: 0;
        padding: 0;
        line-height: 1;
        /* font-weight: 400; */
        letter-spacing: 1px;
        text-transform: uppercase;
    }
.logo a span {
    color: #ffdd25;
}
        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 40px;
        }

.header-inner-pages {
    background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
    background: rgba(6, 98, 178, 0.9) !important;
}
#main {
    margin-top: 120px;
}
.fixed-top-home {
    position: inherit;
}

    /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
    /**
* Desktop Navigation 
*/
    .navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 5px 0 5px 24px;
    }

        .navbar > ul > li:first-child{padding-left:0;}
        .navbar a, .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3px;
            font-size: 16px;
            color: rgba(255, 255, 255, 1);
            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: 2px;
        bottom: -5px;
        left: 0;
        background-color: #f6b024;
        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: #fff;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        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;
        border-radius: 8px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            text-transform: none;
            color: #032e54;
        }

            .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: #0880e8;
            }

    .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 (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #f6b024;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
     background: rgba(3, 43, 78, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 10px;
 /*       background-color: #fff;*/
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile > ul > li {
        padding: 0;
    }

    .navbar-mobile a {
        padding: 10px 20px;
        font-size: 18px;
        color: #ffeb3b;
    }

        .navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
            visibility: hidden;
        }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: #f6b024;
        }

    .navbar-mobile .getstarted {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                color: #f6b024;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }
.loginMenu .nav-link:focus, .loginMenu .nav-link:hover {
    color: var(--bs-nav-link-hover-color);
    border: 2px solid #32004b;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*#hero {
    width: 100%;
    height: 45vh;
    overflow: hidden;*/
    /* position: relative;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;*/
    /*position: relative;*/
    /* margin-bottom: -90px;
  transition: 0.3s; */
/*}*/
/* #hero {
    width: 100%;
    height: 40vh;
    overflow: hidden;
    position: relative;
} */
    /* #hero:before {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        background-image: -webkit-linear-gradient(45deg, #3c2e6f 35%, transparent 35%);
        min-height: 400px;
        z-index: 2;
    } */

    /* #hero:after {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        left: 15px;
        right: 0;
        background-image: -webkit-linear-gradient(45deg, #5c5d86 35%, transparent 35%);
        min-height: 400px;
        z-index: 1;
    }

    #hero:after {
        content: "";
        position: absolute;
        bottom: 0;
        top: 0;
        right: 0;
        background-image: -webkit-linear-gradient(45deg, #5c5d86 35%, transparent 35%);
        z-index: 1;
    }

    #hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    } */

/* #hero {
    margin-top: 39px;
} */
    #hero h2 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 48px;
        font-weight: 700;
    }

    #hero p {
    /*    width: 80%;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;*/
        color: #fff;
        margin:0;
    }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 10%;
    }

    #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
        background: none;
        font-size: 48px;
        line-height: 1;
        width: auto;
        height: auto;
    }

    #hero .btn-get-started {
        font-family: 'Alice', serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        border: 2px solid #f6b024;
    }

        #hero .btn-get-started:hover {
            background: #f6b024;
            color: #fff;
            text-decoration: none;
        }

.carousel-item:after {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99999;
    content: '';
    width: 50%;
    background: rgb(47,54,112);
    background: linear-gradient(180deg, rgba(47,54,112,1) 0%, rgba(58,47,111,1) 100%);
}

#heroCarousel .carousel-indicators {
    bottom: 40px;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index:99;
    }
    /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
    section {
    padding:30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f8ff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 0;
        color: #054a85;
    }

    .section-title p {
        margin-bottom: 0;
        font-style: italic;
    }

.main-heading h2 {
    color: #26438f;
    border-left: 5px solid #26438f;
    padding-left: 10px;
    font-size: 22px;
    font-weight: bold;
}

.PortalsSection {
    background: url(../img/portal-bg.jpg);
}
 
    .portal-card {
        box-shadow: 5px 10px 29px 0 rgb(58 82 132 / 80%);
        transition: all 0.3s ease-in-out;
        position: relative;
        border-radius: 10px;
        margin-bottom: 10px;
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease;
    }

    .portal-card:hover {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

    .portal-card:before {
        top: 0;
        content: '';
        background: url(../img/ellipse.png);
        position: absolute;
        left: 22%;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: 50%;
    }

        .portal-card img {
            -webkit-transition: 0.4s ease;
            transition: 0.4s ease;
            max-width: 80px;
        }

    .portal-card:hover img {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }


    .portal-card h3 {
        font-size: 20px;
    }
        .portal-card h3:after {
            background: none;
        }

        .bg-pink {
            background-color: #9e0039;
        }

.bg-orange {
    background-color: #cb5632;
}

.bg-yellow {
    background-color: #e4c100;
}

.bg-purple {
    background-color: #673fb1;
}

.bg-sky {
    background-color: #00aeef;
}

.bg-brown {
    background-color: #7b2e00;
}
.bg-lightBlue{
    background-color: #227f87;
}
.bg-tealgreen {
    background-color: #2f4f4f;
}
.bg-tealblue{
    background-color: #375b6c;
}
.bg-light {
    background: #dfdae1 !IMPORTANT;
}
/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
/*.icon-boxes {
  padding-top: 0;
  position: relative;
  z-index: 100;
} 
*/
.icon-boxes .icon-box {
    padding: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.icon-boxes .icon {
    margin: 0 auto 20px auto;
    display: inline-block;
    text-align: center;
}



/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
    padding: 140px 0;
    background: url("../img/about-bg.png") top center no-repeat;
    position: relative;
}

    .about:before {
        content: "";
        background: rgba(255, 255, 255, 0.75);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .about .container {
        position: relative;
    }

    .about .content h3 {
        font-weight: 600;
        font-size: 26px;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

        .about .content ul li {
            padding-left: 28px;
            position: relative;
        }

            .about .content ul li + li {
                margin-top: 10px;
            }

        .about .content ul i {
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 20px;
            color: #0880e8;
            line-height: 1;
        }

    .about .content p:last-child {
        margin-bottom: 0;
    }

    .about .content .btn-learn-more {
        font-family: 'Alice', serif;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 5px;
        transition: 0.3s;
        line-height: 1;
        color: #0880e8;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        margin-top: 6px;
        border: 2px solid #0880e8;
    }

        .about .content .btn-learn-more:hover {
            background: #0880e8;
            color: #fff;
            text-decoration: none;
        }

@media (max-width: 992px) {
    .about {
        padding: 60px 0;
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-slide {
    background: #fff;
    transition: 0.3s;
    box-shadow: 5px 10px 29px 0 rgb(68 88 144 / 20%);
    transition: all 0.3s ease-in-out;
    border: 1px solid #f26d7d;
    padding: 10px;
    border-radius: 10px;
}

    .clients .swiper-slide img {
        /*  opacity: 0.5;*/
        transition: 0.3s;
    }

    .clients .swiper-slide:hover img {
        opacity: 1;
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .clients .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #0880e8;
    }

    .clients .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #0880e8;
    }

.clients .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

    .clients .owl-item img {
        width: 60%;
        opacity: 0.5;
        transition: 0.3s;
    }

        .clients .owl-item img:hover {
            opacity: 1;
        }

.clients .owl-nav, .clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

    .clients .owl-dot.active {
        background-color: #0880e8 !important;
    }

.clients .swiper-container:before, .clients .swiper-container:after {
    border: none;
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    background: #f1f8ff;
    padding: 0;
}

    .why-us .content {
        padding: 60px 100px 0 100px;
    }

        .why-us .content h3 {
            font-weight: 400;
            font-size: 34px;
        }

        .why-us .content h4 {
            font-size: 20px;
            font-weight: 700;
            margin-top: 5px;
        }

        .why-us .content p {
            font-size: 15px;
            color: #848484;
        }

    .why-us .video-box {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        min-height: 400px;
        position: relative;
    }

    .why-us .accordion-list {
        padding: 0 100px 60px 100px;
    }

        .why-us .accordion-list ul {
            padding: 0;
            list-style: none;
        }

        .why-us .accordion-list li + li {
            margin-top: 15px;
        }

        .why-us .accordion-list li {
            padding: 20px;
            background: #fff;
            border-radius: 4px;
        }

        .why-us .accordion-list a {
            display: block;
            position: relative;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;
            padding-right: 30px;
            outline: none;
            cursor: pointer;
        }

        .why-us .accordion-list span {
            color: #0880e8;
            font-weight: 600;
            font-size: 18px;
            padding-right: 10px;
        }

        .why-us .accordion-list i {
            font-size: 24px;
            position: absolute;
            right: 0;
            top: 0;
        }

        .why-us .accordion-list p {
            margin-bottom: 0;
            padding: 10px 0 0 0;
        }

        .why-us .accordion-list .icon-show {
            display: none;
        }

        .why-us .accordion-list a.collapsed {
            color: #343a40;
        }

            .why-us .accordion-list a.collapsed:hover {
                color: #0880e8;
            }

            .why-us .accordion-list a.collapsed .icon-show {
                display: inline-block;
            }

            .why-us .accordion-list a.collapsed .icon-close {
                display: none;
            }

    .why-us .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(#0880e8 50%, rgba(8, 128, 232, 0.4) 52%);
        border-radius: 50%;
        display: block;
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
        overflow: hidden;
    }

        .why-us .play-btn::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 100;
            transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .why-us .play-btn::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
            -webkit-animation: pulsate-btn 2s;
            animation: pulsate-btn 2s;
            -webkit-animation-direction: forwards;
            animation-direction: forwards;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: steps;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid rgba(8, 128, 232, 0.7);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .why-us .play-btn:hover::after {
            border-left: 15px solid #0880e8;
            transform: scale(20);
        }

        .why-us .play-btn:hover::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border: none;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 200;
            -webkit-animation: none;
            animation: none;
            border-radius: 0;
        }

@media (max-width: 1024px) {
    .why-us .content, .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 20px;
    padding: 50px 40px;
    border-radius: 6px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    .services .icon-box i {
        float: left;
        color: #f6b024;
        font-size: 40px;
        line-height: 0;
    }

    .services .icon-box h4 {
        margin-left: 70px;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        .services .icon-box h4 a {
            color: #05579e;
            transition: 0.3s;
        }

            .services .icon-box h4 a:hover {
                color: #0880e8;
            }

    .services .icon-box p {
        margin-left: 70px;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(5, 74, 133, 0.8), rgba(5, 74, 133, 0.9)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    .cta p {
        color: #fff;
    }

    .cta .cta-btn {
        font-family: 'Alice', serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 0.5px;
        display: inline-block;
        padding: 8px 26px;
        border-radius: 2px;
        transition: 0.5s;
        margin: 10px;
        border-radius: 50px;
        border: 2px solid #f6b024;
        color: #fff;
    }

        .cta .cta-btn:hover {
            background: #f6b024;
        }

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Portfoio
--------------------------------------------------------------*/
.portfoio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

    .portfoio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 18px 10px 18px;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        color: #444444;
        margin: 0 3px 10px 3px;
        transition: all ease-in-out 0.3s;
        border-radius: 50px;
    }

        .portfoio #portfolio-flters li:hover, .portfoio #portfolio-flters li.filter-active {
            color: #fff;
            background: #0880e8;
        }

        .portfoio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfoio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

    .portfoio .portfolio-item img {
        position: relative;
        top: 0;
        transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
        height: 200px;
        object-fit: cover;
    }

    .portfoio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: -50px;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: #de8d12;
        padding: 15px 20px;
    }

        .portfoio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            color: #fff;
            font-weight: 600;
        }

        .portfoio .portfolio-item .portfolio-info p {
            color: #fff;
            font-size: 14px;
            margin-bottom: 0;
        }

        .portfoio .portfolio-item .portfolio-info .preview-link, .portfoio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 50px;
            font-size: 24px;
            top: calc(50% - 18px);
            color: white;
            transition: ease-in-out 0.3s;
        }

            .portfoio .portfolio-item .portfolio-info .preview-link:hover, .portfoio .portfolio-item .portfolio-info .details-link:hover {
                color: #8ec8fb;
            }

        .portfoio .portfolio-item .portfolio-info .details-link {
            right: 15px;
        }

    .portfoio .portfolio-item:hover img {
        top: -30px;
    }

    .portfoio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 0;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
    background-image: url('../img/portal-bg.jpg');
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
        margin-top: 10px;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #0880e8;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #0880e8;
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(246, 176, 36, 0.08);
    }

 h3 {
  
            position: relative;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    background: #fff;
}

    .team .member .pic {
        overflow: hidden;
        width: 180px;
        border-radius: 50%;
    }

        .team .member .pic img {
            transition: ease-in-out 0.3s;
        }

    .team .member:hover img {
        transform: scale(1.1);
    }

    .team .member .member-info {
        padding-left: 30px;
    }

    .team .member h4 {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 20px;
        color: #05579e;
    }

    .team .member span {
        display: block;
        font-size: 15px;
        padding-bottom: 10px;
        position: relative;
        font-weight: 500;
    }

        .team .member span::after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 1px;
            background: #bfe0fd;
            bottom: 0;
            left: 0;
        }

    .team .member p {
        margin: 10px 0 0 0;
        font-size: 14px;
    }

    .team .member .social {
        margin-top: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .team .member .social a {
            transition: ease-in-out 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            width: 32px;
            height: 32px;
            background: #ecf6fe;
            color: #0665b7;
        }

            .team .member .social a i {
                font-size: 16px;
                margin: 0 2px;
            }

            .team .member .social a:hover {
                background: #0880e8;
                color: #fff;
            }

            .team .member .social a + a {
                margin-left: 8px;
            }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 700;
    color: #05579e;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #0880e8;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

    .pricing h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
    }

    .pricing h4 span {
        color: #bababa;
        font-size: 16px;
        font-weight: 300;
    }

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

    .pricing ul li {
        padding-bottom: 16px;
    }

    .pricing ul i {
        color: #0880e8;
        font-size: 18px;
        padding-right: 4px;
    }

    .pricing ul .na {
        color: #ccc;
        text-decoration: line-through;
    }

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #0880e8;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Alice', serif;
    font-weight: 600;
    transition: 0.3s;
}

    .pricing .btn-buy:hover {
        background: #2b99f8;
    }

.pricing .featured h3 {
    color: #fff;
    background: #0880e8;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #0880e8;
    color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding: 0 30px;
        outline: none;
        cursor: pointer;
    }

    .faq .faq-list .icon-help {
        font-size: 24px;
        position: absolute;
        right: 0;
        left: 20px;
        color: #75bdfa;
    }

    .faq .faq-list .icon-show, .faq .faq-list .icon-close {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .faq .faq-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .faq .faq-list .icon-show {
        display: none;
    }

    .faq .faq-list a.collapsed {
        color: #343a40;
    }

        .faq .faq-list a.collapsed:hover {
            color: #0880e8;
        }

        .faq .faq-list a.collapsed .icon-show {
            display: inline-block;
        }

        .faq .faq-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    background: url("../img/contact-bg.png") left center no-repeat;
    position: relative;
}

    .contact:before {
        content: "";
        background: rgba(255, 255, 255, 0.7);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .contact .container {
        position: relative;
    }

    .contact .info {
        width: 100%;
    }

        .contact .info i {
            font-size: 20px;
            background: #0880e8;
            color: #fff;
            float: left;
            width: 44px;
            height: 44px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
        }

        .contact .info h4 {
            padding: 0 0 0 60px;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #043c6d;
        }

        .contact .info p {
            padding: 0 0 0 60px;
            margin-bottom: 0;
            font-size: 14px;
            color: #444444;
        }

        .contact .info .email, .contact .info .phone {
            margin-top: 40px;
        }

    .contact .php-email-form {
        width: 100%;
        background: #fff;
    }

        .contact .php-email-form .form-group {
            padding-bottom: 8px;
        }

        .contact .php-email-form .error-message {
            display: none;
            color: #fff;
            background: #ed3c0d;
            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: #fff;
            background: #18d26e;
            text-align: center;
            padding: 15px;
            font-weight: 600;
        }

        .contact .php-email-form .loading {
            display: none;
            background: #fff;
            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 #18d26e;
                border-top-color: #eee;
                -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: 4px;
            box-shadow: none;
            font-size: 14px;
        }

        .contact .php-email-form input {
            height: 44px;
        }

        .contact .php-email-form textarea {
            padding: 10px 12px;
        }

        .contact .php-email-form button[type="submit"] {
            border: 0;
            padding: 10px 32px;
            color: #0880e8;
            transition: 0.4s;
            border-radius: 50px;
            border: 2px solid #0880e8;
            background: #fff;
        }

            .contact .php-email-form button[type="submit"]:hover {
                background: #0880e8;
                color: #fff;
            }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #ecf6fe;
    margin-top: 130px;
}

    .breadcrumbs h2 {
        font-size: 26px;
        font-weight: 600;
        color: #043c6d;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 0 10px 0;
        margin: 0;
        font-size: 14px;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #f8c255;
                content: "/";
            }

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 40px 0 20px 0;
}

    .blog .entry {
        padding: 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .entry .entry-img {
            max-height: 440px;
            margin: -30px -30px 20px -30px;
            overflow: hidden;
        }

        .blog .entry .entry-title {
            font-size: 28px;
            font-weight: bold;
            padding: 0;
            margin: 0 0 20px 0;
        }

            .blog .entry .entry-title a {
                color: #054a85;
                transition: 0.3s;
            }

                .blog .entry .entry-title a:hover {
                    color: #f6b024;
                }

        .blog .entry .entry-meta {
            margin-bottom: 15px;
            color: #2b99f8;
        }

            .blog .entry .entry-meta ul {
                display: flex;
                flex-wrap: wrap;
                list-style: none;
                align-items: center;
                padding: 0;
                margin: 0;
            }

                .blog .entry .entry-meta ul li + li {
                    padding-left: 20px;
                }

            .blog .entry .entry-meta i {
                font-size: 16px;
                margin-right: 8px;
                line-height: 0;
            }

            .blog .entry .entry-meta a {
                color: #777777;
                font-size: 14px;
                display: inline-block;
                line-height: 1;
            }

        .blog .entry .entry-content p {
            line-height: 24px;
        }

        .blog .entry .entry-content .read-more {
            -moz-text-align-last: right;
            text-align-last: right;
        }

            .blog .entry .entry-content .read-more a {
                display: inline-block;
                background: #f6b024;
                color: #fff;
                padding: 6px 20px;
                transition: 0.3s;
                font-size: 14px;
                border-radius: 4px;
            }

                .blog .entry .entry-content .read-more a:hover {
                    background: #f7b93c;
                }

        .blog .entry .entry-content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

        .blog .entry .entry-content blockquote {
            overflow: hidden;
            background-color: #fafafa;
            padding: 60px;
            position: relative;
            text-align: center;
            margin: 20px 0;
        }

            .blog .entry .entry-content blockquote p {
                color: #444444;
                line-height: 1.6;
                margin-bottom: 0;
                font-style: italic;
                font-weight: 500;
                font-size: 22px;
            }

            .blog .entry .entry-content blockquote::after {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background-color: #0880e8;
                margin-top: 20px;
                margin-bottom: 20px;
            }

        .blog .entry .entry-footer {
            padding-top: 10px;
            border-top: 1px solid #e6e6e6;
        }

            .blog .entry .entry-footer i {
                color: #8ec8fb;
                display: inline;
            }

            .blog .entry .entry-footer a {
                color: #138df7;
                transition: 0.3s;
            }

                .blog .entry .entry-footer a:hover {
                    color: #f6b024;
                }

            .blog .entry .entry-footer .cats {
                list-style: none;
                display: inline;
                padding: 0 20px 0 0;
                font-size: 14px;
            }

                .blog .entry .entry-footer .cats li {
                    display: inline-block;
                }

            .blog .entry .entry-footer .tags {
                list-style: none;
                display: inline;
                padding: 0;
                font-size: 14px;
            }

                .blog .entry .entry-footer .tags li {
                    display: inline-block;
                }

                    .blog .entry .entry-footer .tags li + li::before {
                        padding-right: 6px;
                        color: #6c757d;
                        content: ",";
                    }

            .blog .entry .entry-footer .share {
                font-size: 16px;
            }

                .blog .entry .entry-footer .share i {
                    padding-left: 5px;
                }

    .blog .entry-single {
        margin-bottom: 30px;
    }

    .blog .blog-author {
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .blog-author img {
            width: 120px;
            margin-right: 20px;
        }

        .blog .blog-author h4 {
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 0px;
            padding: 0;
            color: #0880e8;
        }

        .blog .blog-author .social-links {
            margin: 0 10px 10px 0;
        }

            .blog .blog-author .social-links a {
                color: rgba(8, 128, 232, 0.5);
                margin-right: 5px;
            }

        .blog .blog-author p {
            font-style: italic;
            color: #b7b7b7;
        }

    .blog .blog-comments {
        margin-bottom: 30px;
    }

        .blog .blog-comments .comments-count {
            font-weight: bold;
        }

        .blog .blog-comments .comment {
            margin-top: 30px;
            position: relative;
        }

            .blog .blog-comments .comment .comment-img {
                margin-right: 14px;
            }

                .blog .blog-comments .comment .comment-img img {
                    width: 60px;
                }

            .blog .blog-comments .comment h5 {
                font-size: 16px;
                margin-bottom: 2px;
            }

                .blog .blog-comments .comment h5 a {
                    font-weight: bold;
                    color: #444444;
                    transition: 0.3s;
                }

                    .blog .blog-comments .comment h5 a:hover {
                        color: #f6b024;
                    }

                .blog .blog-comments .comment h5 .reply {
                    padding-left: 10px;
                    color: #0880e8;
                }

                    .blog .blog-comments .comment h5 .reply i {
                        font-size: 20px;
                    }

            .blog .blog-comments .comment time {
                display: block;
                font-size: 14px;
                color: #2b99f8;
                margin-bottom: 5px;
            }

            .blog .blog-comments .comment.comment-reply {
                padding-left: 40px;
            }

        .blog .blog-comments .reply-form {
            margin-top: 30px;
            padding: 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

            .blog .blog-comments .reply-form h4 {
                font-weight: bold;
                font-size: 22px;
            }

            .blog .blog-comments .reply-form p {
                font-size: 14px;
            }

            .blog .blog-comments .reply-form input {
                border-radius: 4px;
                padding: 10px 10px;
                font-size: 14px;
            }

                .blog .blog-comments .reply-form input:focus {
                    box-shadow: none;
                    border-color: #fad386;
                }

            .blog .blog-comments .reply-form textarea {
                border-radius: 4px;
                padding: 10px 10px;
                font-size: 14px;
            }

                .blog .blog-comments .reply-form textarea:focus {
                    box-shadow: none;
                    border-color: #fad386;
                }

            .blog .blog-comments .reply-form .form-group {
                margin-bottom: 25px;
            }

            .blog .blog-comments .reply-form .btn-primary {
                border-radius: 4px;
                padding: 10px 20px;
                border: 0;
                background-color: #0880e8;
            }

                .blog .blog-comments .reply-form .btn-primary:hover {
                    background-color: #138df7;
                }

    .blog .blog-pagination {
        color: #0880e8;
    }

        .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: #0880e8;
                padding: 7px 16px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .blog .blog-pagination li.active, .blog .blog-pagination li:hover {
                background: #f6b024;
            }

                .blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
                    color: #fff;
                }

    .blog .sidebar {
        padding: 30px;
        margin: 0 0 60px 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .blog .sidebar .sidebar-title {
            font-size: 20px;
            font-weight: 700;
            padding: 0 0 0 0;
            margin: 0 0 15px 0;
            color: #0665b7;
            position: relative;
        }

        .blog .sidebar .sidebar-item {
            margin-bottom: 30px;
        }

        .blog .sidebar .search-form form {
            background: #fff;
            border: 1px solid #ddd;
            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 button {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 15px;
                margin: -1px;
                background: #f6b024;
                color: #fff;
                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: #f8c255;
                }

        .blog .sidebar .categories ul {
            list-style: none;
            padding: 0;
        }

            .blog .sidebar .categories ul li + li {
                padding-top: 10px;
            }

            .blog .sidebar .categories ul a {
                color: #0665b7;
                transition: 0.3s;
            }

                .blog .sidebar .categories ul a:hover {
                    color: #f6b024;
                }

                .blog .sidebar .categories ul a span {
                    padding-left: 5px;
                    color: #aaaaaa;
                    font-size: 14px;
                }

        .blog .sidebar .recent-posts .post-item + .post-item {
            margin-top: 15px;
        }

        .blog .sidebar .recent-posts img {
            width: 80px;
            float: left;
        }

        .blog .sidebar .recent-posts h4 {
            font-size: 15px;
            margin-left: 95px;
            font-weight: bold;
        }

            .blog .sidebar .recent-posts h4 a {
                color: #0665b7;
                transition: 0.3s;
            }

                .blog .sidebar .recent-posts h4 a:hover {
                    color: #f6b024;
                }

        .blog .sidebar .recent-posts time {
            display: block;
            margin-left: 95px;
            font-style: italic;
            font-size: 14px;
            color: #aaaaaa;
        }

        .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: #0880e8;
                    font-size: 14px;
                    padding: 6px 14px;
                    margin: 0 6px 8px 0;
                    border: 1px solid white;
                    display: inline-block;
                    transition: 0.3s;
                }

                    .blog .sidebar .tags ul a:hover {
                        color: #fff;
                        border: 1px solid #f6b024;
                        background: #f6b024;
                    }

                    .blog .sidebar .tags ul a span {
                        padding-left: 5px;
                        color: white;
                        font-size: 14px;
                    }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}
footer {
    background: #0d173a;
    color: #fff;
    padding: 10px;
    font-size: 14px;
}

footer img {
    max-width: 100px;
}

    #footer .footer-newsletter {
        padding: 50px 0;
        background: #05579e;
    }

        #footer .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1;
            font-weight: 600;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 50px;
        }

            #footer .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 4px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type="submit"] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                margin: 3px;
                background: #f6b024;
                color: #fff;
                transition: 0.3s;
                border-radius: 50px;
            }

                #footer .footer-newsletter form input[type="submit"]:hover {
                    background: #0880e8;
                }
  .footer-top {
        background: url(../img/footer-bg.jpg);
        padding: 60px 0 30px 0;
    }

  .footer-top .footer-info {
            margin-bottom: 30px;
        }

  .footer-top .footer-info h3 {
                font-size: 18px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
                color: #2384c6;
                text-decoration: underline;
            }

  .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: 'Alice', serif;
                color: #fff;
            }

  .footer-top .social-links a {
            font-size: 16px;
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            line-height: 1;
            padding: 10px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

  .footer-top .social-links a:hover {
                background: #f6b024;
                color: #fff;
                text-decoration: none;
            }

  .footer-top h4 {
            font-size:18px;
            font-weight: bold;
            color: #2384c6;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
            text-decoration: underline;
        }

  .footer-top .footer-links {
            margin-bottom: 30px;
        }

  .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

       .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #5db1f9;
                    font-size: 18px;
                    line-height: 1;
                }

  .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

   .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

    .footer-top .footer-links ul a {
        color: rgba(255, 255, 255, 1);
        transition: 0.3s;
        display: inline-block;
        line-height: 1;
        font-size: 16px;
    }

       .footer-top .footer-links ul a:hover {
                        color: #fff;
                    }

 .footer-top .footer-contact {
            margin-bottom: 30px;
        }
    .footer-top .footer-contact p {
        line-height: 26px;
        font-size: 16px;
    }

.list-group-item span:first-child {
    outline: 1px dotted #0880e8;
    border: 1px dotted #ffffff;
   text-align: center;
    margin-bottom: 15px;
    display: inline-table;
    font-size: 14px;
    padding: 5px;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    float: left;
}
 .credits {
        padding-top: 5px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

  .credits a {
            color: #f6b024;
        }
 

#chcp_font_size button {
    border: none;
    padding: 5px 10px;
    margin: 0 0 0 5px;
    cursor: pointer;
    background: #ffd000;
    color: #333;
    outline: none;
    transform: scale(1);
    transition: .4s ease;
    border-radius: 25px;
    width: 32px;
    font-weight: bold;
}

    button:hover {
        transform: scale(1.1);
    }

    button#triggerToggle {
        background: #faf7e9;
        color: #333;
    }

#target {
    padding: 8em 1.5em;
    background-color: #ffd000;
    text-align: center;
    color: #333;
    font-weight: 700;
    border-radius: 0 0 20px 20px;
    box-sizing: border-box;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    color: #333
}

    #target h1 {
        max-width: 500px;
        font-size: 1.5;
        margin: 0 auto;
        line-height: 1.618;
        font-weight: regular;
    }

.triggers {
    text-align: center;
}

.hamburger {
    margin: 0;
    width: 30px;
    cursor: pointer;
}

    .hamburger:after,
    .hamburger:before,
    .hamburger div {
        background-color: #fff;
        border-radius: 3px;
        content: "";
        display: block;
        height: 2px;
        margin: 7px 0;
        transition: all 0.2s ease-in-out;
    }

    /*Note: If you changed width of lines of head of arrow, then you also might have to set the transformation of those line accordingly*/
    .hamburger.closed:before {
        transform: translateY(3px) translateX(-2px) rotate(135deg);
        width: 17px;
    }

    .hamburger.closed:after {
        transform: translateY(-3px) translateX(-2px) rotate(-135deg);
        width: 17px;
    }


.users span {
    color: #ffd500;
    font-size: 18px;
    padding-left: 5px;
}

.parent {
    width: 30px;
    height: 30px;
    background: #2033db;
    margin: auto;
    border-radius: 100%;
    margin-right: 45px;
    position: relative;
    cursor: pointer;
    float: left;
}

@keyframes breathe {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(0.5)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes breathe2 {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

.parent:before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    z-index: 2;
    width: 90px;
    height: 90px;
    background: #01a6e3;
    opacity: 0.3;
    border-radius: 100%;
    animation: breathe2 2s infinite;
}

.parent:after {
    content: "";
    position: absolute;
    top: -45px;
    left: -45px;
    z-index: 3;
    width: 130px;
    height: 130px;
    background: #01a6e3;
    opacity: 0.2;
    border-radius: 100%;
    animation: breathe 2s infinite;
}

.parent > span {
    font-size: 20px;
    position: absolute;
    z-index: 4;
    top: 0;
    left: 6px;
}

/* .ministersDesk {
    float: left;
    z-index: 3;
    position: absolute;
    bottom: 0;
    width:25%;
} */

    .ministersDesk .box {
        border: 2px solid #e4c100;
        border-radius: 20px;
        padding: 10px;
        position: relative;
            /*       width: 68%;*/
        min-height:240px;
    }

/*        .ministersDesk .box:last-child {
            width: 86%;
        }*/

        .ministersDesk .box button {
            border-radius: 10px;
            /* float: right; */
            position: absolute;
            right: 0;
            top: 0;
            z-index: 99999;
        }

            .ministersDesk .box button.btn-primary {
                color: #32044e;
                background-color: #e4c100;
                border-color: #e4c100;
                font-weight: bold;
            }

            .ministersDesk .box img {
                border: 2px solid #e4c100;
                border-radius: 20px;
                max-width: 90px;
                height: 90px;
                /* float: left; */
                margin-right: 15px;
                display: block;
                margin:5px auto 10px auto;
            }



.modal.left .modal-dialog {
    position: fixed !important;
    margin: auto !important;
    width: 320px !important;
    height: 100% !important;
    -webkit-transform: translate3d(0%, 0, 0) !important;
    -ms-transform: translate3d(0%, 0, 0) !important;
    -o-transform: translate3d(0%, 0, 0) !important;
    transform: translate3d(0%, 0, 0) !important;
}

.modal.left .modal-content {
    height: 100% !important;
    overflow-y: auto !important;
    background-color: rgba(50,1,76,0.9);
}

.modal.left .modal-body {
    padding: 15px 15px 80px !important;
}

/*Left*/
.modal.left.fade .modal-dialog {
    left: -320px !important;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out !important;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out !important;
    transition: opacity 0.3s linear, left 0.3s ease-out !important;
}

.modal.left.fade.show .modal-dialog {
    left: 0 !important;
}

.modal.left .modal-header {
    background: #c49f10;
}

.modal.left h6 {
    line-height: 1.3;
    color: #28003e;
    font-weight: bold;
}

.modal-header {
    background: #6c2e8f;
}

.quotes {
    font-size: 60px;
}

.viewMore {
    color: #fff;
    padding: 7px 20px;
    border-radius: 10px;
    border: none;
    box-shadow: 5px 10px 28px #888;
    -webkit-box-shadow: 5px 10px 28px #888;
    -moz-box-shadow: 5px 10px 28px #888;
    animation: viewMoreanimation 3s infinite ease-out;
    -webkit-animation: viewMoreanimation 3s infinite ease-out;
    -moz-animation: viewMoreanimation 3s infinite ease-out;
    -o-animation: viewMoreanimation 3s infinite ease-out;
    font-size: 18px;
}

@keyframes viewMoreanimation {
    from {
        background-color: #1e001e;
    }

    to {
        background-color: #6c006c;
        background-image: linear-gradient( to right, #0a000a, #1e001e, #320032, #450045, #590059, #6c006c );
    }
}

@-webkit-keyframes viewMoreanimation {
    from {
        background-color: #1e001e;
    }

    to {
        background-color: #6c006c;
        background-image: -webkit-linear-gradient( to right, #0a000a, #1e001e, #320032, #450045, #590059, #6c006c );
    }
}

@-moz-keyframes viewMoreanimation {
    from {
        background-color: #1e001e;
    }

    to {
        background-color: #6c006c;
        background-image: -moz-linear-gradient( to right, #0a000a, #1e001e, #320032, #450045, #590059, #6c006c );
    }
}

@-o-keyframes viewMoreanimation {
    from {
        background-color: #1e001e;
    }

    to {
        background-color: #6c006c;
        background-image: -o-linear-gradient( to right, #0a000a, #1e001e, #320032, #450045, #590059, #6c006c );
    }
}

.ministerBtn {
    background: #e4c100;
    color: #3a0e52;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 15px;
    border: 2px solid #3a0e52;
}
    .ministerBtn:hover {
        background: #3a0e52;
        color: #e4c100;
        border-radius: 30px;
        font-size: 15px;
        font-weight: bold;
        padding: 6px 15px;
        border: 2px solid #e4c100;
    }
    .viewMore:hover {
    color: #fff;
    opacity: 0.8;
    padding: 10px 40px;
    margin-left: 20px;
    -webkit-transition: all 0.3s ease;
}


.calendar {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    border-radius: 10px;
}

    .calendar:hover {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }


.testim {
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%);
    background: #e9ddff;
    border: 2px solid #673ab7;
}

    .testim .wrap {
        position: relative;
        /*width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;*/
    }

    .testim .arrow {
        display: block;
        position: absolute;
        color: #333;
        cursor: pointer;
        font-size: 2em;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        padding: 5px;
        z-index: 22222222;
    }

        .testim .arrow:before {
            cursor: pointer;
        }

        .testim .arrow:hover {
            color: #5834a0;
        }

        .testim .arrow.left {
            left: 70px;
        }

        .testim .arrow.right {
            right: 70px;
        }

    .testim .dots {
        text-align: center;
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        display: block;
        z-index: 3333;
        height: 12px;
    }

        .testim .dots .dot {
            list-style-type: none;
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid #5834a0;
            margin: 0 10px;
            cursor: pointer;
            -webkit-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            position: relative;
        }

            .testim .dots .dot.active,
            .testim .dots .dot:hover {
                background: #5834a0;
                border-color: #5834a0;
            }

            .testim .dots .dot.active {
                -webkit-animation: testim-scale 0.5s ease-in-out forwards;
                -moz-animation: testim-scale 0.5s ease-in-out forwards;
                -ms-animation: testim-scale 0.5s ease-in-out forwards;
                -o-animation: testim-scale 0.5s ease-in-out forwards;
                animation: testim-scale 0.5s ease-in-out forwards;
            }

    .testim .btn-primary {
        color: #fff;
        background-color: #673ab7;
        border-color: #673ab7;
    }

    .testim .cont {
        position: relative;
        overflow: hidden;
    }

        .testim .cont > div {
            text-align: center;
            position: absolute;
            top: 0;
            left: 0;
            padding: 0 0 70px 0;
            opacity: 0;
        }

            .testim .cont > div.inactive {
                opacity: 1;
            }

            .testim .cont > div.active {
                position: relative;
                opacity: 1;
            }

        .testim .cont div .img img {
            display: block;
            width: 100px;
            height: 100px;
            margin: auto;
            border-radius: 10px;
            box-shadow: 5px 10px 29px 0 rgb(68 88 144 / 20%);
            border: 2px solid #5834a0
        }

        .testim .cont div h2 {
            color: #5834a0;
            font-size: 18px;
            margin: 15px 0;
            font-style: italic;
            font-weight: bold;
        }



        .testim .cont div.active .img img {
            -webkit-animation: testim-show 0.5s ease-in-out forwards;
            -moz-animation: testim-show 0.5s ease-in-out forwards;
            -ms-animation: testim-show 0.5s ease-in-out forwards;
            -o-animation: testim-show 0.5s ease-in-out forwards;
            animation: testim-show 0.5s ease-in-out forwards;
        }

        .testim .cont div.active h2 {
            -webkit-animation: testim-content-in 0.4s ease-in-out forwards;
            -moz-animation: testim-content-in 0.4s ease-in-out forwards;
            -ms-animation: testim-content-in 0.4s ease-in-out forwards;
            -o-animation: testim-content-in 0.4s ease-in-out forwards;
            animation: testim-content-in 0.4s ease-in-out forwards;
        }

        .testim .cont div.active p {
            -webkit-animation: testim-content-in 0.5s ease-in-out forwards;
            -moz-animation: testim-content-in 0.5s ease-in-out forwards;
            -ms-animation: testim-content-in 0.5s ease-in-out forwards;
            -o-animation: testim-content-in 0.5s ease-in-out forwards;
            animation: testim-content-in 0.5s ease-in-out forwards;
            color: #000;
        }

        .testim .cont div.inactive .img img {
            -webkit-animation: testim-hide 0.5s ease-in-out forwards;
            -moz-animation: testim-hide 0.5s ease-in-out forwards;
            -ms-animation: testim-hide 0.5s ease-in-out forwards;
            -o-animation: testim-hide 0.5s ease-in-out forwards;
            animation: testim-hide 0.5s ease-in-out forwards;
        }

        .testim .cont div.inactive h2 {
            -webkit-animation: testim-content-out 0.4s ease-in-out forwards;
            -moz-animation: testim-content-out 0.4s ease-in-out forwards;
            -ms-animation: testim-content-out 0.4s ease-in-out forwards;
            -o-animation: testim-content-out 0.4s ease-in-out forwards;
            animation: testim-content-out 0.4s ease-in-out forwards;
        }

        .testim .cont div.inactive p {
            -webkit-animation: testim-content-out 0.5s ease-in-out forwards;
            -moz-animation: testim-content-out 0.5s ease-in-out forwards;
            -ms-animation: testim-content-out 0.5s ease-in-out forwards;
            -o-animation: testim-content-out 0.5s ease-in-out forwards;
            animation: testim-content-out 0.5s ease-in-out forwards;
        }

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

.newsSection {
    position: relative;
}

    .newsSection .box {
        border-radius: 10px;
        height: 300px;
        border: 1px solid #c3c3c3;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
    }
        .newsSection .box h5 {
            display: block;
            width: 100%;
        }
.newsSection .box img{margin:auto;}
    .newsSection .newsBox {
        border: 2px solid #088bd0;
        color: #088bd0;
    }
    .newsSection .circularsBox {
        border: 2px solid #e4c100;
        color: #fdd835;
    }
    .newsSection .achievementsBox {
        border: 2px solid #912929;
        color: #912929;
    }
    .newsSection .pressBox {
        border: 2px solid #3e3f8f;
        color: #3e3f8f;
    }


div#testim-content p{
    font-size: 14px;
    margin-top: 15px;
    font-weight: bold;
}
.newsIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    background: #bb0341;
    border-radius: 10px;
    height: 90px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    padding: 10px;
}


/* Bar Graph Horizontal */
.bar-graph .year {
    -webkit-animation: fade-in-text 2.2s 0.1s forwards;
    -moz-animation: fade-in-text 2.2s 0.1s forwards;
    animation: fade-in-text 2.2s 0.1s forwards;
    opacity: 0;
}
/*
.bar-graph-horizontal {
    max-width: 380px;
}*/

    .bar-graph-horizontal > div {
        float: left;
        margin-bottom:15px;
        width: 100%;
        position: relative;
    }

 .name {
        float: left;
        margin-top: 15px;
        width: auto;
        position: absolute;
        z-index: 1;
        color: #ffff;
        font-weight: bold;
        padding-left: 15px;
        left: 0;
    
    }
   .number {
        font-size:24px;
        font-weight: bold;
        padding:15px;
    }

 .bar {
    border-radius: 3px;
    float: left;
    overflow: hidden;
    position: relative;
    width: 0;
    border-radius: 10px;
    height: 50px;
    box-shadow: 5px 10px 29px 0 rgb(58 82 132 / 80%);
}

/*.bar-graph-one .bar::after {
    -webkit-animation: fade-in-text 2.2s 0.1s forwards;
    -moz-animation: fade-in-text 2.2s 0.1s forwards;
    animation: fade-in-text 2.2s 0.1s forwards;
    color: #fff;
    content: attr(data-percentage);
    font-weight: 700;
    position: absolute;
    right: 16px;
    top: 17px;
}
*/
 .bar-one .bar {background-color: #cf185b; }
 .bar-two .bar { background-color: #4f1387;}
 .bar-three .bar { background-color: #024843;}
 .bar-four .bar { background-color: #7a0026;}
 .bar-one .number{
    color: #cf185b;
}

 .bar-two .number {
    color: #4f1387;
}
.bar-three .number {
    color: #024843;
}
.bar-four .number {
    color: #7a0026;
}


.carousel-fade .carousel-inner .item {
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

    .carousel-fade .carousel-inner .next,
    .carousel-fade .carousel-inner .prev,
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
        left: 0;
        transform: translate3d(0, 0, 0);
    }

.carousel-fade .carousel-control {
    z-index: 2;
}
#footer h3::after {
    background: transparent;
}
#footer .list-group-item {
    position: relative;
    display: block;
    padding: 0 0 15px 0;
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    border: transparent;
    font-size: 16px;
}
#footer .footer-top .footer-info i {
    color: #2384c6;
    font-size: 16px;
    position: absolute;
    left: 0;
}
#footer .footer-top .footer-info li{padding-left:30px;}
.login-btn {
    border: 2px solid #32004b;
    border-radius: 30px;
    outline: none;
    padding: 3px 13px;
    position: relative;
    color: #fff;
    background-color: #e4c100;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: -1px;
    font-weight:bold;
    font-size:14px;


}
    .login-btn i {
        margin-right: 10px;
        color: #ffd500;
    }
span.btn__text-static i {
    color: #32044e;
}
    .login-btn .btn__text-dynamic,
    .login-btn .btn__text-dynamic-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        transition: all ease 0.5s;
    }

    .login-btn .btn__text-dynamic {
        background-color: #32004b;
      overflow: hidden;
      color:#fff;
    }

    .btn:hover .btn__text-dynamic {
        transform: translateX(-100%);
    }

    .btn:hover .btn__text-dynamic-inner {
        transform: translateX(100%);
    }

.btn--animation-from-right:hover .btn__text-dynamic {
    transform: translateX(100%);
}

.btn--animation-from-right:hover .btn__text-dynamic-inner {
    transform: translateX(-100%);
}

.btn--animation-from-top:hover .btn__text-dynamic {
    transform: translateY(100%);
}

.btn--animation-from-top:hover .btn__text-dynamic-inner {
    transform: translateY(-100%);
}

.btn--animation-from-bottom:hover .btn__text-dynamic {
    transform: translateY(-100%);
}

.btn--animation-from-bottom:hover .btn__text-dynamic-inner {
    transform: translateY(100%);
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e) center/1em auto no-repeat;
    border:0;
    border-radius: .25rem;
    opacity: .5;
    border: 2px solid #1e024e;
}
#heroCarousel .carousel-indicators {
    bottom: 40px;
}
.carousel-indicators [data-bs-target] {
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #3c2e6f;
    background-clip: padding-box;
    border: 0;
    border-top: none;
    border-bottom: none;
    height:10px;
    width:40px;
}
.loginMenu {
    background: #32044ed9;
    color: #e4c100;
    padding: 0;
    overflow: hidden;
}
 
 .loginMenu li {
        border-bottom: 1px solid #dfc21f;
    }
    .loginMenu li:last-child{
        border-bottom: none;
    }

    .loginMenu a {
        color: #e4c100;
        font-size: 16px;
    }

    .loginMenu .dropdown-item:focus, .loginMenu .dropdown-item:hover {
        color: #1e2125;
        background-color: #e4c100;
    }
.ticker__viewport {
    overflow: hidden;
}

.ticker__list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-weight:bold;
    color: #ecbb00;
}

.ticker__item {
    display: inline-block;
    white-space: nowrap;
    border-right: 1px dotted yellow;
    padding:0 20px;
    line-height:2;
}

.logoHeader {
    background: url(../../images/headerBg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;

}
    
    .breadcrumb {
        background-color: #de8d12;
        overflow: hidden;
        margin-bottom: 0;
    }

    .breadcrumb li {
        position: relative;
        height: 2rem;
        line-height: 2rem;
        padding-left: 1.2rem !important;
        padding-right: 0.6rem;
        color: white !important;
        transition: all 0.2s ease-in-out;
        text-transform: uppercase;
        font-size: 0.9rem;
        font-weight: bold;
    }

        .breadcrumb li a {
            height: 2rem;
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
        }

        .breadcrumb li:before {
            display: none;
        }

        .breadcrumb li:after {
            position: absolute;
            right: -1.7rem;
            top: 0;
            content: "";
            display: block;
            width: 1rem;
            height: 1rem;
            border-right: 1rem solid transparent;
            border-bottom: 1rem solid transparent;
            border-top: 1rem solid transparent;
            border-left: 1rem solid blue;
        }

        .breadcrumb li:first-child {
            background-color: #ff6f3a;
            z-index: 20;
            padding-left: 0.85rem !important;
        }

            .breadcrumb li:first-child:after {
                border-left: 12px solid #ff6f3a;
            }

        .breadcrumb li:nth-child(2) {
            background-color: #b1933a;
            z-index: 19;
        }

            .breadcrumb li:nth-child(2):after {
                border-left: 12px solid #b1933a;
            }

        .breadcrumb li:nth-child(3) {
            background-color: #0251c6;
            z-index: 18;
        }

            .breadcrumb li:nth-child(3):after {
                border-left: 12px solid #0251c6;
            }

        .breadcrumb li:nth-child(4) {
            background-color: #0149b2;
            z-index: 17;
        }

            .breadcrumb li:nth-child(4):after {
                border-left: 12px solid #0149b2;
            }

        .breadcrumb li:nth-child(5) {
            background-color: #01409e;
            z-index: 16;
        }

            .breadcrumb li:nth-child(5):after {
                border-left: 12px solid #01409e;
            }

        .breadcrumb li:nth-child(6) {
            background-color: #013889;
            z-index: 15;
        }

            .breadcrumb li:nth-child(6):after {
                border-left: 12px solid #013889;
            }

        .breadcrumb li:hover {
            filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.5));
        }

/*    .breadcrumb.breadcrumb-responsive {
        flex-wrap: nowrap !important;
        overflow-x: scroll;
    }
*/
        .breadcrumb.breadcrumb-responsive li,
        .breadcrumb.breadcrumb-responsive li a {
            white-space: nowrap !important;
        }
.swiper-container:before {
    border: 10px solid #FF946C;
    content: '';
    width: 300px;
    height: 150px;
    position: absolute;
    left: 0;
    /* background: #ff946d; */
    top: 0;
    z-index: 9;
    border-right: none;
    border-bottom: none;
    border-radius: 10px;
}

.swiper-container:after {
    border: 10px solid #FF946C;
    content: '';
    width: 130px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 35px;
    z-index: 9999999;
    border-left: none;
    border-top: none;
    border-radius: 10px;
}

.tabcontent h3 {
    text-transform: uppercase;
    position: relative;
}
 h3:after {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    content: "";
    height: 3px;
    border-radius: 10px;
    border-radius: 5px/3px;
    background: linear-gradient(70deg,#0ebeff,#ffdd40,#ae63e4,#47cf73);
}

.badge {
    display: inline-block;
    padding: 5px 10px;
}
.bg-primary {
    background-color: #383170 !important;
}
a:hover {
    color: #383170;
    text-decoration: none;
}
#cmpdf .btn-close, #ministerpdf .btn-close {
    background-image: url(../img/close-img.svg);
    background-color: #c49f10;
    opacity: 1;
}
th {
    background: #ebdecc !important;
}
table.dataTable.table-striped>tbody>tr.odd {
    --bs-table-accent-bg: rgb(247 243 236);
}
.table {
    border-color: #d0cdc4;
}

  .chart-wrap .chart-title {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
  }
 .chart-wrap .row {
    position: relative;
    height: 50px;
    margin: 0 0 15px 0;
  

}
  .chart-wrap .bar-wrap {
    position: relative;
    background: #d7dbde;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
  }
  .chart-wrap .bar-wrap .bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
     transition: all 1s;
    transform: translateX(-100%);
    height:100%;
  }
  .chart-wrap .bar-wrap .bar.in {
    transform: translateX(0%);
  }
  .chart-wrap .row:nth-of-type(1) .bar {
    transition: 1s 400ms;
  }
  .chart-wrap .row:nth-of-type(2) .bar {
    transition: 1s 600ms;
  }
  .chart-wrap .row:nth-of-type(3) .bar {
    transition: 1s 800ms;
  }
  .chart-wrap .row:nth-of-type(4) .bar {
    transition: 1s 1000ms;
  }
.chart-wrap .label {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 150px; */
    padding-left: 10px;
    text-align: left;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 10;
    letter-spacing: 1.5px;
}
  .chart-wrap .number {
    position: absolute;
    top: -8px;
    right: -98%;
    padding-right: 10px;
    font-size:28px;
    font-weight: bold;
    text-align: left;
    z-index: 10;
}
  div#dashboard-stats {
    width: 80%;
}
.news-icon-nav{max-width:30px;}
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,400i|IBM+Plex+Sans+Condensed:400,400i|IBM+Plex+Sans:100,100i,400,400i,700,700i|IBM+Plex+Serif:400,400i");
.about {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.about .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}
.about .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/logo_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}
.about .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}
.about .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}
.about .social.portfolio {
  transition: all 0.8s ease;
}
.about .social.portfolio .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/link.svg);
}
.about .social.dribbble {
  transition: all 0.3s ease;
}
.about .social.dribbble .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/dribbble.svg);
}
.about .social.linkedin {
  transition: all 0.8s ease;
}
.about .social.linkedin .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/linkedin.svg);
}
.about:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}
.about:hover .social {
  opacity: 1;
}
.about:hover .social .icon {
  opacity: 0.9;
}
.about:hover .social:hover {
  background-size: 28px;
}
.about:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}
.about:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.portfolio .icon:hover {
  background-color: #698fb7;
}
.about:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.dribbble .icon:hover {
  background-color: #ea4c89;
}
.about:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.linkedin .icon:hover {
  background-color: #0077b5;
}


/* Tabs menu */
.tabs {
  margin: 0;
  /* background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  border-radius: 2px 2px 0px 0px;
}
@media screen and (max-width: 512px) {
  .tabs {
    height: 40px;
  }
}
 

 
/* Tab Links */
.tablinks {
    background: transparent;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: none;
    outline: none;
    cursor: pointer;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 2px solid #7061c1;
    border-radius: 15px;
}
@media screen and (max-width: 512px) {
  .tablinks {
    height: 40px;
    font-size: 12px;
  }
}

.tablinks:before {
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  content: "";
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

/*tab buttons hover*/
.tablinks:hover::before {
  height: 100%;
  z-index: 2;
  bottom: 0;
}
@media screen and (max-width: 512px) {
  .tablinks:hover::before {
    height: 0;
  }
}

/* Tab active */
.tablinks.active {
  z-index: 0;
  border-right: 0px;
  border-left: 0px;
  height: 65px;
  bottom: 0px;
  overflow: hidden;
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
@media screen and (max-width: 512px) {
  .tablinks.active {
    height: 60px;
  }
}

.tablinks.active:before {
  content: "";
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}

/* Tabs text */
.tablinks.active p, .tablinks.active:hover p {
    opacity: 1;
    /* background: -webkit-linear-gradient(
135deg, #667eea 0%, #764ba2 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #fff;
}
.tablinks p {
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.5s ease;
    padding: 0;
    margin: 0;
    color: #331980;
    backface-visibility: hidden;
    font-weight: bold;
    font-size: 18px;
}

.tablinks:hover p {
  color: white;
  opacity: 1;
}
@media screen and (max-width: 512px) {
  .tablinks:hover p {
    color: #686868;
    opacity: 0.6;
  }
}

/* Tabs text bigger */
.tablinks p:before {
  content: attr(data-title);
  position: absolute;
  height: auto;
  width: auto;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  font-size: 40px;
  transition: 1s ease-out;
  z-index: -1;
  font-weight: 600;
  top: 110%;
}
@media screen and (max-width: 512px) {
  .tablinks p:before {
    display: none;
  }
}

.tablinks:hover p:before {
  opacity: 0.1;
  font-size: 40px;
  top: -80%;
}

/* tab content */
.wrapper_tabcontent {
  background-color: white;
  margin-top: 0px;
/*  z-index: -3;*/
  position: relative;
  opacity: 1;
  padding: 40px 60px;
  overflow: hidden;
/*  transition: all 1s ease;*/
  top: 0;
  border: 1px solid #677de8;
  border-radius: 50px;
}

.tabcontent {
  display: none;
  min-height: 180px;
}

@keyframes tabEffect {
  from {
    top: -40px;
  }
  to {
    top: 0px;
  }
}
 

/* Tab content line */
.wrapper_tabcontent:after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  left: 0;
  bottom: 0;
  z-index: -2;
  transition: all 1s ease;
}

/* Title */
.tabcontent h3 {
    font-size:30px;
    top:145px;
    transform: rotate(90deg);
    position: absolute;
    left: -125px;
    opacity: 0.3;
    width: 300px;
    height: 60px;
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0;
    animation: city 1s ease;
}


@keyframes city {
  from {
    left: -150px;
  }
  to {
    left: -90px;
  }
}
/* Text*/
.tabcontent p {
  color: #686868;
  margin: 0;
  padding: 0;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  width: 100%;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
}
@media screen and (max-width: 512px) {
  .tabcontent p {
    font-size: 14px;
    line-height: 26px;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    margin-left: 30px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}


ol.gradient-list > li::before, ol.gradient-list > li {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}


ol.gradient-list {
  counter-reset: gradient-counter;
  list-style: none;
  padding-left: 1rem;
}
    ol.gradient-list > li {
        background: white;
        border-radius: 0 0.5rem 0.5rem 0.5rem;
        counter-increment: gradient-counter;
        min-height: 3rem;
        padding: 1rem 1rem 1rem 3rem;
        position: relative;
        height: auto;
        padding-bottom: 30px
        /* overflow: hidden;*/
    }
ol.gradient-list > li::before, ol.gradient-list > li::after {
  background: linear-gradient(135deg, #de8d12 0%, #673ab7 100%);
  border-radius: 1rem 1rem 0 1rem;
  content: "";
  height: 3rem;
  left: -1rem;
  overflow: hidden;
  position: absolute;
  top: -1rem;
  width: 3rem;
}
ol.gradient-list > li::before {
    align-items: flex-end;
    content: counter(gradient-counter);
    color: #fff;
    display: flex;
    font: 900 1.5em/1 "Montserrat";
    justify-content: flex-end;
    padding: 0.125em 0.25em;
    z-index: 1;
}
ol.gradient-list > li:nth-child(10n+1):before {
  background: linear-gradient(135deg, rgba(50, 3, 126, 0.9) 0%, rgba(253, 220, 50, 0.9) 100%);
}
ol.gradient-list > li:nth-child(10n+2):before {
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}
ol.gradient-list > li:nth-child(10n+3):before {
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}
ol.gradient-list > li:nth-child(10n+4):before {
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}
ol.gradient-list > li:nth-child(10n+5):before {
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}
ol.gradient-list > li:nth-child(10n+6):before {
    background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}

ol.gradient-list > li + li {
  margin-top: 2rem;
}
.uploadBy{
    color: #764ea6;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
}
.uploadBy i{
    color: #d27f00;
    margin-right: 5px;
 
}
    /* Styling the form*/
    .form {
    position: relative;
    height: 3rem;
    }
    .formTextare {
        height:7rem;
    }
    .form__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border:2px solid #e0ae80;
    border-radius: 0.5rem;
    outline: none;
    padding: 1.25rem;
    background: none;
    }

    .form__input:hover {
    border-color:#e8ba6f;
    }

    .form__input:focus {
    border-color: #9a77ce;
    }

    .form__label {
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        padding: 0 0.5rem;
        color: #0a1638;
        cursor: text;
        -webkit-transition: top 200ms ease-in, left 200ms ease-in, font-size 200ms ease-in;
        transition: top 200ms ease-in, left 200ms ease-in, font-size 200ms ease-in;
        background-color: #ffffff;
    }

    .form__input:focus ~ .form__label,
    .form__input:not(:placeholder-shown).form__input:not(:focus) ~ .form__label {
    top: -0.5rem;
    font-size: 0.8rem;
    left: 0.8rem;
    }
#ministerSlider .carousel-indicators [data-bs-target] {
    background-color: #dfc21f;
    height: 14px;
    width: 14px;
}
#ministerSlider .carousel-inner {
    z-index: 9;
    padding-bottom: 30px;
}
.leftBannercolor{
    background-color: #024d84;
}
.newImg{max-width:50px;}
.loginBtn{
    padding:10px;
    font-size:16px;    
    background: linear-gradient(90deg, rgba(50,1,76,1) 0%, rgba(41,115,155,1) 100%, rgba(0,212,255,1) 100%);
}
.loginBtn:hover {
        padding: 10px;
        font-size: 16px;
        background: linear-gradient(90deg, rgba(0,212,255,1) 0%, rgba(41,115,155,1) 100%, rgba(50,1,76,1) 100%);
 }
.downloadFormat{font-size:18px;}
.downloadFormat a{color:#5834a0 }

 

    input:-webkit-autofill {
        background: transparent !important;
    }

    input:autofill{
        background: transparent !important;
    }
.form-control {
    border: 2px solid #e0ae80;
 
 
}

.input-group-text {
    border: 2px solid #e0ae80;
    background: #e0ae80;
}
.captchaCalculation {
    padding:10px;
    border-radius: 0 7px 7px 0 !important;
}
/*theme */

:root {
    --primary-dark:#121212 ;
    --color-dp0: #191919  ;
    --color-dp1: rgb(35,35,35) ;
    --color-dp2: rgb(38,38,38) ;
    --color-dp3: rgb(41,41,41) ;
    --color-dp4: rgb(42,42,42) ;
    --color-dp6: rgb(48,48,48) ;
    --color-dp8: rgb(49,49,49) ;
    --color-dp12: rgb(53,53,53) ;
    --color-dp16: rgb(56,56,56) ;
    --color-dp24: rgb(58,59,59) ;
    --color-text: #eee ;
    --color-text-secondary: #a0a0a0;
    --color-white: #fff;
    --color-blue-secondary: rgb(0, 99, 204);
    --color-blue-tertiary: rgb(0, 123, 255);
    --select-width:60px;
    --select-height:25px;
    --color-dark-primary :#64B5F6;
    --color-dark-secondary :#90A4AE;
    --color-dark-success :#81C784;
    --color-dark-warning :#FFF59D;
    --color-dark-info :#4FC3F7;
    --color-dark-light :#EEEEEE;
    --color-dark-body :#e0e0e0;
    --color-dark-danger :#CF6679;
    --color-dark-primary-border :#42A5F5;
    --color-dark-secondary-border :#607D8B;
    --color-dark-success-border :#66BB6A;
    --color-dark-warning-border :#FFF176;
    --color-dark-info-border :#2196F3;
    --color-dark-danger-border :#e57373;
}
html {
     scroll-behavior: smooth;
}
body {
    transition:.35s all ease-out;
}
[data-theme="dark"] .jumbotron
{
    background: var(--color-dp0) !important;
}
[data-theme='dark'] a{
    color:#5fa9ee;
}
[data-theme="dark"] .navbar {
    background: var(--color-dp16) !important;
}

[data-theme="dark"] body{
    background-color: var(--primary-dark) !important;
    color: var(--color-text) !important;
}

[data-theme="dark"] .bg-light {
    background-color: var(--color-dp0) !important;
}

[data-theme="dark"] .bg-white {
    background-color: var(--color-dp0)  !important;
}

[data-theme="dark"] .bg-dark {
    background-color: var(--color-dp4) !important;
}

[data-theme='dark'] .card {
    background: var(--color-dp4) !important;
}
[data-theme='dark'] .card-header {
    background: var(--color-dp2) !important;
}
[data-theme='dark'] .card-text {
    color: var(--color-text) !important;
}
[data-theme='dark'] .text-dark {
    color: var(--color-text-secondary) !important;
}
[data-theme='dark'] .text-dark:hover {
    color: var(--color-text) !important;
}
[data-theme='dark'] .list-group-item {
    background: var(--color-dp4) !important;
    color: var(--color-text) !important;
}
[data-theme='dark'] .form-control {
    background: var(--color-dp6) !important;
    border: var(--color-dp8) !important;
    color: var(--color-text-secondary) !important;
}
[data-theme='dark'] .form-control:active {
    background: var(--color-dp6) !important;
    border: var(--color-dp8) !important;
    color: var(--color-text-secondary) !important;
}
[data-theme='dark'] .input-group-prepend{
    background: var(--color-dp16) !important;
}
[data-theme='dark'] .custom-select{
    background: var(--color-dp6) !important;
    border: var(--color-dp8) !important;
    color: var(--color-text-secondary) !important;
}
[data-theme='dark'] .custom-control-input:checked ~ .custom-control-label:before {
    background-color:var(--color-blue-secondary) !important;
    color:var(--color-dp6) !important;
}
[data-theme='dark'] .custom-control-input ~ .custom-control-label:before {
    background-color:var(--color-dp8) !important;
    border-color: var(--color-dp16);
    box-shadow: var(--color-dp16);
    color:var(--color-dp6) !important;
}
[data-theme='dark'] hr {
    color: var(--text-color-secondary) !important;
}

/* 
Bootstrap */
[data-theme='dark'] .alert {
    color: var(--color-dp0);
}
[data-theme='dark'] .alert-danger{
    background-color: var(--color-dark-danger);
    border-color: var(--color-dark-danger-border);
}
[data-theme='dark'] .alert-primary{
    background: var(--color-dark-primary);
    border-color: var(--color-dark-primary-border);
}
[data-theme='dark'] .alert-secondary{
    background: var(--color-dark-secondary);
    border-color: var(--color-dark-secondary-border);
}
[data-theme='dark'] .alert-warning{
    background: var(--color-dark-warning);
    border-color: var(--color-dark-warning-border);
}
[data-theme='dark'] .alert-info{
    background: var(--color-dark-info);
    border-color: var(--color-dark-info-border);
}
[data-theme='dark'] .alert-success{
    background: var(--color-dark-success);
    border-color: var(--color-dark-success-border);
}
[data-theme='dark'] .alert-light{
    background: var(--color-dark-light);
}
/* breadcrumb */
[data-theme='dark'] .breadcrumb{
    background: var(--color-dp16);
}
[data-theme='dark'] .breadcrumb-item{
    color:var(--color-blue-secondary);
}
[data-theme='dark'] .breadcrumb-item:hover{
    color:var(--color-blue-tertiary);
}
[data-theme='dark'] .breadcrumb-item + .active{
    color:var(--color-blue-tertiary);
}

/* modal*/
[data-theme='dark'] .modal-content {
    background: var(--color-dp24)! important;
}
[data-theme='dark'] .modal-header,.modal-footer {
    background: var(--color-dp12) !important;
}
[data-theme='dark'] .modal-header{
    border-bottom:1px solid var(--color-text-secondary);
}
[data-theme='dark'] .modal-footer{
    border-top:1px solid var(--color-text-secondary);
}
[data-theme='dark'] .close {
    color: var(--color-text);
    text-shadow:none;
}
[data-theme='dark'] .close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    color: var(--color-text);
}

/* nav */
[data-theme='dark'] .nav {
    background: var(--color-dp12);
}

/* pagination */
[data-theme='dark'] .page-item,.page-link{
    background: var(--color-dp8) !important;
    border-color: var(--color-dp12);
}
[data-theme='dark'] .page-item:hover ,.page-link:hover{
    background: var(--color-dp6) !important;
    border-color: var(--color-dp12);
}

/* tooltip */
[data-theme='dark'] .tooltip-inner {
    background: var(--color-dp16);
}

/* img */
[data-theme='dark'] img {
    filter: grayscale(20%);
}

/* Text */
[data-theme='dark'] .text-primary {
    color: var(--color-dark-primary) !important; 
}
[data-theme='dark'] .text-secondary {
    color: var(--color-dark-secondary) !important;
}
[data-theme='dark'] .text-success {
    color: var(--color-dark-success) !important;
}
[data-theme='dark'] .text-danger {
    color: var(--color-dark-danger) !important;
}
[data-theme='dark'] .text-warning {
    color: var(--color-dark-warning) !important;
}
[data-theme='dark'] .text-info {
    color: var(--color-dark-info) !important;
}
[data-theme='dark'] .text-light {
    color: var(--color-dark-light) !important;
}
[data-theme='dark'] .text-body {
    color: var(--color-dark-body) !important;
}
[data-theme='dark'] .text-white {
    color: var(--color-text) !important;
}
[data-theme='dark'] .text-dark {
    color: var(--color-text-primary ) !important;
}



/* background */
[data-theme='dark'] .bg-primary {
    background: var(--color-dark-primary) !important; 
}
[data-theme='dark'] .bg-secondary {
    background: var(--color-dark-secondary) !important;
}
[data-theme='dark'] .bg-success {
    background: var(--color-dark-success) !important;
}
[data-theme='dark'] .bg-danger {
    background: var(--color-dark-danger) !important;
}
[data-theme='dark'] .bg-warning.text-dark {
    background: var(--color-dark-warning) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .bg-info {
    background: var(--color-dark-info) !important;
}

[data-theme='dark'] .bg-body {
    background: var(--color-dark-body) !important;
}
[data-theme='dark'] .bg-dark.text-white {
    background: var(--color-dp6) !important;
    color: var(--color-text-primary) !important;
}

/* Buttons*/
/* background */

[data-theme='dark'] .btn-primary {
    background: var(--color-dark-primary) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-secondary {
    background: var(--color-dark-secondary) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-success {
    background: var(--color-dark-success) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-danger {
    background: var(--color-dark-danger) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-warning {
    background: var(--color-dark-warning) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-info {
    background: var(--color-dark-info) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-light {
    background: var(--color-dp12) !important;
    color:var(--color-text) !important;
    border-color:var(--color-dp4) !important;
}
[data-theme='dark'] .btn-body {
    background: var(--color-dark-body) !important;
}
[data-theme='dark'] .btn-dark {
    background: var(--color-dp6) !important;
    color: var(--color-text-primary) !important;
}
/**/
[data-theme='dark'] .btn-outline-primary {
    border-color: var(--color-dark-primary) !important;
    color: var(--color-dark-primary) !important;
}
[data-theme='dark'] .btn-outline-primary:hover {
    background: var(--color-dark-primary) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-outline-secondary {
    border-color: var(--color-dark-secondary) !important;
    color: var(--color-dark-secondary) !important;
}
[data-theme='dark'] .btn-outline-secondary:hover {
    background: var(--color-dark-secondary) !important;
    color: var(--color-dp0) !important;
}

[data-theme='dark'] .btn-outline-success {
    border-color: var(--color-dark-success) !important;
    color: var(--color-dark-success) !important;
}
[data-theme='dark'] .btn-outline-success:hover {
    background: var(--color-dark-success) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-outline-danger {
    border-color: var(--color-dark-danger) !important;
    color: var(--color-dark-danger) !important;
}
[data-theme='dark'] .btn-outline-danger:hover {
    background: var(--color-dark-danger) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-outline-warning {
    border-color: var(--color-dark-warning) !important;
    color: var(--color-dark-warning) !important;
}
[data-theme='dark'] .btn-outline-warning:hover {
    background: var(--color-dark-warning) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-outline-info {
    border-color: var(--color-dark-info) !important;
    color: var(--color-dark-info) !important;
}
[data-theme='dark'] .btn-outline-info:hover {
    background: var(--color-dark-info) !important;
    color: var(--color-dp0) !important;
}
[data-theme='dark'] .btn-outline-light {
    border-color: var(--color-text) !important;
    color: var(--color-text) !important;
}
[data-theme='dark'] .btn-outline-light:hover {
    background: var(--color-dp4) !important;
    color: var(--color-text) !important;
}
[data-theme='dark'] .btn-outline-dark {
    border-color: var(--color-dp8) !important;
    color: var(--color-dp8) !important;
}
[data-theme='dark'] .btn-outline-dark:hover {
    background: var(--color-dp8) !important;
    color: var(--color-white) !important;
}

[data-theme='dark'] code {
     color: var(--text-secondary);
}

/* custom checkbox */
.switch {
    position: relative;
    display: inline-block;
    width: var(--select-width);
    height: var(--select-height);
    animation : moveUp .5s .5s;
    animation-fill-mode:backwards;
}
@keyframes moveUp {
    from {
         transform:translateY(30px);
         opacity:0;
    }
    to {
         transform:translateY(0px);
         opacity:1px;
    }
}

.switch input {
 opacity: 0;
 width: 0;
 height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f77d57;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
 position: absolute;
 content: "";
 height: calc(var(--select-height) - 2 * 4px );
 width: calc(var(--select-height) - 2 * 4px );
 left: 4px;
 bottom: 4px;
 background-color: white;
 -webkit-transition: .4s;
 transition: .4s;
}

input:checked + .slider {
 background-color: var(--color-dark-primary);
}

input:focus + .slider {
 box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
 -webkit-transform: translateX( 45px );
 transform: translateX( 45px );
}

/* Rounded sliders */
.slider.round {
 border-radius: 34px;
}

.slider.round:before {
 border-radius: 50%;
}

.btn-fixed--right-corner {
    position:fixed;
    bottom:25px;
    right:25px;
    width:45px;
    height:45px;
    font-size:1.8rem;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.img-scroll {
    width: 100%;
    height: 400px;
    background-size: 100% !important;
    background-position-y: 0%;
    position: relative;
    overflow: hidden;
}
.img-scroll:hover {
    animation: updown 3s alternate infinite;
}

.img-scroll-caption {
    position: absolute;
    width:100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 5px;
    bottom: 0;
    color: var(--color-text);
    background: rgba(58,59,59,0.5);
    transition: .5s all ease-out;
}
.PortalsSectionPage .card {
    border: 1px solid #03a9f4 !important;
    border-radius: 15px;
    overflow: hidden;
}
.PortalsSectionPage img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
 
    overflow: hidden;
}

    .PortalsSectionPage img:hover{
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
.langSelect {
    background-color: #c9516a;
    border-radius: 15px;
    line-height: initial;
    font-size: 14px;
    font-weight: bold;
    max-width: 100px;
    color: #fff;
    border: #c9516a;
    background-image: url('../img/down-arrow.png');
    background-size: 11px;
}
#topbar.topbarDefault {
    position: absolute !important;
}
.portfolio-info img{max-width:600px; width:100%; height:auto;}
