@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;300;400;500;600;700;900&family=Roboto:wght@100;300;400;500;700&family=Parisienne&display=swap');
body{
    position: relative;
    overflow-x: hidden;
    font-family: 'Roboto',sans-serif;
    height: 100%;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Open Sans', sans-serif;
}
.btn:focus{
    box-shadow: none!important;
}
a:hover{
    text-decoration: none;
}
.global-div{
    position: relative;
    height: 100%;
}
.wrapper{
    position: relative;
    height: 100%;
}
header .top-bar{
    position: relative;
    background:  #053360;
    padding: 10px;
    overflow: hidden;
}
header .top-bar p span.sm{
    font-size: 12px;
    font-weight: 400;
    color: rgb(255, 204, 0);
}
header .top-bar p span{
    font-weight: 600;
    font-size: 12px;
}
header .top-bar .col-lg-4 h6{
    color: #fff;
    font-size: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 7px;
}
header .top-bar .col-lg-4 h6::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    background: #E3111A;
    z-index: -1;
    top: -20px;
    transform: skew(-10deg);
}
header .top-bar .col-lg-3 .d-flex{
    align-items: flex-end;
    justify-content: flex-end;
}
header .top-bar .d-flex.net-work{
    position: relative;
    z-index: 1;
}
header .top-bar .d-flex.net-work::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    background: #E3111A;
    z-index: -1;
    top: -20px;
    transform: skew(-10deg) scale(1.7);
}
header .top-bar .d-flex a{
    color: #fff;
    position: relative;
}
header .navbar{
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    /* overflow: hidden; */
}
header .navbar .navbar-brand{
    color: #053360;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    font-size: 18px;
    position: relative;
    display: flex;
    margin-left: 70px;
}
header .navbar .navbar-brand .logo-armoirie{
    width: 100px;
    height: 83px;
    position: absolute;
    left: -100px;
    top: -20px;
    overflow: hidden;
}
header .navbar .navbar-brand .logo-armoirie svg{
    width: 100%;
    height: 150%;
    object-fit: cover;
}
/* header .navbar .navbar-brand span{
    margin-top: 20px;
} */
header .navbar .navbar-brand svg text{
    fill: #053360;
}
header .navbar .nav-item{
    position: relative;
}
header .navbar .nav-item .drop-menu-sm{
    position: absolute;
    display: inline-block;
    padding: 15px 20px;
    width: 220px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-bottom: 2px solid #007BF0;
    opacity: 0;
    visibility: hidden;
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(-60deg);
    will-change: transform;
    transition: .5s;
}
header .navbar .nav-item:hover .drop-menu-sm{
    opacity: 1;
    visibility: visible;
    transform: perspective(500px) rotateX(0deg);
}
header .navbar .nav-item .drop-menu-sm ul{
    padding-left: 0;
    list-style: none;
}
header .navbar .nav-item .drop-menu-sm ul a{
    display: block;
    font-size: 14px;
    color: #495057;
    margin-bottom: 7px;
    transition: .5s;
}
header .navbar .nav-item .drop-menu-sm ul a:hover{
    color: #E3111A;
}
header .navbar .nav-link{
    color: #1A1B22;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    transition: .5s;
    position: relative;
    font-family: 'Open Sans', sans-serif;
}
header .navbar .nav-link.active{
    color: #053360;
}
header .navbar .nav-link:hover{
    color: #053360;
}
header .navbar .nav-link::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #E3111A;
    border-radius: 10px;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%,-50%);
    /* animation: scaleOut .5s linear infinite; */
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}
header .navbar .nav-link:hover::before{
    opacity: 1;
    bottom: -15px;
    visibility: visible;
}
header .navbar .nav-link.active::before{
    bottom: -15px;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
    visibility: visible;
    /* animation: scaleOut .5s linear infinite; */
}
@keyframes scaleOut {
    0%{
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }
    100%{
        opacity: 0;
        transform: translate(-50%,-50%) scale(1.2);
    }
}
header .navbar .drapeau{
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    border-radius: 100%;
    background: #053360;
}
header .navbar .drapeau::before{
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px dashed rgb(255, 204, 0);
    border-radius: 100%;
}
header .navbar .drapeau img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}
.banner{
    position: relative;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    overflow: hidden;
    margin-top: 100px;
}
.banner .carousel{
    height: inherit;
}
.banner .carousel-inner{
    height: inherit;
}
.banner .carousel-item{
    height: inherit;
    position: relative;
    background: #053360;
    z-index: 1;
}
.banner .carousel-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 50%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 3;
    /* opacity: .5; */
    transform: skew(-45deg) scale(5);
    animation: fadeLeft 1s forwards;
}
@keyframes fadeLeft {
    0%{
        left: -200%;
    }
    100%{
        left: -150px;
    }
}
.banner .carousel-item img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
   animation: scaleIn 10s linear infinite alternate;
}
@keyframes scaleIn {
    0%{
        transform-origin: 0 90%;
        transform: scale(1);
        will-change: transform;
    }
    100%{
        transform-origin: 0 90%;
        transform: scale(1.1);
        will-change: transform;
    }
}
.banner .container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}
.banner .container h2{
    color: #fff;
    display: inline-block;
    font-size: 25px;
    font-weight: 300;
    font-family: 'Roboto',sans-serif;
    position: relative;
}

.banner .container h2::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: rgb(255, 204, 0);
    border-radius: 5px;
    top: -10px;
}
.banner .container h1{
    color: #fff;
    font-size: 70px;
    font-weight: 300;
    text-transform: uppercase;
    
}
.banner .text-left{
    animation-delay: .5s;
}
.banner p{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    width: 550px;
}
.banner .btn{
    background: #E3111A;
    color: #fff;
    border: none;
    padding: 15px 25px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: .5s;
}
.banner .btn:hover{
    background: #007BF0;
}
.banner .carousel-control-prev, .banner .carousel-control-next{
    width: 50px;
    height: 50px;
    background: #053360;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
}
.banner .carousel-control-prev{
    left: 20px;
}
.banner .carousel-control-next{
    right: 20px;
}
.banner .carousel-indicators{
    bottom: 100px;
}
.banner .carousel-indicators li{
   border: none;
   width: 15px;
   height: 15px;
   border-radius: 15px;
   transition: .5s;
}
.banner .carousel-indicators li.active{
    transform: scale(.7);
}
.bundel{
    position: relative;
    z-index: 7;
    width: 100%;
    padding: 50px 0;
    background: #1c4294;
}
.bundel .card{
    position: relative;
    border: none;
    padding: 40px 50px;
    background: transparent;
}
.bundel .card p{
    font-size: 22px;
    margin-bottom: 0;
    color: #fff;
    padding: 0 50px;
    font-family: 'Parisienne';
    position: relative;
}
.bundel .card p::before{
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    border-top: 5px dotted rgb(255, 204, 0);
    top: -20px;
    left: 50%;
    transform: translate(-50%,-50%);
}
.bundel .icon{
    position: absolute;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
}
.bundel .icon-left{
    left: 0px;
    top: 20%;
}
.bundel .icon-right{
    right: 0px;
    top: auto;
    bottom: 20%;
}
.bundel .card h5{
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: 700;
}
.bundel .card h5::before{
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #E3111A;
    border-radius: 5px;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%,-50%);
}
.news{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    z-index: 1;
}
.news h1{
    color: #1A1B22;
    font-weight: 300;
    font-size: 35px;
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
}
.news h1::before{
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #053360;
    right: -60px;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.news .article{
    border: none;
    position: relative;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    transition: .5s;
}
/* .news .article:hover{
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
} */
.news .article .card-img{
    position: relative;
    overflow: hidden;
    height: 170px;
    z-index: 1;
    border-radius: 0;
}
.news .article .card-img::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: #053360;
    z-index: 1;
    opacity: .5;
    transform: skew(-45deg) scale(1.7);
    transition: .5s;
}
.news .article:hover .card-img::before{
    left: -70px;
}
.news .article .card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    will-change: transform;
}
.news .article .card-img .btn-link{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    z-index: 2;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    top: 70px;
    color: #E3111A;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transition: .5s;
}
.news .article:hover .card-img .btn-link{
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}
.news .article .card-img .btn-link:hover{
    text-decoration: none;
    background: #053360;
    color: #fff;
}
.news .article:hover .card-img img{
    transform: scale(1.5) rotate(-15deg);
}
.news .card-body{
    padding: 10px 20px;
    background: rgba(0,0,0,0.9);
    z-index: 3;
    position: relative;
    top: 20px;
    width: 90%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: .5s;
}
.news .article:hover .card-body{
    top: 0px;
    width: 100%;
}
.news .article h3{
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    position: relative;
    margin-left: 10px;
    display: inline-block;
    transition: .5s;
}
.news .article h3:hover{
    color: rgb(255, 204, 0);
}
.news .article h3::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 50%;
    background: rgb(255, 204, 0);
    border-radius: 5px;
    top: 7px;
    left: -8px;
    transition: .5s;
}
.news .article h3:hover::before{
    background: #fff;
}
.news .article h3::after{
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgb(255, 204, 0);
    border-radius: 5px;
    top: 55%;
    left: -10px;
    transform: translateY(-50%);
    transition: .5s;
}
.news .article h3:hover::after{
    background: #fff;
}
.news .article .type{
    position: absolute;
    z-index: 2;
    display: inline-block;
    background: #fff;
    color: #E3111A;
    padding: 5px 7px;
    font-size: 12px;
    left: 20px;
    top: 20px;
    border-right: 2px solid #E3111A;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: .5s;
}
.news .article:hover .type{
    background: #E3111A;
    color: #fff;
    border-right: 2px solid #fff;
}
.news .article .date{
    color: rgb(255, 204, 0);
    font-size: 10px;
    margin-top: 0!important;
}
.news .btn{
    background: #E3111A;
    color: #fff;
    padding: 10px 20px;
    transition: .5s;
    border: none;
}
.news .btn:hover{
    background: #007BF0;
}
.block-presi{
    position: relative;
    padding: 50px 0;
    background: url(../images/image-presi.png);
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
}
.block-presi::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #007BF0;
    opacity: .9;
}
.block-presi p{
    position: relative;
    font-size: 22px;
    color: #fff;
    font-family: 'Parisienne',sans-serif;
}
.block-presi img{
    position: absolute;
    width: 23%;
    right: 0;
    top: -158px;
}
.block-presi h5{
    font-weight: 700;
    position: relative;
}
.block-presi h5::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #E3111A;
    border-radius: 5px;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%,-50%);
}
.block-presi h6{
    color: rgb(255, 204, 0);
    font-size: 15px;
}
.doc-minis{
    position: relative;
    padding: 50px 0;
    z-index: 2;
}
.doc-minis .container .card{
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-top: -70px;
    background: #fff;
    padding: 50px 70px;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    border-right: 5px solid #E3111A;
}
.doc-minis h1{
    color: #1A1B22;
    font-weight: 300;
    font-size: 35px;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}
.doc-minis h1::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #053360;
    right: -60px;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.doc-minis .nav-tabs{
    border: none;
    margin-bottom: 30px;
    padding-left: 0;
}
.doc-minis .nav-tabs .nav-link{
    border: none;
    color: #495057;
    transition: .5s;
    position: relative;
    padding-left: 0;
}
.doc-minis .nav-tabs .nav-link::before{
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #E3111A;
    bottom: -5px;
    transform-origin: left;
    transform: scaleX(0);
    transition: .5s;
}
.doc-minis .nav-tabs .nav-link.active{
    color: #053360;
}
.doc-minis .nav-tabs .nav-link.active::before{
    transform: scaleX(1);
}
.doc-minis .text-left a{
    color: #1A1B22;
    margin-bottom: 30px;
    display: block;
    opacity: .6;
    font-size: 14px;
    transition: .5s;
    position: relative;
    margin-left: 40px;
}
.doc-minis .text-left a:hover{
    text-decoration: none;
    color: rgb(255, 204, 0);
    opacity: 1;
}
.doc-minis .text-left a .far{
    position: absolute;
    left: -40px;
    top: 5px;
    font-size: 18px;
    color: #E3111A;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    border: 1px solid #E3111A;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reforme{
    position: relative;
    width: 100%; 
    z-index: 1;
}
.reforme::before{
    content: '';
    width: 100%;
    height: 150px;
    position: absolute;
    background: #053360;
}
.reforme .container{
    position: relative;
}
.reforme h1{
    font-size: 35px;
    font-weight: 300;
    padding-top: 30px;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
}
.reforme h1::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #E3111A;
    border-radius: 5px;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%,-50%);
}
.reforme h2{
    font-size: 25px;
    font-weight: 300;
    position: relative;
    display: inline-block;
    color: #1A1B22;
}
.reforme h2::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #053360;
    right: -35px;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.reforme .card{
    border: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 50px 70px;
   position: relative;
}
.reforme .card::before{
    content: '';
    position: absolute;
    width: 1%;
    height: 100%;
    background: #fff;
    top: 0;
    right: 0;
    border-radius: 0 5px 5px 0px;
}
.reforme .card ul{
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.reforme .card ul li{
    margin-bottom: 20px;
}
.reforme .card ul li a{
    color: #495057;
    transition: .5s;
    position: relative;
    display: block;
    margin-left: 50px;
    transform: translateX(0px);
    will-change: transform;
}
.reforme .card ul li a:hover{
    text-decoration: none;
    color: #007BF0;
    transform: translateX(5px);
}
.reforme .card ul li a .fas{
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid #007BF0;
    color: #007BF0;
    font-size: 15px;
    display: flex;
    align-items: center;
    top: 0px;
    left: -50px;
    justify-content: center;
}
.reforme .btn-outline-primary{
    padding: 10px 20px;
    transition: .5s;
}
.phototheque{
    position: relative;
    padding: 50px 0;
    background: #f4f4f4;
    margin-top: 50px;
}
.phototheque h1{
    color: #1A1B22;
    font-weight: 300;
    font-size: 35px;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}
.phototheque h1::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #053360;
    right: -60px;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}
/* .phototheque .col-lg-3{
    padding: 0;
} */
.phototheque .card{
    border: none;
    border-radius: 0;
    background: #000;
}
.phototheque .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: .5s;
}
.phototheque .card:hover img{
    opacity: .5;
}
.phototheque .btn{
    padding: 10px 20px;
    transition: .5s;
    background: #E3111A;
    border: none;
    color: #fff;
}
footer{
    padding-top: 30px;
    background: #053360;
}
footer h5{
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    margin-bottom: 15px;
}
footer h5::before{
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #E3111A;
    border-radius: 20px;
    bottom: -6px;
    left: 0;
}
footer p{
    font-size: 14px;
    position: relative;
}
footer p.p-cont{
    margin-left: 20px;
    margin-bottom: 7px;
}
footer p.p-cont svg{
    position: absolute;
    left: -20px;
    top: 5px;
    fill: rgb(255, 204, 0);
}
footer ul{
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
footer ul a{
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.719);
    transition: .5s;
    font-size: 14px;
}
footer ul a p{
    font-size: 12px;
    color: rgb(255, 204, 0)!important;
    transition: .5s;
}
footer ul a:hover p{
    color: #fff!important;
}
footer ul a:hover{
    color: rgb(255, 204, 0);
    text-decoration: none;
}
footer ul a .fas{
    font-size: 12px;
}
footer .net-work{
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #E3111A;
    color: #fff;
    text-align: center;
    margin: 5px;
    line-height: 30px;
    transition: .5s;
    will-change: transform;
}
footer .bar-bottom{
    position: relative;
    padding: 10px 20px;
    background: #1c4294;
}
.menu-btn{
    width: 40px;
    height: 40px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #053360;
    position: absolute;
    right: 85px;
    cursor: pointer;
    overflow: hidden;
    transition: .5s;
}
.menu-btn span{
    width: 30px;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
    transition: .5s;
}
.menu-btn span.bar-bottom{
    margin-bottom: 0;
    width: 20px;
}
.menu-btn span.bar-top{
    width: 20px;
}
.menu-btn.active span{
    margin-bottom: 0;
    width: 30px;
}
.menu-btn.active span.bar-middle{
    opacity: 0;
}
.menu-btn.active span.bar-top{
    transform: rotate(45deg);
}
.menu-btn.active span.bar-bottom{
    transform: rotate(-45deg);
}
.sm-menu{
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transform: scaleY(0);
    pointer-events: none;
    transition: .5s;
    position: relative;
    margin-top: -200px;
    display: none;
}
.sm-menu.active{
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    margin-top: 0;
}
.sm-menu ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.sm-menu ul li{
    position: relative;
    display: block;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 500;
}
.sm-menu ul li a{
    color: #fff;
    text-decoration: none;
    transition: .5s;
    width: 100%;
    display: block;
}
.sm-menu ul li a:hover{
    color: #E3111A;
}
.banner-sm{
    position: relative;
    height: 150px;
    background: #007BF0;
    margin-top: 100px;
}
.banner-sm h1{
    font-weight: 300;
    font-size: 45px;
    position: relative;
    display: inline-block;
}
.banner-sm h1::before{
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%,-50%);
}
.detailActu{
    position: relative;
    padding: 50px 0;
    z-index: 5;
}
.detailActu .card_actu{
    border: none;
    height: 420px;
    position: relative;
    margin-top: -70px;
    overflow: hidden;
    border-radius: 0;
}
.detailActu .card_actu::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}
.detailActu .card_actu img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detailActu h1{
    position: relative;
    color: #1A1B22;
    font-size: 35px;
    font-weight: 300;
    font-style: italic;
    margin-left: 10px;
    display: inline-block;
    margin-bottom: 10px;
}
.detailActu h1::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 50%;
    background: rgb(255, 204, 0);
    border-radius: 5px;
    top: 7px;
    left: -8px;
}
.detailActu h1::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgb(255, 204, 0);
    border-radius: 5px;
    top: 55%;
    left: -10px;
    transform: translateY(-50%);
}
.detailActu .date{
    color: #E3111A;
    font-size: 14px;
}
.detailActu .paragraph-actu{
    position: relative;
    color: #1A1B22;
    opacity: .8;
}
.detailActu .paragraph-actu::first-letter{
    font-size: 25px;
    font-weight: 300;
    font-family: 'Parisien';
}
.detailActu h3{
    font-size: 22px;
    display: inline-block;
    position: relative;
    color: #1A1B22;
}
.detailActu h3::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #053360;
    right: -60px;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.detailActu .act-recent{
    border: none;
}
.detailActu .content-img{
    width: 450px;
    height: 90px;
    display: block;
    margin-right: 5px;
}
.detailActu .content-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detailActu .date-sm{
    color: #E3111A;
    font-size: 10px;
}
.detailActu h6{
    font-size: 12px;
    color: #1A1B22;
    display: inline-block;
    position: relative;
    margin-left: 10px;
    transition: .5s;
    font-weight: 700;
}
.detailActu h6::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 50%;
    background: rgb(255, 204, 0);
    border-radius: 5px;
    top: 7px;
    left: -8px;
}
.detailActu h6::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgb(255, 204, 0);
    border-radius: 5px;
    top: 55%;
    left: -10px;
    transform: translateY(-50%);
}
.detailActu .btn-plus{
    background: #E3111A;
    color: #fff;
    font-size: 14px;
}
.detailActu a:hover h6{
    color: #053360;
}
.detailActu .type{
    position: absolute;
    display: inline-block;
    background: #fff;
    color: #E3111A;
    font-size: 18px;
    padding: 5px 7px;
    top: 20px;
    left: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-right: 2px solid #E3111A;
}
.detailActu .type-sm{
    position: absolute;
    display: inline-block;
    font-size: 10px;
    background: #fff;
    color: #E3111A;
    padding: 2px 5px;
    top: 15px;
    left: 5px;
    border-right: 2px solid #E3111A;
}
.detailActu .share{
    position: relative;
    display: inline-block;
    background: rgb(255, 204, 0);
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    padding: 5px 7px;
    margin-right: 7px;
}
.detailActu .net-work-share a{
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.1);
    line-height: 30px;
    transition: .5s;
    margin-right: 5px;
    will-change: transform;
}
.detailActu .net-work-share a:hover{
    color: #fff;
    background: #007BF0;
    border: none;
    transform: translateY(-5px);
}
.detailActu .jumbotron{
    padding: 2rem;
    background: #f4f4f4;
}
.detailActu .jumbotron p{
    font-size: 14px;
    font-family: 'Parisienne';
}
.detailActu .jumbotron h5{
    font-size: 15px;
    font-weight: 600;
    color: #E3111A;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 576px){
    .banner-sm h1 {
        font-size: 35px;
    }
    .detailActu .card_actu{
        height: 250px;
    }
    .detailActu h1{
        font-size: 25px;
    }
    .menu-btn{
        display: flex;
    }
    .sm-menu{
        display: block;
    }
    header p.hidden{
        display: none;
    }
    header .top-bar p span {
        font-size: 11px;
    }
    header .col-hidden{
        display: none!important;
    }
    header .navbar .navbar-brand{
        font-size: 12px;
    }
    header .navbar .navbar-brand .logo-armoirie {
        width: 90px;
        height: 90px;
        position: absolute;
        left: -90px;
        top: -30px;
    }
    header .navbar .navbar-brand .logo-armoirie svg{
        height: 120%;
        transform: scale(.7);
    }
    .banner .carousel-item::before {
        transform: skew(-45deg) scale(10);
    }
    .banner .container h2{
        font-size: 18px;
    }
    .banner .container h1 {
        font-size: 40px;
    }
    .banner p{
        width: 100%;
        font-size: 15px;
    }
    .banner .carousel-control-prev, .banner .carousel-control-next{
        display: none;
    }
    .bundel .card{
        padding: 20px 30px;
    }
    .bundel .card p {
        font-size: 18px;
        padding: 0px;
    }
    .bundel .icon{
        font-size: 35px;
    }
    .news h1{
        font-size: 25px;
        margin-bottom: 30px;
    }
    .doc-minis .container .card {
        padding: 50px 40px;
    }
    .doc-minis h1{
        font-size: 25px;
        margin-bottom: 17px;
    }
    .block-presi p {
        font-size: 18px;
    }
    .reforme h1{
        font-size: 25px;
    }
    .reforme h2{
        font-size: 20px;
    }
    .reforme .card {
        padding: 50px 30px;
    }
    .phototheque h1{
        font-size: 25px;
    }
    .phototheque .card{
        margin-bottom: 20px;
    }
}
@media only screen and (min-device-width: 577px) and (max-device-width:768px){
    .menu-btn{
        display: flex;
    }
    .sm-menu{
        display: block;
    }
    header p.hidden{
        display: none;
    }
    header .top-bar p span {
        font-size: 11px;
    }
    header .col-hidden{
        display: none!important;
    }
    .banner .container h1{
        font-size: 65px;
    }
    .banner .carousel-item::before {
        transform: skew(-45deg) scale(10);
    }
    .banner p{
        width: 100%;
        font-size: 18px;
    }
    .banner .carousel-control-prev, .banner .carousel-control-next{
        display: none;
    }
    .bundel .card{
        padding: 20px 30px;
    }
    .bundel .card p {
        font-size: 18px;
        padding: 0px;
    }
    .block-presi p{
        font-size: 18px;
    }
    .phototheque .card{
        margin-bottom: 20px;
    }
}
@media only screen and (min-device-width: 769px) and (max-device-width:1024px){
    header .navbar-expand-lg .navbar-collapse{
        display: none!important;
    }
    header .top-bar p span {
        font-weight: 600;
        font-size: 11px;
    }
    .bundel .card {
        padding: 40px 20px;
    }
    .bundel .card p{
        padding: 0;
    }
    .menu-btn{
        display: flex;
    }
    .sm-menu{
        display: block;
    }
    .phototheque .card{
        margin-bottom: 20px;
    }
}
@media only screen and (min-device-width: 1024px) and (max-device-width:1221px){
    

}
@media only screen and (min-device-width: 1222px) and (max-device-width:1280px){
    
}
/* box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(9, 9, 16, 0.2) 0px 20px 30px -16px */