templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>{% block title %}{% endblock %}</title>
  6. <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
  7. <meta description="Des solutions logiciels et applications innovantes
  8. pour accompagner votre entreprise dans sa transformation numérique." />
  9. <link rel="icon" href="{{ asset('img/favicon.jpg')}}">
  10. <link href="/img/favicon.jpg" rel="icon">
  11. <link href="/assets/img/apple-touch-icon.png" rel="apple-touch-icon">
  12. {% block stylesheet %}
  13. <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,400,500,700" rel="stylesheet">
  14. <link rel="stylesheet" href="{{asset('assets/vendor/bootstrap/css/bootstrap.min.css')}}">
  15. <link rel="stylesheet" href="{{asset('assets/vendor/bootstrap-icons/bootstrap-icons.css')}}">
  16. <link rel="stylesheet" href="{{asset('assets/vendor/swiper/swiper-bundle.min.css')}}">
  17. <link rel="stylesheet" href="{{asset('assets/vendor/aos/aos.css')}}">
  18. {% if produit is defined %}
  19. <link rel="stylesheet" href="{{asset('assets/riseschool/css/style.css')}}">
  20. <link rel="stylesheet" href="{{asset('assets/riseschool/css/slick.css')}}">
  21. {% endif %}
  22. {% endblock %}
  23. <!-- Template Main CSS File -->
  24. <link rel="stylesheet" href="{{asset('assets/css/style.css')}}">
  25. <style>
  26. .menu-temp{
  27. color : rgba(61,61,62,.69);
  28. font-size: 13px;
  29. font-weight: bold;
  30. }
  31. .carousel-container {
  32. display: flex;
  33. align-items: center;
  34. position: absolute;
  35. bottom: 0;
  36. top: 0;
  37. left: 0;
  38. right: 0;
  39. }
  40. .carousel-container p{
  41. }
  42. #intro h2 {
  43. color: #fff;
  44. margin-bottom: 30px;
  45. font-size: 48px;
  46. font-weight: 700;
  47. }
  48. @media (max-width: 768px) {
  49. #intro h2 {
  50. font-size: 28px;
  51. }
  52. }
  53. #intro p {
  54. width: 80%;
  55. margin: 0 auto 30px auto;
  56. color: #fff;
  57. font-weight: bold;
  58. }
  59. @media (min-width: 1024px) {
  60. #intro p {
  61. width: 60%;
  62. }
  63. }
  64. #intro .carousel-item::before {
  65. content: '';
  66. background-color: rgba(0, 0, 0, 0.7);
  67. }
  68. .text-center{
  69. text-align : justify;
  70. }
  71. .menu-temp{
  72. color : rgba(61,61,61,.69);
  73. font-size: 13px;
  74. font-weight: bold;
  75. }
  76. #intro h2 {
  77. color: #fff;
  78. margin-bottom: 30px;
  79. font-size: 48px;
  80. font-weight: 700;
  81. }
  82. @media (max-width: 768px) {
  83. #intro h2 {
  84. font-size: 28px;
  85. }
  86. }
  87. #intro p {
  88. width: 80%;
  89. margin: 0 auto 30px auto;
  90. color: #fff;
  91. font-weight: bold;
  92. }
  93. @media (min-width: 1024px) {
  94. #intro p {
  95. width: 60%;
  96. }
  97. }
  98. #intro .carousel-item::before {
  99. content: '';
  100. background-color: rgba(0, 0, 0, 0.7);
  101. }
  102. .text-center{
  103. text-align : justify;
  104. }
  105. @-webkit-keyframes up-down {
  106. 0% {
  107. transform: translateY(10px);
  108. }
  109. 100% {
  110. transform: translateY(-10px);
  111. }
  112. }
  113. @keyframes up-down {
  114. 0% {
  115. transform: translateY(10px);
  116. }
  117. 100% {
  118. transform: translateY(-10px);
  119. }
  120. }
  121. /*--------------------------------------------------------------
  122. # Hero Section
  123. --------------------------------------------------------------*/
  124. #hero {
  125. width: 100%;
  126. position: relative;
  127. overflow: hidden;
  128. padding: 140px 0 100px 0;
  129. }
  130. #hero::before {
  131. content: "";
  132. position: absolute;
  133. right: -100%;
  134. top: 20%;
  135. width: 250%;
  136. height: 200%;
  137. z-index: -1;
  138. }
  139. #hero::before{
  140. background: linear-gradient(-45deg, #3b87bd, #2d71a2);
  141. transform: skewY(135deg);
  142. }
  143. @media screen and (max-width: 600px) {
  144. #hero::before{
  145. background: linear-gradient(-45deg, #3b87bd, white);
  146. transform: skewY(135deg);
  147. }
  148. }
  149. }
  150. #hero h1 {
  151. margin: 0 0 10px 0;
  152. font-size: 48px;
  153. font-weight: 500;
  154. line-height: 56px;
  155. color: #5777ba;
  156. font-family: "Poppins", sans-serif;
  157. }
  158. #hero h2 {
  159. color: #515f7d;
  160. margin-bottom: 50px;
  161. font-size: 20px;
  162. }
  163. #hero .download-btn {
  164. font-family: "Raleway", sans-serif;
  165. font-weight: 500;
  166. font-size: 15px;
  167. display: inline-block;
  168. padding: 8px 24px 10px 46px;
  169. border-radius: 3px;
  170. transition: 0.5s;
  171. color: #fff;
  172. background: #47536e;
  173. position: relative;
  174. }
  175. #hero .download-btn:hover {
  176. background: #5777ba;
  177. }
  178. #hero .download-btn i {
  179. font-size: 20px;
  180. position: absolute;
  181. left: 18px;
  182. top: 8.5px;
  183. }
  184. #hero .download-btn + .download-btn {
  185. margin-left: 20px;
  186. }
  187. @media (max-width: 991px) {
  188. #hero {
  189. text-align: center;
  190. }
  191. #hero .download-btn + .download-btn {
  192. margin: 0 10px;
  193. }
  194. #hero .hero-img {
  195. text-align: center;
  196. }
  197. #hero .hero-img img {
  198. width: 60%;
  199. }
  200. }
  201. @media (max-width: 768px) {
  202. #hero h1 {
  203. font-size: 28px;
  204. line-height: 36px;
  205. }
  206. #hero h2 {
  207. font-size: 18px;
  208. line-height: 24px;
  209. margin-bottom: 30px;
  210. }
  211. #hero .hero-img img {
  212. width: 70%;
  213. }
  214. }
  215. @media (max-width: 575px) {
  216. #hero .hero-img img {
  217. width: 80%;
  218. }
  219. }
  220. .animated {
  221. animation: up-down 2s ease-in-out infinite alternate-reverse both;
  222. }
  223. .animated {
  224. -webkit-animation: none;
  225. animation: none;
  226. }
  227. --------------------------------------------------------------*/
  228. #hero3 .content {
  229. padding: 30px 0;
  230. }
  231. #hero3 .content .icon-box {
  232. margin-top: 25px;
  233. }
  234. #hero3 .content .icon-box h4 {
  235. font-size: 20px;
  236. font-weight: 700;
  237. margin: 5px 0 10px 60px;
  238. }
  239. #hero3 .content .icon-box i {
  240. font-size: 48px;
  241. float: left;
  242. color: #dee2e6;
  243. }
  244. #hero3 .content .icon-box p {
  245. font-size: 15px;
  246. color: white;
  247. margin-left: 60px;
  248. }
  249. @media (max-width: 991px) {
  250. #hero3 .image {
  251. text-align: center;
  252. }
  253. #hero3 .image img {
  254. max-width: 80%;
  255. }
  256. }
  257. @media (max-width: 667px) {
  258. #hero3 .image img {
  259. max-width: 100%;
  260. }
  261. }
  262. #hero3 h4{
  263. color:white;
  264. }
  265. .btn.btn-rounded {
  266. border-radius: 50px; }
  267. .btn-warning{
  268. background : #ff9d00;
  269. }
  270. .btn-gradient-warning {
  271. background: -webkit-gradient(linear, left top, right top, from(#f6e384), to(#ffd500));
  272. background: linear-gradient(to right, #f6e384, #f8b852);
  273. border: 0;
  274. -webkit-transition: opacity 0.3s ease;
  275. transition: opacity 0.3s ease; }
  276. .btn {
  277. font-size: 0.875rem;
  278. line-height: 1;
  279. font-family: "ubuntu-bold", sans-serif;
  280. /* Buttons with only icons */
  281. /* Buttons with icon and text */ }
  282. .btn {
  283. font-size: 0.875rem;
  284. line-height: 1;
  285. font-family: "ubuntu-bold", sans-serif;
  286. padding : 2%;
  287. /* Buttons with only icons */
  288. /* Buttons with icon and text */ }
  289. .btn i {
  290. font-size: 1rem; }
  291. .btn.btn-rounded {
  292. border-radius: 50px; }
  293. .btn.btn-fw {
  294. min-width: 150px; }
  295. .btn.btn-sm, .btn-group-sm > .btn {
  296. font-size: 0.875rem; }
  297. .btn.btn-lg, .btn-group-lg > .btn {
  298. font-size: 0.875rem; }
  299. .btn.btn-xs {
  300. padding: 0.5rem 0.75rem;
  301. font-size: 0.625rem; }
  302. .btn.btn-icon {
  303. width: 42px;
  304. height: 42px;
  305. padding: 0; }
  306. .btn.btn-icon-text .btn-icon-prepend {
  307. margin-right: .5rem; }
  308. .btn.btn-icon-text .btn-icon-append {
  309. margin-left: .5rem; }
  310. .btn.btn-social-icon {
  311. width: 50px;
  312. height: 50px;
  313. padding: 0; }
  314. .btn-group .btn + .btn {
  315. border-left: 0; }
  316. /*social buttons*/
  317. .btn-twitter {
  318. background: #2caae1;
  319. color: #ffffff; }
  320. .btn-twitter:hover, .btn-twitter:focus {
  321. background: #1b8dbf;
  322. color: #ffffff; }
  323. .btn-twitter.btn-social-icon-text {
  324. padding: 0 1.5rem 0 0;
  325. background: #59bce7; }
  326. .btn-twitter.btn-social-icon-text i {
  327. background: #2caae1;
  328. padding: .75rem;
  329. display: inline-block;
  330. margin-right: 1.5rem; }
  331. .btn-outline-twitter {
  332. border: 1px solid #2caae1;
  333. color: #2caae1; }
  334. .btn-outline-twitter:hover {
  335. background: #2caae1;
  336. color: #ffffff; }
  337. .btn-facebook {
  338. background: #3b579d;
  339. color: #ffffff; }
  340. .btn-facebook:hover, .btn-facebook:focus {
  341. background: #2d4278;
  342. color: #ffffff; }
  343. .btn-facebook.btn-social-icon-text {
  344. padding: 0 1.5rem 0 0;
  345. background: #4e6ebd; }
  346. .btn-facebook.btn-social-icon-text i {
  347. background: #3b579d;
  348. padding: .75rem;
  349. display: inline-block;
  350. margin-right: 1.5rem; }
  351. .btn-outline-facebook {
  352. border: 1px solid #3b579d;
  353. color: #3b579d; }
  354. .btn-outline-facebook:hover {
  355. background: #3b579d;
  356. color: #ffffff; }
  357. .btn-google {
  358. background: #dc4a38;
  359. color: #ffffff; }
  360. .btn-google:hover, .btn-google:focus {
  361. background: #bf3322;
  362. color: #ffffff; }
  363. .btn-google.btn-social-icon-text {
  364. padding: 0 1.5rem 0 0;
  365. background: #e47163; }
  366. .btn-google.btn-social-icon-text i {
  367. background: #dc4a38;
  368. padding: .75rem;
  369. display: inline-block;
  370. margin-right: 1.5rem; }
  371. .btn-outline-google {
  372. border: 1px solid #dc4a38;
  373. color: #dc4a38; }
  374. .btn-outline-google:hover {
  375. background: #dc4a38;
  376. color: #ffffff; }
  377. .btn-linkedin {
  378. background: #0177b5;
  379. color: #ffffff; }
  380. .btn-linkedin:hover, .btn-linkedin:focus {
  381. background: #015682;
  382. color: #ffffff; }
  383. .btn-linkedin.btn-social-icon-text {
  384. padding: 0 1.5rem 0 0;
  385. background: #0198e8; }
  386. .btn-linkedin.btn-social-icon-text i {
  387. background: #0177b5;
  388. padding: .75rem;
  389. display: inline-block;
  390. margin-right: 1.5rem; }
  391. .btn-outline-linkedin {
  392. border: 1px solid #0177b5;
  393. color: #0177b5; }
  394. .btn-outline-linkedin:hover {
  395. background: #0177b5;
  396. color: #ffffff; }
  397. .btn-pinterest {
  398. background: #cc2127;
  399. color: #ffffff; }
  400. .btn-pinterest:hover, .btn-pinterest:focus {
  401. background: #a01a1f;
  402. color: #ffffff; }
  403. .btn-pinterest.btn-social-icon-text {
  404. padding: 0 1.5rem 0 0;
  405. background: #e04046; }
  406. .btn-pinterest.btn-social-icon-text i {
  407. background: #cc2127;
  408. padding: .75rem;
  409. display: inline-block;
  410. margin-right: 1.5rem; }
  411. .btn-outline-pinterest {
  412. border: 1px solid #cc2127;
  413. color: #cc2127; }
  414. .btn-outline-pinterest:hover {
  415. background: #cc2127;
  416. color: #ffffff; }
  417. .btn-youtube {
  418. background: #e52d27;
  419. color: #ffffff; }
  420. .btn-youtube:hover, .btn-youtube:focus {
  421. background: #c21d17;
  422. color: #ffffff; }
  423. .btn-youtube.btn-social-icon-text {
  424. padding: 0 1.5rem 0 0;
  425. background: #ea5955; }
  426. .btn-youtube.btn-social-icon-text i {
  427. background: #e52d27;
  428. padding: .75rem;
  429. display: inline-block;
  430. margin-right: 1.5rem; }
  431. .btn-outline-youtube {
  432. border: 1px solid #e52d27;
  433. color: #e52d27; }
  434. .btn-outline-youtube:hover {
  435. background: #e52d27;
  436. color: #ffffff; }
  437. .btn-github {
  438. background: #333333;
  439. color: #ffffff; }
  440. .btn-github:hover, .btn-github:focus {
  441. background: #1a1a1a;
  442. color: #ffffff; }
  443. .btn-github.btn-social-icon-text {
  444. padding: 0 1.5rem 0 0;
  445. background: #4d4d4d; }
  446. .btn-github.btn-social-icon-text i {
  447. background: #333333;
  448. padding: .75rem;
  449. display: inline-block;
  450. margin-right: 1.5rem; }
  451. .btn-outline-github {
  452. border: 1px solid #333333;
  453. color: #333333; }
  454. .btn-outline-github:hover {
  455. background: #333333;
  456. color: #ffffff; }
  457. .btn-behance {
  458. background: #1769ff;
  459. color: #ffffff; }
  460. .btn-behance:hover, .btn-behance:focus {
  461. background: #0050e3;
  462. color: #ffffff; }
  463. .btn-behance.btn-social-icon-text {
  464. padding: 0 1.5rem 0 0;
  465. background: #4a8aff; }
  466. .btn-behance.btn-social-icon-text i {
  467. background: #1769ff;
  468. padding: .75rem;
  469. display: inline-block;
  470. margin-right: 1.5rem; }
  471. .btn-outline-behance {
  472. border: 1px solid #1769ff;
  473. color: #1769ff; }
  474. .btn-outline-behance:hover {
  475. background: #1769ff;
  476. color: #ffffff; }
  477. .btn-dribbble {
  478. background: #ea4c89;
  479. color: #ffffff; }
  480. .btn-dribbble:hover, .btn-dribbble:focus {
  481. background: #e51e6b;
  482. color: #ffffff; }
  483. .btn-dribbble.btn-social-icon-text {
  484. padding: 0 1.5rem 0 0;
  485. background: #ef7aa7; }
  486. .btn-dribbble.btn-social-icon-text i {
  487. background: #ea4c89;
  488. padding: .75rem;
  489. display: inline-block;
  490. margin-right: 1.5rem; }
  491. .btn-outline-dribbble {
  492. border: 1px solid #ea4c89;
  493. color: #ea4c89; }
  494. .btn-outline-dribbble:hover {
  495. background: #ea4c89;
  496. color: #ffffff; }
  497. .btn-reddit {
  498. background: #ff4500;
  499. color: #ffffff; }
  500. .btn-reddit:hover, .btn-reddit:focus {
  501. background: #cc3700;
  502. color: #ffffff; }
  503. .btn-reddit.btn-social-icon-text {
  504. padding: 0 1.5rem 0 0;
  505. background: #ff6a33; }
  506. .btn-reddit.btn-social-icon-text i {
  507. background: #ff4500;
  508. padding: .75rem;
  509. display: inline-block;
  510. margin-right: 1.5rem; }
  511. .btn-outline-reddit {
  512. border: 1px solid #ff4500;
  513. color: #ff4500; }
  514. .btn-outline-reddit:hover {
  515. background: #ff4500;
  516. color: #ffffff; }
  517. /* inverse buttons */
  518. .btn-inverse-primary {
  519. background-color: rgba(182, 109, 255, 0.2);
  520. background-image: none;
  521. border-color: rgba(182, 109, 255, 0); }
  522. .btn-inverse-primary:not(.btn-inverse-light) {
  523. color: #b66dff; }
  524. .btn-inverse-primary:hover {
  525. color: #ffffff;
  526. background-color: #b66dff;
  527. border-color: #b66dff; }
  528. .btn-inverse-primary.focus, .btn-inverse-primary:focus {
  529. -webkit-box-shadow: 0 0 0 3px rgba(182, 109, 255, 0.5);
  530. box-shadow: 0 0 0 3px rgba(182, 109, 255, 0.5); }
  531. .btn-inverse-primary.disabled, .btn-inverse-primary:disabled {
  532. color: #b66dff;
  533. background-color: transparent; }
  534. .btn-inverse-primary.active, .btn-inverse-primary:active,
  535. .show > .btn-inverse-primary.dropdown-toggle {
  536. color: #ffffff;
  537. background-color: #b66dff;
  538. border-color: #b66dff; }
  539. .btn-primary:not(.btn-light) {
  540. color: #ffffff; }
  541. .btn-primary:not(.btn-light):hover, .btn-primary:not(.btn-light):focus, .btn-primary:not(.btn-light):active {
  542. color: #ffffff; }
  543. .btn-primary:not(.btn-light):focus, .btn-primary:not(.btn-light):active {
  544. background: #b66dff;
  545. border-color: #b66dff; }
  546. .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  547. background: -webkit-gradient(linear, left top, right top, from(#da8cff), to(#9a55ff));
  548. background: linear-gradient(to right, #da8cff, #9a55ff);
  549. color: #000; }
  550. .btn-inverse-secondary {
  551. background-color: rgba(195, 189, 189, 0.2);
  552. background-image: none;
  553. border-color: rgba(195, 189, 189, 0); }
  554. .btn-inverse-secondary:not(.btn-inverse-light) {
  555. color: #c3bdbd; }
  556. .btn-inverse-secondary:hover {
  557. color: #ffffff;
  558. background-color: #c3bdbd;
  559. border-color: #c3bdbd; }
  560. .btn-inverse-secondary.focus, .btn-inverse-secondary:focus {
  561. -webkit-box-shadow: 0 0 0 3px rgba(195, 189, 189, 0.5);
  562. box-shadow: 0 0 0 3px rgba(195, 189, 189, 0.5); }
  563. .btn-inverse-secondary.disabled, .btn-inverse-secondary:disabled {
  564. color: #c3bdbd;
  565. background-color: transparent; }
  566. .btn-inverse-secondary.active, .btn-inverse-secondary:active,
  567. .show > .btn-inverse-secondary.dropdown-toggle {
  568. color: #ffffff;
  569. background-color: #c3bdbd;
  570. border-color: #c3bdbd; }
  571. .btn-secondary:not(.btn-light) {
  572. color: #ffffff; }
  573. .btn-secondary:not(.btn-light):hover, .btn-secondary:not(.btn-light):focus, .btn-secondary:not(.btn-light):active {
  574. color: #ffffff; }
  575. .btn-secondary:not(.btn-light):focus, .btn-secondary:not(.btn-light):active {
  576. background: #c3bdbd;
  577. border-color: #c3bdbd; }
  578. .btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active {
  579. background: -webkit-gradient(linear, left top, right top, from(#e7ebf0), to(#868e96));
  580. background: linear-gradient(to right, #e7ebf0, #868e96);
  581. color: #000; }
  582. .btn-inverse-success {
  583. background-color: rgba(27, 207, 180, 0.2);
  584. background-image: none;
  585. border-color: rgba(27, 207, 180, 0); }
  586. .btn-inverse-success:not(.btn-inverse-light) {
  587. color: #1bcfb4; }
  588. .btn-inverse-success:hover {
  589. color: #ffffff;
  590. background-color: #1bcfb4;
  591. border-color: #1bcfb4; }
  592. .btn-inverse-success.focus, .btn-inverse-success:focus {
  593. -webkit-box-shadow: 0 0 0 3px rgba(27, 207, 180, 0.5);
  594. box-shadow: 0 0 0 3px rgba(27, 207, 180, 0.5); }
  595. .btn-inverse-success.disabled, .btn-inverse-success:disabled {
  596. color: #1bcfb4;
  597. background-color: transparent; }
  598. .btn-inverse-success.active, .btn-inverse-success:active,
  599. .show > .btn-inverse-success.dropdown-toggle {
  600. color: #ffffff;
  601. background-color: #1bcfb4;
  602. border-color: #1bcfb4; }
  603. .btn-success:not(.btn-light) {
  604. color: #ffffff; }
  605. .btn-success:not(.btn-light):hover, .btn-success:not(.btn-light):focus, .btn-success:not(.btn-light):active {
  606. color: #ffffff; }
  607. .btn-success:not(.btn-light):focus, .btn-success:not(.btn-light):active {
  608. background: #1bcfb4;
  609. border-color: #1bcfb4; }
  610. .btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active {
  611. background: -webkit-gradient(linear, left top, right top, from(#84d9d2), to(#07cdae));
  612. background: linear-gradient(to right, #84d9d2, #07cdae);
  613. color: #000; }
  614. .btn-inverse-info {
  615. background-color: rgba(25, 138, 227, 0.2);
  616. background-image: none;
  617. border-color: rgba(25, 138, 227, 0); }
  618. .btn-inverse-info:not(.btn-inverse-light) {
  619. color: #198ae3; }
  620. .btn-inverse-info:hover {
  621. color: #ffffff;
  622. background-color: #198ae3;
  623. border-color: #198ae3; }
  624. .btn-inverse-info.focus, .btn-inverse-info:focus {
  625. -webkit-box-shadow: 0 0 0 3px rgba(25, 138, 227, 0.5);
  626. box-shadow: 0 0 0 3px rgba(25, 138, 227, 0.5); }
  627. .btn-inverse-info.disabled, .btn-inverse-info:disabled {
  628. color: #198ae3;
  629. background-color: transparent; }
  630. .btn-inverse-info.active, .btn-inverse-info:active,
  631. .show > .btn-inverse-info.dropdown-toggle {
  632. color: #ffffff;
  633. background-color: #198ae3;
  634. border-color: #198ae3; }
  635. .btn-info:not(.btn-light) {
  636. color: #ffffff; }
  637. .btn-info:not(.btn-light):hover, .btn-info:not(.btn-light):focus, .btn-info:not(.btn-light):active {
  638. color: #ffffff; }
  639. .btn-info:not(.btn-light):focus, .btn-info:not(.btn-light):active {
  640. background: #198ae3;
  641. border-color: #198ae3; }
  642. .btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active {
  643. background: -webkit-gradient(linear, left top, right top, from(#90caf9), color-stop(99%, #047edf));
  644. background: linear-gradient(to right, #90caf9, #047edf 99%);
  645. color: #000; }
  646. .btn-inverse-warning {
  647. background-color: rgba(254, 215, 19, 0.2);
  648. background-image: none;
  649. border-color: rgba(254, 215, 19, 0); }
  650. .btn-inverse-warning:not(.btn-inverse-light) {
  651. color: #fed713; }
  652. .btn-inverse-warning:hover {
  653. color: #ffffff;
  654. background-color: #fed713;
  655. border-color: #fed713; }
  656. .btn-inverse-warning.focus, .btn-inverse-warning:focus {
  657. -webkit-box-shadow: 0 0 0 3px rgba(254, 215, 19, 0.5);
  658. box-shadow: 0 0 0 3px rgba(254, 215, 19, 0.5); }
  659. .btn-inverse-warning.disabled, .btn-inverse-warning:disabled {
  660. color: #fed713;
  661. background-color: transparent; }
  662. .btn-inverse-warning.active, .btn-inverse-warning:active,
  663. .show > .btn-inverse-warning.dropdown-toggle {
  664. color: #ffffff;
  665. background-color: #fed713;
  666. border-color: #fed713; }
  667. .btn-warning:not(.btn-light) {
  668. color: #ffffff; }
  669. .btn-warning:not(.btn-light):hover, .btn-warning:not(.btn-light):focus, .btn-warning:not(.btn-light):active {
  670. color: #ffffff; }
  671. .btn-warning:not(.btn-light):focus, .btn-warning:not(.btn-light):active {
  672. background: #fed713;
  673. border-color: #fed713; }
  674. .btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active {
  675. background: -webkit-gradient(linear, left top, right top, from(#f6e384), to(#ffd500));
  676. background: linear-gradient(to right, #f6e384, #ffd500);
  677. color: #000; }
  678. .btn-inverse-danger {
  679. background-color: rgba(254, 124, 150, 0.2);
  680. background-image: none;
  681. border-color: rgba(254, 124, 150, 0); }
  682. .btn-inverse-danger:not(.btn-inverse-light) {
  683. color: #fe7c96; }
  684. .btn-inverse-danger:hover {
  685. color: #ffffff;
  686. background-color: #fe7c96;
  687. border-color: #fe7c96; }
  688. .btn-inverse-danger.focus, .btn-inverse-danger:focus {
  689. -webkit-box-shadow: 0 0 0 3px rgba(254, 124, 150, 0.5);
  690. box-shadow: 0 0 0 3px rgba(254, 124, 150, 0.5); }
  691. .btn-inverse-danger.disabled, .btn-inverse-danger:disabled {
  692. color: #fe7c96;
  693. background-color: transparent; }
  694. .btn-inverse-danger.active, .btn-inverse-danger:active,
  695. .show > .btn-inverse-danger.dropdown-toggle {
  696. color: #ffffff;
  697. background-color: #fe7c96;
  698. border-color: #fe7c96; }
  699. .btn-danger:not(.btn-light) {
  700. color: #ffffff; }
  701. .btn-danger:not(.btn-light):hover, .btn-danger:not(.btn-light):focus, .btn-danger:not(.btn-light):active {
  702. color: #ffffff; }
  703. .btn-danger:not(.btn-light):focus, .btn-danger:not(.btn-light):active {
  704. background: #fe7c96;
  705. border-color: #fe7c96; }
  706. .btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active {
  707. background: -webkit-gradient(linear, left top, right top, from(#ffbf96), to(#fe7096));
  708. background: linear-gradient(to right, #ffbf96, #fe7096);
  709. color: #000; }
  710. .btn-inverse-light {
  711. background-color: rgba(248, 249, 250, 0.2);
  712. background-image: none;
  713. border-color: rgba(248, 249, 250, 0); }
  714. .btn-inverse-light:not(.btn-inverse-light) {
  715. color: #f8f9fa; }
  716. .btn-inverse-light:hover {
  717. color: #ffffff;
  718. background-color: #f8f9fa;
  719. border-color: #f8f9fa; }
  720. .btn-inverse-light.focus, .btn-inverse-light:focus {
  721. -webkit-box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
  722. box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5); }
  723. .btn-inverse-light.disabled, .btn-inverse-light:disabled {
  724. color: #f8f9fa;
  725. background-color: transparent; }
  726. .btn-inverse-light.active, .btn-inverse-light:active,
  727. .show > .btn-inverse-light.dropdown-toggle {
  728. color: #ffffff;
  729. background-color: #f8f9fa;
  730. border-color: #f8f9fa; }
  731. .btn-light:not(.btn-light) {
  732. color: #ffffff; }
  733. .btn-light:not(.btn-light):hover, .btn-light:not(.btn-light):focus, .btn-light:not(.btn-light):active {
  734. color: #ffffff; }
  735. .btn-light:not(.btn-light):focus, .btn-light:not(.btn-light):active {
  736. background: #f8f9fa;
  737. border-color: #f8f9fa; }
  738. .btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active {
  739. background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e4e4e9));
  740. background: linear-gradient(to bottom, #f4f4f4, #e4e4e9);
  741. color: #000; }
  742. .btn-inverse-dark {
  743. background-color: rgba(62, 75, 91, 0.2);
  744. background-image: none;
  745. border-color: rgba(62, 75, 91, 0); }
  746. .btn-inverse-dark:not(.btn-inverse-light) {
  747. color: #3e4b5b; }
  748. .btn-inverse-dark:hover {
  749. color: #ffffff;
  750. background-color: #3e4b5b;
  751. border-color: #3e4b5b; }
  752. .btn-inverse-dark.focus, .btn-inverse-dark:focus {
  753. -webkit-box-shadow: 0 0 0 3px rgba(62, 75, 91, 0.5);
  754. box-shadow: 0 0 0 3px rgba(62, 75, 91, 0.5); }
  755. .btn-inverse-dark.disabled, .btn-inverse-dark:disabled {
  756. color: #3e4b5b;
  757. background-color: transparent; }
  758. .btn-inverse-dark.active, .btn-inverse-dark:active,
  759. .show > .btn-inverse-dark.dropdown-toggle {
  760. color: #ffffff;
  761. background-color: #3e4b5b;
  762. border-color: #3e4b5b; }
  763. .btn-dark:not(.btn-light) {
  764. color: #ffffff; }
  765. .btn-dark:not(.btn-light):hover, .btn-dark:not(.btn-light):focus, .btn-dark:not(.btn-light):active {
  766. color: #ffffff; }
  767. .btn-dark:not(.btn-light):focus, .btn-dark:not(.btn-light):active {
  768. background: #3e4b5b;
  769. border-color: #3e4b5b; }
  770. .btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active {
  771. background: linear-gradient(89deg, #5e7188, #3e4b5b);
  772. color: #000; }
  773. /* gradient buttons */
  774. .btn-gradient-primary {
  775. background: -webkit-gradient(linear, left top, right top, from(#da8cff), to(#9a55ff));
  776. background: linear-gradient(to right, #da8cff, #9a55ff);
  777. border: 0;
  778. -webkit-transition: opacity 0.3s ease;
  779. transition: opacity 0.3s ease; }
  780. .btn-gradient-primary:not([disabled]):not(.disabled):active, .btn-gradient-primary:not([disabled]):not(.disabled).active,
  781. .show > .btn-gradient-primary.dropdown-toggle {
  782. background: -webkit-gradient(linear, left top, right top, from(#da8cff), to(#9a55ff));
  783. background: linear-gradient(to right, #da8cff, #9a55ff); }
  784. .btn-gradient-primary:hover {
  785. opacity: .8; }
  786. .btn-gradient-primary:not(.btn-gradient-light) {
  787. color: #ffffff; }
  788. .btn-gradient-primary:not(.btn-gradient-light):hover, .btn-gradient-primary:not(.btn-gradient-light):focus, .btn-gradient-primary:not(.btn-gradient-light):active {
  789. color: #ffffff; }
  790. .btn-gradient-secondary {
  791. background: -webkit-gradient(linear, left top, right top, from(#e7ebf0), to(#868e96));
  792. background: linear-gradient(to right, #e7ebf0, #868e96);
  793. border: 0;
  794. -webkit-transition: opacity 0.3s ease;
  795. transition: opacity 0.3s ease; }
  796. .btn-gradient-secondary:not([disabled]):not(.disabled):active, .btn-gradient-secondary:not([disabled]):not(.disabled).active,
  797. .show > .btn-gradient-secondary.dropdown-toggle {
  798. background: -webkit-gradient(linear, left top, right top, from(#e7ebf0), to(#868e96));
  799. background: linear-gradient(to right, #e7ebf0, #868e96); }
  800. .btn-gradient-secondary:hover {
  801. opacity: .8; }
  802. .btn-gradient-secondary:not(.btn-gradient-light) {
  803. color: #ffffff; }
  804. .btn-gradient-secondary:not(.btn-gradient-light):hover, .btn-gradient-secondary:not(.btn-gradient-light):focus, .btn-gradient-secondary:not(.btn-gradient-light):active {
  805. color: #ffffff; }
  806. .btn-gradient-success {
  807. background: -webkit-gradient(linear, left top, right top, from(#84d9d2), to(#07cdae));
  808. background: linear-gradient(to right, #84d9d2, #07cdae);
  809. border: 0;
  810. -webkit-transition: opacity 0.3s ease;
  811. transition: opacity 0.3s ease; }
  812. .btn-gradient-success:not([disabled]):not(.disabled):active, .btn-gradient-success:not([disabled]):not(.disabled).active,
  813. .show > .btn-gradient-success.dropdown-toggle {
  814. background: -webkit-gradient(linear, left top, right top, from(#84d9d2), to(#07cdae));
  815. background: linear-gradient(to right, #84d9d2, #07cdae); }
  816. .btn-gradient-success:hover {
  817. opacity: .8; }
  818. .btn-gradient-success:not(.btn-gradient-light) {
  819. color: #ffffff; }
  820. .btn-gradient-success:not(.btn-gradient-light):hover, .btn-gradient-success:not(.btn-gradient-light):focus, .btn-gradient-success:not(.btn-gradient-light):active {
  821. color: #ffffff; }
  822. .btn-gradient-info {
  823. background: -webkit-gradient(linear, left top, right top, from(#90caf9), color-stop(99%, #047edf));
  824. background: linear-gradient(to right, #90caf9, #047edf 99%);
  825. border: 0;
  826. -webkit-transition: opacity 0.3s ease;
  827. transition: opacity 0.3s ease; }
  828. .btn-gradient-info:not([disabled]):not(.disabled):active, .btn-gradient-info:not([disabled]):not(.disabled).active,
  829. .show > .btn-gradient-info.dropdown-toggle {
  830. background: -webkit-gradient(linear, left top, right top, from(#90caf9), color-stop(99%, #047edf));
  831. background: linear-gradient(to right, #90caf9, #047edf 99%); }
  832. .btn-gradient-info:hover {
  833. opacity: .8; }
  834. .btn-gradient-info:not(.btn-gradient-light) {
  835. color: #ffffff; }
  836. .btn-gradient-info:not(.btn-gradient-light):hover, .btn-gradient-info:not(.btn-gradient-light):focus, .btn-gradient-info:not(.btn-gradient-light):active {
  837. color: #ffffff; }
  838. .btn-gradient-warning {
  839. background: -webkit-gradient(linear, left top, right top, from(#f6e384), to(#ffd500));
  840. background: linear-gradient(to right, #f6e384, #ffd500);
  841. border: 0;
  842. -webkit-transition: opacity 0.3s ease;
  843. transition: opacity 0.3s ease; }
  844. .btn-gradient-warning:not([disabled]):not(.disabled):active, .btn-gradient-warning:not([disabled]):not(.disabled).active,
  845. .show > .btn-gradient-warning.dropdown-toggle {
  846. background: -webkit-gradient(linear, left top, right top, from(#f6e384), to(#ffd500));
  847. background: linear-gradient(to right, #f6e384, #ffd500); }
  848. .btn-gradient-warning:hover {
  849. opacity: .8; }
  850. .btn-gradient-warning:not(.btn-gradient-light) {
  851. color: #ffffff; }
  852. .btn-gradient-warning:not(.btn-gradient-light):hover, .btn-gradient-warning:not(.btn-gradient-light):focus, .btn-gradient-warning:not(.btn-gradient-light):active {
  853. color: #ffffff; }
  854. .btn-gradient-danger {
  855. background: -webkit-gradient(linear, left top, right top, from(#ffbf96), to(#fe7096));
  856. background: linear-gradient(to right, #ffbf96, #fe7096);
  857. border: 0;
  858. -webkit-transition: opacity 0.3s ease;
  859. transition: opacity 0.3s ease; }
  860. .btn-gradient-danger:not([disabled]):not(.disabled):active, .btn-gradient-danger:not([disabled]):not(.disabled).active,
  861. .show > .btn-gradient-danger.dropdown-toggle {
  862. background: -webkit-gradient(linear, left top, right top, from(#ffbf96), to(#fe7096));
  863. background: linear-gradient(to right, #ffbf96, #fe7096); }
  864. .btn-gradient-danger:hover {
  865. opacity: .8; }
  866. .btn-gradient-danger:not(.btn-gradient-light) {
  867. color: #ffffff; }
  868. .btn-gradient-danger:not(.btn-gradient-light):hover, .btn-gradient-danger:not(.btn-gradient-light):focus, .btn-gradient-danger:not(.btn-gradient-light):active {
  869. color: #ffffff; }
  870. .btn-gradient-light {
  871. background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e4e4e9));
  872. background: linear-gradient(to bottom, #f4f4f4, #e4e4e9);
  873. border: 0;
  874. -webkit-transition: opacity 0.3s ease;
  875. transition: opacity 0.3s ease; }
  876. .btn-gradient-light:not([disabled]):not(.disabled):active, .btn-gradient-light:not([disabled]):not(.disabled).active,
  877. .show > .btn-gradient-light.dropdown-toggle {
  878. background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e4e4e9));
  879. background: linear-gradient(to bottom, #f4f4f4, #e4e4e9); }
  880. .btn-gradient-light:hover {
  881. opacity: .8; }
  882. .btn-gradient-light:not(.btn-gradient-light) {
  883. color: #ffffff; }
  884. .btn-gradient-light:not(.btn-gradient-light):hover, .btn-gradient-light:not(.btn-gradient-light):focus, .btn-gradient-light:not(.btn-gradient-light):active {
  885. color: #ffffff; }
  886. .btn-gradient-dark {
  887. background: linear-gradient(89deg, #5e7188, #3e4b5b);
  888. border: 0;
  889. -webkit-transition: opacity 0.3s ease;
  890. transition: opacity 0.3s ease; }
  891. .btn-gradient-dark:not([disabled]):not(.disabled):active, .btn-gradient-dark:not([disabled]):not(.disabled).active,
  892. .show > .btn-gradient-dark.dropdown-toggle {
  893. background: linear-gradient(89deg, #5e7188, #3e4b5b); }
  894. .btn-gradient-dark:hover {
  895. opacity: .8; }
  896. .btn-gradient-dark:not(.btn-gradient-light) {
  897. color: #ffffff; }
  898. .btn-gradient-dark:not(.btn-gradient-light):hover, .btn-gradient-dark:not(.btn-gradient-light):focus, .btn-gradient-dark:not(.btn-gradient-light):active {
  899. color: #ffffff; }
  900. .produit-text{
  901. color : black;
  902. }
  903. .text-white-bold{
  904. font-weight : bold;
  905. color : white;
  906. }
  907. .card-rise{
  908. background : white;
  909. height : 390px;
  910. }
  911. .card-rise:hover{
  912. transition: 0.3s;
  913. box-shadow: 0px 20px 40px 0px rgba(21, 41, 62, 0.1);
  914. transform: translateY(-5px);
  915. }
  916. .card-rise h3{
  917. font-weight : bold;
  918. text-align : center;
  919. color : #6610f2;
  920. margin-top : 2%;
  921. }
  922. .card-rise p{
  923. text-align : center;
  924. padding : 5%;
  925. margin-top : -5%;
  926. }
  927. </style>
  928. </head>
  929. <body>
  930. <!-- ======= Header ======= -->
  931. <header id="header" class="fixed-top d-flex align-items-center">
  932. <div class="container d-flex justify-content-between">
  933. <div class="">
  934. <!-- Uncomment below if you prefer to use an text logo -->
  935. <!-- <h1><a href="index.html">NewBiz</a></h1> -->
  936. <a href="{{path('app_index')}}"><img src="{{asset('img/logo.jpeg')}}" alt="" style="width: 150px; height : 50px;"></a>
  937. </div>
  938. <nav id="navbar" class="navbar">
  939. <ul>
  940. <li><a style="color : rgba(61,61,61,.69); font-size: 13px; font-weight: bold;" class="nav-link scrollto menu-temp active" href="{{path('app_index')}}">Accueil</a></li>
  941. <li><a style="color : rgba(61,61,61,.69); font-size: 13px; font-weight: bold;" class="nav-link menu-temp scrollto" href="{{path('app_service')}}">Services</a></li>
  942. <li><a style="color : rgba(61,61,61,.69); font-size: 13px; font-weight: bold;" class="nav-link menu-temp scrollto " href="{{path('app_produit')}}">Produits</a></li>
  943. <li><a style="color : rgba(61,61,61,.69); font-size: 13px; font-weight: bold;" class="nav-link menu-temp scrollto " href="{{path('app_blog')}}">Blog</a></li>
  944. <li><a style="color : rgba(61,61,61,.69); font-size: 13px; font-weight: bold;" class="nav-link scrollto" href="#contact">Contact</a></li>
  945. </ul>
  946. <i class="bi bi-list mobile-nav-toggle"></i>
  947. </nav><!-- .navbar -->
  948. </div>
  949. </header><!-- #header -->
  950. {% block body %}{% endblock %}
  951. <!-- ======= Footer ======= -->
  952. <footer id="footer" style="background-color: #2e4254;">
  953. <div class="footer-top" style="background-color: #2e4254;" >
  954. <div class="container">
  955. <div class="row">
  956. <div class="col-lg-4 col-md-6 footer-info">
  957. <h3 class="font-weight-bold " style="color : white; font-weight : bold;">AMANI SOFTWARE</h3>
  958. <p style="color : white; font-weight : bold;">Des solutions logiciels et applications innovantes
  959. pour accompagner votre entreprise dans sa transformation numérique.</p>
  960. </div>
  961. <div class="col-lg-2 col-md-6 footer-links">
  962. <h4>Liens utiles</h4>
  963. <ul>
  964. <li><a class="text-white-bold" href="{{path('app_index')}}">Accueil</a></li>
  965. <li><a class="text-white-bold" href="{{path('app_service')}}">Services</a></li>
  966. <li><a class="text-white-bold" href="{{path('app_produit')}}">Produit</a></li>
  967. <li><a class="text-white-bold" href="{{path('app_blog')}}">Blog</a></li>
  968. <li><a class="text-white-bold" href="#">Contact</a></li>
  969. </ul>
  970. </div>
  971. <div class="col-lg-3 col-md-6 footer-contact">
  972. <h4 class="text-white-bold">Contactez nous</h4>
  973. <p class="text-white-bold">
  974. République Démocratique Du Congo <br>
  975. <br>
  976. Kinshasa, limete <br>
  977. <strong class="text-white-bold">Phone:</strong> +243970585155<br>
  978. <strong class="text-white-bold">Email:</strong> contact@amanisoftware.com<br>
  979. </p>
  980. <div class="social-links">
  981. {# <a href="#" class="twitter"><i class="bi bi-twitter"></i></a> #}
  982. <a target="_blank" title=="Facebook" href="https://m.facebook.com/pages/Amani-Software/105431422200356/?locale=hi_IN" class="facebook"><i class="bi bi-facebook"></i></a>
  983. <a target="_blank" title="Instagram" href="https://instagram.com/amanisoftware?igshid=MzRlODBiNWFlZA==" class="instagram"><i class="bi bi-instagram"></i></a>
  984. <a target="_blank" title="LinkedIn" href="https://cd.linkedin.com/company/amani-software?trk=public_profile_experience-item_profile-section-card_image-click" class="linkedin"><i class="bi bi-linkedin"></i></a>
  985. </div>
  986. </div>
  987. <div class="col-lg-3 col-md-6 footer-newsletter">
  988. <h4 class="text-white-bold">Newsletters</h4>
  989. <p class="text-white-bold">Restez informé de nos dernières offres et nouveautés</p>
  990. <form action="{{path('app_newsletter')}}" method="get">
  991. <input type="email" name="email"><input type="submit" value="Souscire">
  992. </form>
  993. </div>
  994. </div>
  995. </div>
  996. </div>
  997. <div class="container">
  998. <div class="copyright">
  999. &copy; Copyright <strong>Amani Software 2023</strong>. All Rights Reserved
  1000. </div>
  1001. <div class="credits">
  1002. <!--
  1003. All the links in the footer should remain intact.
  1004. You can delete the links only if you purchased the pro version.
  1005. Licensing information: https://bootstrapmade.com/license/
  1006. Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=NewBiz
  1007. -->
  1008. </div>
  1009. </div>
  1010. </footer><!-- End Footer -->
  1011. <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
  1012. <!-- Vendor JS Files -->
  1013. <script src="{{asset('assets/vendor/aos/aos.js')}}"></script>
  1014. <script src="{{asset('assets/vendor/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
  1015. <script src="{{asset('assets/vendor/glightbox/js/glightbox.min.js')}}"></script>
  1016. <script src="{{asset('assets/vendor/isotope-layout/isotope.pkgd.min.js')}}"></script>
  1017. <script src="{{asset('assets/vendor/php-email-form/validate.js')}}"></script>
  1018. <script src="{{asset('assets/vendor/swiper/swiper-bundle.min.js')}}"></script>
  1019. <!-- Template Main JS File -->
  1020. <script src="{{asset('assets/js/main.js')}}"></script>
  1021. <script src="{{asset('assets/js/jquery.min.js')}}"></script>
  1022. <script src="{{asset('assets/vendor/bootstrap/js/bootstrap.min.js')}}"></script>
  1023. <!-- Google tag (gtag.js) -->
  1024. <script async src="https://www.googletagmanager.com/gtag/js?id=G-DRXPFMTLQ3"></script>
  1025. <script>
  1026. window.dataLayer = window.dataLayer || [];
  1027. function gtag(){dataLayer.push(arguments);}
  1028. gtag('js', new Date());
  1029. gtag('config', 'G-DRXPFMTLQ3');
  1030. </script>
  1031. </body>
  1032. </html>