@font-face {
    font-family:'Gotham Rounded Bold';
    font-style:normal;
    font-weight:400;
    src: url("res/fonts/Gotham Rounded Bold.woff") format("woff")
}

@font-face {
    font-family:'Comfortaa-Regular';
    font-style:normal;
    font-weight:400;
    src: url("res/fonts/Comfortaa-Regular.ttf")
}

@font-face {
    font-family:'Comfortaa-Bold';
    font-style:normal;
    font-weight:400;
    src: url("res/fonts/Comfortaa-Bold.ttf")
}

@font-face {
    font-family:'RobotoCondensed-Regular';
    font-style:normal;
    font-weight:300;
    src: url("res/fonts/RobotoCondensed-Regular.ttf")
}

@font-face {
    font-family:'RobotoCondensed-Bold';
    font-style:normal;
    font-weight:400;
    src: url("res/fonts/RobotoCondensed-Bold.ttf")
}

:root {
    --background-color: #111111;
    --second-background-color: #1c1c1c;
    --theme-color: #ef5e5e;
    --second-theme-color: #ef8d8d;
    --white : #fff;
}

header{
    display: block;
}

.content {
    position: relative;
}

body {
    background-color: var(--background-color);
}

.error {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 300px;
    margin-bottom: 300px;
}

a {
    color: var(--theme-color);
    text-decoration:none
}
a:hover {
    color: var(--theme-color);
    text-decoration:none
}
a a.publisher-anchor-color {
    color: var(--theme-color)
}
a.btn {
    background: var(--theme-color);
    color: var(--white);
}
a.btn:visited {
    background: var(--theme-color);
    color:var(--white);
    text-decoration:none
}
a.btn:hover {
    background:var(--second-theme-color);
    color:var(--white)
}

.numeroA {
    font-size:28px;
}

.numeroA:hover {
    color: var(--second-theme-color);
}

section {
    min-width:320px!important;
}

p {
    font-size:16px;
    color:#596668
}
strong {
    font-weight:700
}
h1 {
    text-transform:uppercase;
    font-size:32px
}
h2 {
    text-transform:uppercase;
    font-size: 45px;
}
h3 {
    text-transform:uppercase;
    font-size:23px
}
html {
    overflow-x:hidden;
    scroll-behavior:smooth
}
body {
    position:relative;
    margin:0;
    padding:0;
    overflow-x:hidden;
    font-family: "RobotoCondensed-Regular";
}

button::before {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    content: "";
    background: rgb(239, 94, 94);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}


/*                                               HEADER                                                               */


.post-header {
    z-index: 3;
    margin-bottom: 20px;
    text-shadow: 0 4px 5px rgba(0,0,0,.4);
    height: 250px;
}

.site-header {
    height: 75px;
    padding: 0 50px;
    font-family: "Comfortaa-Bold";
    position: fixed;
    top: 0px;
    z-index: 5;
    width: 100%;
    background-color: rgba(0,0,0,.6);
}

.header-content {
    display: grid;
    max-width: 1325px;
    margin: 0 auto;
    height: 75px;
}

.sticky {
    position:fixed;
    top:0;
    z-index:1000;
    width:100%;
    min-width:350px;
    max-width:1920px;
    margin-left:auto;
    margin-right:auto;
    box-shadow:0 0 10px rgba(0,0,0,.3);
    height:70px;
}
.sticky .sticky .main-logo,
.sticky .sticky .main-nav {
    min-height:70px;
    height:70px
}

.sticky .main-logo img {
    padding-top: 20px;
}
.sticky .header-content {
    height:70px
}
.sticky .search_header_form .search_header_div {
    min-height:70px
}

.sticky_margin {
    padding-top:70px;
}

.main-logo {
    grid-column: 1;
    height: inherit;
}

.main-logo img {
    padding-top: 10px;
    height: 90%;
}

.main-nav {
    grid-column:2;
    display:flex;
    height:inherit;
    align-items:center;
    justify-content:flex-end;
}
.nav-menu {
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%
}
.nav-menu ul {
    list-style-type:none;
    height:100%;
    margin:0;
    padding: 0 4px 0 0;
}

.nav-menu ul li {
    float:left;
    cursor:pointer;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center
}

.nav-menu ul li:hover a.main-link {
    color:var(--white);
    background:var(--theme-color)
}

.nav-menu ul li>a {
    font-family:"RobotoCondensed-Regular";
    font-weight:600;
    padding:0 15px;
    font-size:19px;
    color: white;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    align-self:center;
    height:inherit
}

.nav-menu-actived {
    background-color: rgba(239,94,94,.6);
}

.auto-sublist {
    position:relative;
}
.sub-nav-menu {
    z-index: 2;
    background:var(--white);
    display:flex;
    justify-content:center;
    align-items:flex-start;
    box-shadow:0 6px 12px rgba(0,0,0,.2);
    border-top:4px solid var(--theme-color);
    animation:fadeInDownFast .35s ease
}
.sub-nav-menu span {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    min-height:100%;
    width:235px;
    padding:0 0;
    margin:30px 15px
}
.sub-nav-menu span a {
    text-decoration:none;
    align-self:center;
    font-size:15px;
    padding:5px 0;
    width:100%;
    color:var(--second-theme-color);
    font-family:Gotham Rounded Bold;
}
.sub-nav-menu span a.main {
    font-size:17px;
    font-weight:600;
    color:var(--theme-color);
    padding:10px 0;
}
.sub-nav-menu span.bordered {
    border-right:2px solid #eee
}
.sub-nav-menu span.first_bordered {
    border-right:2px solid #eee;
    margin-left:50px
}
.nav-menu ul li .nav-menu-sub {
    display:none;
}
.auto-sublist:hover .nav-menu-sub,
.full-sublist:hover .nav-menu-sub {
    display:flex
}
.full-sublist .nav-menu-sub {
    justify-content:center;
    align-items:flex-start;
    position:absolute;
    width:100%;
    left:0;
    top:115px
}
.auto-sublist .nav-menu-sub {
    justify-content:center;
    align-items:flex-start;
    position:absolute;
    left:0;
    width:100%;
    top:75px
}
.sticky .auto-sublist .nav-menu-sub,
.sticky .full-sublist .nav-menu-sub {
    top:70px
}
.auto-sublist .sub-nav-menu {
    width:100%;
    min-width:275px;
    background:var(--second-background-color);
    display:flex;
    justify-content:center;
    align-items:flex-start;
    box-shadow:0 6px 12px rgba(0,0,0,.2)
}
.auto-sublist .sub-nav-menu span {
    padding:0;
    margin:20px 30px;
    width:100%
}
.form-sub-menu {
    position:relative
}
.nav-actions {
    z-index:3000;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    height:100%
}
.nav-actions div {
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    height:50px;
    width:50px;
    background: var(--theme-color);
    border-radius:50%;
    margin:0 5px
}
.nav-actions div span {
    cursor:pointer;
    box-shadow:2px 4px 4px rgba(0,0,0,.3)
}
.nav-actions div span.check, nav-actions div span.count  {
    text-align:center;
    z-index:2;
    position:absolute;
    bottom:-5px;
    right:-5px;
    border:2px solid var(--white);
    border-radius:50%;
    width:25px;
    height:25px;
    font-size:14px;
    color: var(--theme-color);
    background:var(--white);
    cursor:pointer;
}
.nav-actions div a {
    text-decoration:none;
    align-self:center;
    font-size:22px;
    text-align:center;
    z-index:1;
    cursor:pointer;
    color:var(--second-theme-color)
}

.nav-actions div.search_active a,
.nav-actions div:hover a {
    color:var(--white)
}

.header-separation{
    border-top: 1px solid #BCBCBC;
    z-index:1;
    position: relative;
}

.content_bg {
    position:fixed;
    top:0;
    bottom:0;
    right:0;
    margin-left:250px;
    width:0;
    height:100%;
    background:#000;
    z-index:750;
    opacity:.6
}

.prev {
    position: absolute;
    left: 15px;
    top: 400px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(res/icones/right-arrow.svg);
    transform: rotate(180deg);
    filter: invert(95%) sepia(76%) saturate(14%) hue-rotate(243deg) brightness(105%) contrast(103%);
}

.next {
    position: absolute;
    right: 15px;;
    top: 400px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(res/icones/right-arrow.svg);
    filter: invert(95%) sepia(76%) saturate(14%) hue-rotate(243deg) brightness(105%) contrast(103%);
}

.notes {
    display: flex;
    height: 40px;
    justify-content: space-between;
}

.note {
    color: grey;
    height: 30px;
    width: 80px;
    position: relative;
    font-size: 50px;
    margin: auto 120px 10px;
}

.loading {
    margin-top: 75px;
    z-index: 1;
    position: relative;
}

@keyframes note-1 {
    from { bottom: 60px; left: 10px; opacity: 0.2; }
    to { bottom: 180px; left: 30px; opacity: 1; }
}

@keyframes note-2 {
    from { bottom: 40px; left: 0px; opacity: 0.2; }
    to { bottom: 200px; left: 50px; opacity: 1; }
}

@keyframes note-3 {
    from { bottom: 20px; left: -10px; opacity: 0.2; }
    to { bottom: 150px; left: 10px; opacity: 1; }
}

@keyframes note-4 {
    from { bottom: 50px; left: 0px; opacity: 0.2; }
    to { bottom: 190px; left: 45px; opacity: 1; }
}

@keyframes note-5 {
    from { bottom: 30px; left: 30px; opacity: 0.2; }
    to { bottom: 200px; left: 10px; opacity: 1; }
}

.note:nth-child(1)  { animation: note-1 1650ms linear infinite alternate;}
.note:nth-child(2)  { animation: note-2 1450ms linear infinite alternate;}
.note:nth-child(3)  { animation: note-3 1520ms linear infinite alternate;}
.note:nth-child(4)  { animation: note-4 1830ms linear infinite alternate;}
.note:nth-child(5)  { animation: note-5 1290ms linear infinite alternate;}


/* Administration */

.button-round {
    position: absolute;
    box-shadow:inset 0px 1px 0px 0px var(--white);
    background-color:#f9f9f9;
    border-radius:42px;
    border:1px solid #dcdcdc;
    display:inline-block;
    cursor:pointer;
    color:#666666;
    font-family:Arial;
    font-size:15px;
    font-weight:bold;
    padding:12px 17px;
    text-decoration:none;
    text-shadow:0px 1px 0px var(--white);
    margin-top: 100px;
}

.button-round:hover {
    background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
    background-color:#e9e9e9;
}

.btn-left{
}

.btn-right{
    margin-left: 200px;
}

.btn-supp{
    margin-top: -15px;
    margin-left: 200px;
}

.btn-add{
    position: relative;
    margin-top: 0px!important;
    margin-bottom: 20px;
}

.btn-param{
    margin-left: 200px;
    margin-top: 250px!important;
}

/* Reparation admin */

.custom-box {
    position: fixed;
    border: 3px solid #ddd;
    border-radius: 3px;
    text-align: center;
    padding: 10px;
    background-color: var(--white);
    width: 300px;
    margin-top: 200px;
}

.custom-box input {
    width: 95%;
}

#modal {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding-left: 10%;
    z-index: 1500;
}

/* Contact */

.form-label {
    font-size:22px;
    margin:15px auto;
    padding:0;
    color: var(--theme-color);
}

.btn-blue {
    background: var(--theme-color);
    padding: 9px 15px;
    border: none;
    color: var(--white);
    border-radius: .25rem;
    margin-top: 30px;
}

.bars {
    display: flex;
    height: 40px;
    justify-content: center;
}

.bar {
    background: var(--theme-color);
    height: 3px;
    width: 3px;
    animation: bar 0.5s linear 1s infinite alternate;
    position: relative;
    margin-top: auto;
    margin-bottom: 10px;
}

@keyframes bar {
    from {
        height: 3px;
        opacity: .35;
    }

    to {
        height: 30px;
        opacity: 1;
    }
}

.bar:nth-child(1)  { left: -4px; animation-duration: 474ms; }
.bar:nth-child(2)  { left: -3px; animation-duration: 433ms; }
.bar:nth-child(3)  { left: -2px; animation-duration: 407ms; }
.bar:nth-child(4)  { left: -1px; animation-duration: 458ms; }
.bar:nth-child(5)  { left: 0px; animation-duration: 400ms; }
.bar:nth-child(6)  { left: 1px; animation-duration: 427ms; }
.bar:nth-child(7)  { left: 2px; animation-duration: 441ms; }
.bar:nth-child(8)  { left: 3px; animation-duration: 419ms; }
.bar:nth-child(9)  { left: 4px; animation-duration: 487ms; }
.bar:nth-child(10) { left: 5px; animation-duration: 442ms; }


/* Sidenav */

#mainSideNav {
    display:none;
    background-color: rgba(0,0,0,.6);
    position: fixed;
    top: 0px;
    color:var(--theme-color);
    width:100%;
    box-shadow:0 6px 12px rgba(0,0,0,.2);
    grid-template-columns:68px 1fr;
    min-width:350px;
    z-index: 5;
}
.openSidenav {
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    height:70px;
    min-height:70px;
    width:100%;
    min-width:68px;
    font-size:34px
}
.sidenav {
    position:fixed;
    height:100%;
    width:0;
    left:0;
    top:0;
    background-color:var(--background-color);
    box-shadow:0 6px 12px rgba(0,0,0,.4);
    overflow-x:hidden;
    z-index:1000;
    text-wrap:none
}
.sidenav div.submenu {
    cursor:pointer
}
.sidenav div.submenu a {
    color:var(--white);
}
.sidenav div.submenu a:hover {
    background:var(--theme-color);
    border-radius:56px;
    box-shadow:0 2px 7px rgba(0,0,0,.3);
    color:var(--white)
}
.sidenav a.submenu-link {
    padding:7px 7px 7px 25px;
    margin-right:35px;
    margin-bottom:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    color:var(--white);
    display:block;
    box-sizing:border-box;
    width:180px
}
.sidenav a.submenu-link:hover {
    background:var(--theme-color);
    border-radius:56px;
    box-shadow:0 2px 7px rgba(0,0,0,.3);
    color:var(--white)
}
.submenu ul {
    list-style-type:none
}
.submenu ul li {
    font-size:13px;
    text-decoration:none
}
.submenu ul li a {
    font-size: 18px;
    margin:5px
}

.submenu-actived{
    background-color: rgba(239,94,94,.6);
    border-radius:56px;
}

.sidenav img {
    width:220px;
    background:0 0;
    margin-top: 15px;
    margin-bottom: 30px;
    margin-left: 30px;
    padding-right: 30px;
}
.sidenav button {
    cursor:pointer;
    font-size:34px;
    background:0 0;
    width:68px;
    height:70px;
    color:var(--theme-color);
    border:0;
    z-index:150
}

.sideNavLogo {
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:70px;
    padding-right:68px;
    height:70px;
    width:100%
}
.sideNavLogo img {
    width:120px;
    background:0 0;
    overflow:hidden;
    margin-right:5px
}
.sideNavLogo p {
    font-size:25px;
    color:var(--theme-color);
    font-weight:700;
    margin:0
}
.sidenav_search {
    position:relative;
    grid-row:2;
    grid-column:1/3;
    display:grid;
    grid-template-columns:1fr;
    background:#f8f8f8;
    box-shadow:1px 4px 9px -6px rgba(0,0,0,.2) inset;
    height:50px;
    min-height:50px;
    max-height:50px
}
.sidenav_search .twitter-typeahead {
    width:100%;
    font-size:18px;
    border:1px solid #000
}
.sidenav_search .search_header_form {
    grid-column:1;
    grid-row:1;
    width:100%;
    height:100%;
    padding:0;
    margin:0
}
.sidenav_search .search_header_form input {
    background:0 0;
    border:none;
    width:100%;
    height:50px;
    min-height:50px;
    text-transform:uppercase;
    font-size:17px;
    padding:0 40px;
    border-radius:0
}
.sidenav_search .search_header_form input::placeholder {
    color:#bbb;
    text-transform:none
}
.sidenav_search .search_header_form input:focus {
    outline:0;
    box-shadow:none;
}
.sidenav_search .search_icon {
    position:absolute;
    top:-1px;
    right:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100%;
    width:50px
}
.sidenav_search i {
    color:#c9c9c9;
    padding:0;
    height:25px;
    width:25px;
    font-size:20px;
    margin-top:10px
}
.empty-message {
    padding:20px 10px
}
.empty-message p {
    color:#596668
}


@keyFrames navLinkFade{
    from{
        opacity: 0;
        transfrom: translate(50px);
    }
    to{
        opacity: 1;
        transfrom: translate(0px);
    }
}

/* Catcher */

.catcher-section {
    box-shadow:0 4px 20px rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    height: 800px;

}

.catcher-separation{
    border-top: 50px solid var(--second-theme-color);
    z-index:1;
    position: relative;
}

.welcome-header-bck {
    display:block;
}

.catcher-grid {
    height: 800px;
}
.catcher-img {
    grid-column:1;
    display:flex;
    flex-direction:column;
    z-index:1;
    height: 100%;
}
.catcher-img img {
    height: 100%;
    object-fit: cover; /* Maintient les proportions de l'image */
    width: 100%;
}

.catcher-smartphone {
    grid-column:1;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column
}
.catcher-text {
    position:relative;
    text-align: center;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    flex-direction:column;
    margin-left:0;
    margin-top:200px
}

.catcher-box h1{
    font-size: 20px;
}

.catcher-text h2 {
    font-size: 50px;
    font-family:"RobotoCondensed-Regular";
    text-align: center;
    color:var(--white);
    width:100%;
    margin-bottom:30px;
    text-shadow:rgba(0,0,0,.3) 0 2px 5px;
    text-transform:none;
    text-align: left;
}
.catcher-text h2 span {
    margin-right:15px
}
.catcher-text h1 {
    font-size:25px;
    font-family:"RobotoCondensed-Regular";
    color: white;
    font-weight:700;
    padding-right:5px;
    text-shadow:rgba(0,0,0,.3) 0 2px 5px;
    width: 100%;
    text-transform:none;
    text-align: left;
}

.catcher-box{
    display: flex;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    height: 200px;
    width: 600px;
    margin-left: 100px;
    border-top: 5px solid var(--theme-color);
    padding: 15px;
}

.catcher-1 {
    object-fit: cover;
}

.catcher-2 {
    object-fit: cover;
}

.catcher-2-anim {
    position: relative;
    animation: catcher-2-anim 1s linear;
}

.catcher-2-anim-right {
    position: relative;
    animation: catcher-2-anim-right 1s linear;
}

.catcher-2-anim, .catcher-2-anim-right {
    animation-timing-function: ease-in-out; /* Animation fluide */
    position: relative;
    z-index: 5; /* Priorité visuelle ajustée */
    animation: catcher-2-anim 1s ease-in-out;
}

.catcher-box, .catcher-img img {
    transition: all 0.3s ease-in-out;
}

.catcher-phone {
    display:grid;
    grid-template-rows:1fr;
    grid-template-columns:1fr
}
.catcher-phone img {
    width:355px;
    max-width:355px
}
.catcher-phone .smartphone {
    grid-row:1;
    grid-column:1;
    animation:bounceInDown 1.2s ease
}
.catcher-phone .brokenscreen {
    z-index:2;
    grid-row:1;
    grid-column:1;
    animation:bounceInDown2 1.2s ease;
    opacity:1
}
.catcher-shadow {
    width:379px
}
.catcher-shadow .phoneshadow {
    animation:fadeInBounce 1.2s ease;
    opacity:.3;
    z-index:0;
    width:100%;
    max-width:100%;
    margin-top:-35px
}

.catcher-links{
    display: flex;
    margin-top:30px;
}

.cta {
    position:relative;
    display:flex;
    padding:12px 35px 12px 35px;
    text-decoration:none;
    font-weight:700;
    background:var(--second-theme-color);
    color:var(--white);
    transition:1s;
    box-shadow:0 2px 5px rgba(0,0,0,.4);
    border-radius:40px;
    z-index:2;
    bottom:180px;
    margin: auto;
}
.cta:focus {
    outline:0
}
.cta:hover {
    transition:.5s;
    box-shadow:0 2px 5px rgba(0,0,0,.1);
    background: #0091E9;
    color:var(--white)
}
.cta:visited {
    color:var(--white)
}
.cta span {
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    font-family:"Comfortaa-Bold"
}
.cta span:nth-child(2) {
    transition:.5s;
    margin-right:0;
    margin-left:15px;
    position:relative
}
.cta:hover span:nth-child(2) {
    transition:.5s;
    margin-right:25px
}

.catcher-note{
    font-size:33px;
    font-family:"Gotham Rounded Bold";
    color:var(--white);
    font-weight:700;
    padding-right:5px;
    text-shadow:rgba(0,0,0,.3) 0 2px 5px;
    width: 100%;
    text-transform:none;
    text-align: center;
}

.catcher-note p {
    font-size: 24px;
}

.full-image-catcher {
    padding: 80px 0;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-color: transparent;
    min-height: 100%;
}

.container-catcher{
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    font-family: "RobotoCondensed-Regular";
}


.title-catcher, .sub-title-catcher{
    font-family: "RobotoCondensed-Bold";
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    font-size: 30px;
    margin: 0 0 30px 0;
    color: var(--white);
    width: 100%;
}

.title-catcher{
}

.disp-button{
    display: block;
    margin-top: 300px;
    margin-left: 75%;
    width: 230px;
    height: 45px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    border-radius: 50px;
    border: 2px solid #ef5e5e;
    transition: all 0.5s ease;
    cursor: pointer;
}

.disp-button:hover{
    background-color: #ef5e5e;
    color: white;
}

.footer_skew {
    height: 40px;
    background-color: var(--background-color);
    margin-top: 20px;
    margin-bottom: -60px;
    z-index: 1;
    min-width: 350px;
}

.site_footer{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* voir plus */

.voir-plus{
    position: relative;
    display: block;
    width: 170px;
    height: 45px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    border-radius: 50px;
    border: 2px solid #ef5e5e;
    transition: all 0.5s ease;
    cursor: pointer;
}

.voir-plus:hover{
    background-color: #ef5e5e;
}

/* actualite section */

.actualites{
    display: flex;
}

.actualite {
    display: block;
    width: 33%;
    margin: 30px;
    height: auto;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);
    background-color: var(--background-color);
    border-radius: 10px;
}

.actualite-part{
    padding: 30px;
    background-color: var(--second-background-color);
    border-radius: 0px 0px 10px 10px;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);
    height: 50%;
}

.actualite p {
    color: white;
}

.actualite img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.actualites-section {
    background-color: var(--background-color);
    padding: 40px 220px 120px 220px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.actualites-section a{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.actu-right{
    display: block;
    margin-right: auto;
}

.actualites-section img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px 10px 0px 0px;
}

.actualites-section h2 {
    text-align: center;
    color: white;
    color: var(--theme-color);
}

.actualites-nb{
    padding: 20px 60px 0px 20px;
}

.actualites-nb p{
    text-align: end;
    color: #8e8e8e;
}

.actualites-buttons{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.actualites-buttons a{
    display:flex;
    margin-left:10px;
    margin-right:10px;
    height: 45px;
    width: 45px;
    border-radius: 5px;
    background-color: var(--second-background-color);
    justify-content: center;
    align-items: center;
    color: white;
}

.actualites-buttons a:hover{
    background-color: var(--second-theme-color);
    transition: all 0.5s;
}

.selected-actualite{
    background-color: var(--theme-color);
}


/* presentation */
.presentation-section{
    display: flex;
    width: 500px;
    background-color: var(--background-color);
    padding: 75px 100px 50px 100px;
    width: 100%;
}

.presentation-right{
    width: 20%;
    height: auto;
}

.presentation-right img{
    width: 100%;
    height: 200px;
    filter: invert(31%) sepia(0%) saturate(5766%) hue-rotate(188deg) brightness(88%) contrast(89%);
}

.presentation-left{
    display: inline;
    width: 80%;
    padding-right: 20px;
}


.presentation-left h3{
    text-align: center;
    width: 330px;
    font-size: 35px;
    color: var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.presentation-left h2{
    text-align: left;
    font-size: 18px;
    color: white;
    text-transform: none;
    line-height: 1.3;
}

/* temoignages */

.temoignages-section img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.temoignages-section h2 {
    text-align: center;
    color: white;
    color: var(--theme-color);
}

.temoignages-section p {
    color: white;
    text-align: center;
}

.temoignages-section{
    padding-top: 150px;
    padding-bottom: 50px;
    background-color: var(--background-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.temoignage-box{
    width: 60%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
    padding-top: 25px;
}

.temoignage-box img{
    border-radius: 100px;
    max-height: 200px;
    object-fit: cover;
    width: 200px;
    margin-right: 10px;
}

.temoignage-part{
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
    border-radius: 15px 15px 15px 15px;;
    background-color: var(--second-background-color);
    width: 100%;
}
.temoignage-part p {
    text-align: left;
    overflow: hidden;
    max-height: 100px;
}
}

.social_hover_box {
    background: var(--theme-color);
    position: relative;
    padding: 20px 10px 10px 10px;
    height: 90px;
    width: 50px;
    text-align: center;
    margin-top: -90px;
}

.social_hover_box a {
    color: white;
}

.social_hover_box a:hover {
    color: var(--second-theme-color);
}

.calendar-part {
    display: flex;
    color: #848484;
    margin-left: auto;
}

.fa-calendar-alt {
    margin-top: 3px;
    margin-right: 10px;
}

.temoignage-nb{
    padding: 20px 60px 0px 20px;
}

.temoignage-nb p{
    text-align: end;
    color: #8e8e8e;
}

.temoignage-buttons{
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.temoignage-buttons a{
    display:flex;
    margin-left:10px;
    margin-right:10px;
    height: 45px;
    width: 45px;
    border-radius: 5px;
    background-color: var(--second-background-color);
    justify-content: center;
    align-items: center;
    color: white;
}

.temoignage-buttons a:hover{
    background-color: var(--second-theme-color);
    transition: all 0.5s;
}

.selected-temoignage{
    background-color: var(--theme-color);
}


/* Reseaux */

.reseaux-section{
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--background-color);
}

.reseaux-section img {
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.reseaux-section p {
    margin: 5px;
    color: var(--theme-color);
}

/* Top */

.top-section img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.top-section h2 {
    text-align: center;
    color: white;
    font-size: 45px;
}

.top-section p {
    color: white;
    text-align: center;
}

.top-section{
    height: 225px;
    background-image: url(res/catcher0.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 70px;
}

/* Catcher prestations */

.services-section {
    display: flex;
    height: 500px;
    justify-content: space-around;
    margin-top: 100px;
}

.services-img {
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);
    padding: 60px;
    margin: 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 300px;
}

.services-img h2 {
    font-family: "RobotoCondensed-Bold";
    color: white;
}

.services-img p {
    color: white;
}

/* Services */

.service-section{
    margin-top: 50px;
    margin-bottom: 100px;
}

.service-section img{
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.service-section h2 {
    text-align: center;
    color: white;
    color: var(--theme-color);
}

.service-section p {
    margin: 5px;
    color: var(--theme-color);
}

.services-row {
    display: flex;
    margin-left: 300px;
    margin-right: 300px;
}

.services-row img{
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

.services-row h3{
    color: white;
    margin-top: 15px;
}

.services-row p{
    color: grey;
}

.service-part{
    margin: 15px;
    width: 33%;
}

.prest-section{
    padding-top: 50px;
    background:linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),url(res/catcher2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.prest {
    background-color: var(--second-background-color);
    border-radius: 15px;
}

.prest h3 {
    margin: 15px;
}

.prest p {
    margin: 15px;
}

/* catcher infos */

.catcher-info {

}

.catcher-info h3{
    color: var(--theme-color);
    font-size: 35px;
    text-align: center;
}

.catcher-info h4{
    color: grey;
    font-size: 18px;
    text-align: center;
}

/* catcher galerie */

.catcher-galerie{
    display: block;
}

.galerie-row {
    display: flex;
}

.galerie-row div {
    width: 25%;
    margin: 14px!important;
    border-radius: 15px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.galerie-row div:hover {
    transform: scale(1.05);
}

.catcher-galerie{
    margin-top: 50px;
    padding: 40px 220px 120px 220px;
}

.catcher-galerie img{
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.catcher-galerie h2 {
    text-align: center;
    color: white;
    color: var(--theme-color);
}

.catcher-galerie p {
    margin: 5px;
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

.galerie-nb{
    padding: 20px 60px 0px 20px;
}

.galerie-nb p{
    text-align: end;
    color: #8e8e8e;
}

.galerie-buttons{
    display: flex;
    justify-content: center;
    margin-top: 30px; 
}

.galerie-buttons a{
    display:flex;
    margin-left:10px;
    margin-right:10px;
    height: 45px;
    width: 45px;
    border-radius: 5px;
    background-color: var(--second-background-color);
    justify-content: center;
    align-items: center;
    color: white;
}

.galerie-buttons a:hover{
    background-color: var(--second-theme-color);
    transition: all 0.5s;
}

.selected-galerie{
    background-color: var(--theme-color);
}

/* home services */

.home-partenaire-skew {
    outline:1px solid transparent;
    transform:skew(0deg,-.5deg);
    margin-top:-25px;
    padding-top:40px;
    padding-bottom:40px;
    width:100%;
    background-image:linear-gradient(var(--theme-color),var(--second-theme-color););
    border:none
}
.home-partenaire-skew>.section-title {
    transform:skew(0deg,.5deg)
}
.home-partenaire-title-white p {
    color:var(--white)
}
.home-partenaire-title-white p.sub-title {
    color:var(--white)
}
.home-partenaire-container {
    transform:skew(0deg,.5deg);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    padding-bottom:45px;
    max-width:1470px;
    margin:0 auto 20px auto;
    z-index:550;
}
.home-partenaire-container .home-partenaire-element {
    perspective:1000px;
    transform-style:preserve-3d;
    margin:22px;
}
.home-col-partenaire {
    width:280px;
    min-width:280px;
    max-width:280px;
    height:280px;
    max-height:280px
}
.home-col-partenaire:hover .home-partenaire-back {
    transform:rotateY(0)
}
.home-col-partenaire:hover .home-partenaire-front {
    transform:rotateY(180deg);
}
.home-col-partenaire {
    transform-style:preserve-3d;
    position:relative
}
.home-partenaire-back,
.home-partenaire-front {
    width:280px;
    min-width:280px;
    max-width:280px;
    height:280px;
    max-height:280px;
    backface-visibility:hidden;
    transform-style:preserve-3d;
    position:absolute;
    transition: .2s;
    top:0;
    left:0;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    background-image:linear-gradient(var(--theme-color),var(--second-theme-color););
}
.home-partenaire-front {
    z-index:2;
    transform:rotateY(0);
    color:#000;
    display:grid;
    grid-template-rows: 65% 20% 15%;
    border-radius: 15px;
}
.home-partenaire-front img {
    max-width:150px;
    width:150px;
    align-self:center;
    margin:0 auto
}
.home-partenaire-front p {
    color:var(--white);
    text-align:center;
    font-size:18px;
    width:inherit;
    font-weight:600;
    padding:0 10px
}
.home-partenaire-back {
    transform:rotateY(-180deg);
    color:var(--white);
    display:grid;
    align-items:center;
    justify-content:center;
    border-radius: 4px;
}
.home-partenaire-back p {
    color:var(--white);
    text-align:center;
    font-size:17px;
    padding:7px;
    height:auto
}
.home-red-partenaires i {
    line-height:1;
    text-align:center;
    color:var(--white);
    font-size:50px;
    padding-top:30px;
    margin:0 0 10px;
    display:table;
    width:70px;
    height:70px;
}
.home-red-partenaires h5 {
    text-decoration:none
}

.home-partenaire-row {
    display: flex
}

.disponibilites-part {
    margin: 15px;
}

.disponibilites-part img{
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}


@keyframes catcher-2-anim {
    from {
        left: 0%;
    }

    to {
        left: -100%;
    }
}

@keyframes catcher-2-anim-right {
    from {
        left: 0%;
    }

    to {
        left: 100%;
    }
}