@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
header {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  position: relative;
  z-index: 10;
}
header .header-logo img {
  max-width: 220px;
  width: 18vw;
  min-width: 120px;
}
header .burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}
header .burger-menu:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
header .burger-menu span {
  width: 28px;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 2px;
}
header .burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
header .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
header .burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
header nav.header-nav-desktop {
  display: flex;
  gap: 64px;
  align-items: center;
}
header nav.header-nav-desktop a {
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  font-size: 1.0625rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
header nav.header-nav-desktop a:hover {
  opacity: 0.8;
}
header nav.header-nav-desktop a:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
header nav.header-nav-desktop .thematiques-dropdown {
  position: relative;
}
header nav.header-nav-desktop .thematiques-dropdown > a {
  cursor: pointer;
}
header nav.header-nav-desktop .thematiques-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 16px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 12px 0;
  width: max-content;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
  z-index: 1000;
}
header nav.header-nav-desktop .thematiques-dropdown .dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: #0C2B3E;
  font-size: 1.125rem;
  text-transform: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
header nav.header-nav-desktop .thematiques-dropdown .dropdown-menu a:hover {
  background-color: rgba(12, 43, 62, 0.08);
  opacity: 1;
}
header nav.header-nav-desktop .thematiques-dropdown:hover .dropdown-menu, header nav.header-nav-desktop .thematiques-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
header .header-cta {
  background-color: #FFFFFF;
  color: #0C2B3E;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid #FFFFFF;
  transition: all 0.3s ease;
}
header .header-cta:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
header .header-cta:focus-visible {
  outline: 3px solid #0C2B3E;
  outline-offset: 2px;
}
@media (max-width: 900px) {
  header:has(.header-nav-desktop) .burger-menu {
    display: flex;
  }
  header:has(.header-nav-desktop) .header-nav-desktop {
    display: none;
  }
  header:has(.header-nav-desktop) .header-cta {
    display: none;
  }
  header:not(:has(.header-nav-desktop)) .burger-menu {
    display: none !important;
  }
  header:not(:has(.header-nav-desktop)) .header-cta {
    display: block !important;
  }
}

.header-nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  height: 100dvh;
  background-color: #0C2B3E;
  flex-direction: column;
  padding: 0;
  gap: 0;
  transition: right 0.3s ease;
  z-index: 9999;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 80px 32px 32px;
}
.header-nav-mobile.active {
  right: 0;
}
.header-nav-mobile .mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transition: opacity 0.3s ease;
}
.header-nav-mobile .mobile-menu-close:hover {
  opacity: 0.8;
}
.header-nav-mobile .mobile-menu-close:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
.header-nav-mobile .mobile-menu-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header-nav-mobile .mobile-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}
.header-nav-mobile .mobile-menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}
.header-nav-mobile > a,
.header-nav-mobile > .thematiques-dropdown {
  padding-left: 16px;
  padding-right: 16px;
}
.header-nav-mobile > a {
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  font-size: 1.25rem;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.3s ease;
  display: block;
}
.header-nav-mobile > a:hover {
  opacity: 0.8;
}
.header-nav-mobile > a:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: -2px;
  border-radius: 4px;
}
.header-nav-mobile .thematiques-dropdown {
  width: 100%;
  box-sizing: border-box;
}
.header-nav-mobile .thematiques-dropdown > a {
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header-nav-mobile .thematiques-dropdown > a:hover {
  opacity: 0.8;
}
.header-nav-mobile .thematiques-dropdown .dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  margin-left: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  min-width: auto;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
.header-nav-mobile .thematiques-dropdown .dropdown-menu a {
  color: #FFFFFF;
  font-size: 1.125rem;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: none;
}
.header-nav-mobile .thematiques-dropdown .dropdown-menu a:hover {
  background-color: transparent;
  opacity: 0.8;
}
.header-nav-mobile .header-cta-mobile {
  display: block;
  background-color: #FFFFFF;
  color: #FE7201;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-align: center;
  margin-top: 24px;
  border: none;
  text-transform: none;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .header-nav-mobile {
    display: flex;
  }
}

footer {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  padding: 48px 24px;
  position: relative;
}
footer > img {
  width: 100%;
  margin-bottom: 32px;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
}
footer .footer-content-left {
  display: flex;
  gap: 80px;
  width: fit-content;
  align-items: center;
}
footer .footer-content-left img {
  width: 190px;
}
footer .footer-content-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
  width: fit-content;
  gap: 24px;
}
footer .footer-content-right > img {
  width: 160px;
}
footer .footer-content-right .socials {
  display: flex;
  gap: 16px;
}
footer .footer-content-right .socials .social-item {
  width: 40px;
  height: 40px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-content-right .socials .social-item img {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  footer .footer-content {
    align-items: center;
    gap: 72px;
  }
  footer .footer-content-left {
    flex-direction: column;
    gap: 32px;
  }
  footer .footer-content-right {
    align-items: center;
    align-self: center;
    width: 100%;
    gap: 16px;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

@media screen and (max-width: 1100px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 13px;
  }
}
body {
  font-family: "Golos Text", sans-serif;
  color: #FFFFFF;
  background-color: #0C2B3E;
  margin: 0 auto;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #FFFFFF;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
}

.top-notification {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 10000;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  min-width: 320px;
  max-width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.top-notification.show {
  top: 30px;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.top-notification.top-notification-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.top-notification.top-notification-success::before {
  content: "✓";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  margin-right: 4px;
}
.top-notification.top-notification-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.top-notification.top-notification-error::before {
  content: "✕";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  margin-right: 4px;
}

@media (max-width: 600px) {
  .top-notification {
    min-width: calc(100% - 40px);
    left: 20px;
    transform: translateY(-20px);
    font-size: 1rem;
    padding: 16px 28px;
    gap: 10px;
  }
  .top-notification.show {
    top: 20px;
    transform: translateY(0);
  }
  .top-notification.top-notification-success::before, .top-notification.top-notification-error::before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
}
.button-pulse {
  border: 1px solid #CBBBA0;
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  width: fit-content;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.button-pulse:hover {
  background-color: #FFFFFF;
  color: #0C2B3E;
}
.button-pulse:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
}
.button-pulse.white {
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
  color: #0C2B3E;
  font-weight: 600;
  transition: all 0.3s ease;
}
.button-pulse.white:hover {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.button-pulse img {
  max-width: 28px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 15vh;
}
.newsletter h2 {
  font-size: 2.375rem;
  font-weight: 800;
  text-align: center;
  color: #CBBBA0;
}
.newsletter p {
  font-size: 1.125rem;
  line-height: 160%;
  text-align: center;
  max-width: 45%;
}
.newsletter .newsletter-form {
  background-color: #FFFFFF;
  padding: 16px 16px 16px 64px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  align-items: center;
  box-sizing: border-box;
  gap: 12px;
  transition: all 0.3s ease;
}
.newsletter .newsletter-form input[type=email] {
  font-size: 1.25rem;
  color: #0C2B3E;
  border: none;
  outline: none;
  border-bottom: 1px solid #0C2B3E;
  flex: 1;
  min-width: 200px;
  height: fit-content;
  padding: 12px 0;
}
.newsletter .newsletter-form input[type=email]::placeholder {
  color: #0C2B3E;
}
.newsletter .newsletter-form input[type=email]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.newsletter .newsletter-form input[type=email]:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
.newsletter .newsletter-form input[type=hidden] {
  display: none;
}
.newsletter .newsletter-form button {
  background-color: #CBBBA0;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 32px;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.newsletter .newsletter-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.newsletter .newsletter-form button img {
  width: 32px;
}
.newsletter .newsletter-form button:hover {
  background-color: rgba(203, 187, 160, 0.65);
}
.newsletter .newsletter-form button:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
}
.newsletter .newsletter-form.newsletter-form-success input[type=email] {
  border-bottom-color: #28a745;
}

@media (max-width: 900px) {
  .newsletter {
    width: 100%;
  }
  .newsletter p {
    max-width: 96%;
  }
  .newsletter .newsletter-form {
    width: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
  .newsletter .newsletter-form input[type=email] {
    width: 100%;
    min-width: 100%;
  }
  .newsletter .newsletter-form button {
    padding: 16px;
    width: 100%;
  }
}
.main-content {
  padding: 96px 0;
}
.main-content .main-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  margin-bottom: 32px;
}
.main-content .main-content-container .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
}
.main-content .main-content-container .content > span {
  font-size: 1rem;
  color: #FE7201;
}
.main-content .main-content-container .content > h1 {
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 83%;
}
.main-content .main-content-container .content > p {
  font-size: 1.125rem;
  line-height: 160%;
  font-size: 1.125rem;
}
.main-content .main-content-container .content .separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 16px 0;
}
.main-content .main-content-container .content .timeline {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-content .main-content-container .content .timeline img {
  width: 32px;
  height: 32px;
}
.main-content .main-content-container .content .timeline p {
  font-size: 1.125rem;
  font-weight: 600;
}
.main-content .main-content-container .content .icon-list {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
}
.main-content .main-content-container .content .icon-list img {
  width: 36px;
  height: 36px;
}
.main-content .main-content-container > img {
  width: 45%;
  height: auto;
}
.main-content .goals-container {
  display: flex;
  gap: 64px;
  justify-content: space-between;
}
.main-content .goals-container .goals-content {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.main-content .goals-container .goals-content .title-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-content .goals-container .goals-content .title-container img {
  height: 40px;
}
.main-content .goals-container .goals-content .title-container h2 {
  font-size: 1.375rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #CBBBA0;
}
.main-content .goals-container .goals-content .goals-content-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.main-content .goals-container .goals-content p {
  font-size: 1.125rem;
  line-height: 180%;
}
.main-content .goals-container .goals-content p span {
  font-size: 1.125rem;
  font-weight: 600;
}

.recommendations {
  padding: 16px 0 96px;
}
.recommendations .title-row {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
  align-items: center;
  gap: 16px;
  position: relative;
}
.recommendations .title-row .line {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
}
.recommendations .title-row h2 {
  font-size: 1.75rem;
  width: max-content;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0C2B3E;
  padding: 0 32px;
}
.recommendations .recommendation-cards {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.recommendations .recommendation-card {
  width: 26%;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}
.recommendations .recommendation-card .card-icon {
  width: 80px;
  height: 80px;
}
.recommendations .recommendation-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.recommendations .recommendation-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0C2B3E;
}
.recommendations .recommendation-card p {
  font-size: 1.125rem;
  line-height: 160%;
  font-size: 1.125rem;
  color: #0C2B3E;
}

.parcours-formation {
  padding: 96px 0;
}
.parcours-formation .title-row {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
  align-items: center;
  gap: 16px;
  position: relative;
}
.parcours-formation .title-row .line {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
}
.parcours-formation .title-row h2 {
  font-size: 1.75rem;
  width: max-content;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0C2B3E;
  padding: 0 32px;
}
.parcours-formation .title-row .content-icon {
  width: 128px;
  position: absolute;
  right: 32px;
  animation: infinite-rotate-right 24s linear infinite;
}
@keyframes infinite-rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.parcours-formation .module-container {
  display: flex;
  justify-content: center;
  background-image: url(../images/big-pulse.png), url(../images/cut-pulse.png);
  background-size: 50%, 30%;
  background-position: 8% 100%, 60% 10%;
  background-repeat: no-repeat;
  padding: 100px 0 64px;
  box-sizing: border-box;
}
.parcours-formation .module-container.variant-container .module-border {
  width: 40% !important;
}
.parcours-formation .module-container .module-border:first-child {
  position: relative;
  right: -12px;
  z-index: 3;
}
.parcours-formation .module-container .module-border:first-child:nth-last-child(3) {
  right: -24px;
}
.parcours-formation .module-container .module-border:last-child {
  position: relative;
  left: -12px;
  z-index: 1;
}
.parcours-formation .module-container .module-border:last-child:nth-child(3):last-child {
  left: -24px;
}
.parcours-formation .module-container .module-border:nth-child(2):nth-last-child(2) {
  right: 0;
  left: 0;
}
.parcours-formation .module-container .module-border {
  z-index: 2;
  width: 30%;
  height: 420px;
  background: #FFFFFF;
  clip-path: polygon(0 0, 100% 25%, 100% 75%, 0% 100%);
  position: relative;
  display: inline-block;
}
.parcours-formation .module-container .module-border.variant {
  height: 620px;
}
.parcours-formation .module-container .module-border.variant:first-child {
  right: -12px;
}
.parcours-formation .module-container .module-border.variant:last-child {
  z-index: 1;
}
.parcours-formation .module-container .module-border.variant .module-card .content:first-child {
  padding-bottom: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid #FFFFFF;
}
.parcours-formation .module-container .module-border .module-card {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #0C2B3E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  clip-path: polygon(0 0, 100% 25%, 100% 75%, 0% 100%);
  padding: 48px;
  box-sizing: border-box;
}
.parcours-formation .module-container .module-border .module-card .module-time {
  font-size: 1.125rem;
}
.parcours-formation .module-container .module-border .module-card .module-title {
  font-size: 1.75rem;
  font-weight: 700;
}
.parcours-formation .module-container .module-border .module-card .module-phase {
  font-weight: 700;
}
.parcours-formation .module-container .module-border .module-card .module-description {
  font-size: 1.125rem;
  line-height: 160%;
  font-size: 1.25rem;
  font-weight: 400;
}

.campagne {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  margin-top: 32px;
  margin-bottom: 80px;
}
.campagne .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 45%;
  margin: 0 auto;
}
.campagne .content img {
  width: 40px;
}
.campagne .content p {
  font-size: 1.125rem;
  line-height: 160%;
  font-size: 1.375rem;
}
.campagne > img {
  width: 48px;
}

.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  color: #FFFFFF;
}
.scroll-to-top:hover {
  transform: translateY(-4px);
  opacity: 1 !important;
}
.scroll-to-top:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  opacity: 1 !important;
  visibility: visible !important;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1150px) {
  .parcours-formation .module-container {
    flex-wrap: wrap;
  }
  .parcours-formation .module-container .module-border {
    width: 40%;
  }
}
@media (max-width: 900px) {
  .main-content {
    padding: 12vh 0 15vh;
  }
  .main-content .main-content-container {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 16px;
  }
  .main-content .main-content-container .content {
    width: 100%;
  }
  .main-content .main-content-container > img {
    display: none;
  }
  .main-content .goals-container {
    flex-direction: column;
    gap: 32px;
  }
  .main-content .goals-container .goals-content {
    width: 100%;
  }
  .recommendations {
    padding: 5vh 0 10vh;
  }
  .recommendations .recommendation-cards {
    flex-direction: column;
    gap: 32px;
  }
  .recommendations .recommendation-cards .recommendation-card {
    width: 100%;
  }
  .parcours-formation {
    padding: 12vh 0 5vh;
  }
  .parcours-formation .title-row .content-icon {
    display: none;
  }
  .parcours-formation .module-container {
    padding: 48px 0 32px;
    flex-direction: column;
    gap: 32px;
    background-image: url(../images/big-pulse.png), url(../images/big-pulse.png);
    background-size: 50%, 50%;
    background-position: 96% 69%, 72% 0%;
  }
  .parcours-formation .module-container .module-border {
    width: 100%;
    height: 320px;
    right: 0 !important;
    left: 0 !important;
  }
  .parcours-formation .module-container .module-border.variant {
    height: 520px;
  }
  .parcours-formation .module-container.variant-container .module-border {
    width: 100% !important;
  }
  .campagne .content {
    width: 96%;
  }
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/*# sourceMappingURL=thematique.css.map */
