/* Text Animation */
.content-textnonono {
  display: flex;
  align-items: center;
  justify-content: start;
  font-family: verdana;
  font-size: 30px;
  text-transform: uppercase;
}

.slider-text {
  margin-left: 0px;
  height: 50px;
  overflow: hidden;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0;
  text-align: start;
  height: 50px;
  margin-bottom: 50px;

  font-family: "Catamaran", sans-serif;
  font-weight: bold;
}

.slide-anim {
  animation: slide 10s linear infinite;
}

.slide1 {
  color: orange !important;
}

.slide2 {
  color: orange !important;
}

.slide3 {
  color: orange !important;
}

.slide4 {
  color: orange !important;
}

@keyframes slide {
  0% {
    transform: translateY(-300px);
  }

  5% {
    transform: translateY(-300px);
  }

  33% {
    transform: translateY(-200px);
  }

  38% {
    transform: translateY(-200px);
  }

  66% {
    transform: translateY(-100px);
  }

  71% {
    transform: translateY(-100px);
  }

  99% {
    transform: translateY(-1px);
  }

  100% {
    transform: translateY(-1px);
  }
}

/*@media (max-width: 576px) {
    .slider {
      display: none;
    }
  }*/

.main-banner-tech {
  background-image: url(../../assets/img/main-banner/main-banner-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 700px;
}

/* Page projets */
.projectslides {
  border: 2px solid black !important;
}

/* gallery */
.gallery {
  margin: 0 auto;
  background: #fff;
}

.gallery>div {
  position: relative;
  float: left;
  padding: 5px;
}

.gallery>div>img {
  width: 200px;
  transition: .1s transform;
  transform: translateZ(0);

}

.gallery>div:hover {
  z-index: 1;
}

.gallery>div:hover>img {
  transform: scale(1.8, 1.8);
  transition: .3s transform;
}

.cf:before,
.cf:after {
  display: table;
  content: "";
  line-height: 0;
}

.cf:after {
  clear: both;
}

/* Chargement skelet */
.card-skeleton {
  border: 1px solid #d6d6d6;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
}

.info-wrapper {
  display: flex;
  align-content: center;
  margin: 20px;
}

.boxskel {
  width: 100%;
  height: 200px;
}

.lineeer {
  width: 100%;
  height: 20px;
  background-color: red;
  margin-top: 10px;
}

.short-line {
  flex: 1;
  height: 20px;
  background-color: red;
  margin: 20px 0 20px 20px;
}


.skeleton-loader {
  position: relative;
  background-color: #F2F2F2 !important;
  overflow: hidden;
}

.skeleton-loader::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(to right, #f2f2f2 0, #fafafa 20%, #f2f2f2 40%, #f2f2f2 100%);
  animation: loading 1s infinite;
}

@keyframes loading {
  100% {
    transform: translateX(100%);
  }
}

.page-banner-area-donate::before {
  opacity: 0.0 !important;
}

/**  **/
.sous-theme {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  padding: 20px;
}

#signup_button {
  border: 1px solid #ea512e;

  transition: .3s;
}

#signup_button:hover {
  background-color: white;
  border: 1px solid #ea512e;

  color: #ea512e !important;

  transition: .3s;
}

.signup-theme {
  background-color: white;
  
 /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
  
  padding: 20px;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

/*********/
@media (min-width : 1150px) {

  .blocks {
    display: flex;
    height: 500px;
    overflow: clip;
  }

  .blocks img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: filter;
  }

  .blocks .block {
    container: block/inline-size;
    flex: 1;
    margin-right: -20%;
    -webkit-clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
    clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
    transition: 0.25s flex 0.125s linear;
    will-change: flex;
  }

  .blocks .block a {
    /*position: relative;*/
  }

  .blocks .block a div {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    font-size: clamp(12px, 5cqw, 32px);
    z-index: 2;
  }

  .blocks .block:first-child img {
    filter: grayscale(0);
  }

  .blocks .block img {
    filter: grayscale(1);
  }

  .blocks .block:hover {
    flex: 1.25;
  }

  .blocks .block:hover img {
    filter: grayscale(0);
  }

  .blocks .block:first-child {
    -webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  }

  .blocks .block:last-child {
    margin-right: -15%;
    -webkit-clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
  }

  .blocks:has(.block:not(:first-child):hover) .block:first-child img {
    filter: grayscale(5);
  }

}

/*******/
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1b023800;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/**********/
btn {
  display: inline-block;
  border-radius: 0.3rem;
  padding: 0.1rem 0.5rem;
  color: white;
  background-image: linear-gradient(45deg, #43bf59, #edd66b);
  backdrop-filter: blur(5px);
  box-shadow: 3px 5px white;
  cursor: pointer;
  transition: scale 0.3s;
}

btn:hover {
  scale: 1.05;
}

dialog {
  --dialog-opacity: 0;
  --dialog-translate: 0 1rem;
  --mask-opacity: 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 0.2rem;
  color: inherit;
  opacity: var(--dialog-opacity);
  translate: var(--dialog-translate);
  transition: all 0.5s allow-discrete, opacity 0.5s, translate 0.5s;
  z-index: -1;
}

dialog[open] {
  --dialog-opacity: 1;
  --dialog-translate: 0 0;
}

dialog[open]::backdrop {
  --mask-opacity: 1;
}

dialog::backdrop {
  opacity: var(--mask-opacity);
  backdrop-filter: blur(5px);
  background-color: #fff2;
  transition: opacity 0.5s;
}

dialog:focus-visible {
  outline: none;
}

dialog .content {
  line-height: 1.5;
}

@starting-style {
  dialog[open] {
    --dialog-opacity: 0;
    --dialog-translate: 0 1rem;
  }
}

@starting-style {
  dialog[open]::backdrop {
    --mask-opacity: 0;
  }
}

/**************/
.sec-title {
  position: relative;
  margin-bottom: 60px;
}

.sec-title .title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #fdda33;
  font-weight: 500;
  margin-bottom: 0px;
}

.sec-title h2 {
  position: relative;
  display: inline-block;
  font-size: 60px;
  line-height: 1em;
  color: #212639;
  font-weight: 400;
  padding-bottom: 0px;
  z-index: 2;
}


.sec-title.active h2:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.sec-title h2:after {
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 3px;
  width: 50px;
  content: "";
  background-color: #d1d2d6;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.light h2:after {
  opacity: .20;
  background-color: #ffffff;
}

.sec-title.text-center h2:before,
.sec-title.text-center h2:after {
  right: 0;
  left: 0;
  margin: 0 auto;
}

.sec-title.text-center h2:before {
  opacity: .60;
}

.speakers-section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 145px 0 90px;
  overflow: hidden;
}

.speaker-block {
  position: relative;
  margin-bottom: 40px;
}

.speaker-block .inner-box {
  position: relative;
}

.speaker-block .image-box {
  position: relative;
  padding: 20px;
  background-color: rgba(255, 255, 255, .15);
  overflow: hidden;
}

.speaker-block .image-box .image:after,
.speaker-block .image-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  background-color: #ffffff;
  content: "";
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.speaker-block .inner-box:hover .image-box .image:after,
.speaker-block .inner-box:hover .image-box:before {
  height: 100%;
}

.speaker-block .image-box .image:after {
  opacity: .40;
  z-index: 1;
  top: auto;
  bottom: 0;
  background-color: #4a34a5;
}

.speaker-block .image-box .image {
  position: relative;
  margin-bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.speaker-block .image-box .image img {
  display: block;
  width: 100%;
  height: auto;
}

.speaker-block .social-links {
  position: absolute;
  left: 0;
  bottom: -140px;
  padding: 20px;
  width: 100%;
  z-index: 9;
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.speaker-block .social-links ul {
  position: relative;
  padding: 30px 20px;
  text-align: center;
  background-color: rgba(253, 218, 51, 0.85);
}

.speaker-block .social-links li {
  position: relative;
  display: inline-block;
  margin: 0 9px;
}

.speaker-block .social-links li a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.speaker-block .social-links li a:hover {
  color: #fac201;
}

.speaker-block .inner-box:hover .social-links {
  bottom: 0;
}

.speaker-block .caption-box {
  position: relative;
  padding-top: 30px;
}

.speaker-block .caption-box .name {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1em;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 10px;
}

.speaker-block .caption-box .name a {
  color: #ffffff;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.speaker-block .caption-box .name a:hover {
  color: #fdda33;
}

.speaker-block .caption-box .designation {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  color: #ffffff;
  font-weight: 400;
  opacity: .70;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/******/
.subsplan {
  --height: 620px;
  height: var(--height);
  max-height: var(--height);
}

.ctlike {
  --height: 290px;
  height: var(--height);
  max-height: var(--height);
}

/************/
.ps-timeline-sec {
  position: relative;
  background: #fff;
}

.ps-timeline-sec .container {
  position: relative;
}

@media screen and (max-width: 767px) {
  .ps-timeline-sec .container ol:before {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 130px !important;
    left: 36px !important;
  }

  .ps-timeline-sec .container ol:after {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: inherit !important;
    left: 36px;
  }

  .ps-timeline-sec .container ol.ps-timeline {
    margin: 130px 0 !important;
    border-left: 2px solid #348e80;
    padding-left: 0 !important;
    padding-top: 120px !important;
    border-top: 0 !important;
    margin-left: 25px !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li {
    height: 220px;
    float: none !important;
    width: inherit !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li:nth-child(2) .img-handler-bot img {
    width: 70px;
  }

  .ps-timeline-sec .container ol.ps-timeline li:last-child {
    margin: 0;
    bottom: 0 !important;
    height: 120px;
  }

  .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot {
    bottom: 40px !important;
    width: 40% !important;
    margin-left: 25px !important;
    margin-top: 0 !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot img {
    width: 100%;
  }

  .ps-timeline-sec .container ol.ps-timeline li:last-child .ps-top {
    margin-bottom: 0 !important;
    top: 20px;
    width: 50% !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li span {
    left: 0 !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
    content: none !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
    content: none !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
    content: none !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
    content: none !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
    position: absolute !important;
    bottom: 150px !important;
    width: 30% !important;
    float: left !important;
    margin-left: 35px !important;
    margin-bottom: 0 !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
    margin: 0 auto !important;
    width: 80% !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
    position: absolute !important;
    bottom: 115px !important;
    width: 30% !important;
    float: left !important;
    margin-left: 35px !important;
    margin-bottom: 0 !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li p {
    text-align: left !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0px !important;
  }

  .ps-timeline-sec .container ol.ps-timeline li .ps-top {
    width: 60% !important;
    float: right !important;
    right: 0;
    top: -40px;
  }

  .ps-timeline-sec .container ol.ps-timeline li .ps-bot {
    width: 60% !important;
    float: right !important;
    right: 0;
    top: -40px;
  }
}

.ps-timeline-sec .container ol:before {
  background: #348e80;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 8px;
  top: 49.5%;
}

.ps-timeline-sec .container ol:after {
  background: #348e80;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  right: 8px;
  top: 49.5%;
}

.ps-timeline-sec .container ol.ps-timeline {
  margin: 390px 0;
  padding: 0;
  border-top: 2px solid #348e80;
  list-style: none;
}

.ps-timeline-sec .container ol.ps-timeline li {
  float: left;
  width: 25%;
  padding-top: 30px;
  position: relative;
}

.ps-timeline-sec .container ol.ps-timeline li span {
  width: 50px;
  height: 50px;
  margin-left: -25px;
  background: #fff;
  border: 4px solid #348e80;
  border-radius: 50%;
  box-shadow: 0 0 0 0px #fff;
  text-align: center;
  line-height: 50px -10;
  color: #df8625;
  font-size: 2em;
  font-style: normal;
  position: absolute;
  top: -26px;
  left: 50%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
  content: "";
  color: #348e80;
  width: 2px;
  height: 50px;
  background: #348e80;
  position: absolute;
  top: -50px;
  left: 50%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
  content: "";
  color: #348e80;
  width: 8px;
  height: 8px;
  background: #348e80;
  position: absolute;
  bottom: 90px;
  left: 44%;
  border-radius: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
  content: "";
  color: #348e80;
  width: 2px;
  height: 50px;
  background: #348e80;
  position: absolute;
  bottom: -50px;
  left: 50%;
}

.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
  content: "";
  color: #348e80;
  width: 8px;
  height: 8px;
  background: #348e80;
  position: absolute;
  top: 90px;
  left: 44%;
  border-radius: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
  position: absolute;
  bottom: 0;
  margin-bottom: 130px;
  width: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
  display: table;
  margin: 0 auto;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
  position: absolute;
  margin-top: 60px;
  width: 100%;
}

.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot img {
  display: table;
  margin: 0 auto;
}

.ps-timeline-sec .container ol.ps-timeline li p {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.ps-timeline-sec .container ol.ps-timeline li .ps-top {
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
}

.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
  position: absolute;
  margin-top: 35px;
}

/********************/
.loading {
  display: flex;
  justify-content: center;
}

.loading div {
  width: 1rem;
  height: 1rem;
  margin: 2rem 0.3rem;
  background: #ea512e;
  border-radius: 50%;
  -webkit-animation: 0.9s bounce infinite alternate;
  animation: 0.9s bounce infinite alternate;
}

.loading div:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading div:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

/*****************/
.enroll-style {
  background-color: transparent !important;
  color: #1b0238 !important;
  border: 1px solid #ea512e !important;
}

.enroll-style:hover {
  background-color: transparent !important;
  color: white !important;
}

/************************/
.gift-btn-option {
  --px: 30px;
  --py: 10px;

  border: 0;
  border-radius: 10px;
  border: 2px solid white;

  width: 100%;

  padding-left: var(--px);
  padding-right: var(--px);
  padding-top: var(--py);
  padding-bottom: var(--py);

  transition: .3s;
}

.gift-btn-option:hover {
  border: 2px solid #eb6244 !important;

  transition: .3s;
}

.gift-btn-option[data='actif'] {
  background-color: #eb6244 !important;
  color: white !important;

  transition: .3s;
}

.gift-btn-price {
  --size: 80px;

  display: flex;
  justify-content: center;
  align-items: center;

  color: black;

  border: 2px solid #d7d7d7;

  height: var(--size);
  width: var(--size);
  border-radius: var(--size);

  transition: .3s;
}

.gift-btn-price:hover {
  border: 2px solid #eb6244;
  cursor: pointer;
  transition: .3s;
}

.gift-btn-price[data='actif'] {
  border: 2px solid #eb6244;
  background-color: #eb6244;
  color: white;
  cursor: pointer;
  transition: .3s;
}

/* Content */
.blog-details-desc .article-content {
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #6b6b84;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.button-pulse {
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 rgb(236, 120, 43);
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

.button-wiggle {
  animation: wiggle 4s 2s infinite;
}

@keyframes wiggle {
  5%,
  50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}

/* Donate Steps Steps */
.don-step-num {
  display: flex;
    --bsize: 50px;
    padding: 10px;
    width: var(--bsize);
    height: var(--bsize);
    border-radius: var(--bsize);
    font-size: 20px;
    background-color: #bababa;
    align-items: center;
    justify-content: center;
}

 /*Spinner*/
 .spinner {
  --size : 30px;
  width: var(--size);
  height: var(--size);
  
  border: 2px solid #0000001a;
  border-radius: 50%;
  border-right-color: #ea512e;
  
  animation: spin 1s ease infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.quick_option {
  border : 1px solid #ea512e;
  color: black;

  transition : .3s;
}

.quick_option:hover {
  border : 1px solid #ea512e;
  background-color: #ea512e;
  color: white;
  cursor: pointer;

  transition : .3s;
}