@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500i,900,900i');

/********** Template CSS **********/
:root {
    --primary: #4761FF;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}

body * {
    font-family: 'Roboto', Arial, sans-serif;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 25px;
    height: 25px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 30px 0;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: all ease-in-out .3s;
}

.navbar .navbar-nav .nav-link:last-child {
    margin-top: auto;
    padding: 10px 8px !important;
    height: 40px;
    margin-bottom: auto;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: red;
    font-weight: 500;
}

.navbar .navbar-nav .nav-link:last-child:hover {
    color: #fff;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 1400px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 20px;
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    #header-carousel .carousel-item {
        height: auto !important;
    }

    .logo-large {
        width: 80px !important;
    }

    .navbar .navbar-nav .nav-link {
        margin-left: 15px;
        font-size: 12px;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: #186ed3;
    border: 15px solid #186ed3;
}

#header-carousel .carousel-item {
    height: 700px;
    overflow: hidden;
}

/* animate the image */
#header-carousel .carousel-item img {
    -webkit-animation: zoom 40s;
    animation: zoom 40s;
}

#header-carousel .carousel-item .dark {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
}

#header-carousel .carousel-item .carousel-caption {
    z-index: 11;
}

#header-carousel .carousel-item .carousel-caption h2 {
    font-size: 24px;
}

@media (max-width: 768px) {

    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    /* background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    /* box-shadow: 0 0 45px rgba(0, 0, 0, .08); */
}

.feature-item {
    /* border-color: rgba(0, 0, 0, .03) !important; */
}


/*** About ***/
.about {
    /* background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover; */
}

.about .start .img {
    height: 450px;
    overflow: hidden;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
    height: 200px;
    border-bottom: 3px solid #2d7bda;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: #186ed3;
    color: #FFFFFF;
}
.missions .feature-row .feature-item{
    /* background-color: #186ed3;
    color: #fff; */
    border-radius: 10px;
    /* font-size: 18px; */
    display: flex;
    align-items: center;
    transition: all .4s;
    color: #555;
    text-align: justify;
    border: 1px solid #9f9f9f;
    border-bottom: 3px solid #186ed3;
}
.missions .feature-row .feature-item:hover{
    transform: scale(1.03);
    cursor: pointer;
}
.missions .feature-row .feature-item:hover .top-title{
    /* background-color: rgb(246, 60, 60); */
    color: #fff !important;
}
.missions .top-title{
    position: absolute;
    top: -20px;
    background-color: #2d7bda;
    left: 50%;
    transform: translate(-50%, 0px);
    border-radius: 10px;
    font-size: 20px;
    font-family: cursive;
    letter-spacing: 1.2px;
    padding: 6px 30px;
    border: 1px solid #9f9f9f;
    color: #fff !important;
    margin-bottom: 20px;
    /* background-image: linear-gradient(to right, #186ed3 0, #cbe017 30%, #e03912 100%); */
    /* background:linear-gradient(to right, #186ed3 0, #186ed3 33%, #cbe017 33%, #cbe017 66%, #e03912 66%, #e03912 100%); */
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        display: none;
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .service-item .service-text {
        height: auto !important;
    }
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item>.img {
    height: 300px !important;
    background-color: #bfbfbf;
    overflow: hidden;
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
    background-color: #0000009d;
    width: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
    padding: 0 10px;
}

.team-item:hover .team-social {
    width: auto;
}

.team-item:hover .team-social li {
    margin-left: 5px;
    opacity: 1;
    color: #fff;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    background-color: #fff;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: #d01421;
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
    border: 1px solid #ddd;
    background-color: #cccccc;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .navbar-light .navbar-toggler {
        position: absolute;
        right: 0;
        top: 8px;
        box-shadow: none;
        border: none;
    }

    .navbar {
        justify-content: left;
    }

    .testimonial-carousel .owl-nav {
        display: none;
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    .missions .feature-row > div{
        margin-bottom: 40px;
    }
    .about .start .img{
        height: 250px;
    }
    .about .remove-p-m-mobile{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .my-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .pb-5,
    .pt-5 {
        padding-bottom: 1.5rem !important;
    }
    .missions .top-title{
        padding: 6px 20px;
    }
    .home-title-actus {
        height: auto;
        overflow: inherit;
    }
}


/*** Footer ***/
.footer {
    color: #fff;
    background-color: #1a6ed3 !important;
    border-bottom: 1px solid #8c8c8c;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
    transition: .2s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: .4px;
    box-shadow: none;
}

.copyright,
.copyright a {
    color: #fff !important;
}

.copyright {
    background: #186ed3;
}

.copyright a:hover {
    color: var(--primary) !important;
}

/* Meeeeeee */
.with-bar-end {
    position: relative;
    overflow: hidden;
}

.with-bar-end::after {
    position: absolute;
    content: ' ';
    text-align: center;
    height: 2px;
    width: 100%;
    background-color: #000;
    top: 45%;
    margin-left: 40px;
}

.home-title-actus {
    height: 75px;
    overflow: hidden;
}

.fs-14 {
    font-size: 14px;
}

.dropdown-menu {
    min-width: 300px;
    border-radius: 0px !important;
}

.bg-dark,
.bg-primary {
    background-color: #186ed3 !important;
}

.btn-primary {
    background-color: #d01421;
    border: none;
}

.btn-primary:hover {
    background-color: #d01421;
}

.text-primary {
    color: #186ed3 !important;
}

.page-item.active .page-link {
    background-color: #186ed3;
    border: none;
}

/* .feature-row .feature-item p{
    color: #d01421;
} */
.feature-row .feature-item,
.feature-row .feature-item h5 {
    transition: all ease-in-out .4s;
}

.feature-row .feature-item:hover {
    /* background-color: #186ed3; */
    /* color: #fff !important; */
}

.feature-row .feature-item:hover h5 {
    /* color: #fff; */
}

.category-details .news-heading {
    margin-bottom: 15px;
}

.category-details .news-heading h4 {
    color: #444444;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 10px;
}

.category-details .news-heading ul li {
    font-size: 13px;
    color: #666666;
    margin-right: 15px;
}

.category-details .news-heading ul li i {
    color: #969696;
    margin-right: 5px;
}

.category-details .news-heading ul li a {
    font-size: 13px;
    color: #666666;
}

.category-details .news-content img {
    margin-bottom: 30px;
}

.category-details .news-content * {
    text-align: justify !important;
}

.bg-facebook,
.btn-facebook {
    background-color: #3b5898 !important;
    color: #fff;
}

.bg-twitter,
.btn-twitter {
    background-color: #3992d6 !important;
    color: #fff;
}

.bg-linkedin,
.btn-linkedin {
    background-color: #3371b7 !important;
    color: #fff;
}

.bg-pinterest,
.btn-pinterest {
    background-color: #c9261a !important;
    color: #fff;
}

.bg-envelope,
.btn-envelope {
    background-color: #f2610b !important;
    color: #fff;
}

.tab-widget .right-title {
    background: #3974b7;
    color: #fff;
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 10px;
}

.appel-offres {
    background-color: #EFF1F1;
    padding-top: 50px;
    padding-bottom: 70px;
}

.offres {
    border: 2px solid #3974b752;
    background-color: #fff;
    padding: 20px;
    /* box-shadow: 0 0 20px 0 rgba(0,0,0,.2); */
    box-shadow: 10px 13px 20px -20px rgba(0, 0, 0, .2);
}

.offres .title a {
    position: relative;
    color: #00659A !important;
    font-size: 19px;
    line-height: 24px;
}

.offres .title::before {
    content: "";
    width: 4px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: -20px;
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    background: #00659A;
}

.offres .excert {
    padding-top: 25px;
    font-size: 15px;
}

.page-show .start .img {
    height: 500px;
    overflow: hidden;
    background-color: #1C2035;
}

.page-show .start .img img {
    object-fit: cover;
}

.w-actualite a {
    color: #000;
    transition: all .3s;
}

.w-actualite ul li:hover {
    background-color: #2d7bda;
}

.w-actualite ul li:hover a {
    color: #fff;
}

.card-pdf-rapport {
    color: #000;
}

.card-pdf-rapport:hover {
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .06), 0 1px 0 0 rgba(0, 0, 0, .02);
}

.card-pdf-rapport .img {
    line-height: 120px;
    text-align: center;
}

.card-pdf-rapport .img img {
    height: 80px;
}

.mediatheque .nav-pills .nav-link {
    min-width: 200px;
    color: #000;
    border: 1px solid #186ed3;
    border-radius: 50px;
}

.mediatheque .nav-pills .nav-link.active {
    background-color: #186ed3;
    color: #fff;
}

.mediatheque .content-container .img {
    height: 300px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.mediatheque .content-container .img:hover {
    cursor: pointer;
}

.mediatheque .content-container .img span {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.mediatheque .video {
    height: 300px;
    border-radius: 20px;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

/* custom */
.footer-area-state {
    height: 8px;
    width: 70%;
    display: -webkit-flex;
    display: flex;
    margin: auto auto -3px;
    position: relative;
    top: -.5px;
    z-index: 1;
    background-color: #db3832;
    border-bottom: 1px solid #ddd;
}

.footer-area-state .blue-state {
    background-color: #0095c9;
    height: 8px;
    width: 33.333333%;
    border-bottom: 1px solid #ddd;
}

.footer-area-state .yellow-state {
    background-color: #fff24b;
    height: 8px;
    width: 33.333333%;
    border-bottom: 1px solid #ddd;
}

.top-area-state {
    height: 5px;
    width: 70%;
    display: -webkit-flex;
    display: flex;
    margin: auto auto -6px;
    position: relative;
    /* top: 2px; */
    z-index: 1;
    background-color: #db3832;
}

.top-area-state .blue-state {
    background-color: #0095c9;
    height: 5px;
    width: 33.333333%;
}

.top-area-state .yellow-state {
    background-color: #fff24b;
    height: 5px;
    width: 33.333333%;
}

.card-pdf-rapport:hover {
    background-color: rgb(224, 224, 224);
}
.partenaire-content{
    padding: 20px;
    /* background-color: #00659A; */
    border: 1px solid #bebebe;
    border-radius: 10px;
    border-bottom: 3px solid #186ed3;
}
.partenaire-content img{
    width: 100%;
    height: 100px;
    object-fit: contain;
}
.partenaire-content h5{
    font-size: 18px;
    color: #3d3d3d;
}
.footer .text {
    text-transform: uppercase;
    background-color: red;
    padding: 5px 10px;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
    width: auto;
    font-weight: bold;
}
.divider {
    width: 100%;
    display: block;
    height: 1px;
    background-color: #d9d9d9;
    margin-top: 15px;
    margin-bottom: 15px;
}
.partenariat .img-1 {
    width: 250px;
    height: 100px;
    background-color: #fff;
    overflow: hidden;
    margin-right: 15px;
    object-fit: contain;
}