style.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905
  1. @font-face {
  2. font-family: Universalis ADF Std, sans-serif;
  3. src: url('asset/fonts/UniversalisADFStd-Regular.otf') format('otf'),
  4. url('asset/fonts/UniversalisADFStd-Regular.woff') format('woff');
  5. font-family: Millimetre, sans-serif;
  6. src: url('asset/fonts/Millimetre-Bold.otf') format('otf'),
  7. url('asset/fonts/Millimetre-Regular.otf') format('otf');
  8. }
  9. *{
  10. box-sizing: border-box;
  11. }
  12. body {
  13. font-size: 16px;
  14. font-family: Universalis ADF Std, sans-serif;
  15. padding: 0!important;
  16. }
  17. h1, h2, h3, h5{
  18. font-family: Millimetre, sans-serif;
  19. }
  20. h1, h5, h6{
  21. text-transform: uppercase;
  22. }
  23. img{
  24. width: 100%;
  25. height: 100%;
  26. }
  27. ul{
  28. padding:0;
  29. }
  30. li ,ul ,ol {
  31. list-style-type:none;
  32. }
  33. a, a:hover{
  34. color: black;
  35. text-decoration: none;
  36. }
  37. /* START HEADER */
  38. header{
  39. width: 100%;
  40. position: fixed;
  41. z-index: 999;
  42. top: 0;
  43. left: 0;
  44. }
  45. header > .nav-wrapper{
  46. height: fit-content;
  47. }
  48. /* START LOGO */
  49. .logoLamine {
  50. width : 120px;
  51. height: 120px;
  52. }
  53. .logoLamine a{
  54. display: block;
  55. width: 100%;
  56. height: 100%;
  57. }
  58. .logoLamine img{
  59. object-fit: cover;
  60. }
  61. /* END LOGO */
  62. /* START RS */
  63. .rs{
  64. padding-top: 10px;
  65. height: fit-content;
  66. }
  67. .rs > div {
  68. width: 30px;
  69. height: 30px;
  70. object-fit: cover;
  71. margin-right: 15px;
  72. }
  73. /* END RS */
  74. /* START NAV */
  75. /* END NAV */
  76. /* START BURGER */
  77. .burger{
  78. padding-top: 10px;
  79. height: fit-content;
  80. }
  81. .fond_burger{
  82. background-image: url('../images/form_burger.svg');
  83. background-position: center; /* Center the image */
  84. background-repeat: no-repeat; /* Do not repeat the image */
  85. background-size: contain;
  86. }
  87. .nav-main{
  88. display: none;
  89. position: fixed;
  90. right: 0;
  91. top: 70px;
  92. background: white;
  93. padding: 30px;
  94. }
  95. .nav-main.is-active{
  96. display: block
  97. }
  98. /* END BURGER */
  99. /* END HEADER */
  100. /* START BODY */
  101. body > .content-wrapper{
  102. margin-top: 200px;
  103. }
  104. /* END BODY */
  105. /* START BUTTON */
  106. .section_accueil .redirection_page{
  107. margin: 10px auto;
  108. padding: 3px 10px;
  109. }
  110. .section_accueil .tout_voir{
  111. margin: 30px auto;
  112. padding: 3px 10px;
  113. }
  114. .btn{
  115. display: block;
  116. cursor: default!important;
  117. margin: auto;
  118. transform: scale(1) rotate(0deg);
  119. transition: transform 0.3s ease;
  120. }
  121. .btn:hover{
  122. transform: scale(1.05) rotate(-5deg);
  123. transition: all 0.3s ease;
  124. }
  125. .btn a{
  126. padding: 7px 10px;
  127. border: 4px solid black;
  128. }
  129. /* .telechargement_plaquette, .redirection_page, .tout_voir {
  130. position: relative;
  131. margin: 50px auto 10px auto;
  132. display:flex;
  133. border-radius: 0%;
  134. text-align: center;
  135. padding: 5px;
  136. } */
  137. /* .telechargement_plaquette a, .redirection_page a, .tout_voir a {
  138. position: relative;
  139. display:flex;
  140. margin: -5px;
  141. padding: 5px;
  142. } */
  143. /* .__bouttons div {
  144. position: relative;
  145. text-align : center;
  146. margin-top: 20px;
  147. border: 4px solid blue;
  148. border-radius: 0%;
  149. padding: 5px;
  150. }
  151. .__bouttons #bouton_asso {
  152. top: 100px;
  153. }
  154. .__bouttons #bouton_asso a{
  155. position: relative;
  156. display:flex;
  157. margin: -5px;
  158. padding: 5px;
  159. }
  160. .__bouttons #bouton_contact {
  161. top: -30px;
  162. }
  163. .__bouttons #bouton_contact a {
  164. position: relative;
  165. display:flex;
  166. margin: -5px;
  167. padding: 5px;
  168. }
  169. .__bouttons div:hover,
  170. .telechargement_plaquette:hover,
  171. .bouton_asso:hover,
  172. .redirection_page:hover,
  173. .tout_voir:hover {
  174. transform: scale(1.05) rotate(-5deg);
  175. transition: all 0.3s ease;
  176. }
  177. .Btn {
  178. display: flex;
  179. margin-top: 10px;
  180. color: black;
  181. text-decoration: underline;
  182. border: none;
  183. }
  184. .Btn a:hover, .cat-list a:hover {
  185. color: black;
  186. background-color: grey;
  187. text-decoration: underline;
  188. border: none;
  189. }
  190. .flickity-button {
  191. background: transparent;
  192. }
  193. .flickity-prev-next-button {
  194. width: 100px;
  195. height: 100px;
  196. }
  197. .flickity-button-icon {
  198. fill: white;
  199. }
  200. .flickity-button-icon:hover {
  201. fill: black;
  202. }
  203. .flickity-prev-next-button:hover {
  204. background: transparent;
  205. }
  206. .flickity-button:disabled {
  207. display: none;
  208. } */
  209. /* END BUTTON */
  210. /* START PAGE HOME */
  211. .section_accueil {
  212. position: relative;
  213. padding: 100px 0;
  214. }
  215. .section_accueil .titre{
  216. white-space: nowrap;
  217. }
  218. .section_accueil#section_proch .titre{
  219. border-color: #ffcc00ff;
  220. }
  221. .section_accueil#section_asso .titre,
  222. .section_accueil#section_asso .content_asso {
  223. border-color: #ffcc00ff;
  224. }
  225. .section_accueil#section_projets .titre,
  226. .section_accueil#section_projets .wrap_content {
  227. border-color: #f51212ff;
  228. }
  229. .section_accueil#section_projets .wrapper__content h3{
  230. color: #f51212ff;
  231. }
  232. .section_accueil#section_projets .wrap_content{
  233. height: calc(100% - 80px);
  234. }
  235. .section_accueil#section_tpsF .titre,
  236. .section_accueil#section_tpsF .content_asso {
  237. border-color: #009ee0ff;
  238. }
  239. .section_accueil#section_tpsF .wrapper__content h3{
  240. color: #009ee0ff;
  241. }
  242. .section_accueil#section_tpsF .colonne_section{
  243. margin-bottom: 50px;
  244. }
  245. .section_accueil#section_tpsF ._content_tpsF{
  246. min-height: 280px;
  247. }
  248. .section_accueil#section_MineVideo .titre {
  249. border-color: #009ee0ff;
  250. }
  251. /* END PAGE HOME */
  252. /* START PAGE AGENDA */
  253. .agenda .titre_page {
  254. border-color: #ffcc00ff;
  255. }
  256. .agenda .cat-list{
  257. padding: 50px 0;
  258. }
  259. .agenda .cat-list li{
  260. cursor: pointer;
  261. margin: 0 10px 20px 10px;
  262. padding: 2px 8px;
  263. border: 4px solid black;
  264. height: 40px;
  265. display: flex;
  266. align-items: flex-end;
  267. transition: all 0.2s ease;
  268. }
  269. .agenda .cat-list li:hover{
  270. background: black;
  271. color: white;
  272. transition: all 0.2s ease;
  273. }
  274. .cat-list {
  275. text-transform: uppercase;
  276. font-weight: bold;
  277. margin-top: 10px;
  278. }
  279. /* START END AGENDA */
  280. /* START PAGE SINGLE */
  281. .fleche {
  282. position: relative;
  283. left:-50px;
  284. top:-10px;
  285. background-image: url('../images/fleche.svg');
  286. width: 50px;
  287. height: 50px;
  288. background-size: contain;
  289. }
  290. article .header{
  291. margin-bottom: 40px;
  292. }
  293. article .titre_event{
  294. text-transform: uppercase;
  295. font-weight: bold;
  296. text-align: center;
  297. border: 8px solid #ffcc00ff;
  298. padding: 0.5rem 0 0.2rem 0;
  299. margin: 0!important;
  300. }
  301. .article-content .cat{
  302. text-transform: uppercase;
  303. font-weight: bold;
  304. }
  305. .article-content .data{
  306. border: 4px solid #ffcc00ff;
  307. padding: 1em;
  308. text-transform: uppercase;
  309. font-weight: bold;
  310. color: #ffcc00ff;
  311. }
  312. .article-content .inscription,
  313. .article-content .partager,
  314. .article-content .tarif{
  315. margin-top: 40px;
  316. }
  317. .article-content h3:not(.titre_event) {
  318. color: #ffcc00ff;
  319. margin-bottom: 0;
  320. }
  321. .article-content .texte_details{
  322. margin: 0;
  323. }
  324. .article-content .voir_event{
  325. font-weight: bold;
  326. }
  327. .article-content .partager a{
  328. display: block;
  329. width: 20px;
  330. height: 20px;
  331. margin-right: 5px;
  332. }
  333. article .__img_event img{
  334. object-fit: cover;
  335. }
  336. .other{
  337. margin-top: 200px;
  338. position: relative;
  339. }
  340. .other .header_other{
  341. position: absolute;
  342. top: 0;
  343. transform: translate(-50% ,-150%);
  344. left: 0;
  345. }
  346. .voir_aussi {
  347. text-transform: uppercase;
  348. font-weight: bold;
  349. border: 8px solid #ffcc00ff;
  350. transform: rotate(-10deg);
  351. padding: 0.5rem;
  352. }
  353. .cat p{
  354. margin:0;
  355. }
  356. .wrapper__content {
  357. margin-top: 20px;
  358. }
  359. /*fin page event*/
  360. /* END PAGE SINGLE */
  361. .menu-item {
  362. font-family: Millimetre, sans-serif;
  363. text-transform: uppercase;
  364. padding: 15px;
  365. }
  366. #nav-main > ul > li > ul {display: none;}
  367. #nav-main > ul > li:first-child:hover > ul {display: block;}
  368. .menu-item a:hover {
  369. background-color: black;
  370. color: white;
  371. }
  372. .titre_page, .titre{
  373. position: absolute;
  374. top: -100px;
  375. left: -70px;
  376. text-transform: uppercase;
  377. font-weight: bold;
  378. text-align: center;
  379. align-items: center;
  380. border: 8px solid blue;
  381. transform: rotate(-10deg);
  382. padding: 0.5rem;
  383. background-color: white;
  384. }
  385. .titre_1{
  386. margin-top:1em;
  387. }
  388. .next_edition{
  389. font-style: italic;
  390. text-transform: uppercase;
  391. }
  392. .title {
  393. color: blue;
  394. text-align: center;
  395. text-transform: uppercase;
  396. }
  397. .sidebar_left .__content, .sider_left_form, .__organisation .__item, .content_zone {
  398. border: 8px solid blue;
  399. padding: 1em;
  400. }
  401. .tableau_engagements {
  402. margin-top : 10%;
  403. }
  404. .tableau_engagements div{
  405. margin-top : 5%;
  406. padding-left: 5%;
  407. }
  408. /*sections page accueil*/
  409. /* START KEVIN */
  410. .coming_soon{
  411. width: 100%;
  412. }
  413. .coming_soon .thumbnails, .other-posts .thumbnails, .item.thumbnails {
  414. transform: scale(1);
  415. transition: transform 0.3s ease;
  416. }
  417. .coming_soon .thumbnails:hover, .other-posts .thumbnails:hover, .item.thumbnails:hover {
  418. transform: scale(1.05);
  419. transition: all 0.3s ease;
  420. }
  421. /* ALL thumbnails */
  422. .thumbnails .__img{
  423. height: 300px;
  424. }
  425. .thumbnails .__img img{
  426. width: 100%;
  427. height: 100%;
  428. object-fit: cover;
  429. }
  430. .thumbnails .icone_cat{
  431. width: 40px;
  432. height: 40px;
  433. border-radius: 40px;
  434. position: absolute;
  435. transform: translate(-50%, -50%);
  436. background-position: center; /* Center the image */
  437. background-repeat: no-repeat; /* Do not repeat the image */
  438. background-size: cover; /* Resize the background image to cover the entire container */
  439. background-color: black;
  440. }
  441. .thumbnails .atelier_bois{
  442. background-image: url("../images/atelier_couture.png");
  443. }
  444. .thumbnails .atelier_couture{
  445. background-image: url("../images/atelier_couture.png");
  446. }
  447. .thumbnails .atelier_tricot_solidaire{
  448. background-image: url("../images/atelier_tricot.png");
  449. }
  450. .thumbnails .bal_rock{
  451. background-image: url("../images/bal_rock.png");
  452. }
  453. .thumbnails .chiner_concert{
  454. background-image: url("../images/chiner_concert.png");
  455. }
  456. .thumbnails .fab_lab{
  457. background-image: url("../images/fab_lab.png");
  458. }
  459. .thumbnails .festival_lamine_numerique{
  460. background-image: url("../images/fab_lab.png");
  461. }
  462. .thumbnails .gouter_melanie{
  463. background-image: url("../images/gouter.png");
  464. }
  465. .thumbnails .danse_orientale{
  466. background-image: url('../images/bal_rock.png');
  467. }
  468. .thumbnails .hatha_yoga{
  469. background-image: url("../images/hatha_yoga.png");
  470. }
  471. .thumbnails .mineside_jazz{
  472. background-image: url("../images/mineside_jazz.png");
  473. }
  474. .thumbnails .non_programmation{
  475. background-image: url("../images/non_prog.png");
  476. }
  477. .thumbnails .soiree_mine{
  478. background-image: url("../images/soiree_mine.png");
  479. }
  480. .thumbnails .zero_dechet{
  481. background-image: url("../images/zero_dechet.png");
  482. }
  483. /* SECTION ASSO */
  484. #section_asso .association .__body{
  485. position: relative;
  486. justify-content: flex-end;
  487. margin-top: 50px;
  488. }
  489. .image_sectionasso {
  490. position: absolute;
  491. top: 0;
  492. left: 0;
  493. margin-top: 100px;
  494. width: 70%;
  495. }
  496. .content_asso {
  497. width: 70%;
  498. position: relative;
  499. padding: 20px 10px;
  500. background-color: white;
  501. border: 8px solid yellow;
  502. }
  503. /* START SECTION PROJETS*/
  504. #section_projets{
  505. margin-top: 300px;
  506. }
  507. /*END SECTION PROJETS*/
  508. /* responsive iframe */
  509. #section_MineVideo .wrapper__content {
  510. position: relative;
  511. padding-bottom: 56.25%; /* 16:9 */
  512. height: 0;
  513. }
  514. #section_MineVideo .wrapper__content iframe {
  515. position: absolute;
  516. top: 0;
  517. left: 0;
  518. width: 100%;
  519. height: 100%;
  520. }
  521. /* END KEVIN */
  522. /* .item {
  523. margin-top: 50px;
  524. } */
  525. .wrap__content_proch {
  526. position: relative;
  527. width: calc(100% - 40px);
  528. margin: -4rem auto 0 auto;
  529. padding: 10px;
  530. min-height: 160px;
  531. align-items: center;
  532. text-align: center;
  533. background-color: white;
  534. border: 4px solid black;
  535. display: flex;
  536. flex-direction: column;
  537. justify-content: center;
  538. }
  539. .colonne_section{
  540. margin-top: 10px;
  541. }
  542. .colonne_section .wrap_content {
  543. border: 8px solid blue;
  544. padding: 1em;
  545. }
  546. .colonne_section h3 {
  547. color: blue;
  548. text-transform: uppercase;
  549. text-align: center;
  550. }
  551. .projet .colonne_section .header{
  552. height: 80px;
  553. display: flex;
  554. align-items: flex-end ;
  555. }
  556. .projet .colonne_section .header h3{
  557. text-align: center;
  558. width: 100%;
  559. }
  560. .item img{
  561. width: 100%;
  562. height: 100%;
  563. object-fit: cover;
  564. }
  565. ._content_tpsF {
  566. position: relative;
  567. width: 80%;
  568. padding: 10px;
  569. margin: -50px auto;
  570. align-items: center;
  571. text-align: center;
  572. background-color: white;
  573. border: 4px solid black;
  574. }
  575. .video iframe {
  576. margin: 0 auto 0 auto;
  577. width:100%;
  578. }
  579. /*fin sections page accueil*/
  580. /*page collecte avec formulaire*/
  581. /*trouver comment styliser les champs du formulaire*/
  582. /*.af-input acf-input{
  583. background-color: pink;
  584. }*/
  585. .af-submit-button{
  586. position: relative;
  587. margin: 50px auto 10px auto;
  588. display:flex;
  589. border: 4px solid black;
  590. border-radius: 0%;
  591. text-align: center;
  592. padding: 5px;
  593. transform: scale(1) rotate(0deg);
  594. transition: transform 0.3s ease;
  595. }
  596. .af-submit-button:hover{
  597. transform: scale(1.1) rotate(-10deg);
  598. transition: all 0.3s ease;
  599. }
  600. /*fin collecte et form*/
  601. /*page les projets*/
  602. .projet img {
  603. margin: 5% 0 5% 0;
  604. }
  605. ._pjt{
  606. margin-top: 8%
  607. }
  608. /*fin page les projets*/
  609. /*privatiser l'espace*/
  610. .legendes{
  611. background-color: white;
  612. position : absolute;
  613. bottom: 4%;
  614. margin-left: 4%;
  615. border: 8px solid blue;
  616. padding: 1%;
  617. padding-top: 2%;
  618. }
  619. .__organisation {
  620. margin-top: 4%;
  621. text-align: center;
  622. }
  623. ._orga {
  624. margin-top: 4%;
  625. }
  626. /*fin privatiser l'espace*/
  627. /*gestion des dots*/
  628. .flickity-page-dots {
  629. bottom: 0px;
  630. }
  631. .flickity-page-dots .dot {
  632. width: 12px;
  633. height: 12px;
  634. opacity: 1;
  635. background: transparent;
  636. border: 2px solid white;
  637. }
  638. .flickity-page-dots .dot.is-selected {
  639. background: white;
  640. }
  641. /* dot home */
  642. .hero .flickity-page-dots{
  643. bottom: 30px;
  644. }
  645. /*fin gestion des dots*/
  646. /* START KEVIN */
  647. .hero{
  648. width: 100%;
  649. height: 100vh;
  650. position: relative;
  651. }
  652. .hero .slide{
  653. width: 100%;
  654. height: 100vh;
  655. overflow: hidden;
  656. }
  657. .hero .slide .image{
  658. width: 100%;
  659. height: 100vh;
  660. }
  661. .hero .slide img{
  662. width: 100%;
  663. height: 100%;
  664. object-fit: cover;
  665. }
  666. /*.hero .slide .flickity-page-dots{
  667. bottom: 20px;
  668. }
  669. .hero .slide .flickity-page-dots li{
  670. background: white;
  671. }*/
  672. .hero .__head{
  673. width: 100%;
  674. text-align: center;
  675. position: absolute;
  676. bottom: 60px;
  677. color: white;
  678. }
  679. /*
  680. .wrapper section{
  681. margin-top: 200px;
  682. } */
  683. .wrapper section > div {
  684. position: relative;
  685. }
  686. .tpsF .img{
  687. width: 100%;
  688. height: 400px;
  689. }
  690. .tpsF .img img{
  691. width: 100%;
  692. height: 100%;
  693. object-fit: cover;
  694. }
  695. .projet .img{
  696. height: 300px;
  697. }
  698. .projet .img img{
  699. width: 100%;
  700. height: 100%;
  701. object-fit: cover;
  702. }
  703. .prive .images{
  704. width: 100%;
  705. height: 600px;
  706. }
  707. .prive .img img{
  708. width: 100%;
  709. height: 100%;
  710. object-fit: cover;
  711. }
  712. /* END KEVIN */
  713. /*START MEDIA QUERIES*/
  714. @media screen and (min-width: 200px) and (max-width: 1088px) {
  715. .titre_page,
  716. .titre {
  717. top: -150px;
  718. left: 50%;
  719. transform: rotate(-10deg) translateX(-50%);
  720. }
  721. .other .header_other {
  722. left: 50%;
  723. }
  724. .article-content{
  725. margin-top: 30px;
  726. }
  727. }
  728. @media screen and (max-width : 768px){
  729. article .__img_event{
  730. max-height: 300px;
  731. }
  732. }
  733. @media screen and (min-width: 200px) and (max-width: 640px) {
  734. .image_sectionasso {
  735. display: none;
  736. width: 100%;
  737. }
  738. .content_asso {
  739. width: 100%;
  740. }
  741. }
  742. @media screen and (min-width: 200px) and (max-width: 755px) {
  743. .__chapeau, .titre_event{
  744. margin-top: 20px;
  745. }
  746. }
  747. /*END MEDIA QUERIES*/
  748. /* START FOOTER */
  749. footer{
  750. background-color: rgba(240, 240, 240, 240);
  751. width: 100%;
  752. padding: 50px 10px;
  753. margin-top: 100px;
  754. }
  755. /* footer .information > div > div{
  756. margin: 0 20px;
  757. } */
  758. footer > section{
  759. margin-bottom: 20px;
  760. }
  761. footer .logo_lamine {
  762. width: 100px;
  763. height: 100px;
  764. }
  765. footer .logo_lamine a{
  766. display: block;
  767. }
  768. footer .logo_lamine img{
  769. object-fit: contain;
  770. }
  771. footer .reseaux_sociaux > div a > img{
  772. display: block;
  773. width: 20px;
  774. height: 20px;
  775. margin-right: 5px;
  776. }
  777. footer .reseaux_sociaux img {
  778. vertical-align: baseline;
  779. object-fit: contain;
  780. }
  781. /* START Mailchimp */
  782. footer #mc_embed_signup label{
  783. margin: 0;
  784. padding: 0;
  785. }
  786. footer #mc_embed_signup_scroll label{
  787. margin-right: 10px;
  788. white-space: nowrap;
  789. }
  790. footer #mc_embed_signup_scroll input{
  791. width: 100%;
  792. }
  793. /* END MAILCHIMP */
  794. /* START SLIDE */
  795. footer .partenaires ._titre{
  796. white-space: nowrap;
  797. margin-right: 10px;
  798. }
  799. footer .partenaires{
  800. width: 100%;
  801. }
  802. footer .container_slide li{
  803. width: 80px;
  804. height: 80px;
  805. margin: 0 10px;
  806. }
  807. footer .partenaires img{
  808. object-fit: contain;
  809. }
  810. /* END SLIDE */
  811. /* END FOOTER */