body {
    font: 400 15px/1.8 Lato, sans-serif;
    color: #777;
    margin: 0;
}

.banner-container {
    background-color: #333;
    color: #fff;
    /*  padding: 10px;*/
    display: flex;
    /* Utilisation de flexbox pour aligner les éléments */
    align-items: center;
    /* Centrer verticalement les éléments */
    width: 100%;
    position: fixed;
    bottom: 15px;
    z-index: 99;
}

.banner-content:hover {
    animation-play-state: paused;
}

.banner-title {
    margin-right: 10px;
    /* Espacement entre le titre et le contenu */
    z-index: 1;
    background: #333;
    padding: 20px;
}

.banner-content {
    display: flex;
    white-space: nowrap;
    /*  overflow: visible;*/
    animation: marquee 15s linear infinite;
}

.banner-info-item {
    margin: auto 5%;
    padding: 10px;
    border-radius: 10px
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


h3,
h4 {
    margin: 10px 0 30px 0;
    letter-spacing: 10px;
    font-size: 20px;
    color: #111;
}

.container {
    padding: 80px 120px;
}

.container-fluid {
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width:767px) {
    .container-fluid {
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .container {
        padding: 80px 50px;
    }

    .download_docs {
        animation: blink 1s linear infinite;
        white-space: normal;
    }

    #download_newsletter {
        top: 60% !important;
    }

    .banner-container {
        background-color: #333;
        color: #fff;
        /*  padding: 10px;*/
        display: flex;
        /* Utilisation de flexbox pour aligner les éléments */
        align-items: center;
        /* Centrer verticalement les éléments */
        width: 100%;
    }
}

.download_docs {
    animation: blink 1s linear infinite;
}

.download_docs:hover {
    animation-play-state: paused;
}

#download_newsletter {
    position: absolute;
    top: 47%;
    z-index: 150;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media(min-width:600px) and (max-width:767px) {
    #myNavbar {
        width: 50%;
    }
}

@media(max-width:600px) {
    #myNavbar {
        width: 115%;
    }

    .banner-container {
        background-color: #333;
        color: #fff;
        /*  padding: 10px;*/
        display: flex;
        /* Utilisation de flexbox pour aligner les éléments */
        align-items: center;
        /* Centrer verticalement les éléments */
        width: 100%;
    }
}

@media(max-width:489px) {
    #myNavbar {
        width: 143%;
    }

    .banner-container {
        background-color: #333;
        color: #fff;
        /*  padding: 10px;*/
        display: flex;
        /* Utilisation de flexbox pour aligner les éléments */
        align-items: center;
        /* Centrer verticalement les éléments */
        width: 100%;
    }
}


.person {
    border: 10px solid transparent;
    margin-bottom: 25px;
    width: 80%;
    height: 80%;
    opacity: 0.7;
}

.person:hover {
    border-color: #f1f1f1;
}

.carousel-inner img {
    -webkit-filter: grayscale(90%);
    filter: grayscale(90%);
    /* make all photos black and white */
    width: 100%;
    /* Set width to 100% */
    margin: auto;
}

.carousel-caption h3 {
    color: #fff !important;
}

@media (max-width: 600px) {
    .carousel-caption {
        display: none;
        /* Hide the carousel text when the screen is less than 600 pixels wide */
    }
}

.bg-1 {
    background: #0b2936;
    color: #bdbdbd;
}

.bg-2 {
    background: #7eacbf;
    color: #111;
}


.bg-1 h3 {
    color: #fff;
}

.bg-1 p {
    font-style: italic;
}

.list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.thumbnail {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
}

.thumbnail p {
    margin-top: 15px;
    color: #555;
}

.btn {
    padding: 10px 20px;
    background-color: #1f4d65;
    color: #f1f1f1;
    border-radius: 5px;
    transition: .2s;
    white-space: normal;
}

@keyframes blink {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: .7;
    }

    100% {
        opacity: 1;
    }
}

.btn:hover,
.btn:focus {
    /*    border: 1px solid #1f4d65;*/
    background-color: #fff;
    color: #1f4d65;
}

.modal-header,
h4,
.close {
    background-color: #1f4d65;
    color: #fff !important;
    text-align: center;
    font-size: 30px;
}

.modal-header,
.modal-body {
    padding: 40px 50px;
}

.nav-tabs li a {
    color: #777;
}

#googleMap {
    width: 100%;
    height: 400px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.navbar {
    font-family: Montserrat, sans-serif;
    margin-bottom: 0;
    background-color: #1f4d65;
    border: 0;
    font-size: 11px !important;
    letter-spacing: 4px;
    opacity: 0.9;
}

.navbar li a,
.navbar .navbar-brand {
    color: #d5d5d5 !important;
}

.navbar-nav li a:hover {
    color: #fff !important;
}

.navbar-nav li.active a {
    color: #fff !important;
    background-color: #ec7f07 !important;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.open .dropdown-toggle {
    color: #fff;
    background-color: #555 !important;
}

.dropdown-menu li a {
    color: #000 !important;
}

.dropdown-menu li a:hover {
    background-color: red !important;
}

footer {
    background-color: #1f4d65;
    color: #f5f5f5;
    padding: 32px;
}

footer a {
    color: #f5f5f5;
}

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

.form-control {
    border-radius: 0;
}

textarea {
    resize: none;
}

/* My adds */

.navbar .navbar-brand>img {
    width: 50%;
    font-weight: bold;
    transition: 0.8s;
}

.logo-small {
    color: #ec7f07;
    font-size: 40px;
}

#myCarousel>hr {
    z-index: 10;
    position: relative;
    top: 80vh;
    margin: 0 25px;
}

.btn1 {
    z-index: 100;
    position: absolute;
    width: 250px;
    padding: 10px 20px;
    background-color: #1f4d65;
    color: #ffe066;
    border-radius: 15px;
    transition: .25s;
    animation: blink2 1.5s infinite;
}

@keyframes blink2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media(max-width:600px) {
    .btn1 {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        font-size: 7px;
        right: 40px !important;
        transition: .25s;
        animation: blink2 1.5s infinite;
    }
}

.btn1:hover,
.btn1:focus {
    border: 1px solid #1f4d55;
    background-color: #1f4d50;
    color: #f1f1f1;
}

.btn1 span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn1 span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -10px;
}

.btn1:hover span {
    padding-right: 25px;
}

.btn1:hover span:after {
    opacity: 1;
    right: 0;
}


/* Nos Partenaires */
.square-holder {
    padding: 30px;
    border: 1px solid #cecece;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    height: 262px;
    cursor: pointer;
    border-radius: 10px;
}

.square-holder img {
    max-width: 100%;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.square-holder:hover img {
    filter: none;
}

#modules a,
#modules:hover {
    text-decoration: none;
    color: #000;
}

.module_container>div {
    margin-bottom: 20px !important;
}

div.module_container {
    display: flex !important;
    flex-wrap: wrap !important;
}

#acces_cours>a,
#acces_cours2>a {
    color: #ec7f07 !important;
    font-weight: bold;
}

#acces_cours>a:hover,
#acces_cours2>a:hover {
    color: #000 !important;
}