style.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  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. /* END PAGE SINGLE */
  360. /* START PAGE LA COLLECTE */
  361. body.la-collecte .titre_page {
  362. border-color: #ff56ffff;
  363. }
  364. body.la-collecte .__header h3{
  365. color: #ff56ffff;
  366. }
  367. .sider_left_form .acf-field .acf-label label{
  368. display: none!important;
  369. }
  370. .sider_left_form .acf-fields > .acf-field{
  371. border-top: 0;
  372. }
  373. .sider_left_form input{
  374. border: 0px;
  375. border-bottom: 1px solid black;
  376. }
  377. .sider_left_form{
  378. padding: 0 1rem;
  379. border: 8px solid #ff56ffff;
  380. }
  381. .sider_left_form .acf-form-submit{
  382. padding-top: 0;
  383. }
  384. .sider_left_form .af-submit-button{
  385. margin: 0 auto;
  386. }
  387. .sidebar_left .__content,
  388. .content_zone {
  389. border: 8px solid blue;
  390. padding: 1em;
  391. }
  392. /* END PAGE LA COLLECTE */
  393. /* START PAGE BENEVOLE */
  394. body.la-benevole-zone .titre_page {
  395. border-color: #5353e1ff;
  396. }
  397. body.la-benevole-zone .__header h3{
  398. color: #5353e1ff;
  399. }
  400. body.la-benevole-zone .__content {
  401. border-color: #5353e1ff;
  402. }
  403. .la-benevole-zone .__bouttons{
  404. text-align: center;
  405. width: max-content;
  406. margin: 30px auto 0 auto;
  407. }
  408. .la-benevole-zone .__bouttons > div{
  409. border: 4px solid #5353e1ff;
  410. margin: 10px auto;
  411. padding: 0 10px;
  412. font-weight: bold;
  413. }
  414. /* END PAGE BENEVOLE */
  415. /* START PAGE projets */
  416. body.les-projets .titre_page {
  417. border-color: #ff0000ff;
  418. }
  419. body.les-projets .header h3{
  420. color: #ff0000ff;
  421. }
  422. body.les-projets .content_zone {
  423. border-color: #ff0000ff;
  424. }
  425. body.les-projets section#content .wrapper section{
  426. margin: 100px auto;
  427. }
  428. /* END PAGE projets */
  429. /* START PAGE ASSOCIATION */
  430. body.association .titre_page {
  431. border-color: #ffcc00ff;
  432. }
  433. body.association .__header h3{
  434. color: #ffcc00ff;
  435. }
  436. body.association .__content {
  437. border-color: #ffcc00ff;
  438. }
  439. .tableau_engagements{
  440. margin-top: 100px;
  441. }
  442. .tableau_engagements > div:not(.gutter-sizer) {
  443. margin-bottom: 10px;
  444. border: 4px solid #ffcc00ff;
  445. padding: 10px;
  446. width: calc(50% - 10px)!important;
  447. }
  448. .gutter-sizer {
  449. width: 10px;
  450. }
  451. /* END PAGE ASSOCIATION */
  452. /* START PAGE privatiser-lespace */
  453. body.privatiser-lespace .titre_page {
  454. border-color: #26e800ff;
  455. }
  456. body.privatiser-lespace .__header h3{
  457. color: #26e800ff;
  458. }
  459. .legendes{
  460. background-color: white;
  461. position : absolute;
  462. bottom: 20px;
  463. margin-left: 20px;
  464. border: 8px solid #26e800ff;
  465. padding: 10px;
  466. }
  467. .privatiser.__slide .img{
  468. height: 100%;
  469. }
  470. .privatiser.__slide .legendes{
  471. opacity: 0;
  472. transform: translateX(50px);
  473. transition: all 0.3s;
  474. }
  475. .privatiser.__slide .is-selected .legendes{
  476. opacity: 1;
  477. transform: translateX(0px);
  478. transition: all 1.3s;
  479. }
  480. .privatiser-lespace .__organisation,
  481. .privatiser-lespace .__organisation .orga{
  482. margin: 40px 0;
  483. }
  484. .privatiser-lespace .__organisation .title{
  485. color: #26e800ff
  486. }
  487. .privatiser-lespace .__organisation .__item{
  488. border: 8px solid #26e800ff;
  489. padding: 10px;
  490. }
  491. /* END PAGE privatiser-lespace */
  492. .menu-item {
  493. font-family: Millimetre, sans-serif;
  494. text-transform: uppercase;
  495. padding: 15px;
  496. }
  497. #nav-main > ul > li > ul {display: none;}
  498. #nav-main > ul > li:first-child:hover > ul {display: block;}
  499. .menu-item a:hover {
  500. background-color: black;
  501. color: white;
  502. }
  503. .titre_page, .titre{
  504. position: absolute;
  505. top: -100px;
  506. left: -70px;
  507. text-transform: uppercase;
  508. font-weight: bold;
  509. text-align: center;
  510. align-items: center;
  511. border: 8px solid blue;
  512. transform: rotate(-10deg);
  513. padding: 0.5rem;
  514. background-color: white;
  515. }
  516. .titre_1{
  517. margin-top:1em;
  518. }
  519. .next_edition{
  520. font-style: italic;
  521. text-transform: uppercase;
  522. }
  523. .title {
  524. color: blue;
  525. text-align: center;
  526. text-transform: uppercase;
  527. }
  528. /*sections page accueil*/
  529. /* START KEVIN */
  530. .coming_soon{
  531. width: 100%;
  532. }
  533. .coming_soon .thumbnails, .other-posts .thumbnails, .item.thumbnails {
  534. transform: scale(1);
  535. transition: transform 0.3s ease;
  536. }
  537. .coming_soon .thumbnails:hover, .other-posts .thumbnails:hover, .item.thumbnails:hover {
  538. transform: scale(1.05);
  539. transition: all 0.3s ease;
  540. }
  541. /* ALL thumbnails */
  542. .thumbnails .__img{
  543. height: 300px;
  544. }
  545. .thumbnails .__img img{
  546. width: 100%;
  547. height: 100%;
  548. object-fit: cover;
  549. }
  550. .thumbnails .icone_cat{
  551. width: 40px;
  552. height: 40px;
  553. border-radius: 40px;
  554. position: absolute;
  555. transform: translate(-50%, -50%);
  556. background-position: center; /* Center the image */
  557. background-repeat: no-repeat; /* Do not repeat the image */
  558. background-size: cover; /* Resize the background image to cover the entire container */
  559. background-color: black;
  560. }
  561. .thumbnails .atelier_bois{
  562. background-image: url("../images/atelier_couture.png");
  563. }
  564. .thumbnails .atelier_couture{
  565. background-image: url("../images/atelier_couture.png");
  566. }
  567. .thumbnails .atelier_tricot_solidaire{
  568. background-image: url("../images/atelier_tricot.png");
  569. }
  570. .thumbnails .bal_rock{
  571. background-image: url("../images/bal_rock.png");
  572. }
  573. .thumbnails .chiner_concert{
  574. background-image: url("../images/chiner_concert.png");
  575. }
  576. .thumbnails .fab_lab{
  577. background-image: url("../images/fab_lab.png");
  578. }
  579. .thumbnails .festival_lamine_numerique{
  580. background-image: url("../images/fab_lab.png");
  581. }
  582. .thumbnails .gouter_melanie{
  583. background-image: url("../images/gouter.png");
  584. }
  585. .thumbnails .danse_orientale{
  586. background-image: url('../images/bal_rock.png');
  587. }
  588. .thumbnails .hatha_yoga{
  589. background-image: url("../images/hatha_yoga.png");
  590. }
  591. .thumbnails .mineside_jazz{
  592. background-image: url("../images/mineside_jazz.png");
  593. }
  594. .thumbnails .non_programmation{
  595. background-image: url("../images/non_prog.png");
  596. }
  597. .thumbnails .soiree_mine{
  598. background-image: url("../images/soiree_mine.png");
  599. }
  600. .thumbnails .zero_dechet{
  601. background-image: url("../images/zero_dechet.png");
  602. }
  603. /* SECTION ASSO */
  604. #section_asso .association .__body{
  605. position: relative;
  606. justify-content: flex-end;
  607. margin-top: 50px;
  608. }
  609. .image_sectionasso {
  610. position: absolute;
  611. top: 0;
  612. left: 0;
  613. margin-top: 100px;
  614. width: 70%;
  615. }
  616. .content_asso {
  617. width: 70%;
  618. position: relative;
  619. padding: 20px 10px;
  620. background-color: white;
  621. border: 8px solid yellow;
  622. }
  623. /* START SECTION PROJETS*/
  624. #section_projets{
  625. margin-top: 300px;
  626. }
  627. /*END SECTION PROJETS*/
  628. /* responsive iframe */
  629. #section_MineVideo .wrapper__content {
  630. position: relative;
  631. padding-bottom: 56.25%; /* 16:9 */
  632. height: 0;
  633. }
  634. #section_MineVideo .wrapper__content iframe {
  635. position: absolute;
  636. top: 0;
  637. left: 0;
  638. width: 100%;
  639. height: 100%;
  640. }
  641. /* END KEVIN */
  642. /* .item {
  643. margin-top: 50px;
  644. } */
  645. .wrap__content_proch {
  646. position: relative;
  647. width: calc(100% - 40px);
  648. margin: -4rem auto 0 auto;
  649. padding: 10px;
  650. min-height: 160px;
  651. align-items: center;
  652. text-align: center;
  653. background-color: white;
  654. border: 4px solid black;
  655. display: flex;
  656. flex-direction: column;
  657. justify-content: center;
  658. }
  659. .colonne_section{
  660. margin-top: 10px;
  661. }
  662. .colonne_section .wrap_content {
  663. border: 8px solid blue;
  664. padding: 1em;
  665. }
  666. .colonne_section h3 {
  667. color: blue;
  668. text-transform: uppercase;
  669. text-align: center;
  670. }
  671. .projet .colonne_section .header{
  672. height: 80px;
  673. display: flex;
  674. align-items: flex-end ;
  675. }
  676. .projet .colonne_section .header h3{
  677. text-align: center;
  678. width: 100%;
  679. }
  680. .item img{
  681. width: 100%;
  682. height: 100%;
  683. object-fit: cover;
  684. }
  685. ._content_tpsF {
  686. position: relative;
  687. width: 80%;
  688. padding: 10px;
  689. margin: -50px auto;
  690. align-items: center;
  691. text-align: center;
  692. background-color: white;
  693. border: 4px solid black;
  694. }
  695. .video iframe {
  696. margin: 0 auto 0 auto;
  697. width:100%;
  698. }
  699. /*fin sections page accueil*/
  700. /*page collecte avec formulaire*/
  701. /*trouver comment styliser les champs du formulaire*/
  702. /*.af-input acf-input{
  703. background-color: pink;
  704. }*/
  705. .af-submit-button{
  706. position: relative;
  707. margin: 50px auto 10px auto;
  708. display:flex;
  709. border: 4px solid black;
  710. border-radius: 0%;
  711. text-align: center;
  712. padding: 5px;
  713. transform: scale(1) rotate(0deg);
  714. transition: transform 0.3s ease;
  715. }
  716. .af-submit-button:hover{
  717. transform: scale(1.1) rotate(-10deg);
  718. transition: all 0.3s ease;
  719. }
  720. /*fin collecte et form*/
  721. /*page les projets*/
  722. .projet img {
  723. margin: 5% 0 5% 0;
  724. }
  725. ._pjt{
  726. margin-top: 8%
  727. }
  728. /*fin page les projets*/
  729. /*privatiser l'espace*/
  730. /*fin privatiser l'espace*/
  731. /*gestion des dots*/
  732. .flickity-page-dots {
  733. bottom: 0px;
  734. }
  735. .flickity-page-dots .dot {
  736. width: 12px;
  737. height: 12px;
  738. opacity: 1;
  739. background: transparent;
  740. border: 2px solid white;
  741. }
  742. .flickity-page-dots .dot.is-selected {
  743. background: white;
  744. }
  745. /* dot home */
  746. .hero .flickity-page-dots{
  747. bottom: 30px;
  748. }
  749. /*fin gestion des dots*/
  750. /* START KEVIN */
  751. .hero{
  752. width: 100%;
  753. height: 100vh;
  754. position: relative;
  755. }
  756. .hero .slide{
  757. width: 100%;
  758. height: 100vh;
  759. overflow: hidden;
  760. }
  761. .hero .slide .image{
  762. width: 100%;
  763. height: 100vh;
  764. }
  765. .hero .slide img{
  766. width: 100%;
  767. height: 100%;
  768. object-fit: cover;
  769. }
  770. /*.hero .slide .flickity-page-dots{
  771. bottom: 20px;
  772. }
  773. .hero .slide .flickity-page-dots li{
  774. background: white;
  775. }*/
  776. .hero .__head{
  777. width: 100%;
  778. text-align: center;
  779. position: absolute;
  780. bottom: 60px;
  781. color: white;
  782. }
  783. /*
  784. .wrapper section{
  785. margin-top: 200px;
  786. } */
  787. .wrapper section > div {
  788. position: relative;
  789. }
  790. .tpsF .img{
  791. width: 100%;
  792. height: 400px;
  793. }
  794. .tpsF .img img{
  795. width: 100%;
  796. height: 100%;
  797. object-fit: cover;
  798. }
  799. .projet .img{
  800. height: 300px;
  801. }
  802. .projet .img img{
  803. width: 100%;
  804. height: 100%;
  805. object-fit: cover;
  806. }
  807. .prive .images{
  808. width: 100%;
  809. height: 600px;
  810. }
  811. .prive .img img{
  812. width: 100%;
  813. height: 100%;
  814. object-fit: cover;
  815. }
  816. /* END KEVIN */
  817. /*START MEDIA QUERIES*/
  818. @media screen and (min-width: 200px) and (max-width: 1088px) {
  819. .titre_page,
  820. .titre {
  821. top: -150px;
  822. left: 50%;
  823. transform: rotate(-10deg) translateX(-50%);
  824. }
  825. .other .header_other {
  826. left: 50%;
  827. }
  828. .article-content{
  829. margin-top: 30px;
  830. }
  831. }
  832. @media screen and (max-width : 768px){
  833. article .__img_event{
  834. max-height: 300px;
  835. }
  836. }
  837. @media screen and (min-width: 200px) and (max-width: 640px) {
  838. .image_sectionasso {
  839. display: none;
  840. width: 100%;
  841. }
  842. .content_asso {
  843. width: 100%;
  844. }
  845. }
  846. @media screen and (min-width: 200px) and (max-width: 755px) {
  847. .__chapeau, .titre_event{
  848. margin-top: 20px;
  849. }
  850. }
  851. /*END MEDIA QUERIES*/
  852. /* START FOOTER */
  853. footer{
  854. background-color: rgba(240, 240, 240, 240);
  855. width: 100%;
  856. padding: 50px 10px;
  857. margin-top: 100px;
  858. }
  859. /* footer .information > div > div{
  860. margin: 0 20px;
  861. } */
  862. footer > section{
  863. margin-bottom: 20px;
  864. }
  865. footer .logo_lamine {
  866. width: 100px;
  867. height: 100px;
  868. }
  869. footer .logo_lamine a{
  870. display: block;
  871. }
  872. footer .logo_lamine img{
  873. object-fit: contain;
  874. }
  875. footer .reseaux_sociaux > div a > img{
  876. display: block;
  877. width: 20px;
  878. height: 20px;
  879. margin-right: 5px;
  880. }
  881. footer .reseaux_sociaux img {
  882. vertical-align: baseline;
  883. object-fit: contain;
  884. }
  885. /* START Mailchimp */
  886. footer #mc_embed_signup label{
  887. margin: 0;
  888. padding: 0;
  889. }
  890. footer #mc_embed_signup_scroll label{
  891. margin-right: 10px;
  892. white-space: nowrap;
  893. }
  894. footer #mc_embed_signup_scroll input{
  895. width: 100%;
  896. }
  897. /* END MAILCHIMP */
  898. /* START SLIDE */
  899. footer .partenaires ._titre{
  900. white-space: nowrap;
  901. margin-right: 10px;
  902. }
  903. footer .partenaires{
  904. width: 100%;
  905. }
  906. footer .container_slide li{
  907. width: 80px;
  908. height: 80px;
  909. margin: 0 10px;
  910. }
  911. footer .partenaires img{
  912. object-fit: contain;
  913. }
  914. /* END SLIDE */
  915. /* END FOOTER */