Certification.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <template>
  2. <LayoutContainer>
  3. <div class="title-container">
  4. <v-icon class="fa-brands fa-react icon-title"></v-icon>
  5. <h6 class="subtitle-certification">DES FORMATIONS CERTIFIFIÉES</h6>
  6. </div>
  7. <h2 class="title-certification">Certification</h2>
  8. <v-row>
  9. <v-col cols="4">
  10. <h2 class="title-certification">Qualiopi : Marque de certification</h2>
  11. <p class="details-certifications">
  12. Nos formations sont certifiées Qualiopi - Actions de formation.
  13. </p>
  14. <p class="details-certifications">La marque « Qualiopi » vise à :</p>
  15. <ul class="list-qualiopi">
  16. <li>
  17. attester de la qualité du processus mis en œuvre par les
  18. prestataires d’actions concourant au développement des compétences ;
  19. </li>
  20. <li>
  21. permettre une plus grande lisibilité de l’offre de formation auprès
  22. des entreprises et des usagers.
  23. </li>
  24. </ul>
  25. </v-col>
  26. <v-col cols="5">
  27. <v-img
  28. src="/images/formation/qualiopi.jpg"
  29. class="qualiopi-img"
  30. ></v-img>
  31. </v-col>
  32. </v-row>
  33. </LayoutContainer>
  34. </template>
  35. <script setup></script>
  36. <style scoped>
  37. .qualiopi-img {
  38. margin-bottom: 3rem;
  39. bottom: 4rem;
  40. }
  41. .list-qualiopi {
  42. font-family: "Barlow";
  43. font-style: normal;
  44. font-weight: 300;
  45. font-size: 16px;
  46. line-height: 20px;
  47. color: #091d20;
  48. margin-top: 1rem
  49. }
  50. .details-certifications {
  51. font-family: "Barlow";
  52. font-style: normal;
  53. font-weight: 300;
  54. font-size: 16px;
  55. line-height: 20px;
  56. color: #091d20;
  57. margin-top: 1rem
  58. }
  59. .title-certification {
  60. font-family: "Barlow";
  61. font-style: normal;
  62. font-weight: 600;
  63. font-size: 42px;
  64. line-height: 42px;
  65. color: #071b1f;
  66. flex: none;
  67. order: 1;
  68. flex-grow: 0;
  69. margin-bottom: 2rem;
  70. }
  71. .icon-title {
  72. color: #9edbdd;
  73. font-size: 2rem;
  74. margin-right: 1rem;
  75. }
  76. .title-container {
  77. display: flex;
  78. align-items: center;
  79. margin-bottom: 2rem;
  80. margin-top: 4rem;
  81. }
  82. .subtitle-certification {
  83. font-family: "Barlow";
  84. font-style: normal;
  85. font-weight: 600;
  86. font-size: 10px;
  87. line-height: 15px;
  88. display: flex;
  89. align-items: center;
  90. letter-spacing: 0.18em;
  91. text-transform: uppercase;
  92. color: #071b1f;
  93. }
  94. </style>