@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --cta: black;
  --fondlow: gray;
  --gradient: linear-gradient(90deg,
      rgba(1, 126, 190, 1) 0%,
      rgba(242, 190, 28, 1) 37.99999952316284%,
      rgba(253, 182, 13, 1) 66.00000262260437%,
      rgba(251, 41, 14, 1) 100%);
}

.error-messages {
  display: none;
}

/* Loader Styles */
.loader {
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.788);
  -webkit-animation: fadingBg 0.5s linear infinite;
          animation: fadingBg 0.5s linear infinite;
}
.loader .spin {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #133D90;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fadingBg {
  0% {
    background: rgba(255, 255, 255, 0.445);
  }
  50% {
    background: rgba(255, 255, 255, 0.658);
  }
  100% {
    background: rgba(255, 255, 255, 0.445);
  }
}
@keyframes fadingBg {
  0% {
    background: rgba(255, 255, 255, 0.445);
  }
  50% {
    background: rgba(255, 255, 255, 0.658);
  }
  100% {
    background: rgba(255, 255, 255, 0.445);
  }
}
/* Hide content initially */
.hidden {
  display: none;
}

.gradient_text {
  background-image: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@-webkit-keyframes gradient-anim {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes gradient-anim {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
* {
  outline: none;
  scroll-behavior: smooth;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

*::-moz-selection {
  background: var(--text);
  color: var(--fond);
}

*::selection {
  background: var(--text);
  color: var(--fond);
}

/*** scroollbar ***/
*::-webkit-scrollbar {
  width: 0px;
  background: rgba(0, 0, 0, 0) 0% 0% no-repeat padding-box;
}

*::-webkit-scrollbar-button {
  background: rbga(0, 0, 0, 0);
}

*::-webkit-scrollbar-track-piece {
  width: 0px;
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0, 0, 0);
  box-shadow: inset 0 0 6px rgb(0, 0, 0);
  border: none;
  width: 0px;
  background-color: rgba(0, 0, 0, 0);
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

html {
  width: 100vw;
  height: auto;
}

body {
  margin: 0 auto;
  width: 100vw;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: #2b2b2b;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  background: white !important;
}

.struct {
  width: 90%;
}

.container {
  width: 100%;
  height: 70%;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 1vh;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
@media all and (max-width: 1000px) {
  .container {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    gap: 2vw;
    /* height: 90%; */
  }
}
.container .img {
  scroll-snap-align: center;
  min-width: 25%;
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  /* display: grid;
  place-items: center; */
}
.container .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1000px) {
  .container .img {
    min-width: 75%;
  }
}
.container .img:first-child {
  border-radius: 0px 30px 30px 0px;
}
.container .img:last-child {
  border-radius: 30px 0px 0px 30px;
}
.container .img .after {
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.89)), to(rgba(0, 0, 0, 0.89)));
  background: linear-gradient(top, rgba(0, 0, 0, 0.89), rgba(0, 0, 0, 0.89));
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.container .img:last-child .after {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.3em;
  text-decoration: underline;
}

.container::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

@media all and (max-width: 1000px) {
  .container::-webkit-scrollbar {
    height: 6px;
  }
}
.container::-webkit-scrollbar-thumb:horizontal {
  background-color: var(--cta);
  border-radius: 10px;
}

.container::-webkit-scrollbar-button {
  background: rbga(0, 0, 0, 0);
}

.container::-webkit-scrollbar-track-piece {
  height: 10px;
  width: 20px;
}

.container::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border: none;
  width: 10px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, rgba(173, 32, 32, 0)), color-stop(50%, var(--fondlow)), color-stop(33%, rgba(173, 32, 32, 0)));
  background: linear-gradient(to top, rgba(173, 32, 32, 0) 33%, var(--fondlow) 50%, rgba(173, 32, 32, 0) 33%);
}

header {
  display: grid;
  place-items: center;
  width: 100%;
  margin-top: 1em;
}
header .logo {
  width: 180px;
}
header .logo img {
  width: 100%;
}

.intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4em;
  margin-bottom: 4em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 1271px) {
  .intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}
.intro .introText {
  display: block;
  width: 50%;
}
@media all and (max-width: 1271px) {
  .intro .introText {
    width: 100%;
    display: grid;
    place-items: center;
  }
}
.intro .introText .small {
  font-size: 1.875em;
  font-weight: 400;
}
@media all and (max-width: 1271px) {
  .intro .introText .small {
    text-align: center;
  }
}
@media all and (max-width: 580px) {
  .intro .introText .small {
    font-size: 4vw;
  }
}
.intro .introText .small400 {
  font-weight: 600;
  padding: 0.3em 1em;
  border-radius: 2em;
  background: #E96002;
  color: white;
  text-transform: uppercase;
  margin-top: 0.5em;
  font-size: 1.5em;
  display: inline-block;
}
@media all and (max-width: 1271px) {
  .intro .introText .small400 {
    text-align: center;
    font-size: 0.9em;
  }
}
@media all and (max-width: 1271px) {
  .intro .introText p {
    text-align: center !important;
  }
}
.intro .introText h1 {
  font-size: 4vw;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 1em;
}
@media all and (max-width: 1271px) {
  .intro .introText h1 {
    text-align: center;
    margin-bottom: 0em;
    font-size: 6vw;
  }
}
@media all and (max-width: 580px) {
  .intro .introText h1 {
    font-size: 8vw;
    font-weight: 800;
  }
}
.intro .introText p {
  font-size: 1.5em;
  word-spacing: normal;
  text-align: left;
  color: #2b2b2b !important;
  opacity: 1;
}
@media all and (max-width: 580px) {
  .intro .introText p {
    font-size: 5vw;
  }
}
.intro .introText .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 100%;
  gap: 2em;
}
@media all and (max-width: 1271px) {
  .intro .introText .btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media all and (max-width: 580px) {
  .intro .introText .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5em;
  }
  .intro .introText .btns .bnt {
    width: 50%;
    gap: 0;
  }
}
@media all and (max-width: 580px) and (max-width: 580px) {
  .intro .introText .btns .bnt span {
    display: none;
  }
}
.intro .img {
  width: 48%;
  overflow: hidden;
  height: 65vh;
  border-radius: 1.875em;
}
@media all and (max-width: 1271px) {
  .intro .img {
    margin-top: 3em;
    height: 43vh;
    width: 100%;
  }
}
@media all and (max-width: 1158px) {
  .intro .img {
    height: 43vh;
  }
}
.intro .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 63px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.5em;
  border-radius: 50px;
  text-align: center;
}
@media all and (max-width: 1271px) {
  .bnt {
    height: 55px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media all and (max-width: 660px) {
  .bnt {
    font-size: 1.2em;
  }
}
@media all and (max-width: 420px) {
  .bnt {
    font-size: 4vw;
  }
}

.major {
  background: #133D90;
  color: white;
  border: 2px solid;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.major:hover {
  color: #133D90;
  background: white;
  border: 2px solid;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.minor {
  border: 2px solid #133D90;
  color: #133D90;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@-webkit-keyframes gradientShift {
  0% {
    background: -webkit-gradient(linear, left top, right top, from(rgb(1, 126, 190)), color-stop(37.99%, rgb(242, 190, 28)), color-stop(66%, rgb(253, 182, 13)), to(rgb(251, 41, 14)));
    background: linear-gradient(90deg, rgb(1, 126, 190) 0%, rgb(242, 190, 28) 37.99%, rgb(253, 182, 13) 66%, rgb(251, 41, 14) 100%);
  }
  50% {
    background: -webkit-gradient(linear, left top, right top, from(rgb(251, 41, 14)), color-stop(37.99%, rgb(253, 182, 13)), color-stop(66%, rgb(242, 190, 28)), to(rgb(1, 126, 190)));
    background: linear-gradient(90deg, rgb(251, 41, 14) 0%, rgb(253, 182, 13) 37.99%, rgb(242, 190, 28) 66%, rgb(1, 126, 190) 100%);
  }
  100% {
    background: -webkit-gradient(linear, left top, right top, from(rgb(1, 126, 190)), color-stop(37.99%, rgb(242, 190, 28)), color-stop(66%, rgb(253, 182, 13)), to(rgb(251, 41, 14)));
    background: linear-gradient(90deg, rgb(1, 126, 190) 0%, rgb(242, 190, 28) 37.99%, rgb(253, 182, 13) 66%, rgb(251, 41, 14) 100%);
  }
}
@keyframes gradientShift {
  0% {
    background: -webkit-gradient(linear, left top, right top, from(rgb(1, 126, 190)), color-stop(37.99%, rgb(242, 190, 28)), color-stop(66%, rgb(253, 182, 13)), to(rgb(251, 41, 14)));
    background: linear-gradient(90deg, rgb(1, 126, 190) 0%, rgb(242, 190, 28) 37.99%, rgb(253, 182, 13) 66%, rgb(251, 41, 14) 100%);
  }
  50% {
    background: -webkit-gradient(linear, left top, right top, from(rgb(251, 41, 14)), color-stop(37.99%, rgb(253, 182, 13)), color-stop(66%, rgb(242, 190, 28)), to(rgb(1, 126, 190)));
    background: linear-gradient(90deg, rgb(251, 41, 14) 0%, rgb(253, 182, 13) 37.99%, rgb(242, 190, 28) 66%, rgb(1, 126, 190) 100%);
  }
  100% {
    background: -webkit-gradient(linear, left top, right top, from(rgb(1, 126, 190)), color-stop(37.99%, rgb(242, 190, 28)), color-stop(66%, rgb(253, 182, 13)), to(rgb(251, 41, 14)));
    background: linear-gradient(90deg, rgb(1, 126, 190) 0%, rgb(242, 190, 28) 37.99%, rgb(253, 182, 13) 66%, rgb(251, 41, 14) 100%);
  }
}
@-webkit-keyframes hueShift {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  50% {
    -webkit-filter: hue-rotate(90deg);
            filter: hue-rotate(90deg);
  }
  100% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
}
@keyframes hueShift {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  50% {
    -webkit-filter: hue-rotate(90deg);
            filter: hue-rotate(90deg);
  }
  100% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
}
.DateEvent {
  position: fixed;
  bottom: 0;
  left: 0;
  display: grid;
  width: 100%;
  place-items: center;
  background-image: var(--gradient);
  height: 100px;
  font-size: 0.8em;
  z-index: 10;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4em 4em 0 0;
}
@-webkit-keyframes rotateGradient {
  to {
    --angle: 360deg;
  }
}
@keyframes rotateGradient {
  to {
    --angle: 360deg;
  }
}
@-webkit-keyframes waveBackground {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 100% 100%;
  }
}
@keyframes waveBackground {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 100% 100%;
  }
}
@media all and (max-width: 900px) {
  .DateEvent {
    font-size: 0.6em;
    height: 80px;
  }
}
@media all and (max-width: 680px) {
  .DateEvent {
    font-size: 1.25vw;
    height: 60px;
  }
}
@media all and (max-width: 500px) {
  .DateEvent {
    height: 130px;
    gap: 0;
  }
}
.DateEvent__struct {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 500px) {
  .DateEvent__struct {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.DateEvent__struct .date {
  font-size: 3em;
  color: white;
  letter-spacing: 0.1em;
}
@media all and (max-width: 500px) {
  .DateEvent__struct .date {
    margin: 0;
    font-size: 6vw;
  }
}
.DateEvent__struct .countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-size: 2.2em;
  color: white;
}
@media all and (max-width: 500px) {
  .DateEvent__struct .countdown {
    margin: 0;
    font-size: 6vw;
  }
}
.DateEvent__struct .countdown__item {
  display: grid;
  place-items: center;
}
.DateEvent__struct .countdown__item .val {
  font-size: 1.5em;
  font-weight: 800;
}
.DateEvent__struct .countdown__item .label {
  font-size: 0.68em;
}

.titleSection {
  font-size: 2em;
  line-height: 1em;
  margin-top: 2em;
  font-weight: 500;
  margin-bottom: 1em;
}
@media all and (max-width: 660px) {
  .titleSection {
    margin-top: 1em;
  }
}

.pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media all and (max-width: 1271px) {
  .pricing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 660px) {
  .pricing {
    margin-top: 1em !important;
  }
}
.pricing__item {
  width: 50%;
  background: #133D90;
  height: auto;
  padding-top: 3em;
  padding-bottom: 3em;
  display: grid;
  place-items: center;
  border-radius: 2em;
  overflow: hidden;
}
@media all and (max-width: 1271px) {
  .pricing__item {
    width: 100%;
  }
}
.pricing__item__struct {
  width: 90%;
  color: white;
}
@media all and (max-width: 660px) {
  .pricing__item__struct {
    font-size: 0.7em;
  }
}
.pricing__item__struct .title {
  font-size: 3em;
  line-height: 1em;
  font-weight: 600;
}
.pricing__item__struct .description {
  font-size: 1.5em;
  line-height: 1.4em;
  opacity: 1;
}
.pricing__item__struct .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4em;
}
@media all and (max-width: 490px) {
  .pricing__item__struct .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2em;
    margin-top: 2em;
  }
}
.pricing__item__struct .flexbox .btnWhite {
  background: white;
  color: #133D90;
  font-size: 1.5em;
  height: 3em;
  font-weight: 500;
  border-radius: 50px;
}
.pricing__item__struct .flexbox .price {
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  border-left: 1px solid white;
  border-right: 1px solid white;
}
@media all and (max-width: 490px) {
  .pricing__item__struct .flexbox .price {
    border: none;
    padding: 0;
  }
}
.pricing__item__struct .flexbox .price .val {
  font-size: 3em;
  font-weight: bold;
}
.pricing__item__struct .flexbox .price .val .devise {
  display: inline-block;
  font-weight: 200;
}
@media all and (max-width: 490px) {
  .pricing__item__struct .flexbox .Yprice {
    display: none;
  }
}
.pricing .online {
  background: rgb(251, 41, 14);
}
.pricing .online .youtube {
  width: auto;
  color: rgb(251, 41, 14);
  font-weight: 600;
}

@media all and (max-width: 660px) {
  .orateurs {
    margin-top: 1em !important;
  }
}
.orateurs .flexItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 2em;
}
@media all and (max-width: 1100px) {
  .orateurs .flexItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.orateurs .flexItem .orateur {
  width: 49%;
  background: #f3f1f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 1.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media all and (max-width: 1100px) {
  .orateurs .flexItem .orateur {
    width: 100%;
    margin-bottom: 2em;
  }
}
@media all and (max-width: 660px) {
  .orateurs .flexItem .orateur {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.orateurs .flexItem .orateur .img {
  height: 100%;
  width: 40%;
  background: #dff2fc;
  overflow: hidden;
  border-radius: 1.5em;
}
@media all and (max-width: 660px) {
  .orateurs .flexItem .orateur .img {
    width: 100%;
  }
}
.orateurs .flexItem .orateur .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.orateurs .flexItem .orateur .orateurdescription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 3%;
  padding-right: 3%;
  padding-bottom: 30px;
  width: 54%;
}
@media all and (max-width: 660px) {
  .orateurs .flexItem .orateur .orateurdescription {
    width: calc(100% - 50px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
.orateurs .flexItem .orateur .orateurdescription .name {
  font-size: 2em;
  font-weight: 600;
  margin-top: 1em;
}
.orateurs .flexItem .orateur .orateurdescription .position {
  font-size: 1.5em;
}
.orateurs .flexItem .orateur .orateurdescription .ministry {
  margin-top: 2em;
  line-height: 1.5;
  width: 100%;
}
.orateurs .flexItem .orateur:hover {
  background: #133D90;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.orateurs .flexItem .orateur:hover img {
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

hr {
  background-image: var(--gradient);
  height: 2px;
  margin-top: 4em;
}
@media all and (max-width: 1100px) {
  hr {
    margin-top: 1em;
  }
}

.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8em;
  gap: 2em;
}
@media all and (max-width: 1100px) {
  .cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta .img {
  width: 15vw;
}
@media all and (max-width: 1100px) {
  .cta .img {
    width: 30vw;
  }
}
.cta .img img {
  width: 100%;
}
.cta .ctaText {
  width: 50%;
}
@media all and (max-width: 1100px) {
  .cta .ctaText {
    width: 85vw;
    display: grid;
    place-items: center;
  }
}
@media all and (max-width: 1100px) {
  .cta .ctaText div {
    text-align: center;
  }
}
.cta .ctaText h2 {
  font-size: 3vw;
  line-height: 1.2em;
  margin: 0;
}
@media all and (max-width: 1100px) {
  .cta .ctaText h2 {
    font-size: 5.5vw;
    text-align: center;
  }
}
@media all and (max-width: 660px) {
  .cta .ctaText h2 {
    font-size: 8.5vw;
  }
}
.cta .ctaText p {
  font-size: 1.5em;
}
@media all and (max-width: 1100px) {
  .cta .ctaText p {
    text-align: center;
  }
}
@media all and (max-width: 660px) {
  .cta .ctaText p {
    font-size: 1.2em;
  }
}
.cta .ctaText .btncta {
  background-color: #2b2b2b;
  color: white;
}

.gradient_line {
  background-image: var(--gradient);
  margin-top: 0;
  height: 8px;
}

.about {
  margin-top: 8em;
}
.about .aboutImg {
  width: 100%;
  border-radius: 2em 2em 0 0;
  overflow: hidden;
}
.about .aboutImg img {
  width: 100%;
}
.about .aboutImg .gradient_line {
  background-image: var(--gradient);
  margin-top: 0;
  height: 8px;
}
.about .aboutText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
  margin-top: 2em;
}
@media all and (max-width: 1271px) {
  .about .aboutText {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 550px) {
  .about .aboutText {
    gap: 1em;
    margin-top: 1em;
  }
}
.about .aboutText h2 {
  margin: 0;
  font-weight: 600;
  width: 30%;
  font-size: 2.5em;
}
@media all and (max-width: 1271px) {
  .about .aboutText h2 {
    width: 100%;
  }
}
@media all and (max-width: 550px) {
  .about .aboutText h2 {
    font-size: 6.5vw;
  }
}
.about .aboutText p {
  margin: 0;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 70%;
  font-size: 1.5em;
}
@media all and (max-width: 1271px) {
  .about .aboutText p {
    width: 100%;
    font-size: 1.2em;
  }
}
@media all and (max-width: 550px) {
  .about .aboutText p {
    font-size: 1em;
  }
}
.about .gradient_line2 {
  height: 1px;
  margin-top: 2em;
}

.footer {
  margin-top: 8em;
  width: 100%;
  display: grid;
  place-items: center;
}
.footer .logoContaint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .logoContaint .logofooter {
  width: 20em;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.footer .logoContaint .logofooter img {
  width: 100%;
}
.footer .flexcontainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
  margin-top: 4em;
}
@media all and (max-width: 1333px) {
  .footer .flexcontainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .flexcontainer .item {
  width: 30%;
}
@media all and (max-width: 1333px) {
  .footer .flexcontainer .item {
    width: 100%;
  }
  .footer .flexcontainer .item * {
    text-align: center;
  }
}
.footer .flexcontainer .item .bannerfooter {
  width: 100%;
}
.footer .flexcontainer .item .title {
  font-size: 2.3em;
  margin: 0;
}
@media all and (max-width: 570px) {
  .footer .flexcontainer .item .title {
    font-size: 5.5vw;
  }
}
.footer .flexcontainer .item p {
  font-size: 1.2em;
}
.footer .flexcontainer .item .linkcontainer {
  margin-top: 1.5em;
}
.footer .flexcontainer .item a.footerLink {
  display: block;
  font-size: 1.5em;
  margin-bottom: 0.3em;
}
.footer .flexcontainer .itemimg {
  width: 35%;
  border-radius: 1em;
  overflow: hidden;
}
@media all and (max-width: 1333px) {
  .footer .flexcontainer .itemimg {
    width: 100%;
    overflow: hidden;
  }
}
.footer .flexcontainer .itemcontact {
  width: 20%;
}
@media all and (max-width: 1333px) {
  .footer .flexcontainer .itemcontact {
    width: 100%;
  }
}
.footer .partners {
  margin-top: 3em;
  margin-bottom: 3em;
  width: 100%;
}
.footer .end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 1.2em;
  background: #2b2b2b;
  color: white;
  padding-top: 1.6em;
  padding-bottom: 1.6em;
  margin-bottom: 100px;
  border-radius: 1.3em;
}
@media all and (max-width: 900px) {
  .footer .end {
    margin-bottom: 80px;
  }
}
@media all and (max-width: 680px) {
  .footer .end {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 500px) {
  .footer .end {
    margin-bottom: 130px;
  }
}
@media all and (max-width: 430px) {
  .footer .end {
    font-size: 4vw;
  }
}
.footer .end .center {
  text-align: center;
}

@media all and (max-width: 1100px) {
  section {
    margin-top: 4.5em !important;
  }
}
@media all and (max-width: 660px) {
  section {
    margin-top: 2.5em !important;
  }
}

.grid {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.grid div {
  height: 100vh;
  background: rgba(128, 128, 128, 0.151);
  width: 0.5px;
  display: block;
}
.grid div:nth-child(2n) {
  background: rgba(128, 128, 128, 0.096);
  width: 0.2px;
  opacity: 1;
}

.grid2 {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.grid2 div {
  width: 100vw;
  background: rgba(128, 128, 128, 0.096);
  height: 0.2px;
  display: block;
}

@-webkit-keyframes rotate {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10em;
}
.form h2 {
  font-size: 3em;
  line-height: 1em;
  margin: 0;
  text-align: center;
}
.form p {
  font-size: 1.2em;
}
.form p:not(.input-field-radio p) {
  text-align: center;
}
.form form {
  width: 70%;
  margin-top: 1.5em;
}
.form form .containImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form form .containImage .imageProfile {
  width: 235px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(43, 43, 43, 0.3568627451);
  margin-bottom: 2em;
}
.form form .containImage .imageProfile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 600px) {
  .form form {
    width: 100%;
  }
}
.form form .input-field {
  display: block;
  margin-top: 0;
  margin-bottom: 1.5em;
  position: relative;
  border-style: solid !important;
  border: 2px solid rgba(43, 43, 43, 0.3568627451);
  border-radius: 12px;
}
.form form .input-field .email:first-child {
  margin-bottom: 0;
  height: auto;
}
.form form .input-field label {
  display: inline-block;
  color: #2b2b2b;
  font-size: 1.2em;
  position: absolute;
  left: 10px;
  top: 0;
  -webkit-transform: translateX(2%) translateY(-50%);
          transform: translateX(2%) translateY(-50%);
  padding-left: 10px;
  padding-right: 10px;
  background: white;
}
.form form .input-field input,
.form form .input-field select {
  display: block;
  width: 100%;
  height: 52px;
  background: none;
  font-size: 1.2em;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
}
.form form .input-field input::-webkit-input-placeholder, .form form .input-field select::-webkit-input-placeholder {
  opacity: 0.6;
}
.form form .input-field input::-moz-placeholder, .form form .input-field select::-moz-placeholder {
  opacity: 0.6;
}
.form form .input-field input:-ms-input-placeholder, .form form .input-field select:-ms-input-placeholder {
  opacity: 0.6;
}
.form form .input-field input::-ms-input-placeholder, .form form .input-field select::-ms-input-placeholder {
  opacity: 0.6;
}
.form form .input-field input::placeholder,
.form form .input-field select::placeholder {
  opacity: 0.6;
}
.form form .input-field_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form form .input-field_image input {
  margin-bottom: 0;
  margin-top: 2em;
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}
.form form .input-field-radio {
  font-size: 1em;
}
.form form .input-field-radio p {
  margin: 0;
}
.form form .submit_btn {
  width: 100%;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1em;
}
.form form .submit_btn button {
  background: #0093d2;
  border: none;
  height: 100%;
  width: 100%;
  color: white;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 1.7em;
}
.form #nom {
  text-transform: uppercase;
}
.form .btn {
  background-color: #14b0f3;
}
.form .btn:hover {
  background-color: #0093d2;
}
.form header {
  padding: 7em 5em 4em 5em;
}
.form h1 {
  font-family: "Source Sans Pro", Arial, sans-serif;
}
.form #rectangle {
  border: solid 2px white;
  background-color: white;
  padding: 2em 2em 2em 2em;
  width: 100%;
}
.form #blanc {
  max-width: 50%;
  min-width: 50%;
}

.createBagde {
  position: fixed;
  left: 0;
  bottom: 0;
  width: auto;
  height: auto;
  -webkit-transform: translateX(0%) translateY(100%);
          transform: translateX(0%) translateY(100%);
}
.createBagde .badge_container {
  display: grid;
  place-items: center;
  position: absolute;
  top: 330px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2em;
}
.createBagde .badge_container * {
  text-align: center;
}
.createBagde .badge_container .info {
  margin-bottom: 0em;
}
.createBagde .badge_container .info .label {
  font-size: 0.5em;
  font-style: italic;
  font-weight: 300;
}
.createBagde .badge_container .info .value {
  margin-top: 0em;
  font-weight: 800;
  font-size: 1.3em;
  line-height: 1em;
  text-transform: uppercase;
  color: #153B91;
}
.createBagde .badge_container .imgBagde {
  display: block;
  width: 235px;
  height: 235px;
  overflow: hidden;
  border-radius: 50%;
  margin-top: 12px;
  background-position: center;
  background-size: cover;
  border: 4px solid #133D92;
}
.createBagde .badge_container .imgBagde img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: top center;
}

.AdminPage * {
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
      -ms-user-select: text !important;
          user-select: text !important;
}

.AdminPage {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.AdminPage *::-moz-selection {
  color: white;
  background: #133D90;
}
.AdminPage *::selection {
  color: white;
  background: #133D90;
}
.AdminPage main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.AdminPage main h2 {
  text-align: center;
  color: white;
  background: #133D90;
  margin-top: 0;
  padding: 8px 0;
  text-transform: uppercase;
}
.AdminPage main .searchBar {
  display: grid;
  place-items: center;
  margin-top: 0.3em;
  font-size: 1.3em;
  margin-bottom: 1em;
}
.AdminPage main .searchBar span {
  display: inline-block;
  margin-bottom: 0.3em;
}
.AdminPage main .searchBar__container {
  width: 90%;
}
.AdminPage main .searchBar__container input {
  border: none;
  width: 100%;
  height: 2em;
  border-radius: 20px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 0px;
  border-color: #133D90;
  border: 1px solid;
  font-size: 1.05em;
}
.AdminPage main .listSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0 !important;
}
.AdminPage main .listSection .containerTable {
  width: 97%;
  overflow: auto;
}
.AdminPage main .listSection .containerTable table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.AdminPage main .listSection .containerTable table td {
  padding: 5px 3px;
}
.AdminPage main .listSection .containerTable table tr:nth-child(2n) td {
  background-color: #eaeaea;
}

.InscriptionPage h2 {
  background: green !important;
}