template.css 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688
  1. @charset "UTF-8";
  2. @import url(//fonts.googleapis.com/css?family=Montserrat:400|Raleway:300,400,600|Inconsolata);
  3. #header #logo h3, #header #navbar .panel-activation, #footer p {
  4. position: relative;
  5. top: 50%;
  6. -webkit-transform: translateY(-50%);
  7. -moz-transform: translateY(-50%);
  8. -o-transform: translateY(-50%);
  9. -ms-transform: translateY(-50%);
  10. transform: translateY(-50%); }
  11. .button, .button-secondary {
  12. display: inline-block;
  13. padding: 7px 20px; }
  14. .button-small.button, .button-small.button-secondary {
  15. padding: 3px 10px;
  16. font-size: 0.9rem; }
  17. html, body {
  18. height: 100%; }
  19. body {
  20. background: #fff;
  21. color: #000;
  22. -webkit-font-smoothing: antialiased;
  23. -moz-osx-font-smoothing: grayscale; }
  24. a {
  25. color: #000; }
  26. a:hover {
  27. color: black; }
  28. b, strong, label, th {
  29. font-weight: 700; }
  30. #container {
  31. min-height: 100%;
  32. position: relative; }
  33. .fullwidth #body {
  34. padding-left: 0;
  35. padding-right: 0; }
  36. #body {
  37. background: #fff;
  38. padding-top: 5rem;
  39. padding-bottom: 0; }
  40. .left {
  41. float: left; }
  42. .right {
  43. float: right; }
  44. .default-animation, #body, #header, #header #logo h3, #header #navbar ul.navigation, #header.scrolled img, .modular .showcase .button {
  45. -webkit-transition: all 0.5s ease-in-out;
  46. -moz-transition: all 0.5s ease-in-out;
  47. transition: all 0.5s ease-in-out; }
  48. .padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer {
  49. padding-left: 7rem;
  50. padding-right: 7rem; }
  51. @media only all and (max-width: 59.938em) {
  52. .padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer {
  53. padding-left: 4rem;
  54. padding-right: 4rem; } }
  55. @media only all and (max-width: 47.938em) {
  56. .padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer {
  57. padding-left: 1rem;
  58. padding-right: 1rem; } }
  59. .padding-vert {
  60. padding-top: 3rem;
  61. padding-bottom: 3rem; }
  62. #header {
  63. position: fixed;
  64. z-index: 10;
  65. width: 100%;
  66. height: 5rem;
  67. background-color: white;
  68. box-shadow: 0 0.05rem 1rem rgba(0, 0, 0, 0.15); }
  69. #header #logo img {
  70. display: flex;
  71. flex-direction: row;
  72. flex-flow: row; }
  73. #header.scrolled {
  74. height: 3rem;
  75. background-color: rgba(255, 255, 255, 0.9) !important;
  76. box-shadow: 0 0.05rem 1rem rgba(0, 0, 0, 0.15) !important; }
  77. #header.scrolled #logo h3 {
  78. color: #000 !important;
  79. font-size: 1.6rem !important; }
  80. #header.scrolled #logo a, #header.scrolled #navbar span {
  81. color: #000 !important; }
  82. #header.scrolled #navbar a {
  83. color: #000 !important; }
  84. #header.scrolled #navbar a:hover {
  85. color: black !important; }
  86. #header.scrolled #navbar a:before, #header.scrolled #navbar a:after {
  87. background-color: #000 !important; }
  88. #header.scrolled .navigation {
  89. margin-top: 0.5rem !important; }
  90. #header > .grid, #header #logo, #header #navbar {
  91. height: 100%; }
  92. #header #logo {
  93. float: left; }
  94. #header #logo h3 {
  95. font-size: 2rem;
  96. line-height: 2rem;
  97. margin: 0; }
  98. #header #logo h3 a {
  99. color: #000; }
  100. #header #navbar {
  101. font-size: 1.4rem;
  102. /* Child Indicator */ }
  103. #header #navbar .has-children > a > span {
  104. display: inline-block;
  105. padding-right: 8px; }
  106. #header #navbar .has-children > a > span:after {
  107. font-family: FontAwesome;
  108. content: '\f107';
  109. position: absolute;
  110. display: inline-block;
  111. right: 8px;
  112. top: 4px; }
  113. #header #navbar .has-children > a:after, #header #navbar .has-children > a:before {
  114. display: none; }
  115. #header #navbar .has-children .has-children > a > span:after {
  116. content: '\f105'; }
  117. #header #navbar .navigation > .has-children:hover > a {
  118. background: #f6f6f6;
  119. border: 1px solid #ececec;
  120. border-bottom-color: #f6f6f6;
  121. margin: -1px -1px 0 -1px;
  122. z-index: 1000;
  123. position: relative;
  124. padding-bottom: 1px; }
  125. #header #navbar ul {
  126. margin: 0;
  127. padding: 0;
  128. list-style: none;
  129. text-transform: uppercase; }
  130. #header #navbar ul.navigation {
  131. display: inline-block;
  132. float: right;
  133. margin-top: 1.4rem; }
  134. #header #navbar ul.navigation li {
  135. float: left;
  136. position: relative;
  137. /*Active dropdown nav item */
  138. /* Dropdown CSS */
  139. /* Active on Hover */ }
  140. #header #navbar ul.navigation li a {
  141. font-family: "Sarabun", sans-serif;
  142. display: inline-block;
  143. padding: 0.3rem 0.8rem;
  144. -webkit-backface-visibility: hidden; }
  145. #header #navbar ul.navigation li a:hover:before {
  146. visibility: visible;
  147. -webkit-transform: scaleX(0.75);
  148. -moz-transform: scaleX(0.75);
  149. -ms-transform: scaleX(0.75);
  150. -o-transform: scaleX(0.75);
  151. transform: scaleX(0.75); }
  152. #header #navbar ul.navigation li a.active:after {
  153. top: 0;
  154. visibility: visible;
  155. -webkit-transform: scaleX(0.75);
  156. -moz-transform: scaleX(0.75);
  157. -ms-transform: scaleX(0.75);
  158. -o-transform: scaleX(0.75);
  159. transform: scaleX(0.75); }
  160. #header #navbar ul.navigation li.active a:after {
  161. top: 0;
  162. visibility: visible;
  163. -webkit-transform: scaleX(0.75);
  164. -moz-transform: scaleX(0.75);
  165. -ms-transform: scaleX(0.75);
  166. -o-transform: scaleX(0.75);
  167. transform: scaleX(0.75); }
  168. #header #navbar ul.navigation li ul {
  169. position: absolute;
  170. background-color: #f6f6f6;
  171. border: 1px solid #ececec;
  172. border-top: 0;
  173. min-width: 12rem;
  174. text-align: left;
  175. z-index: 999;
  176. left: -1px;
  177. display: none; }
  178. #header #navbar ul.navigation li ul li {
  179. display: block;
  180. float: none;
  181. /* Active Dropdown nav item */ }
  182. #header #navbar ul.navigation li ul li.active > a {
  183. background-color: #ececec;
  184. color: #000; }
  185. #header #navbar ul.navigation li ul li:hover > a {
  186. background-color: #000;
  187. color: #fff; }
  188. #header #navbar ul.navigation li ul li a {
  189. display: block;
  190. margin: 0 -1px; }
  191. #header #navbar ul.navigation li ul li a:after, #header #navbar ul.navigation li ul li a:before {
  192. display: none; }
  193. #header #navbar ul.navigation li ul ul {
  194. left: 100%;
  195. top: 0px; }
  196. #header #navbar ul.navigation li:hover > ul {
  197. display: block; }
  198. @media only all and (max-width: 59.938em) {
  199. #header #navbar ul.navigation {
  200. display: none; } }
  201. #header #navbar .panel-activation {
  202. padding: 1rem;
  203. display: none;
  204. font-size: 1.8rem;
  205. cursor: pointer;
  206. float: right; }
  207. @media only all and (max-width: 59.938em) {
  208. #header #navbar .panel-activation {
  209. display: inline-block; } }
  210. .header-image.fullwidth #body {
  211. padding-left: 0;
  212. padding-right: 0; }
  213. .header-image.fullwidth #body > .listing-row {
  214. padding-left: 7rem;
  215. padding-right: 7rem; }
  216. .header-image .listing-row:last-child {
  217. margin-bottom: 2rem; }
  218. .header-image #body .flush-top {
  219. margin-top: -9.5rem;
  220. padding-top: 9rem; }
  221. .header-image #breadcrumbs {
  222. margin-top: 1rem; }
  223. .header-image #header {
  224. background-color: rgba(255, 255, 255, 0);
  225. box-shadow: none; }
  226. .header-image #header .navigation .has-children:hover a {
  227. color: #000; }
  228. .header-image #header #logo h3, .header-image #header #logo a {
  229. color: #FFFFFF; }
  230. .header-image #header a, .header-image #header .menu-btn {
  231. color: #FFFFFF; }
  232. .header-image #header a:before, .header-image #header a:after {
  233. background-color: rgba(255, 255, 255, 0.7) !important; }
  234. #footer {
  235. position: absolute;
  236. background: #333;
  237. height: 6rem;
  238. right: 0;
  239. bottom: 0;
  240. left: 0;
  241. color: #999;
  242. text-align: center; }
  243. #footer a:hover {
  244. color: #fff; }
  245. #footer .totop {
  246. position: absolute;
  247. bottom: 5rem;
  248. text-align: center;
  249. left: 0;
  250. right: 0; }
  251. #footer .totop span {
  252. font-size: 1.7rem;
  253. line-height: 2.5rem;
  254. background: #333;
  255. width: 3rem;
  256. height: 2rem;
  257. border-radius: 3px;
  258. display: inline-block;
  259. text-align: top; }
  260. #footer p {
  261. margin: 0; }
  262. #footer p .fa {
  263. color: #fff; }
  264. html, body, button, input, select, textarea, .pure-g, .pure-g [class*="pure-u"] {
  265. font-family: "Sarabun", sans-serif; }
  266. h1 {
  267. font-family: "Sarabun", sans-serif;
  268. font-weight: 800;
  269. text-rendering: optimizeLegibility;
  270. letter-spacing: -0px; }
  271. h2, h3, h5, h6 {
  272. font-family: "Sarabun", sans-serif; }
  273. h1 {
  274. font-size: 2.3rem; }
  275. @media only all and (max-width: 47.938em) {
  276. h1 {
  277. font-size: 2.5rem;
  278. line-height: 1.2;
  279. margin-bottom: 2.5rem; } }
  280. @media only all and (min-width: 48em) and (max-width: 59.938em) {
  281. h2 {
  282. font-size: 1.6rem; } }
  283. @media only all and (max-width: 47.938em) {
  284. h2 {
  285. font-size: 1.5rem; } }
  286. @media only all and (min-width: 48em) and (max-width: 59.938em) {
  287. h3 {
  288. font-size: 1.6rem; } }
  289. @media only all and (max-width: 47.938em) {
  290. h3 {
  291. font-size: 1.5rem; } }
  292. h4 {
  293. font-family: "Sarabun", sans-serif;
  294. font-weight: 800; }
  295. @media only all and (min-width: 48em) and (max-width: 59.938em) {
  296. h4 {
  297. font-size: 1.25rem; } }
  298. @media only all and (max-width: 47.938em) {
  299. h4 {
  300. font-size: 1.15rem; } }
  301. h1 {
  302. text-align: center;
  303. letter-spacing: -0px; }
  304. h2 {
  305. letter-spacing: -0px; }
  306. h3 {
  307. letter-spacing: -0px; }
  308. h1 + h2 {
  309. margin: -2rem 0 2rem 0;
  310. font-size: 1.2rem;
  311. line-height: 1.3;
  312. text-align: center;
  313. font-family: "Sarabun", sans-serif;
  314. font-weight: 100; }
  315. @media only all and (min-width: 48em) and (max-width: 59.938em) {
  316. h1 + h2 {
  317. font-size: 1.6rem; } }
  318. @media only all and (max-width: 47.938em) {
  319. h1 + h2 {
  320. font-size: 1.5rem; } }
  321. h2 + h3 {
  322. margin: 0.5rem 0 2rem 0;
  323. font-size: 2rem;
  324. line-height: 1;
  325. text-align: center;
  326. font-family: "Sarabun", sans-serif;
  327. font-weight: 300; }
  328. @media only all and (min-width: 48em) and (max-width: 59.938em) {
  329. h2 + h3 {
  330. font-size: 1.6rem; } }
  331. @media only all and (max-width: 47.938em) {
  332. h2 + h3 {
  333. font-size: 1.5rem; } }
  334. p {
  335. font-size: 1rem; }
  336. blockquote {
  337. border-left: 10px solid #F0F2F4; }
  338. blockquote p {
  339. font-size: 1.1rem;
  340. color: #999; }
  341. blockquote cite {
  342. display: block;
  343. text-align: right;
  344. color: #666;
  345. font-size: 1.2rem; }
  346. blockquote > blockquote > blockquote {
  347. margin: 0; }
  348. blockquote > blockquote > blockquote p {
  349. padding: 15px;
  350. display: block;
  351. font-size: 1rem;
  352. margin-top: 0rem;
  353. margin-bottom: 0rem; }
  354. blockquote > blockquote > blockquote > p {
  355. margin-left: -71px;
  356. border-left: 10px solid #F0AD4E;
  357. background: #FCF8F2;
  358. color: #df8a13; }
  359. blockquote > blockquote > blockquote > p a {
  360. color: #b06d0f; }
  361. blockquote > blockquote > blockquote > p a:hover {
  362. color: #f2b866; }
  363. blockquote > blockquote > blockquote > blockquote > p {
  364. margin-left: -94px;
  365. border-left: 10px solid #D9534F;
  366. background: #FDF7F7;
  367. color: #b52b27; }
  368. blockquote > blockquote > blockquote > blockquote > p a {
  369. color: #8b211e; }
  370. blockquote > blockquote > blockquote > blockquote > p a:hover {
  371. color: #de6764; }
  372. blockquote > blockquote > blockquote > blockquote > blockquote > p {
  373. margin-left: -118px;
  374. border-left: 10px solid #5BC0DE;
  375. background: #F4F8FA;
  376. color: #28a1c5; }
  377. blockquote > blockquote > blockquote > blockquote > blockquote > p a {
  378. color: #1f7e9a; }
  379. blockquote > blockquote > blockquote > blockquote > blockquote > p a:hover {
  380. color: #70c8e2; }
  381. blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p {
  382. margin-left: -142px;
  383. border-left: 10px solid #5CB85C;
  384. background: #F1F9F1;
  385. color: #3d8b3d; }
  386. blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p a {
  387. color: #2d672d; }
  388. blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p a:hover {
  389. color: #6ec06e; }
  390. code,
  391. kbd,
  392. pre,
  393. samp {
  394. font-family: "Inconsolata", monospace; }
  395. code {
  396. background: #f9f2f4;
  397. color: #9c1d3d; }
  398. pre {
  399. padding: 2rem;
  400. background: #f0f0f0;
  401. border: 1px solid #ddd;
  402. border-radius: 3px; }
  403. pre code {
  404. color: #237794;
  405. background: inherit; }
  406. hr {
  407. border-bottom: 4px solid #F0F2F4; }
  408. .page-title {
  409. margin-top: -25px;
  410. padding: 25px;
  411. float: left;
  412. clear: both;
  413. background: #000;
  414. color: #fff; }
  415. .label {
  416. vertical-align: middle;
  417. background: #000;
  418. border-radius: 100%;
  419. color: #fff;
  420. height: 1rem;
  421. min-width: 1rem;
  422. line-height: 1rem;
  423. display: inline-block;
  424. text-align: center;
  425. font-size: 0.7rem;
  426. font-family: "Sarabun", sans-serif;
  427. margin-right: 0.75rem; }
  428. fieldset {
  429. border: 1px solid #ddd; }
  430. textarea, input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], select[multiple=multiple] {
  431. background-color: white;
  432. border: 1px solid #ddd;
  433. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06); }
  434. textarea:hover, input[type="email"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="url"]:hover, input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover, select[multiple=multiple]:hover {
  435. border-color: #c4c4c4; }
  436. textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus {
  437. border-color: #000;
  438. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 0, 0, 0.7); }
  439. .form-field .required {
  440. color: #F3443F;
  441. font-size: 3rem;
  442. line-height: 3rem;
  443. vertical-align: top;
  444. height: 1.5rem;
  445. display: inline-block; }
  446. form .buttons {
  447. text-align: center; }
  448. form input {
  449. font-weight: 400; }
  450. table {
  451. border: 1px solid #eaeaea;
  452. table-layout: auto; }
  453. th {
  454. background: #f7f7f7;
  455. padding: 0.5rem; }
  456. td {
  457. padding: 0.5rem;
  458. border: 1px solid #eaeaea; }
  459. .button {
  460. background: #fff;
  461. color: #000;
  462. border: 1px solid #000; }
  463. .button:hover {
  464. background: #000;
  465. color: #fff; }
  466. .button:active {
  467. box-shadow: 0 1px 0 black; }
  468. .button-secondary {
  469. background: #fff;
  470. color: #F6635E;
  471. border: 1px solid #F6635E; }
  472. .button-secondary:hover {
  473. background: #F6635E;
  474. color: #fff; }
  475. .button-secondary:active {
  476. box-shadow: 0 1px 0 #f32b24; }
  477. .bullets {
  478. margin: 1.7em 0;
  479. margin-left: -0.85em;
  480. margin-right: -0.85em;
  481. overflow: auto; }
  482. .bullet {
  483. float: left;
  484. padding: 0 0.85em; }
  485. .two-column-bullet {
  486. width: 50%; }
  487. @media only all and (max-width: 47.938em) {
  488. .two-column-bullet {
  489. width: 100%; } }
  490. .three-column-bullet {
  491. width: 33.33333%; }
  492. @media only all and (max-width: 47.938em) {
  493. .three-column-bullet {
  494. width: 100%; } }
  495. .four-column-bullet {
  496. width: 25%; }
  497. @media only all and (max-width: 47.938em) {
  498. .four-column-bullet {
  499. width: 100%; } }
  500. .bullet-icon {
  501. float: left;
  502. background: #000;
  503. padding: 0.875rem;
  504. width: 3.5rem;
  505. height: 3.5rem;
  506. border-radius: 50%;
  507. color: #fff;
  508. font-size: 1.75rem;
  509. text-align: center; }
  510. .bullet-icon-1 {
  511. background: #000; }
  512. .bullet-icon-2 {
  513. background: black; }
  514. .bullet-icon-3 {
  515. background: black; }
  516. .bullet-content {
  517. margin-left: 4.55rem; }
  518. .sb-slidebar {
  519. background-color: #333 !important; }
  520. #panel {
  521. padding-top: 1rem;
  522. color: #ddd; }
  523. #panel .navigation {
  524. list-style: none;
  525. padding: 0; }
  526. #panel .navigation li {
  527. border-bottom: 1px solid #3d3d3d; }
  528. #panel .navigation li a {
  529. color: #ddd;
  530. display: block;
  531. padding: 0.5rem 1rem;
  532. font-weight: 600; }
  533. #panel .navigation li a:hover {
  534. color: white;
  535. background-color: #262626; }
  536. #panel .navigation li a:last-child {
  537. border-bottom: 0; }
  538. #panel .navigation li.active > a {
  539. background: #fff;
  540. color: #000; }
  541. #panel .navigation li.active > a:hover {
  542. color: #000; }
  543. #panel .navigation li:first-child {
  544. border-top: 1px solid #3d3d3d; }
  545. #panel .navigation li ul {
  546. list-style: none;
  547. padding: 0; }
  548. #panel .navigation li ul li {
  549. border: 0 !important; }
  550. #panel .navigation li ul li a {
  551. color: #c4c4c4;
  552. padding: 0.2rem 1rem 0.2rem 2rem;
  553. font-size: 0.9rem; }
  554. #panel .navigation li ul li li a {
  555. padding-left: 3rem; }
  556. #panel .navigation li ul li li a li a {
  557. padding-left: 4rem; }
  558. #panel .navigation li ul li.active > a {
  559. background: #ccc; }
  560. .blog-header {
  561. padding-top: 2rem;
  562. padding-bottom: 2rem; }
  563. .blog-header.blog-header-image {
  564. background-size: cover;
  565. background-position: center; }
  566. .blog-header.blog-header-image h1, .blog-header.blog-header-image h2 {
  567. color: #FFFFFF; }
  568. .blog-header h1 {
  569. font-size: 4rem;
  570. margin-top: 0; }
  571. @media only all and (min-width: 48em) and (max-width: 59.938em) {
  572. .blog-header h1 {
  573. font-size: 3rem; } }
  574. @media only all and (max-width: 47.938em) {
  575. .blog-header h1 {
  576. font-size: 2.5rem;
  577. line-height: 1.2;
  578. margin-bottom: 2.5rem; } }
  579. .blog-header + .blog-content {
  580. padding-top: 3rem; }
  581. .list-item {
  582. border-bottom: 1px solid #EEEEEE;
  583. margin-bottom: 3rem; }
  584. .list-item:last-child {
  585. border-bottom: 0; }
  586. .list-item .list-blog-header {
  587. position: relative; }
  588. .list-item .list-blog-header h4 {
  589. margin-bottom: 0.5rem; }
  590. .list-item .list-blog-header h4 a {
  591. color: #000; }
  592. .list-item .list-blog-header h4 a:hover {
  593. color: #000; }
  594. .list-item .list-blog-header img {
  595. display: block;
  596. margin-top: 1rem;
  597. border-radius: 3px; }
  598. .list-item .list-blog-date {
  599. float: right;
  600. text-align: center; }
  601. .list-item .list-blog-date span {
  602. display: block;
  603. font-size: 1.75rem;
  604. font-weight: 700;
  605. line-height: 110%; }
  606. .list-item .list-blog-date em {
  607. display: block;
  608. border-top: 1px solid #EEEEEE;
  609. font-style: normal;
  610. text-transform: uppercase; }
  611. .blog-content-item .list-blog-padding > p:nth-child(2) {
  612. font-size: 1.2rem; }
  613. .tags a {
  614. display: inline-block;
  615. font-size: 0.8rem;
  616. border: 1px solid #000;
  617. border-radius: 3px;
  618. padding: 0.1rem 0.4rem;
  619. margin-bottom: 0.2rem;
  620. text-transform: uppercase; }
  621. .archives, .related-pages {
  622. padding: 0;
  623. list-style: none; }
  624. .archives li, .related-pages li {
  625. border-bottom: 1px solid #EEEEEE;
  626. line-height: 2rem; }
  627. .archives li:last-child, .related-pages li:last-child {
  628. border-bottom: 0; }
  629. .related-pages li a {
  630. display: block; }
  631. .related-pages .score {
  632. display: block;
  633. float: right;
  634. color: #999;
  635. font-size: 85%; }
  636. .syndicate a {
  637. margin-bottom: 1rem; }
  638. div#breadcrumbs {
  639. padding-left: 0; }
  640. @media only all and (max-width: 47.938em) {
  641. div#breadcrumbs {
  642. display: none; } }
  643. #sidebar {
  644. padding-left: 3rem; }
  645. @media only all and (max-width: 47.938em) {
  646. #sidebar {
  647. padding-left: 0; } }
  648. #sidebar .sidebar-content {
  649. margin-bottom: 3rem; }
  650. #sidebar .sidebar-content h4 {
  651. margin-bottom: 1rem; }
  652. #sidebar .sidebar-content p, #sidebar .sidebar-content ul {
  653. margin-top: 1rem; }
  654. ul.pagination {
  655. margin: 0 0 3rem;
  656. text-align: center; }
  657. .prev-next {
  658. margin-top: 5rem;
  659. text-align: center; }
  660. #error {
  661. text-align: center;
  662. display: flex;
  663. align-items: center;
  664. justify-content: center;
  665. height: 100%;
  666. padding-bottom: 6rem; }
  667. #error h1 {
  668. font-size: 5rem; }
  669. #error p {
  670. margin: 1rem 0; }
  671. .simplesearch h1 {
  672. margin-bottom: 0; }
  673. .simplesearch .center {
  674. text-align: center; }
  675. .simplesearch input {
  676. display: inline-block;
  677. max-width: 30rem;
  678. font-size: 2rem; }
  679. .simplesearch .search-image {
  680. margin-top: 1rem; }
  681. .simplesearch .search-image img {
  682. border-radius: 4px; }
  683. @media only all and (max-width: 47.938em) {
  684. .simplesearch .search-image img {
  685. display: none; } }
  686. @media only all and (max-width: 47.938em) {
  687. .simplesearch .search-item {
  688. margin-left: 0; } }
  689. .simplesearch .search-wrapper .search-submit {
  690. height: 52px;
  691. padding: 0 10px; }
  692. .simplesearch .search-wrapper .search-submit img {
  693. width: 30px; }
  694. .simplesearch .search-details {
  695. float: right;
  696. margin-top: -2.5rem;
  697. font-weight: bold;
  698. font-size: 1rem;
  699. color: #333333; }
  700. @media only all and (max-width: 47.938em) {
  701. .simplesearch .search-details {
  702. float: none;
  703. margin-top: -0.2rem;
  704. margin-bottom: 1rem; } }
  705. .simplesearch hr {
  706. border-bottom: 1px solid #eee; }
  707. .grav-lightslider .lSSlideOuter .lSPager.lSpg > li a {
  708. z-index: 1; }
  709. .padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer {
  710. padding-left: 3rem;
  711. padding-right: 3rem; }
  712. #body > script:first-child + .grav-lightslider {
  713. margin-top: -3rem; }
  714. #sb-site {
  715. background: none !important; }
  716. #sb-site #body {
  717. background: none !important;
  718. font-family: "Sarabun", sans-serif !important; }
  719. #sb-site #body p:empty {
  720. display: none; }
  721. @media (max-width: 442px) {
  722. #sb-site #body {
  723. padding-top: 2rem; } }
  724. body#top.modular.fullwidth.title-center.title-h1h2 {
  725. overflow-y: hidden; }
  726. #header.scrolled {
  727. padding-left: 2rem;
  728. padding-right: 2rem; }
  729. #header.scrolled img {
  730. -webkit-transform: scale(0.75);
  731. -moz-transform: scale(0.75);
  732. -ms-transform: scale(0.75);
  733. -o-transform: scale(0.75);
  734. transform: scale(0.75);
  735. padding-bottom: 1rem; }
  736. #header #navbar ul.navigation li a {
  737. font-family: "Sarabun", sans-serif;
  738. font-weight: 400;
  739. text-transform: uppercase;
  740. font-size: 1rem;
  741. display: inline-block;
  742. padding: 0.3rem 0.8rem;
  743. -webkit-backface-visibility: hidden; }
  744. #header #navbar ul.navigation li:after {
  745. display: inline;
  746. content: "|";
  747. padding: 0 .1em;
  748. vertical-align: top; }
  749. #header #navbar ul.navigation li:last-child:after {
  750. content: "" !important; }
  751. #header #navbar ul.navigation li a:hover {
  752. font-weight: 900; }
  753. #logo {
  754. position: relative;
  755. display: flex;
  756. flex-direction: row; }
  757. #logo img {
  758. padding: 0.75rem;
  759. height: 4rem;
  760. margin: auto; }
  761. @media (max-width: 442px) {
  762. #logo img {
  763. height: 3rem; } }
  764. @media (max-width: 1024px) {
  765. #logo img {
  766. height: 3.5rem; } }
  767. #logo img #gouv {
  768. padding-left: 1rem;
  769. padding-right: 2rem;
  770. padding: 0.5rem;
  771. min-height: 4rem; }
  772. @media (max-width: 442px) {
  773. #header #navbar {
  774. position: absolute;
  775. right: 1rem; }
  776. .padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer {
  777. padding-left: 0 !important;
  778. padding-right: 0rem !important; }
  779. #header #logo {
  780. position: absolute; }
  781. #logo img {
  782. height: 3rem;
  783. margin-left: 1rem; } }
  784. @media (max-width: 1024px) {
  785. .padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer {
  786. padding-left: 0 !important;
  787. padding-right: 0rem !important; }
  788. #header #navbar {
  789. padding-right: 2rem; } }
  790. .parallax-window {
  791. background: transparent;
  792. width: 100%; }
  793. .parallax-mirror {
  794. top: -80px; }
  795. .callout {
  796. filter: opacity(0.75);
  797. position: relative;
  798. z-index: 1;
  799. padding-top: 0.5rem;
  800. padding-right: 0rem !important;
  801. padding-left: 0rem !important; }
  802. .callout h1, .callout h2, .callout h3, .callout p {
  803. text-align: left !important; }
  804. .callout h2 {
  805. text-transform: capitalize;
  806. font-weight: 300;
  807. font-size: 1rem; }
  808. .ressources {
  809. background-color: white;
  810. padding-top: 1rem; }
  811. .titre_nsb {
  812. display: block;
  813. margin-right: 45%; }
  814. .titre_nsb h1 {
  815. margin-bottom: 0rem !important;
  816. text-align: right;
  817. padding-right: 0rem !important;
  818. padding-left: 2rem; }
  819. @media (max-width: 500px) {
  820. .titre_nsb {
  821. margin-right: 30% !important; }
  822. .titre_nsb h1 {
  823. font-size: 1.6rem; } }
  824. .titre_bsn {
  825. display: block;
  826. margin-left: 45%; }
  827. .titre_bsn h1 {
  828. text-align: left;
  829. margin-bottom: 0rem !important; }
  830. .titre_bsn p {
  831. text-transform: uppercase;
  832. padding-right: 15%; }
  833. @media (max-width: 442px) {
  834. .titre_bsn {
  835. margin-left: 30%; }
  836. .titre_bsn h1 {
  837. font-size: 1.6rem; } }
  838. @keyframes animate {
  839. 0% {
  840. width: 0%; }
  841. 100% {
  842. width: 100%; } }
  843. @keyframes glissement {
  844. from {
  845. margin-left: 100%;
  846. width: 300%; }
  847. to {
  848. margin-left: 0%;
  849. width: 100%; } }
  850. .after-h1 .in-view-right {
  851. animation: animate 1.2s 1 normal ease-in-out forwards; }
  852. .after-h1 .in-view {
  853. animation: glissement 1.2s 1 normal ease-in-out forwards; }
  854. .programmes {
  855. display: flex;
  856. flex-wrap: wrap;
  857. justify-content: center;
  858. padding-left: 15%;
  859. padding-right: 15%;
  860. padding-top: 8rem;
  861. padding-bottom: 8rem; }
  862. .programme {
  863. z-index: 1;
  864. max-width: 35%;
  865. min-width: 26rem;
  866. padding: 1.5rem;
  867. background-color: white;
  868. margin: 0.4rem; }
  869. .programme h4 {
  870. text-transform: uppercase;
  871. line-height: 1.2; }
  872. .programme img {
  873. max-height: 4rem; }
  874. .programme p {
  875. font-family: "Sarabun", sans-serif;
  876. font-weight: 500;
  877. font-style: italic;
  878. padding-bottom: 1.5rem; }
  879. @media (max-width: 442px) {
  880. .programme {
  881. min-width: 20rem; } }
  882. .programme:hover {
  883. background-color: #000;
  884. transition: 0.2s ease-in-out; }
  885. .programme:hover p {
  886. color: #fff; }
  887. .programme:hover h4 {
  888. color: #fff; }
  889. /*CSS pour afficher/masquer un texte via un bouton*/
  890. /*Style du module TEXTE*/
  891. .texte-cache {
  892. position: relative;
  893. max-height: 400px;
  894. /*Hauteur du texte visible avant le clic*/
  895. overflow: hidden;
  896. /*On cache tout ce qui dépasse des 400px*/
  897. transition: max-height 1s ease;
  898. /* Transition CSS entre l'ouverture et la fermeture*/ }
  899. @media (max-width: 1024px) {
  900. .texte-cache {
  901. max-height: 445px; } }
  902. @media (max-width: 442px) {
  903. .texte-cache {
  904. max-height: 400px; } }
  905. /*Style du module TEXTE lorsqu'il est ouvert*/
  906. .texte-cache.ouvert {
  907. max-height: 300vh;
  908. /* On lui définit une hauteur max de tout l'écran si nécessaire pour qu'il affiche tout son contenu*/ }
  909. /*On stylise l'effet de flou lorsque le module TEXTE est fermé, donc il n'a pas la classe "ouvert"*/
  910. .texte-cache:not(.ouvert)::after {
  911. content: '';
  912. position: absolute;
  913. top: 400px;
  914. bottom: 0;
  915. left: 0;
  916. right: 0; }
  917. @media (max-width: 1024px) {
  918. .modular .features {
  919. width: 80% !important;
  920. margin: auto !important; } }
  921. @media (max-width: 442px) {
  922. .modular .features .feature {
  923. width: 80%; } }
  924. @media (max-width: 1024px) {
  925. .modular .features .feature {
  926. width: 24%; } }
  927. .bouton-ouverture {
  928. position: relative;
  929. justify-content: center;
  930. cursor: pointer;
  931. border: solid;
  932. border-radius: 0px !important;
  933. background-color: transparent;
  934. text-transform: uppercase;
  935. left: 45%;
  936. margin-bottom: 2rem !important; }
  937. .gouvernance {
  938. background-color: #000;
  939. color: #ffffff;
  940. text-transform: uppercase;
  941. padding-bottom: 6rem;
  942. padding-top: 2rem; }
  943. .mozaique_personnes {
  944. background-color: #d9d9d9;
  945. padding-bottom: 6rem; }
  946. .mozaique_personnes .equipe {
  947. display: flex !important;
  948. flex-direction: row;
  949. flex-wrap: wrap;
  950. width: 100%;
  951. padding-left: 22%;
  952. padding-right: 15%;
  953. margin: auto;
  954. justify-items: center; }
  955. @media (max-width: 442px) {
  956. .mozaique_personnes .equipe {
  957. width: 100%;
  958. padding-left: 3%;
  959. padding-right: 2%; } }
  960. .mozaique_personnes .equipe h3 {
  961. padding-top: 3rem;
  962. min-width: 100%;
  963. font-family: "Sarabun", sans-serif;
  964. font-weight: 800;
  965. font-size: 1rem;
  966. line-height: 20px;
  967. text-align: left; }
  968. @media (max-width: 442px) {
  969. .mozaique_personnes .equipe h3 {
  970. font-size: 0.9rem;
  971. padding-right: 0.5rem; } }
  972. .mozaique_personnes .equipe .personne {
  973. display: flex;
  974. flex-direction: row;
  975. flex-wrap: wrap;
  976. padding-right: 0.5rem;
  977. padding-bottom: 0.5rem; }
  978. .mozaique_personnes .equipe .personne .mozaique {
  979. display: flex;
  980. flex-direction: row;
  981. justify-content: flex-end;
  982. max-width: 30rem;
  983. min-width: 30rem; }
  984. @media (max-width: 442px) {
  985. .mozaique_personnes .equipe .personne .mozaique {
  986. max-width: 21rem;
  987. min-width: 21rem; } }
  988. .mozaique_personnes .equipe .personne .mozaique .photo {
  989. overflow: hidden;
  990. width: 15rem !important;
  991. height: 15rem !important; }
  992. .mozaique_personnes .equipe .personne .mozaique .photo img {
  993. object-fit: cover;
  994. width: 100%;
  995. height: 100%; }
  996. .mozaique_personnes .equipe .personne .mozaique .info {
  997. background-color: #fff;
  998. display: flex;
  999. flex-direction: column;
  1000. font-family: "Sarabun", sans-serif;
  1001. width: 50%;
  1002. height: 15rem;
  1003. min-width: 15rem; }
  1004. @media (max-width: 442px) {
  1005. .mozaique_personnes .equipe .personne .mozaique .info {
  1006. max-width: 11rem;
  1007. min-width: 11rem; } }
  1008. .mozaique_personnes .equipe .personne .mozaique .info h5 {
  1009. font-weight: 900;
  1010. font-size: 1.1rem;
  1011. margin: 0;
  1012. padding-top: 0.8rem;
  1013. padding-right: 1rem;
  1014. padding-left: 1.3rem; }
  1015. @media (max-width: 442px) {
  1016. .mozaique_personnes .equipe .personne .mozaique .info h5 {
  1017. font-size: 0.9rem;
  1018. padding-left: 0.8rem;
  1019. padding-right: 0.6rem; } }
  1020. .mozaique_personnes .equipe .personne .mozaique .info h6 {
  1021. font-weight: 300;
  1022. font-size: 0.9rem;
  1023. font-style: italic;
  1024. line-height: 1.3;
  1025. margin: 0;
  1026. padding-right: 1.2rem;
  1027. padding-left: 1.3rem; }
  1028. @media (max-width: 442px) {
  1029. .mozaique_personnes .equipe .personne .mozaique .info h6 {
  1030. padding-left: 0.8rem;
  1031. font-size: 0.75rem;
  1032. padding-right: 0.6rem; } }
  1033. .mozaique_personnes .equipe .personne .mozaique .info:hover {
  1034. background-color: #000;
  1035. color: #fff;
  1036. transition: 0.2s ease-in-out; }
  1037. .bouton {
  1038. border: solid !important;
  1039. background-color: transparent;
  1040. border-radius: 0px !important;
  1041. text-transform: uppercase;
  1042. align-self: flex-end;
  1043. margin: auto;
  1044. margin-bottom: 0.8rem !important;
  1045. font-size: 0.7rem; }
  1046. .modal {
  1047. position: fixed;
  1048. z-index: 1;
  1049. top: 0;
  1050. right: 0;
  1051. bottom: 0;
  1052. left: 0;
  1053. display: none; }
  1054. .modal.open {
  1055. display: block; }
  1056. .modal .container {
  1057. position: absolute;
  1058. background: white !important;
  1059. top: 50%;
  1060. left: 50%;
  1061. transform: translateX(-50%) translateY(-50%);
  1062. width: 50%;
  1063. height: content;
  1064. min-height: 50px;
  1065. border: solid;
  1066. color: black; }
  1067. .modal .container .message {
  1068. padding: 5% 10% 5% 5%; }
  1069. .modal .container a.close {
  1070. position: absolute;
  1071. right: 5%;
  1072. top: 5%;
  1073. color: black;
  1074. font-size: 30px; }
  1075. .modal .container a.close:hover {
  1076. color: black; }
  1077. @media (max-width: 442px) {
  1078. .modal .container {
  1079. transform: translateX(-50%) translateY(-50%);
  1080. width: 85%;
  1081. height: 80%;
  1082. overflow-y: scroll; }
  1083. .modal .container a.close {
  1084. font-size: 0.8rem;
  1085. position: absolute;
  1086. right: 2%;
  1087. top: 0.8%; }
  1088. .modal .container p {
  1089. font-size: 0.8rem;
  1090. margin-top: 0; }
  1091. .modal .container .message {
  1092. padding: 5% 5% 5% 5%; } }
  1093. @media (max-width: 1024px) {
  1094. .modal .container {
  1095. transform: translateX(-50%) translateY(-50%);
  1096. width: 75%;
  1097. height: 65%;
  1098. overflow-y: scroll; }
  1099. .modal .container a.close {
  1100. font-size: 0.8rem;
  1101. position: absolute;
  1102. right: 2%;
  1103. top: 0.8%; }
  1104. .modal .container p {
  1105. font-size: 0.8rem;
  1106. margin-top: 0; }
  1107. .modal .container .message {
  1108. padding: 5% 5% 5% 5%; } }
  1109. #new-footer {
  1110. display: flex;
  1111. flex-direction: column;
  1112. background-color: white;
  1113. padding-bottom: 3rem; }
  1114. #new-footer .tothetop {
  1115. position: relative;
  1116. height: 1rem;
  1117. bottom: 3rem;
  1118. text-align: center;
  1119. left: 0;
  1120. right: 0; }
  1121. #new-footer .tothetop span {
  1122. font-size: 1.7rem;
  1123. line-height: 2,5rem;
  1124. background: #fff;
  1125. width: 4rem;
  1126. height: 6rem;
  1127. border-radius: 3px;
  1128. display: inline-block;
  1129. text-align: top; }
  1130. #new-footer .footer {
  1131. display: flex;
  1132. flex-direction: row;
  1133. flex-wrap: nowrap; }
  1134. #new-footer .footer .footer-logos {
  1135. display: flex;
  1136. flex-direction: row;
  1137. width: 65%;
  1138. align-items: center;
  1139. justify-content: center; }
  1140. #new-footer .footer .footer-logos img {
  1141. max-height: 4rem;
  1142. padding-right: 2rem; }
  1143. #new-footer .footer .contact {
  1144. display: flex;
  1145. flex-direction: column;
  1146. min-width: 288px;
  1147. width: 35%;
  1148. padding-left: 1.5rem;
  1149. margin-right: 2rem;
  1150. margin-top: 1.5rem;
  1151. align-items: flex-start; }
  1152. #new-footer .footer .contact img {
  1153. margin-bottom: 1rem;
  1154. max-height: 2rem; }
  1155. #new-footer .footer .contact svg {
  1156. margin-bottom: 1rem; }
  1157. #new-footer .footer .contact h6 {
  1158. margin: 0 !important;
  1159. font-weight: 600; }
  1160. #new-footer .footer .contact p {
  1161. margin: 0; }
  1162. @media (max-width: 442px) {
  1163. #new-footer .footer {
  1164. width: 100%;
  1165. flex-direction: column-reverse;
  1166. align-items: center;
  1167. margin: auto; }
  1168. #new-footer .footer .contact {
  1169. padding-top: 1rem;
  1170. width: 80%; }
  1171. #new-footer .footer .footer-logos {
  1172. margin-top: 1.5rem;
  1173. margin-left: 0.5rem;
  1174. flex-direction: column;
  1175. justify-content: space-between; }
  1176. #new-footer .footer .footer-logos img {
  1177. padding: 0.5rem; } }
  1178. @media (max-width: 1024px) {
  1179. #new-footer .footer .contact img {
  1180. max-height: 1.5rem; }
  1181. #new-footer .footer .contact h6 {
  1182. font-size: 0.8rem; }
  1183. #new-footer .footer .contact p {
  1184. font-size: 0.8rem; }
  1185. #new-footer .footer .contact svg {
  1186. margin-bottom: 0.6rem; }
  1187. #new-footer .footer .footer-logos img {
  1188. padding: 0.5rem; } }
  1189. button:focus {
  1190. border: solid !important;
  1191. background-color: transparent;
  1192. border-radius: 0px !important;
  1193. text-transform: uppercase;
  1194. align-self: flex-end;
  1195. margin: auto;
  1196. outline: -webkit-focus-ring-color auto 0px;
  1197. outline-color: -webkit-focus-ring-color;
  1198. outline-style: auto;
  1199. outline-width: 0px; }
  1200. .event .callout {
  1201. filter: opacity(1); }
  1202. .event .callout h2 {
  1203. font-family: "Sarabun", sans-serif;
  1204. font-weight: 100 !important;
  1205. font-size: 1.8rem;
  1206. line-height: 1.2;
  1207. text-transform: uppercase;
  1208. margin: 0; }
  1209. .event .callout .titre_bsn {
  1210. position: relative; }
  1211. .event .callout .titre_bsn #explog {
  1212. position: absolute;
  1213. right: 105%;
  1214. top: 3%;
  1215. max-width: 20%; }
  1216. @media (max-width: 500px) {
  1217. .event .callout .titre_bsn #explog {
  1218. right: 110%;
  1219. top: 1%;
  1220. max-width: 50%; } }
  1221. @media (max-width: 442px) {
  1222. .event .callout .titre_bsn #explog {
  1223. right: 105%;
  1224. top: 3%;
  1225. max-width: 30%; } }
  1226. .event .callout .titre_bsn .text-titre-event h1 {
  1227. text-transform: uppercase;
  1228. line-height: 1 !important;
  1229. margin-bottom: 0.5rem !important; }
  1230. .event .callout .titre_bsn .text-titre-event .sous-titre {
  1231. margin-top: 1rem; }
  1232. h1 {
  1233. font-family: "Sarabun", sans-serif;
  1234. text-transform: uppercase;
  1235. line-height: 1 !important;
  1236. font-size: 2rem !important;
  1237. margin-bottom: 0.5rem !important; }
  1238. .presentation-event {
  1239. display: flex;
  1240. flex-direction: column;
  1241. margin: auto;
  1242. width: 60%;
  1243. height: auto;
  1244. background-color: white;
  1245. color: #000;
  1246. padding-top: 1.5rem;
  1247. padding-left: 2em;
  1248. padding-right: 2em;
  1249. margin-top: 6rem;
  1250. margin-bottom: 6rem;
  1251. text-align: left; }
  1252. .presentation-event p {
  1253. font-size: 1.2rem;
  1254. line-height: 1.5;
  1255. margin: 1rem; }
  1256. .presentation-event ul {
  1257. font-size: 1.2rem;
  1258. line-height: 1.5;
  1259. margin: 1rem; }
  1260. .presentation-event .boutons-event {
  1261. margin-top: 2rem;
  1262. margin-bottom: 2rem;
  1263. display: flex;
  1264. flex-direction: column; }
  1265. .presentation-event .boutons-event .bouton {
  1266. border: solid !important;
  1267. background-color: transparent;
  1268. border-radius: 0px !important;
  1269. text-transform: uppercase;
  1270. align-self: flex-end;
  1271. margin: auto;
  1272. margin-bottom: 0.8rem !important;
  1273. font-size: 0.7rem;
  1274. padding: 2px 10px; }
  1275. @media (max-width: 600px) {
  1276. .presentation-event {
  1277. margin-top: 1rem !important;
  1278. width: 80%;
  1279. padding-left: 1rem;
  1280. padding-right: 1rem;
  1281. padding-top: 1rem; }
  1282. .presentation-event p {
  1283. font-size: 1.1rem; }
  1284. .presentation-event ul {
  1285. font-size: 1.1rem; } }
  1286. .intervenant {
  1287. background-color: #d9d9d9;
  1288. color: #000;
  1289. text-transform: uppercase;
  1290. padding-bottom: 2rem;
  1291. padding-top: 2rem; }
  1292. .equipe-event {
  1293. display: flex !important;
  1294. flex-direction: row;
  1295. flex-wrap: wrap;
  1296. width: 100%;
  1297. padding-left: 10%;
  1298. padding-right: 10%;
  1299. margin: auto;
  1300. justify-items: center; }
  1301. @media (max-width: 442px) {
  1302. .equipe-event {
  1303. width: 100%;
  1304. padding-left: 3%;
  1305. padding-right: 2%; } }
  1306. .equipe-event h3 {
  1307. margin-bottom: 3rem;
  1308. min-width: 100%;
  1309. font-family: "Sarabun", sans-serif;
  1310. text-transform: uppercase;
  1311. font-weight: 200;
  1312. font-size: 1rem;
  1313. line-height: 20px;
  1314. text-align: left; }
  1315. @media (max-width: 442px) {
  1316. .equipe-event h3 {
  1317. font-size: 0.9rem;
  1318. padding-right: 0.5rem; } }
  1319. .equipe-event .personne {
  1320. display: flex;
  1321. flex-direction: row;
  1322. flex-wrap: wrap;
  1323. padding-right: 0.5rem;
  1324. padding-bottom: 0.5rem; }
  1325. .equipe-event .personne .mozaique {
  1326. display: flex;
  1327. flex-direction: row;
  1328. max-width: 30rem;
  1329. min-width: 30rem; }
  1330. @media (max-width: 442px) {
  1331. .equipe-event .personne .mozaique {
  1332. max-width: 21rem;
  1333. min-width: 21rem;
  1334. padding-left: 1rem; } }
  1335. .equipe-event .personne .mozaique .photo {
  1336. overflow: hidden;
  1337. width: 10rem !important;
  1338. height: 10rem !important; }
  1339. .equipe-event .personne .mozaique .photo img {
  1340. object-fit: cover;
  1341. width: 100%;
  1342. height: 100%; }
  1343. .equipe-event .personne .mozaique .info {
  1344. display: flex;
  1345. flex-direction: column;
  1346. font-family: "Sarabun", sans-serif;
  1347. width: 50%;
  1348. height: 15rem;
  1349. min-width: 15rem;
  1350. padding-left: 1.3rem; }
  1351. @media (max-width: 442px) {
  1352. .equipe-event .personne .mozaique .info {
  1353. max-width: 11rem;
  1354. min-width: 11rem; } }
  1355. .equipe-event .personne .mozaique .info .nom {
  1356. display: flex;
  1357. direction: row; }
  1358. .equipe-event .personne .mozaique .info .nom h5 {
  1359. padding-right: 0.4em !important; }
  1360. .equipe-event .personne .mozaique .info h5 {
  1361. font-weight: 900;
  1362. font-size: 1.1rem;
  1363. margin: 0;
  1364. padding-top: 0.8rem;
  1365. padding-right: 1rem; }
  1366. @media (max-width: 442px) {
  1367. .equipe-event .personne .mozaique .info h5 {
  1368. font-size: 0.9rem;
  1369. padding-right: 0.6rem; } }
  1370. .equipe-event .personne .mozaique .info h6 {
  1371. font-weight: 300;
  1372. font-size: 0.9rem;
  1373. font-style: italic;
  1374. line-height: 1.3;
  1375. margin: 0;
  1376. padding-right: 1.2rem; }
  1377. @media (max-width: 442px) {
  1378. .equipe-event .personne .mozaique .info h6 {
  1379. font-size: 0.75rem;
  1380. padding-right: 0.6rem; } }
  1381. .partenaires {
  1382. background-color: #fff;
  1383. height: auto;
  1384. padding-top: 2rem;
  1385. padding-bottom: 3rem;
  1386. margin-top: 0 !important; }
  1387. .partenaires h1 {
  1388. margin-top: 0 !important; }
  1389. .grille {
  1390. background-color: #fff;
  1391. padding-bottom: 6rem; }
  1392. .grille .tous-logos {
  1393. display: flex;
  1394. margin: auto;
  1395. max-width: 80%;
  1396. justify-content: center; }
  1397. .grille p {
  1398. justify-content: center;
  1399. display: flex;
  1400. margin: auto;
  1401. flex-wrap: wrap; }
  1402. .grille img {
  1403. height: 9rem;
  1404. display: flex;
  1405. padding: 2rem; }
  1406. .event #new-footer {
  1407. border-top: solid 5px #d9d9d9; }
  1408. .event #new-footer span {
  1409. height: 2rem; }
  1410. .modular.header-image #header {
  1411. background-color: rgba(255, 255, 255, 0);
  1412. box-shadow: none; }
  1413. .modular.header-image #header #logo h3 {
  1414. color: #FFFFFF; }
  1415. .modular.header-image #header #navbar a {
  1416. color: #FFFFFF; }
  1417. .modular .showcase {
  1418. padding-top: 4rem;
  1419. padding-bottom: 4rem;
  1420. background-color: #666;
  1421. background-size: cover;
  1422. background-position: center;
  1423. text-align: center;
  1424. color: #FFFFFF; }
  1425. .modular .showcase h1 {
  1426. font-size: 4rem;
  1427. margin-top: 0; }
  1428. @media only all and (min-width: 48em) and (max-width: 59.938em) {
  1429. .modular .showcase h1 {
  1430. font-size: 3rem; } }
  1431. @media only all and (max-width: 47.938em) {
  1432. .modular .showcase h1 {
  1433. font-size: 2.5rem;
  1434. line-height: 1.2;
  1435. margin-bottom: 2.5rem; } }
  1436. .modular .showcase .button {
  1437. color: #FFFFFF;
  1438. padding: 0.7rem 2rem;
  1439. margin-top: 2rem;
  1440. background: rgba(255, 255, 255, 0);
  1441. border: 1px solid #FFFFFF;
  1442. border-radius: 3px;
  1443. box-shadow: none;
  1444. font-size: 1.3rem; }
  1445. .modular .showcase .button:hover {
  1446. background: rgba(255, 255, 255, 0.2); }
  1447. .modular .titre_nsb h1 {
  1448. text-transform: uppercase;
  1449. text-align: right;
  1450. padding-right: 50%; }
  1451. .modular .features {
  1452. width: 75%;
  1453. margin: auto; }
  1454. .modular .features:after {
  1455. content: "";
  1456. display: table;
  1457. clear: both; }
  1458. .modular .features h2 {
  1459. margin: 0;
  1460. line-height: 100%; }
  1461. .modular .features p {
  1462. margin: 1rem 0;
  1463. font-size: 1.2rem; }
  1464. @media only all and (max-width: 47.938em) {
  1465. .modular .features p {
  1466. font-size: 1rem; } }
  1467. .modular .features .feature-items {
  1468. margin-top: 2rem; }
  1469. @supports not (flex-wrap: wrap) {
  1470. .modular .features .feature-items {
  1471. overflow: hidden; } }
  1472. .modular .features .feature {
  1473. display: block;
  1474. float: left;
  1475. width: 20%;
  1476. vertical-align: top;
  1477. margin-top: 2rem;
  1478. margin-right: 3rem;
  1479. margin-bottom: 1rem; }
  1480. @media only all and (min-width: 30.063em) and (max-width: 47.938em) {
  1481. .modular .features .feature {
  1482. margin-top: 1rem;
  1483. width: 50%; } }
  1484. @media only all and (max-width: 30em) {
  1485. .modular .features .feature {
  1486. margin-top: 1rem;
  1487. width: 100%; } }
  1488. .modular .features .feature i.fa {
  1489. font-size: 2rem;
  1490. color: #000; }
  1491. .modular .features .feature h4 {
  1492. margin: 0;
  1493. font-size: 1.1rem;
  1494. text-align: left; }
  1495. .modular .features .feature p {
  1496. display: inline-block;
  1497. font-size: 0.8rem;
  1498. margin: 0.2rem 0 1rem; }
  1499. .modular .features .feature img {
  1500. width: 45%;
  1501. display: block; }
  1502. .modular .features.big {
  1503. text-align: center; }
  1504. .modular .features.big .feature {
  1505. width: 50%; }
  1506. @media only all and (max-width: 30em) {
  1507. .modular .features.big .feature {
  1508. margin-top: 1rem;
  1509. width: 100%; } }
  1510. .modular .features.big i.fa {
  1511. font-size: 3rem;
  1512. float: left; }
  1513. .modular .features.big .feature-content {
  1514. padding-right: 2rem; }
  1515. .modular .features.big .feature-content.icon-offset {
  1516. margin-left: 5rem; }
  1517. .modular .features.big .feature-content h4 {
  1518. font-size: 1.3rem;
  1519. text-align: left; }
  1520. .modular .features.big .feature-content p {
  1521. padding: 0;
  1522. text-align: left; }
  1523. .callout {
  1524. background: #000;
  1525. color: #fff;
  1526. padding: 4rem 0.938rem; }
  1527. @media only all and (max-width: 59.938em) {
  1528. .callout {
  1529. text-align: center; } }
  1530. .callout .align-left {
  1531. float: left;
  1532. margin-right: 2rem; }
  1533. @media only all and (max-width: 59.938em) {
  1534. .callout .align-left {
  1535. float: none;
  1536. margin-right: 0; } }
  1537. .callout .align-right {
  1538. float: right;
  1539. margin-left: 2rem; }
  1540. @media only all and (max-width: 59.938em) {
  1541. .callout .align-right {
  1542. float: none;
  1543. margin-left: 0; } }
  1544. .callout img {
  1545. border-radius: 3px; }
  1546. .modular .modular-row:last-child {
  1547. margin-bottom: 2rem; }