* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --scale-factor: 1px;
  --color-blue: #00aeef;
  --color-black: rgba(0, 0, 0, 1);
  --color-white: rgba(255, 255, 255, 1);
}

@media (max-width: 1920px) {
  :root {
    --scale-factor: 0.0521vw;
  }
}

@media (max-width: 768px) {
  :root {
    --scale-factor: 0.054vw;
  }
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
}

.animate__animated {
  opacity: 0;
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.animate__animated.animated {
  opacity: 1;
}

.animate__animated.animate__fadeInLeft.animated {
  animation-name: fadeInLeft;
}

.animate__animated.animate__fadeInRight.animated {
  animation-name: fadeInRight;
}

.animate__animated.animate__fadeIn.animated {
  animation-name: fadeIn;
}

.credit-image {
  position: absolute;
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(14 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(19 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  z-index: 999;
  transform: rotateZ(-90deg);
  top: calc(588 * var(--scale-factor));
  left: calc(-79 * var(--scale-factor));
}

@media (max-width: 600px) {
  .credit-image {
    display: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }

  60% {
    transform: translateY(10px);
  }

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

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-container {
  max-width: 1917.46px;
  margin: 0 auto;
  position: relative;
}

.container {
  max-width: calc(1648 * var(--scale-factor));
  margin: 0 auto;
  padding: 0 calc(20 * var(--scale-factor));
}

.text-right {
  text-align: right !important;
}

.header-logo {
  display: flex;
  justify-content: left;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: calc(1648 * var(--scale-factor));
}

.header-logo img {
  width: calc(248 * var(--scale-factor));
  height: auto;
}

@media (max-width: 600px) {
  .header-logo {
    display: flex;
    justify-content: center;
    align-content: flex-start;
  }

  .header-logo img {
    width: calc(500 * var(--scale-factor));
    height: auto;
  }
}

.flech-down {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: calc(60 * var(--scale-factor));
}

.flech-down.opacity {
  opacity: 0.6;
}

.flech-down img {
  width: calc(60 * var(--scale-factor));
}

.mobile-elements {
  display: none !important;
}

@media (max-width: 600px) {
  .mobile-elements {
    display: block !important;
  }
}

.desktop-elements {
  display: block !important;
}

@media (max-width: 600px) {
  .desktop-elements {
    display: none !important;
  }
}

.mobile-elements-inline-flex {
  display: none !important;
}

@media (max-width: 600px) {
  .mobile-elements-inline-flex {
    display: flex !important;
  }
}

.desktop-elements-inline-flex {
  display: flex !important;
}

@media (max-width: 600px) {
  .desktop-elements-inline-flex {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .mobile-fixed {
    position: fixed !important;
    top: 90% !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }
}

.donate-pr-button {
  width: -moz-fit-content;
  width: fit-content;
}

.donate-pr-button.absolute {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
}

.donate-pr-button a {
  color: #ffffff;
  font-family: Badhouse;
  font-size: calc(35 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(46 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  background-image: url(../assets/images/btnhdr.png);
  background-size: 100% 96%;
  text-decoration: none;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: calc(20 * var(--scale-factor));
  background-repeat: no-repeat;
  margin-top: calc(75 * var(--scale-factor));
  padding-right: calc(70 * var(--scale-factor));
}

.donate-pr-button a.mr {
  padding-right: calc(140 * var(--scale-factor));
}

.donate-pr-button a img {
  width: calc(62 * var(--scale-factor));
  margin-right: calc(15 * var(--scale-factor));
}

.donate-pr-button.left a {
  background-image: url(../assets/images/btn-right.png);
}

@media (max-width: 600px) {
  .donate-pr-button a {
    color: #ffffff;
    font-family: Badhouse;
    font-size: calc(100 * var(--scale-factor));
    font-weight: 700;
    line-height: calc(120 * var(--scale-factor));
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    background-image: url(../assets/images/btnhdr.png);
    background-size: 100% 100%;
    text-decoration: none;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    padding: calc(28 * var(--scale-factor));
    background-repeat: no-repeat;
    margin-top: calc(75 * var(--scale-factor));
    padding-right: calc(154 * var(--scale-factor));
  }

  .donate-pr-button a.mr {
    padding-right: calc(140 * var(--scale-factor));
  }

  .donate-pr-button a img {
    width: calc(110 * var(--scale-factor));
    margin-right: calc(32 * var(--scale-factor));
    height: auto;
    margin-left: calc(32 * var(--scale-factor));
  }
}

.slider-section {
  width: 100%;
  position: relative;
}

.slider-section .slider .slide-content .slide-image {
  position: relative;
}

.slider-section .slider .slide-content .slide-image img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-section .slider .slide-content .slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: calc(1648 * var(--scale-factor));
}

.slider-section .slider .slide-content .slide-text h1 {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(90 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(100 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  width: calc(521 * var(--scale-factor));
}

@media (max-width: 600px) {
  .slider-section .slider .slide-content .slide-text {
    width: 80%;
    top: 65%;
  }

  .slider-section .slider .slide-content .slide-text h1 {
    font-size: 34px;
    line-height: 41px;
    font-weight: 700;
    width: 100%;
    text-align: center;
  }

  .slider-section .donate-pr-button.absolute-mb {
    position: absolute !important;
    top: 82% !important;
  }

  .slider-section .donate-pr-button a {
    width: 258px;
    justify-content: space-around;
    font-size: 18px;
    line-height: 24px;
  }
}

.about-section {
  margin-top: calc(20 * var(--scale-factor));
}

.about-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(50 * var(--scale-factor));
}

.about-section .container .item {
  width: 50%;
}

.about-section .container .left-side h2 {
  font-family: Badhouse;
  font-size: calc(70 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(80 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
}

.about-section .container .left-side h2 span {
  color: var(--color-blue);
  display: block;
}

.about-section .container .right-side p {
  color: var(--color-black);
  font-family: Roboto;
  font-size: calc(26 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(34 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}

@media (max-width: 600px) {
  .about-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .about-section .container {
    flex-direction: column;
    position: relative;
    padding-bottom: 80px;
  }

  .about-section .container .item {
    width: 100%;
  }

  .about-section .container .left-side h2 {
    font-family: Badhouse;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
  }

  .about-section .container .left-side .donate-pr-button {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .about-section .container .right-side p {
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
  }
}

.map-section {
  margin-top: calc(70 * var(--scale-factor));
}

.map-section h2 {
  margin: 0 auto;
  width: calc(800 * var(--scale-factor));
  color: var(--color-black);
  font-family: Badhouse;
  font-size: calc(70 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(80 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
}

.map-section .tabs {
  margin-top: calc(50 * var(--scale-factor));
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(26 * var(--scale-factor));
}

.map-section .tabs .countries {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(26 * var(--scale-factor));
  max-width: calc(1447 * var(--scale-factor));
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.map-section .tabs .countries::-webkit-scrollbar {
  display: none;
}

.map-section .tabs .tab {
  cursor: pointer;
  box-sizing: border-box;
  border: 2px solid rgb(0, 174, 239);
  border-radius: 15px;
  background: rgb(255, 255, 255);
  background: rgb(255, 255, 255);
  min-width: calc(219 * var(--scale-factor));
  height: calc(61 * var(--scale-factor));
  display: flex;
  align-items: center;
  gap: calc(20 * var(--scale-factor));
  justify-content: center;
}

.map-section .tabs .tab span {
  color: rgb(0, 174, 239);
  font-family: Badhouse;
  font-size: calc(25 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(33 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
}

.map-section .tabs .tab img {
  display: none;
}

.map-section .tabs .tab:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.map-section .tabs .tab.active {
  background: rgb(226, 35, 26);
  color: var(--color-white);
  border: none;
}

.map-section .tabs .tab.active span {
  color: var(--color-white);
}

.map-section .tabs .tab.active img {
  width: calc(40.79 * var(--scale-factor));
  height: calc(34.98 * var(--scale-factor));
  display: block;
}

.map-section .tabs .arrow {
  width: calc(50 * var(--scale-factor));
  height: calc(50 * var(--scale-factor));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}

.map-section .tabs .arrow img {
  position: absolute;
}

.map-section .tabs .arrow img .right {
  right: 0;
}

.map-section .tabs .arrow img .left {
  left: 0;
}

.map-section .content-map {
  margin-top: calc(64 * var(--scale-factor));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(39 * var(--scale-factor));
}

.map-section .content-map .infos .info-cnt {
  width: calc(666 * var(--scale-factor));
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(20 * var(--scale-factor)));
  transition: all 0.3s ease;
  position: absolute;
  background: #02afef;
  overflow-x: hidden;
}

.map-section .content-map .infos .info-cnt.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.map-section .content-map .infos .info-cnt .donate-pr-button {
  position: relative !important;
}

.map-section .content-map .infos .info-cnt .donate-pr-button a {
  padding: calc(14 * var(--scale-factor));
  padding-right: calc(70 * var(--scale-factor));
  margin-top: 0;
  height: calc(80 * var(--scale-factor));
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-section .content-map .infos .info-cnt .bg-info {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(666 * var(--scale-factor));
  height: calc(441 * var(--scale-factor));
  padding-top: calc(75 * var(--scale-factor));
}

.map-section .content-map .infos .info-cnt .bg-info img.bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.map-section .content-map .infos .info-cnt .bg-info h3 {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(35 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(52 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  height: calc(62 * var(--scale-factor));
  background: #e2241b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(30 * var(--scale-factor));
  gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  right: 0;
}

.map-section .content-map .infos .info-cnt .bg-info h3 img {
  width: calc(37.48 * var(--scale-factor));
  height: calc(31.43 * var(--scale-factor));
}

.map-section .content-map .infos .info-cnt .bg-info .text-cnt-tem {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 2px;
}

.map-section .content-map .infos .info-cnt .bg-info p {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(19 * var(--scale-factor));
  font-weight: 500;
  line-height: calc(27 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  min-height: calc(189 * var(--scale-factor));
  margin-left: calc(36 * var(--scale-factor));
  max-width: calc(402 * var(--scale-factor));
}

.map-section .content-map .infos .info-cnt .bg-info p span {
  display: inline-block;
  margin-right: 5px;
}

.map-section .content-map .infos .info-cnt .bg-info p.temoin {
  font-family: Roboto;
  font-size: calc(19 * var(--scale-factor));
  font-weight: 500;
  line-height: calc(26 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  color: #ffffff;
  margin-top: 0;
  min-height: -moz-fit-content;
  min-height: fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.map-section .content-map .infos .info-cnt .bg-info p.temoin span {
  color: #00aeef;
  display: block;
}

.map-section .content-map .infos .info-cnt .bg-info p img {
  width: calc(43 * var(--scale-factor));
  height: auto;
}

.map-section .content-map .infos .info-cnt .text {
  background: rgb(0, 174, 239);
  width: calc(666 * var(--scale-factor));
  height: calc(440 * var(--scale-factor));
  position: relative;
  display: flex;
  flex-direction: column;
}

.map-section .content-map .infos .info-cnt .text p {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(20 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(28 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  padding: calc(19 * var(--scale-factor)) calc(38 * var(--scale-factor))
    calc(20 * var(--scale-factor)) calc(38 * var(--scale-factor));
  align-items: calc(466 * var(--scale-factor));
  height: calc(100% - 80 * var(--scale-factor));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.map-section .content-map .infos .info-cnt .donate-pr-button {
  position: absolute;
  bottom: calc(18 * var(--scale-factor));
}

.map-section
  .content-map
  .infos
  .info-cnt[data-country="Soudan"]
  .bg-info
  p:not(.temoin) {
  max-width: calc(365 * var(--scale-factor));
}

.map-section
  .content-map
  .infos
  .info-cnt[data-country="gaza"]
  .bg-info
  p:not(.temoin) {
  max-width: calc(295 * var(--scale-factor));
}

.map-section
  .content-map
  .infos
  .info-cnt[data-country="haiti"]
  .bg-info
  p:not(.temoin) {
  max-width: calc(325 * var(--scale-factor));
}

.map-section
  .content-map
  .infos
  .info-cnt[data-country="bresil"]
  .bg-info
  p:not(.temoin) {
  max-width: calc(325 * var(--scale-factor));
}

.map-section
  .content-map
  .infos
  .info-cnt[data-country="vietnam"]
  .bg-info
  p:not(.temoin) {
  max-width: calc(338 * var(--scale-factor));
}

.map-section
  .content-map
  .infos
  .info-cnt[data-country="RDC"]
  .bg-info
  p:not(.temoin) {
  max-width: calc(325 * var(--scale-factor));
}

.map-section
  .content-map
  .infos
  .info-cnt[data-country="myanmar"]
  .bg-info
  p:not(.temoin) {
  max-width: calc(325 * var(--scale-factor));
}

.map-section
  .content-map
  .infos
  .info-cnt[data-country="afghanistan"]
  .bg-info
  p:not(.temoin) {
  max-width: calc(400 * var(--scale-factor));
}

.map-section .content-map .map {
  background-color: #f2f2f2;
  width: calc(943 * var(--scale-factor));
  height: calc(882 * var(--scale-factor));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}

.map-section .content-map .map .images-map {
  margin-top: calc(149 * var(--scale-factor));
  margin-left: auto;
  margin-right: auto;
  width: calc(900.69 * var(--scale-factor));
}

.map-section .content-map .map p {
  color: rgb(0, 0, 0);
  font-family: Badhouse;
  font-size: calc(40 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(52 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.map-section .content-map .map .pins-down {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4 * var(--scale-factor));
  padding: 0 calc(20 * var(--scale-factor));
  margin: 0 auto;
}

.map-section .content-map .map .pind {
  display: flex;
  align-items: center;
}

.map-section .content-map .map .pind .pin {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.map-section .content-map .map .pind .pin img {
  width: calc(116.04 * var(--scale-factor));
  height: calc(122.51 * var(--scale-factor));
}

.map-section .content-map .map .pind .pin span {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(20 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(34 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 26%;
  transform: translateX(-50%);
}

.map-section .content-map .map .pind p {
  color: rgb(0, 0, 0);
  font-family: Badhouse;
  font-size: calc(26 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(34 * var(--scale-factor));
  letter-spacing: 0px;
  white-space: nowrap;
  text-align: left;
  text-transform: uppercase;
  margin-left: calc(-44 * var(--scale-factor));
}

.map-section .content-map .marker {
  position: absolute;
  opacity: 0;
}

.map-section .content-map .marker.drop-animated {
  animation: dropIn 0.6s ease-out forwards;
}

.map-section .content-map .marker.m-1 {
  top: calc(298 * var(--scale-factor));
  left: calc(178 * var(--scale-factor));
  animation-delay: 0.1s;
}

.map-section .content-map .marker.m-2 {
  top: calc(112 * var(--scale-factor));
  left: calc(445 * var(--scale-factor));
  animation-delay: 0.2s;
}

.map-section .content-map .marker.m-3 {
  top: calc(168 * var(--scale-factor));
  left: calc(463 * var(--scale-factor));
  animation-delay: 0.3s;
}

.map-section .content-map .marker.m-4 {
  top: calc(218 * var(--scale-factor));
  left: calc(558 * var(--scale-factor));
  animation-delay: 0.4s;
}

.map-section .content-map .marker.bleu {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.map-section .content-map .marker.bleu:hover {
  transform: scale(1.05);
}

.map-section .content-map .marker.bleu .pind .pin img {
  width: calc(94 * var(--scale-factor));
  height: calc(99 * var(--scale-factor));
}

.map-section .content-map .marker.bleu p {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(20 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(28 * var(--scale-factor));
  letter-spacing: 0px;
  white-space: nowrap;
  display: flex;
  text-align: center;
  text-transform: uppercase;
  margin-left: calc(-44 * var(--scale-factor));
  justify-content: center;
  align-items: center;
  padding: calc(2 * var(--scale-factor)) calc(22 * var(--scale-factor));
  background-image: url(../assets/icons/red-trace.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: calc(-80 * var(--scale-factor));
  margin-top: calc(18 * var(--scale-factor));
}

.map-section .content-map .marker.bleu p.active {
  background-image: url(../assets/icons/black-trace.png);
}

.map-section .content-map .marker.bleu.mb-1 {
  top: calc(279 * var(--scale-factor));
  left: calc(527 * var(--scale-factor));
  animation-delay: 0.5s;
}

.map-section .content-map .marker.bleu.mb-2 {
  top: calc(206 * var(--scale-factor));
  left: calc(514 * var(--scale-factor));
  animation-delay: 0.6s;
}

.map-section .content-map .marker.bleu.mb-2 p {
  position: absolute;
  left: calc(13 * var(--scale-factor));
  margin-top: calc(21 * var(--scale-factor));
}

.map-section .content-map .marker.bleu.mb-3 {
  top: calc(276 * var(--scale-factor));
  left: calc(210 * var(--scale-factor));
  animation-delay: 0.7s;
}

.map-section .content-map .marker.bleu.mb-4 {
  top: calc(369 * var(--scale-factor));
  left: calc(256 * var(--scale-factor));
  animation-delay: 0.8s;
}

.map-section .content-map .marker.bleu.mb-5 {
  top: calc(291 * var(--scale-factor));
  left: calc(724 * var(--scale-factor));
  animation-delay: 0.9s;
}

.map-section .content-map .marker.bleu.mb-6 {
  top: calc(163 * var(--scale-factor));
  left: calc(608 * var(--scale-factor));
  animation-delay: 1s;
}

.map-section .content-map .marker.bleu.mb-7 {
  top: calc(254 * var(--scale-factor));
  left: calc(695 * var(--scale-factor));
}

.map-section .content-map .marker.bleu.mb-7 p {
  position: absolute;
  left: calc(13 * var(--scale-factor));
  margin-top: calc(21 * var(--scale-factor));
}

.map-section .content-map .marker.bleu.mb-8 {
  top: calc(320 * var(--scale-factor));
  left: calc(460 * var(--scale-factor));
  animation-delay: 1.2s;
}

.map-section .content-map .marker.bleu.mb-8 p {
  position: absolute;
  left: calc(13 * var(--scale-factor));
  margin-top: calc(21 * var(--scale-factor));
}

@media (max-width: 600px) {
  .map-section .content-map {
    flex-direction: column-reverse;
  }

  .map-section .content-map .infos {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .map-section .content-map .infos .info-cnt {
    width: 100%;
    background: #02afef;
  }

  .map-section .content-map .infos .info-cnt .donate-pr-button {
    position: relative;
    bottom: unset;
  }

  .map-section .content-map .infos .info-cnt .donate-pr-button a {
    padding: 10px;
    padding-right: 25px;
    height: auto;
  }

  .map-section .content-map .infos .info-cnt .bg-info {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    padding-top: 0;
  }

  .map-section .content-map .infos .info-cnt .bg-info .text-cnt-tem {
    position: absolute;
    height: 86%;
    top: 20px;
    left: 23px;
    justify-content: space-between;
  }

  .map-section .content-map .infos .info-cnt .bg-info img.bg {
    position: relative;
  }

  .map-section .content-map .infos .info-cnt .bg-info h3 {
    display: none;
  }

  .map-section .content-map .infos .info-cnt .bg-info p {
    color: rgb(255, 255, 255);
    font-family: Roboto;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0px;
    text-align: left;
    width: 60%;
    height: -moz-max-content;
    height: max-content;
    max-width: unset !important;
  }

  .map-section .content-map .infos .info-cnt .bg-info p.temoin {
    font-size: 13px;
    line-height: 17px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .map-section .content-map .infos .info-cnt .bg-info p br {
    display: none;
  }

  .map-section .content-map .infos .info-cnt .bg-info p img {
    width: calc(100 * var(--scale-factor));
    height: auto;
    margin-right: 10px;
  }

  .map-section .content-map .infos .info-cnt .text {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 30px;
  }

  .map-section .content-map .infos .info-cnt .text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
    padding: 20px;
  }

  .map-section
    .content-map
    .infos
    .info-cnt[data-country="gaza"]
    .bg-info
    p:not(.temoin) {
    max-width: 165px !important;
    width: 100% !important;
  }

  .map-section
    .content-map
    .infos
    .info-cnt[data-country="haiti"]
    .bg-info
    p:not(.temoin) {
    max-width: 185px !important;
    width: 100% !important;
  }

  .map-section
    .content-map
    .infos
    .info-cnt[data-country="bresil"]
    .bg-info
    p:not(.temoin) {
    max-width: 232px !important;
    width: 100% !important;
  }

  .map-section
    .content-map
    .infos
    .info-cnt[data-country="vietnam"]
    .bg-info
    p:not(.temoin) {
    max-width: 220px !important;
    width: 100% !important;
  }

  .map-section
    .content-map
    .infos
    .info-cnt[data-country="RDC"]
    .bg-info
    p:not(.temoin) {
    max-width: 190px !important;
    width: 100% !important;
    font-size: 12px !important;
  }

  .map-section
    .content-map
    .infos
    .info-cnt[data-country="myanmar"]
    .bg-info
    p:not(.temoin) {
    max-width: 190px !important;
    width: 100% !important;
  }

  .map-section
    .content-map
    .infos
    .info-cnt[data-country="afghanistan"]
    .bg-info
    p:not(.temoin) {
    max-width: 232px !important;
    width: 100% !important;
  }

  .map-section .content-map .map {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .map-section .content-map .map .pins-down {
    display: flex;
    margin: 20px auto;
    align-items: center;
    justify-content: center;
    gap: calc(4 * var(--scale-factor));
    padding: 0 calc(20 * var(--scale-factor));
  }

  .map-section .content-map .map .pins-down .pind p {
    color: rgb(0, 0, 0);
    font-family: Badhouse;
    font-size: 14px;
    font-weight: 700;
    line-height: calc(34 * var(--scale-factor));
    letter-spacing: 0px;
    white-space: nowrap;
    text-align: left;
    text-transform: uppercase;
    margin-left: calc(-170 * var(--scale-factor));
  }

  .map-section .content-map .map .pind .pin img {
    width: calc(334 * var(--scale-factor));
    height: auto;
  }

  .map-section .content-map .map .pind .pin span {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: calc(90 * var(--scale-factor));
    font-weight: 700;
    line-height: calc(90 * var(--scale-factor));
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 26%;
    transform: translateX(-50%);
  }

  .map-section .content-map .map p {
    color: rgb(0, 0, 0);
    font-family: Badhouse;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
  }

  .map-section .content-map .map .images-map {
    width: 125%;
    height: auto;
    position: relative;
    left: 43%;
    transform: translateX(-50%);
  }

  .map-section .content-map .marker {
    position: absolute;
    opacity: 0;
  }

  .map-section .content-map .marker.drop-animated {
    animation: dropIn 0.6s ease-out forwards;
  }

  .map-section .content-map .marker.m-1 {
    top: calc(620 * var(--scale-factor));
    left: calc(-21 * var(--scale-factor));
    animation-delay: 0.1s;
  }

  .map-section .content-map .marker.m-2 {
    top: calc(192 * var(--scale-factor));
    left: calc(715 * var(--scale-factor));
    animation-delay: 0.2s;
  }

  .map-section .content-map .marker.m-3 {
    top: calc(298 * var(--scale-factor));
    left: calc(793 * var(--scale-factor));
    animation-delay: 0.3s;
  }

  .map-section .content-map .marker.m-4 {
    top: calc(398 * var(--scale-factor));
    left: calc(1148 * var(--scale-factor));
    animation-delay: 0.4s;
  }

  .map-section .content-map .marker.bleu .pind .pin img {
    width: calc(278 * var(--scale-factor));
    height: auto;
  }

  .map-section .content-map .marker.bleu p {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: calc(61 * var(--scale-factor));
    font-weight: 700;
    line-height: calc(90 * var(--scale-factor));
    letter-spacing: 0px;
    white-space: nowrap;
    display: flex;
    text-align: center;
    text-transform: uppercase;
    margin-left: calc(-44 * var(--scale-factor));
    justify-content: center;
    align-items: center;
    padding: calc(2 * var(--scale-factor)) calc(22 * var(--scale-factor));
    background-image: url(../assets/icons/red-trace.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: calc(-230 * var(--scale-factor));
    margin-top: calc(52 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu p.active {
    background-image: url(../assets/icons/black-trace.png);
  }

  .map-section .content-map .marker.bleu.mb-1 {
    top: calc(573 * var(--scale-factor));
    left: calc(927 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-2 {
    top: calc(386 * var(--scale-factor));
    left: calc(944 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-2 p {
    position: absolute;
    left: calc(13 * var(--scale-factor));
    margin-top: calc(21 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-3 {
    top: calc(550 * var(--scale-factor));
    left: calc(80 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-4 {
    top: calc(809 * var(--scale-factor));
    left: calc(216 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-5 {
    top: calc(599 * var(--scale-factor));
    left: calc(1440 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-6 {
    top: calc(285 * var(--scale-factor));
    left: calc(1238 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-7 {
    top: calc(524 * var(--scale-factor));
    left: calc(1365 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-7 p {
    position: absolute;
    left: calc(49 * var(--scale-factor));
    margin-top: calc(37 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-8 {
    top: calc(670 * var(--scale-factor));
    left: calc(760 * var(--scale-factor));
  }

  .map-section .content-map .marker.bleu.mb-8 p {
    position: absolute;
    left: calc(13 * var(--scale-factor));
    margin-top: calc(21 * var(--scale-factor));
  }

  .map-section .tabs .arrow {
    margin: 0 21px;
  }

  .map-section .tabs .countries {
    max-width: 68%;
    width: 260px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 50px;
    -ms-overflow-style: none;
  }

  .map-section .tabs .countries::-webkit-scrollbar {
    display: none;
  }

  .map-section .tabs .tab {
    min-width: 260px;
    height: 58px;
    display: flex;
    align-items: center;
    gap: calc(20 * var(--scale-factor));
    justify-content: space-evenly;
  }

  .map-section .tabs .tab span {
    font-family: Badhouse;
    font-size: 23px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
  }

  .map-section .tabs .tab.active img {
    width: 55px;
    height: auto;
    display: block;
  }
}

@media (max-width: 475px) {
  .map-section
    .content-map
    .infos
    .info-cnt[data-country="RDC"]
    .bg-info
    p:not(.temoin) {
    max-width: 190px !important;
    font-size: 11px !important;
  }

  .map-section .content-map .infos .info-cnt .bg-info p {
    font-size: 11px !important;
  }
}

@media (max-width: 600px) {
  .map-section {
    position: relative;
  }

  .map-section h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    width: 96%;
  }
}

.details-section {
  margin-top: calc(70 * var(--scale-factor));
  position: relative;
}

.details-section .details-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.details-section .details-image img {
  width: 100%;
  height: auto;
}

.details-section .details-content {
  position: relative;
  z-index: 1;
  width: calc(1635 * var(--scale-factor));
  top: calc(58 * var(--scale-factor));
  left: 50%;
  transform: translateX(-50%);
}

.details-section .details-content h2 {
  color: var(--color-white);
  font-family: Badhouse;
  font-size: calc(70 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(80 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
  width: calc(695 * var(--scale-factor));
}

.details-section .details-content .steps {
  display: flex;
  flex-direction: row;
  gap: calc(40 * var(--scale-factor));
  justify-content: space-between;
  margin: calc(206 * var(--scale-factor)) auto 0 auto;
  position: relative;
}

.details-section .details-content .steps::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  border-top: calc(7 * var(--scale-factor)) dashed #e22419;
  width: 50%;
  top: calc(32 * var(--scale-factor));
  z-index: -1;
  border-top-style: dashed;
  left: 50%;
  transform: translateX(-50%);
}

.details-section .details-content .steps .step {
  display: flex;
  background-size: 100%;
  background-repeat: round;
  margin: 0 calc(135 * var(--scale-factor));
  position: relative;
}

.details-section .details-content .steps .step.step-cnt-1 {
  padding: calc(10 * var(--scale-factor)) calc(51 * var(--scale-factor))
    calc(10 * var(--scale-factor)) calc(30 * var(--scale-factor));
  background-image: url(../assets/images/btn-fl.png);
}

.details-section .details-content .steps .step.step-cnt-1::after {
  content: "";
  display: block;
  clear: both;
  background-image: url(../assets/icons/fleshr.png);
  background-size: 100%;
  width: calc(76.6 * var(--scale-factor));
  height: calc(98.96 * var(--scale-factor));
  position: absolute;
  left: calc(-90 * var(--scale-factor));
  bottom: -150%;
}

.details-section .details-content .steps .step.step-cnt-2 {
  padding: calc(10 * var(--scale-factor)) calc(51 * var(--scale-factor))
    calc(10 * var(--scale-factor)) calc(30 * var(--scale-factor));
  background-image: url(../assets/images/backwordflesh.png);
}

.details-section .details-content .steps .step.step-cnt-2::after {
  content: "";
  display: block;
  clear: both;
  background-image: url(../assets/icons/flesh.png);
  background-size: 100%;
  width: calc(76.6 * var(--scale-factor));
  height: calc(98.96 * var(--scale-factor));
  position: absolute;
  right: calc(-90 * var(--scale-factor));
  bottom: -150%;
}

.details-section .details-content .steps .step .title h4 {
  color: var(--color-white);
  font-family: Badhouse;
  font-size: calc(40 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(52 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.details-section .details-content .steps .step-cnt-bloc.first {
  margin-top: calc(185 * var(--scale-factor));
}

.details-section .details-content .steps .step-cnt-bloc.right-after .title {
  position: relative;
}

.details-section
  .details-content
  .steps
  .step-cnt-bloc.right-after
  .title::after {
  content: "";
  display: block;
  clear: both;
  background-image: url(../assets/icons/flesh.png);
  background-size: 100%;
  width: calc(76.6 * var(--scale-factor));
  height: calc(98.96 * var(--scale-factor));
  position: absolute;
  right: 0;
  bottom: calc(-170 * var(--scale-factor));
}

.details-section .details-content .steps .step-cnt-bloc.left-after .title {
  position: relative;
}

.details-section
  .details-content
  .steps
  .step-cnt-bloc.left-after
  .title::after {
  content: "";
  display: block;
  clear: both;
  background-image: url(../assets/icons/fleshr.png);
  background-size: 100%;
  width: calc(76.6 * var(--scale-factor));
  height: calc(98.96 * var(--scale-factor));
  position: absolute;
  left: 0;
  bottom: calc(-170 * var(--scale-factor));
}

.details-section .details-content .steps .step-cnt-bloc .title {
  display: flex;
  align-items: center;
  gap: 0;
}

.details-section .details-content .steps .step-cnt-bloc .title.right {
  justify-content: flex-start;
  flex-direction: row-reverse;
  text-align: right;
}

.details-section .details-content .steps .step-cnt-bloc .title.right h4 {
  margin-right: calc(-10 * var(--scale-factor));
  margin-left: calc(3 * var(--scale-factor));
}

.details-section .details-content .steps .step-cnt-bloc .title.left {
  justify-content: flex-start;
}

.details-section .details-content .steps .step-cnt-bloc .title.left h4 {
  margin-right: calc(3 * var(--scale-factor));
  margin-left: calc(-10 * var(--scale-factor));
}

.details-section .details-content .steps .step-cnt-bloc .title .icon {
  width: calc(144 * var(--scale-factor));
  height: calc(144 * var(--scale-factor));
}

.details-section .details-content .item-s {
  max-width: 100%;
}

.details-section .details-content .steps .step-cnt-bloc .title .icon img {
  width: 100%;
  height: 100%;
}

.details-section .details-content .steps .step-cnt-bloc .title h4 {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(43 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(56 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  background: var(--color-blue);
  height: calc(70 * var(--scale-factor));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 calc(16 * var(--scale-factor));
  white-space: nowrap;
}

.details-section .details-content .steps .step-cnt-bloc .title span {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(40 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(52 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  background: #e22419;
  width: calc(68 * var(--scale-factor));
  height: calc(70 * var(--scale-factor));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.details-section .details-content .steps .step-cnt-bloc .parag {
  margin-top: calc(68 * var(--scale-factor));
  display: flex;
  margin-bottom: calc(68 * var(--scale-factor));
}

.details-section .details-content .steps .step-cnt-bloc .parag.left {
  margin-left: calc(126 * var(--scale-factor));
}

.details-section .details-content .steps .step-cnt-bloc .parag.right {
  justify-content: end;
  margin-right: calc(126 * var(--scale-factor));
}

.details-section .details-content .steps .step-cnt-bloc .parag p {
  color: var(--color-black);
  font-family: Roboto;
  font-size: calc(26 * var(--scale-factor));
  line-height: calc(34 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  width: 90%;
}

@media (max-width: 600px) {
  .details-section .details-content {
    width: 100%;
    top: calc(200 * var(--scale-factor));
  }

  .details-section .details-content h2 {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    width: 60%;
    margin: 15px;
  }

  .details-section .details-content .steps {
    flex-direction: column;
    align-items: flex-start;
    width: 95%;
    margin-top: 120px;
  }

  .details-section .details-content .steps::after {
    display: none;
  }

  .details-section .details-content .steps::before {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    border-left: 4px dashed #e22416;
    height: 95%;
    left: 31px;
    top: 0;
    z-index: -1;
  }

  .details-section .details-content .steps .step.step-cnt-1 {
    padding: 4px 18px;
  }

  .details-section .details-content .steps .step.step-cnt-1::after {
    content: "";
    display: block;
    clear: both;
    background-image: url(../assets/icons/flesh.png);
    background-size: 100%;
    position: absolute;
    right: 0;
    bottom: -150%;
    width: 45.94px;
    left: unset;
    height: 59.35px;
  }

  .details-section .details-content .steps .step.step-cnt-2 {
    padding: 6px 18px;
    margin-left: 17px;
  }

  .details-section .details-content .steps .step.step-cnt-2::after {
    content: "";
    display: block;
    clear: both;
    background-image: url(../assets/icons/flesh.png);
    background-size: 100%;
    position: absolute;
    right: 0;
    bottom: -150%;
    width: 45.94px;
    height: 59.35px;
  }

  .details-section .details-content .steps .step .title h4 {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
  }

  .details-section .details-content .steps .step-cnt-bloc {
    margin-bottom: 70px;
  }

  .details-section .details-content .steps .step-cnt-bloc.first {
    margin-top: 60px;
  }

  .details-section .details-content .steps .step-cnt-bloc .title .icon {
    width: 86px;
    height: 86px;
  }

  .details-section .details-content .steps .step-cnt-bloc .title h4 {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: 22px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
    padding: 0 30px;
    margin: 0 3px 0 -5px !important;
    min-width: 280px;
  }

  .details-section .details-content .steps .step-cnt-bloc .title span {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: 22px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: left;
    width: 40px;
    height: 40px;
    text-transform: uppercase;
  }

  .details-section .details-content .steps .step-cnt-bloc .title.right {
    flex-direction: row;
  }

  .details-section .details-content .steps .step-cnt-bloc .title.right .parag {
    justify-content: flex-start;
    margin: 0;
  }

  .details-section .details-content .steps .step-cnt-bloc .parag p {
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 15px;
    font-weight: undefined;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left !important;
    padding-left: 20px;
  }

  .details-section
    .details-content
    .steps
    .step-cnt-bloc.right-after
    .title::after {
    content: "";
    display: block;
    clear: both;
    background-image: url(../assets/icons/flesh.png);
    background-size: 100%;
    position: absolute;
    right: 20px;
    bottom: calc(-695 * var(--scale-factor));
    width: 45.94px;
    height: 59.35px;
  }

  .details-section
    .details-content
    .steps
    .step-cnt-bloc.left-after
    .title::after {
    content: "";
    display: block;
    clear: both;
    background-image: url(../assets/icons/flesh.png);
    background-size: 100%;
    position: absolute;
    right: 20px;
    bottom: calc(-695 * var(--scale-factor));
    width: 45.94px;
    height: 59.35px;
    left: unset;
  }
}

@media (max-width: 400px) {
  .details-section
    .details-content
    .steps
    .step-cnt-bloc.right-after
    .title::after {
    bottom: calc(-845 * var(--scale-factor));
  }

  .details-section .details-content .steps .step-cnt-bloc .title h4 {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
    padding: 0 11px;
    margin: 0 3px 0 -5px !important;
    min-width: 200px;
  }
}

.profile-section {
  background-color: #f2f2f2;
  position: relative;
  margin-top: calc(180 * var(--scale-factor));
}

.profile-section .donate-pr-button {
  right: 0;
  z-index: 10000;
  bottom: calc(-41 * var(--scale-factor));
  top: unset;
}
.profile-section .donate-pr-button a {
  margin-top: 0;
}

.profile-section .container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(50 * var(--scale-factor));
  padding: 0;
}

.profile-section .container .prof-avatar {
  width: calc(459 * var(--scale-factor));
  height: calc(450 * var(--scale-factor));
  background: #02afef;
  display: flex;
  flex-direction: column;
  gap: calc(41 * var(--scale-factor));
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.profile-section .container .prof-avatar img {
  width: calc(354 * var(--scale-factor));
  height: calc(354 * var(--scale-factor));
}

.profile-section .container .prof-avatar span {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(30 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(40 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
  display: block;
}

.profile-section .container .prof-text {
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: calc(25 * var(--scale-factor));
  flex-direction: column;
}

.profile-section .container .prof-text img {
  width: calc(74 * var(--scale-factor));
  height: auto;
}

.profile-section .container .prof-text p {
  color: rgb(0, 0, 0);
  font-family: Roboto;
  font-size: calc(26 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(38 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}
.profile-section .container .prof-text .prof-parag-text p.name-prof {
  color: rgba(0, 174, 239, 1);
  font-family: Roboto;
  font-size: calc(30 * var(--scale-factor));
  font-weight: 500;
  line-height: calc(40 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: right;
  margin-top: 0;
  padding-top: 0;
}

@media (max-width: 600px) {
  .profile-section {
    margin-top: 180px;
  }

  .profile-section .donate-pr-button {
           position: relative;
        right: unset;
        align-self: flex-end;
        margin-bottom: 15px;
        bottom: unset;
  }

  .profile-section .container {
    flex-direction: column;
    padding-top: 0;
    max-width: 100%;
  }

  .profile-section .container .prof-avatar {
    width: 100%;
    display: unset;
    height: unset;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: unset;
  }

  .profile-section .container .prof-avatar img {
    width: 146px;
    height: auto;
    position: relative;
    margin: 0;
  }

  .profile-section .container .prof-avatar span {
    color: rgb(255, 255, 255);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0px;
    text-align: center;
  }

  .profile-section .container .prof-text {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(20 * var(--scale-factor));
    padding-bottom: 20px;
    flex-direction: column;
  }

  .profile-section .container .prof-text img {
    width: 54.67px;
    height: auto;
    margin-left: 20px;
  }

  .profile-section .container .prof-text p {
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    width: 85%;
    margin: 0 auto;
  }
  .profile-section .container .prof-text .prof-parag-text p.name-prof {
    width: 98%;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
  margin-top: 15px;

  }
}

.final-section {
  margin-top: calc(100 * var(--scale-factor));
  position: relative;
  line-height: 0;
}

.final-section .bg {
  width: 100%;
  height: auto;
  z-index: -1;
}

.final-section .container {
  position: absolute;
  top: calc(51 * var(--scale-factor));
  left: calc(141 * var(--scale-factor));
  width: 44%;
}

.final-section .container h2 {
  color: rgb(0, 174, 239);
  font-family: Roboto;
  font-size: calc(30 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(35 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}

.final-section .container p {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(24 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(34 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  margin-top: calc(20 * var(--scale-factor));
}

.final-section .container .numbers {
  display: flex;
  gap: calc(33 * var(--scale-factor));
  margin-top: calc(40 * var(--scale-factor));
  flex-direction: column;
}

.final-section .container .numbers .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: calc(30 * var(--scale-factor));
}

.final-section .container .numbers .item .icon img {
  width: calc(55 * var(--scale-factor));
  height: auto;
}

.final-section .container .numbers .item .number-text span {
  color: rgb(0, 174, 239);
  font-family: Roboto;
  font-size: calc(50 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(59 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}

.final-section .container .numbers .item .number-text p {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(20 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(27 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  width: calc(446 * var(--scale-factor));
}

@media (max-width: 600px) {
  .final-section .container {
    width: 84%;
    position: relative;
    left: unset;
    top: unset;
    margin-top: 22px;
  }

  .final-section .container h2 {
    position: absolute;
    top: calc(-750 * var(--scale-factor));
    left: calc(-34 * var(--scale-factor));
    width: 50%;
    color: rgb(0, 174, 239);
    font-family: Roboto;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: left;
  }

  .final-section .container p {
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
  }

  .final-section .container .numbers {
    display: flex;
    gap: calc(50 * var(--scale-factor));
    margin-top: 40px;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .final-section .container .numbers .item .icon img {
    width: calc(155 * var(--scale-factor));
    height: auto;
    margin-right: 10px;
  }

  .final-section .container .numbers .item .number-text span {
    color: rgb(0, 174, 239);
    font-family: Roboto;
    font-size: 35px;
    font-weight: 700;
    line-height: 41px;
    letter-spacing: 0px;
    text-align: left;
  }

  .final-section .container .numbers .item .number-text p {
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
    width: unset;
  }
}

footer {
  background: rgb(0, 174, 239);
  padding-bottom: 110px;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .container .footer-logo {
  width: calc(250 * var(--scale-factor));
  height: auto;
}

footer .container .links {
  color: var(--color-white);
}

footer .container .links a {
  color: var(--color-white);
  font-family: Roboto;
  font-size: calc(18 * var(--scale-factor));
  font-weight: 500;
  line-height: calc(21 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
  text-decoration: none;
}

footer .container .links .separateur {
  margin: 0 10px;
}

footer .container .copyright .links {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--scale-factor));
}

footer .container .copyright .links a {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(18 * var(--scale-factor));
  font-weight: 500;
  line-height: calc(21 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}

footer .footer-bottom {
  max-width: calc(1648 * var(--scale-factor));
  margin: 0 auto;
  padding: 0 calc(20 * var(--scale-factor) 0.0521vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-bottom: 20px;
}

footer .footer-bottom p {
  margin: unset !important;
  font-family: Roboto;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

footer .footer-bottom p a {
  color: #ffffff;
}

@media (max-width: 600px) {
  footer {
    padding-bottom: 0;
    margin-top: 60px;
  }

  footer .container {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    padding-bottom: 33px;
  }

  footer .container .footer-logo {
    width: 250px;
  }

  footer .container .links a {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0px;
    text-align: center;
  }

  footer .container .copyright .links {
    flex-direction: column;
    justify-content: center;
    gap: 9px;
  }
}

.banner-don {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: 100%;
  max-width: calc(1648 * var(--scale-factor));
  height: -moz-max-content;
  height: max-content;
  background-color: var(--color-blue);
  padding: calc(20 * var(--scale-factor));
  box-sizing: border-box;
}

.banner-don .banner-elm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-don .banner-elm .title {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(30 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(40 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-don .banner-elm label {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(35 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(41 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}

.banner-don .banner-elm .radio-group {
  display: flex;
  align-items: center;
  gap: calc(70 * var(--scale-factor));
}

.banner-don .banner-elm .radio-group .radio-item {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--scale-factor));
  align-items: flex-start;
  flex-direction: column;
}

.banner-don .banner-elm .radio-group .radio-item .input {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.banner-don .banner-elm .radio-group .radio-item input[type="radio"] {
  width: calc(20 * var(--scale-factor));
  height: calc(20 * var(--scale-factor));
  accent-color: none;
}

.banner-don .banner-elm .radio-group .radio-item input[type="radio"]:after {
  width: calc(20 * var(--scale-factor));
  height: calc(20 * var(--scale-factor));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  position: relative;
  background-color: #fff;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
  transform: translate(-50%, -50%);
}

.banner-don
  .banner-elm
  .radio-group
  .radio-item
  input[type="radio"]:checked:after {
  width: calc(15 * var(--scale-factor));
  height: calc(15 * var(--scale-factor));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  position: relative;
  background-color: rgb(226, 35, 26);
  content: "";
  display: inline-block;
  visibility: visible;
  border: 4px solid white;
}

.banner-don .banner-elm .radio-group .radio-item label {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(25 * var(--scale-factor));
  font-weight: 600;
  line-height: calc(29 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}

.banner-don .banner-elm .radio-group .radio-item p {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(14 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(18 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  display: block;
  width: calc(130 * var(--scale-factor));
  margin-left: calc(30 * var(--scale-factor));
}

.banner-don .banner-elm .radio-group .radio-item p span {
  background: var(--color-white);
  color: #e2231a;
  font-family: Roboto;
  font-size: calc(16 * var(--scale-factor));
  font-weight: 900;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
}

.banner-don .banner-elm .radio-group .custom-amount-item {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  border: 2px solid rgb(255, 255, 255);
  width: calc(225 * var(--scale-factor));
  height: calc(57 * var(--scale-factor));
  align-items: center;
  justify-content: center;
}

.banner-don .banner-elm .radio-group .custom-amount-item label {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(18 * var(--scale-factor));
  font-weight: 500;
  line-height: calc(21 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
}

.banner-don .banner-elm .radio-group .custom-amount-item .currency-symbol {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(18 * var(--scale-factor));
  font-weight: 500;
  line-height: calc(21 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
}

.banner-don .banner-elm .radio-group .custom-amount-item input[type="number"] {
  background: #02afef;
  color: #ffffff;
  border-bottom: 1px solid #fff;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  font-size: calc(16 * var(--scale-factor));
  max-width: calc(58 * var(--scale-factor));
  background: #02afef;
  color: #ffffff;
  outline: none;
  field-sizing: content;
  transition: all 0.3s ease;
  min-width: 15px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"] {
  appearance: none;
}

.banner-don .donate-pr-button {
  position: relative;
}

.banner-don .donate-pr-button .btn-donate {
  margin: 0;
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(25 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(33 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  padding: calc(12 * var(--scale-factor));
  background-repeat: no-repeat;
  padding-right: calc(42 * var(--scale-factor));
}

.banner-don .donate-pr-button .btn-donate img {
  width: calc(40 * var(--scale-factor));
  margin-right: calc(15 * var(--scale-factor));
  height: auto;
  margin-left: calc(15 * var(--scale-factor));
}

@media (max-width: 600px) {
  .banner-don {
    display: none;
  }
}

.now .container {
  margin-top: calc(100 * var(--scale-factor));
  position: relative;
  padding: 0;
}

.now .container .bg img {
  width: 100%;
  height: auto;
}

.now .infos-now {
  position: absolute;
  top: 0;
  left: 0;
}

.now .infos-now .desc {
  margin-top: calc(81 * var(--scale-factor));
  margin-left: calc(90 * var(--scale-factor));
  width: 50%;
}

.now .infos-now .red-bloc {
  background: rgb(226, 35, 26);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(702 * var(--scale-factor));
  height: auto;
  padding: calc(15 * var(--scale-factor)) calc(40 * var(--scale-factor));
  gap: calc(20 * var(--scale-factor));
}

.now .infos-now .red-bloc h3 {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(100 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(131 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
}

.now .infos-now .red-bloc p {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(26 * var(--scale-factor));
  font-weight: 400;
  line-height: calc(34 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}

.now .parag-now {
  margin-top: calc(40 * var(--scale-factor));
}

.now .parag-now p {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(26 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(38 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: left;
}

.now .bagd-bleu {
  background: rgb(0, 174, 239);
  width: calc(262 * var(--scale-factor));
  height: calc(262 * var(--scale-factor));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: calc(57 * var(--scale-factor));
  right: calc(84 * var(--scale-factor));
}

.now .bagd-bleu .cnt-bagd p {
  color: rgb(255, 255, 255);
  font-family: Badhouse;
  font-size: calc(42 * var(--scale-factor));
  font-weight: 600;
  line-height: calc(50 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.now .bagd-bleu .cnt-bagd p span {
  color: rgb(255, 255, 255);
  font-family: Roboto;
  font-size: calc(22 * var(--scale-factor));
  font-weight: 700;
  line-height: calc(32 * var(--scale-factor));
  letter-spacing: 0px;
  text-align: center;
  display: flex;
  text-transform: uppercase;
  font-weight: 400;
}

@media (max-width: 600px) {
  .now .container {
    margin-top: 50px;
    max-width: 100%;
  }

  .now .infos-now {
    position: relative;
  }

  .now .infos-now .desc {
    width: 85%;
    margin: 20px auto;
  }

  .now .infos-now .desc .red-bloc {
    flex-direction: column;
    width: 100%;
    padding: 24px;
  }

  .now .infos-now .desc .red-bloc h3 {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: 71px;
    font-weight: 700;
    line-height: 93px;
    letter-spacing: 0px;
    text-align: center;
  }

  .now .infos-now .desc .red-bloc p {
    color: rgb(255, 255, 255);
    font-family: Badhouse;
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: center;
  }

  .now .infos-now .desc .parag-now {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .now .infos-now .desc .parag-now p {
    color: rgb(0, 0, 0);
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
  }

  .now .bagd-bleu {
    width: calc(550 * var(--scale-factor));
    height: calc(550 * var(--scale-factor));
    right: unset;
    left: calc(55 * var(--scale-factor));
    top: calc(55 * var(--scale-factor));
  }

  .now .bagd-bleu .cnt-bagd p {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    gap: 2px;
  }

  .now .bagd-bleu .cnt-bagd p span {
    font-size: calc(55 * var(--scale-factor));
    line-height: calc(60 * var(--scale-factor));
  }
}

@media (min-width: 601px) {
  .map-section .content-map {
    margin-top: calc(36 * var(--scale-factor));
  }

  .map-section .content-map .map {
    height: calc(792 * var(--scale-factor));
  }

  .map-section .content-map .map .images-map {
    margin-top: calc(109 * var(--scale-factor));
  }

  .map-section .content-map .infos .info-cnt .text {
    background: rgb(0, 174, 239);
    width: calc(666 * var(--scale-factor));
    height: calc(340 * var(--scale-factor));
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 0 11px 0;
  }

  .map-section .content-map .infos .info-cnt .text p {
    max-height: calc(248 * var(--scale-factor));
    overflow-y: auto;
    justify-content: flex-start;
  }

  .map-section .content-map .infos .info-cnt .donate-pr-button {
    bottom: unset;
    margin-top: 0;
  }
}

@media screen and (min-width: 600px) and (max-height: 650px) {
  .slider-section .slider .slide-content .slide-text h1 {
    font-size: calc(75 * var(--scale-factor));
    line-height: calc(85 * var(--scale-factor));
  }

  .slider-section .slider .slide-content .slide-text {
    top: 43%;
  }
}

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