@charset "UTF-8";
@import "grid-reset.css";
@import "plugins.css";
/*======================
Common
======================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
*,
*::after,
*::before,
input {
  font-family: "Poppins", Arial;
}

main {
  display: flex;
  flex-direction: column;
}

.blockTitleM,
.section-title h2 {
  position: relative;
  color: #4d4d4d;
  font-size: 36px !important;
  font-weight: 500;
  letter-spacing: -0.9px;
  line-height: 52px !important;
  padding-left: 60px;
  margin-bottom: 35px !important;
  text-wrap: balance;
}
.blockTitleM::before,
.section-title h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 45px;
  width: 38px;
  background: url("/images/yellowTitle.svg");
}

.primary-button {
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  padding: 20px 56px 20px 20px;
  display: inline-block;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(244, 74, 17, 0.35);
  background-color: #f1592a;
  border: solid 1px #f1592a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 21px;
  transition: ease-in-out 0.4s;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.primary-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 20px;
  height: 26px;
  width: 26px;
  border-radius: 50px;
  background: url("../../images/PPFL/rightarrow.svg") no-repeat center rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.primary-button:hover {
  background-color: transparent !important;
  color: #f1592a !important;
}
.primary-button:hover::after {
  background-color: #f1592a;
}
.primary-button.blueback:hover {
  color: #f1592a;
  border: 1px solid #f1592a;
  background-color: #ffffff;
}
.primary-button.blueback:hover:after {
  background: url("../../images/PPFL/rightarrow.svg") no-repeat center #f1592a;
}
.primary-button.before {
  padding: 20px 20px 20px 56px;
}
.primary-button.before:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  left: 20px;
  right: auto;
  height: 26px;
  width: 26px;
  border-radius: 50px;
  background: url("../../images/PPFL/rightarrow.svg") no-repeat center rgba(0, 0, 0, 0.15);
}

.dash {
  position: relative;
  padding-inline-start: 25px;
  margin-bottom: 16px;
  width: 100%;
  transition: linear 0.5s;
  color: #f1592a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 21px;
}
.dash::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  display: inline-block;
  height: 3px;
  width: 14px;
  background-color: #f1592a;
}
.dash:hover {
  color: #f1592a;
}

.page-banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 200px;
}
.page-banner .container .height-lock {
  position: relative;
  height: 400px;
}
.page-banner .container .height-lock .page-title {
  width: 100%;
  left: 0;
  position: absolute;
  top: calc(100% - 90px);
  background-color: #f1592a;
  color: #ffffff;
  padding: 40px;
  border-radius: 13px;
  padding-inline-start: 60px;
}
.page-banner .container .height-lock .page-title h1 {
  font-weight: 500;
}
.page-banner .container .height-lock .page-title h1 {
  font-size: 26px;
  line-height: 26px;
}
@media screen and (min-width: 320px) {
  .page-banner .container .height-lock .page-title h1 {
    font-size: calc(26px + 22 * (100vw - 320px) / 1601);
    line-height: calc(26px + 22 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .page-banner .container .height-lock .page-title h1 {
    font-size: 48px;
    line-height: 48px;
  }
}

.page-nav {
  margin-bottom: 25px;
}
@media screen and (min-width: 320px) {
  .page-nav {
    margin-bottom: calc(25px + 50 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .page-nav {
    margin-bottom: 75px;
  }
}
.page-nav .links-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  min-width: 50%;
  margin: auto;
}
.page-nav .links-holder li {
  flex: 1 1 50%;
  flex-grow: 1;
  max-width: 238px;
}
.page-nav .links-holder li .link {
  display: block;
  text-align: center;
  padding: 15px;
  color: #4d4d4d;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
  text-decoration: none;
  text-wrap: nowrap;
  transition: all 0.3s ease-in-out;
}
.page-nav .links-holder li .link.active {
  background-color: #f1592a;
  color: #ffffff;
}
.page-nav .links-holder li .link:hover {
  color: #ffffff;
  background-color: #f1592a;
  opacity: 0.5;
}
.page-nav .links-holder li:first-child .link {
  border-radius: 7px 0px 0 7px;
}
.page-nav .links-holder li:last-child .link {
  border-radius: 0px 7px 7px 0px;
}

.section-title {
  margin-bottom: 25px;
}
.section-title h2 {
  font-weight: 500;
  color: #4d4d4d;
}
.section-title h2 {
  font-size: 24px;
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .section-title h2 {
    font-size: calc(24px + 6 * (100vw - 320px) / 1601);
    line-height: calc(24px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .section-title h2 {
    font-size: 30px;
    line-height: 30px;
  }
}

main {
  min-height: calc(100vh - 158px);
}

.fancybox__container .fancybox__backdrop {
  transition: none;
  background-color: rgba(0, 0, 0, 0.4);
}
.fancybox__container .fancybox__content > .f-button.is-close-btn {
  top: 10px;
  right: auto;
  inset-inline-end: 10px;
}
.fancybox__container .f-button svg {
  stroke: black;
}

.normal-margin {
  margin-top: 50px !important;
}

.actdetails.normal-margin {
  margin-top: 50px !important;
}

/*======================
main navigation
======================*/
.header-active {
  overflow: hidden;
}

.desktop-main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
}
.desktop-main-navigation .logo-holder {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
}
.desktop-main-navigation .logo-holder img {
  width: 150px;
  height: auto;
  margin-inline-end: 35px;
}
.desktop-main-navigation .logo-holder h2 {
  color: #006fac;
  font-weight: 600;
  letter-spacing: -0.93px;
  line-height: 31px;
}
.desktop-main-navigation .logo-holder h2 {
  font-size: 16px;
  line-height: 16px;
}
@media screen and (min-width: 320px) {
  .desktop-main-navigation .logo-holder h2 {
    font-size: calc(16px + 8 * (100vw - 320px) / 1601);
    line-height: calc(16px + 8 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .desktop-main-navigation .logo-holder h2 {
    font-size: 24px;
    line-height: 24px;
  }
}
.desktop-main-navigation .navigation-menu .mainMenu {
  vertical-align: middle;
  display: inline-block;
  margin-inline-end: 60px;
}
.desktop-main-navigation .navigation-menu .mainMenu ul {
  vertical-align: middle;
  display: inline-block;
}
.desktop-main-navigation .navigation-menu .mainMenu ul li {
  display: inline-block;
  margin-inline-end: 45px;
}
.desktop-main-navigation .navigation-menu .mainMenu ul li a {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.desktop-main-navigation .navigation-menu .mainMenu ul li a::after {
  content: "";
  width: 0%;
  height: 4px;
  background-color: #0070ba;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.desktop-main-navigation .navigation-menu .mainMenu ul li a:hover {
  color: #0070ba;
}
.desktop-main-navigation .navigation-menu .mainMenu ul li a:hover::after {
  width: 100%;
}
.desktop-main-navigation .navigation-menu .mainMenu ul li.active a {
  color: #0070ba;
}
.desktop-main-navigation .navigation-menu .mainMenu ul li.active a::after {
  width: 100%;
}
.desktop-main-navigation .navigation-menu .mainMenu ul li:last-child {
  margin-inline-end: 0;
}

.mobile-main-navigation {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  overflow: hidden;
}
.mobile-main-navigation .logo-holder {
  width: 80px;
}
.mobile-main-navigation .logo-holder img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-main-navigation .logo-holder h2 {
  display: none;
}
.mobile-main-navigation .burger-holder {
  width: 35px;
  height: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.mobile-main-navigation .burger-holder .line {
  width: 100%;
  height: 3px;
  display: inline-block;
  background-color: #f1592a;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.mobile-main-navigation .burger-holder .line:nth-child(1) {
  transform: translateY(-5px);
}
.mobile-main-navigation .burger-holder .line:nth-child(3) {
  transform: translateY(5px);
}
.mobile-main-navigation .navigation-menu {
  background-color: #ffffff;
  width: 100vw;
  height: calc(100vh - 100px);
  position: fixed;
  top: 100px;
  left: 150vw;
  z-index: 10;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.mobile-main-navigation .navigation-menu .mainMenu {
  margin-bottom: 30px;
}
.mobile-main-navigation .navigation-menu .mainMenu ul li a {
  display: block;
  font-weight: 500;
  padding: 15px 0;
  font-size: 16px;
}
.mobile-main-navigation.active .burger-holder .line:nth-child(1) {
  transform: translateY(0px) rotate(45deg);
}
.mobile-main-navigation.active .burger-holder .line:nth-child(2) {
  opacity: 0;
}
.mobile-main-navigation.active .burger-holder .line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.mobile-main-navigation.active .navigation-menu {
  left: 0;
}

.footer {
  background-color: #0070ba;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer p {
  font-size: 12px;
  color: #ffffff;
  font-weight: 300;
}
.footer p a {
  font-weight: bold;
  text-decoration: underline;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.footer p a:hover {
  color: #f1592a;
}
.footer .last {
  text-align: end;
}

/*======================
Landing page
======================*/
.landing-path {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 5px;
  margin-bottom: 5px;
  height: 80%;
}
.landing-path .path {
  flex: 1 0 45%;
  min-width: 350px;
  position: relative;
}
.landing-path .path .path-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.landing-path .path .description {
  position: absolute;
  inset-inline-start: 25px;
  bottom: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  width: 30%;
}
.landing-path .path .description img {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
.landing-path .path .description p {
  width: 75%;
  color: #4d4d4d;
  font-size: 14px;
  margin-bottom: 15px;
}
.landing-path .path .description .video-play-button {
  position: absolute;
  display: flex;
  inset-inline-end: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  background-color: #f1592a;
  box-shadow: 0 1px 8px 0 rgba(244, 74, 17, 0.35);
  border: 1px solid transparent;
}
.landing-path .path .description .video-play-button .video-play-icon {
  margin: auto;
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  background-image: url("/Assets/Images/Icons/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.landing-path .path .description .video-play-button:hover {
  background-color: #ffffff;
  border-color: #f1592a;
}
.landing-path .path .description .video-play-button:hover .video-play-icon {
  filter: none;
}
.landing-path .path .description .dash {
  color: #f1592a;
  margin-bottom: 0;
}
.landing-path .path::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: #4d4d4d;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.landing-path .path:hover .description {
  background-color: #ffffff;
}
.landing-path .path:hover::before {
  opacity: 0;
}

@media (max-width: 1560px) {
  .landing-path .path .description {
    width: 50%;
  }
}
.statistics {
  background-color: #0070ba;
  padding: 35px 0;
  text-align: center;
}
.statistics .fullitem .stat {
  color: #ffffff;
}
.statistics .fullitem .stat h2 {
  color: #ffffff;
  font-weight: 200;
}
.statistics .fullitem .stat h2 {
  font-size: 24px;
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .statistics .fullitem .stat h2 {
    font-size: calc(24px + 42 * (100vw - 320px) / 1601);
    line-height: calc(24px + 42 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .statistics .fullitem .stat h2 {
    font-size: 66px;
    line-height: 66px;
  }
}
.statistics .fullitem .stat .desInfo {
  font-weight: 300;
}
.statistics .fullitem:not(:last-child) .stat {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.14);
}

/*======================
timeline
======================*/
.time-line {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .time-line {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .time-line {
    margin-bottom: 75px;
  }
}
.time-line .section-title h2 {
  font-weight: 500;
  margin-bottom: 25px;
  color: #4d4d4d;
}
.time-line .section-title h2 {
  font-size: 18px;
  line-height: 18px;
}
@media screen and (min-width: 320px) {
  .time-line .section-title h2 {
    font-size: calc(18px + 12 * (100vw - 320px) / 1601);
    line-height: calc(18px + 12 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .time-line .section-title h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.time-line .timeline-holder #timeline {
  margin: 20px auto;
  padding: 0px 20px;
  max-width: 900px;
}
.time-line .timeline-holder .timeline {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.time-line .timeline-holder .timeline .dateSeparator {
  clear: both;
  padding: 20px 0;
  position: relative;
}
.time-line .timeline-holder .timeline .dateSeparator span {
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
  box-sizing: border-box;
  color: #666666;
  display: block;
  text-align: center;
  width: 150px;
}
.time-line .timeline-holder .timeline .timelineElement:nth-child(even) {
  margin-top: 150px !important;
}
.time-line .timeline-holder .timeline .timelineElement:nth-child(odd) {
  margin-bottom: 150px !important;
}
.time-line .timeline-holder .timeline .timelineElement:first-child {
  margin-top: 0;
}
.time-line .timeline-holder .timeline_dual .dateSeparator span,
.time-line .timeline-holder .timeline_center .dateSeparator span {
  margin-left: auto;
  margin-right: auto;
}
.time-line .timeline-holder .timeline_left .dateSeparator span {
  margin-left: auto;
  margin-right: 0;
}
.time-line .timeline-holder .timeline_right .dateSeparator span {
  margin-left: 0;
  margin-right: auto;
}
.time-line .timeline-holder .timeline .spine {
  background-color: #f1592a;
  bottom: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
}
.time-line .timeline-holder .timeline_dual .spine,
.time-line .timeline-holder .timeline_center .spine {
  left: 50%;
  margin-left: -2px;
}
.time-line .timeline-holder .timeline_left .spine {
  right: 4px;
}
.time-line .timeline-holder .timeline_right .spine {
  left: 4px;
}
.time-line .timeline-holder .timelineElement {
  box-sizing: border-box;
  margin: 20px 0;
  position: relative;
}
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd) {
  clear: left;
  float: left;
  margin: 10px 0;
  width: 50%;
}
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even) {
  clear: right;
  float: right;
  margin: 10px 0;
  width: 50%;
}
.time-line .timeline-holder .timelineElementBox {
  background-color: transparent;
  overflow: hidden;
  text-shadow: none;
}
.time-line .timeline-holder .timeline_left .timelineElementBox,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd) .timelineElementBox {
  margin-inline-end: 60px;
}
.time-line .timeline-holder .timeline_right .timelineElementBox,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even) .timelineElementBox {
  margin-inline-start: 60px;
}
.time-line .timeline-holder .timeline_left .timelineElement::before,
.time-line .timeline-holder .timeline_right .timelineElement::before,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd)::before,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even)::before {
  content: "";
  border-top: 3px solid #f1592a;
  display: block;
  height: 1px;
  position: absolute;
  width: 30px;
}
.time-line .timeline-holder .timeline_left .timelineElement::before {
  right: 4px;
  top: 50%;
}
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd)::before {
  right: 1px;
  top: 40%;
}
.time-line .timeline-holder .timeline_right .timelineElement::before {
  left: 4px;
  top: 50%;
}
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even)::before {
  left: -1px;
  top: 50%;
}
.time-line .timeline-holder .timeline_left .timelineElement::after,
.time-line .timeline-holder .timeline_right .timelineElement::after,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd)::after,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even)::after {
  content: "";
  display: none !important;
  background-color: #bbbbbb;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  display: block;
  height: 10px;
  position: absolute;
  width: 10px;
}
.time-line .timeline-holder .timeline_left .timelineElement:hover::after,
.time-line .timeline-holder .timeline_right .timelineElement:hover::after,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd):hover::after,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even):hover::after {
  background-color: #999999;
  border-width: 2px;
  z-index: 100;
}
.time-line .timeline-holder .timeline_left .timelineElement::after {
  margin-right: -5px;
  right: 6px;
  top: 10px;
}
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd)::after {
  margin-right: -5px;
  right: 0;
  top: 10px;
}
.time-line .timeline-holder .timeline_right .timelineElement::after {
  left: 6px;
  margin-left: -5px;
  top: 30px;
}
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even)::after {
  left: 0;
  margin-left: -5px;
  top: 30px;
}
.time-line .timeline-holder .timeline_left .timelineElement::after,
.time-line .timeline-holder .timeline_right .timelineElement::after,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd):hover::after,
.time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even):hover::after {
  z-index: 100;
}
.time-line .timeline-holder .timelineTitle {
  color: #aaaaaa;
  font-size: 10px;
  margin: 10px;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
}
.time-line .timeline-holder .timelineTitle span.timelineTitle_label {
  display: block;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 100px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.time-line .timeline-holder .timelineTitle span.timelineTitleDate {
  float: right;
}
.time-line .timeline-holder .timelineElement .img_container {
  position: relative;
}
.time-line .timeline-holder .timelineImage img {
  display: block;
  width: 75%;
}
.time-line .timeline-holder .timelineImage {
  margin-bottom: 15px;
}
.time-line .timeline-holder .timelineSummary {
  display: flex;
}
.time-line .timeline-holder .timelineSummary .timelineTitle {
  flex: 0 0 30%;
}
.time-line .timeline-holder .timelineSummary .timelineTitle .timelineTitleDate {
  color: #4d4d4d;
  padding: 0;
  float: none;
}
.time-line .timeline-holder .timelineSummary .timelineTitle .timelineTitleDate {
  font-size: 24px;
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .time-line .timeline-holder .timelineSummary .timelineTitle .timelineTitleDate {
    font-size: calc(24px + 28 * (100vw - 320px) / 1601);
    line-height: calc(24px + 28 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .time-line .timeline-holder .timelineSummary .timelineTitle .timelineTitleDate {
    font-size: 52px;
    line-height: 52px;
  }
}

/*======================
presidents listing
======================*/
.presidents-listing {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .presidents-listing {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .presidents-listing {
    margin-bottom: 75px;
  }
}
.presidents-listing .listingItemDIV .listingItem {
  margin-bottom: 50px;
}
.presidents-listing .listingItemDIV .listingItem .listingImage {
  margin-bottom: 20px;
}
.presidents-listing .listingItemDIV .listingItem .listingImage img {
  display: block;
  max-width: 100%;
  width: 95%;
}
.presidents-listing .listingItemDIV .listingItem .listingInfos {
  position: relative;
  padding-inline-start: 13px;
}
.presidents-listing .listingItemDIV .listingItem .listingInfos .listingTitle {
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 20px;
}
.presidents-listing .listingItemDIV .listingItem .listingInfos .listingDescription {
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 23px;
}
.presidents-listing .listingItemDIV .listingItem .listingInfos::before {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: #f1592a;
  position: absolute;
  top: 0;
  left: 0;
}

/*======================
Valeurs
======================*/
.establishment {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .establishment {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .establishment {
    margin-bottom: 75px;
  }
}
.establishment .block-content .image-holder {
  margin-bottom: 40px;
}
.establishment .block-content .image-holder img {
  max-width: 100%;
}
.establishment .block-content .article .content {
  font-weight: 300;
  font-size: 16px;
  color: #4d4d4d;
}
.establishment .block-content .article .content ul {
  padding: 0;
}

.establishment-listing {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .establishment-listing {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .establishment-listing {
    margin-bottom: 75px;
  }
}
.establishment-listing .listingItemDIV .listingItem .listingInfos {
  padding-inline-start: 25px;
  border-inline-start: 2px solid #f1592a;
  margin-bottom: 40px;
}
.establishment-listing .listingItemDIV .listingItem .listingInfos .listingTitle {
  font-size: 22px;
  font-weight: 500;
  color: #4d4d4d;
}
.establishment-listing .listingItemDIV .listingItem .listingInfos .listingDescription {
  font-weight: 300;
}
.establishment-listing .listingItemDIV .listingItem .listingInfos .listingDate {
  text-align: end;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
}
.establishment-listing .listingItemDIV:last-child .listingItem .listingInfos {
  margin-bottom: 0;
}

.blue-section {
  background-color: #0070ba;
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .blue-section {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .blue-section {
    margin-bottom: 75px;
  }
}
.blue-section .content-holder {
  padding: 75px 0 50px 0;
}
.blue-section .content-holder .title {
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 10px;
}
.blue-section .content-holder .title {
  font-size: 24px;
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .blue-section .content-holder .title {
    font-size: calc(24px + 6 * (100vw - 320px) / 1601);
    line-height: calc(24px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .blue-section .content-holder .title {
    font-size: 30px;
    line-height: 30px;
  }
}
.blue-section .content-holder .description {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
}
.blue-section:last-child {
  margin-bottom: 0 !important;
}

.our-values {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .our-values {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .our-values {
    margin-bottom: 75px;
  }
}
.our-values .section-title {
  margin-bottom: 15px;
}
.our-values .section-content {
  margin-bottom: 30px;
}
.our-values .section-content strong {
  font-weight: 500;
}
.our-values .section-content strong {
  font-size: 18px;
  line-height: 18px;
}
@media screen and (min-width: 320px) {
  .our-values .section-content strong {
    font-size: calc(18px + 5 * (100vw - 320px) / 1601);
    line-height: calc(18px + 5 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .our-values .section-content strong {
    font-size: 23px;
    line-height: 23px;
  }
}
.our-values .listingHolder .listingItem {
  padding: 25px 50px 50px 0;
  padding-inline-start: 25px;
  border-inline-start: 2px solid #f1592a;
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
}
.our-values .listingHolder .listingItem .listingImage {
  flex: 0 0 20%;
}
.our-values .listingHolder .listingItem .listingImage img {
  max-width: 100%;
}
.our-values .listingHolder .listingItem .listingInfos .listingTitle {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
}
.our-values .listingHolder .listingItem .listingInfos .listingDescription {
  font-weight: 300;
  font-size: 16px;
}
.our-values .listingHolder .listingHolder > div:last-child .listingItem {
  margin-bottom: 0;
}

.content-block {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .content-block {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .content-block {
    margin-bottom: 75px;
  }
}
.content-block .listingHolder {
  border: 1px solid rgba(151, 151, 151, 0.14);
  padding: 30px;
}
.content-block .listingHolder .listingItem {
  display: flex;
  align-items: center;
  gap: 50px;
}
.content-block .listingHolder .listingItem .listingImage {
  flex: 0 1 50%;
}
.content-block .listingHolder .listingItem .listingImage img {
  max-width: 100%;
}
.content-block .listingHolder .listingItem .listingInfos {
  flex: 0 1 50%;
}
.content-block .listingHolder .listingItem:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (min-width: 320px) {
  .content-block .listingHolder .listingItem:not(:last-child) {
    margin-bottom: calc(50px + 50 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .content-block .listingHolder .listingItem:not(:last-child) {
    margin-bottom: 100px;
  }
}
.content-block .listingHolder .listingItem:nth-child(even) {
  flex-direction: row-reverse;
}

/*======================
fundraiser
======================*/
.fundraiser-banner {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .fundraiser-banner {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .fundraiser-banner {
    margin-bottom: 75px;
  }
}
.fundraiser-banner .image-container {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.fundraiser-banner .image-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}
.fundraiser-banner .image-container .content {
  height: 540px;
  display: flex;
  align-items: center;
  max-width: 500px;
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.donation-section {
  background-color: #0070ba;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .donation-section {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .donation-section {
    margin-bottom: 75px;
  }
}
.donation-section .container {
  position: relative;
}
.donation-section .container .content {
  padding: 60px 0;
}
.donation-section .container .content h2 {
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 500;
}
.donation-section .container .content p {
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 300;
  width: 65%;
}
.donation-section .container .image-holder {
  position: absolute;
  top: calc(100% - 270px);
  inset-inline-end: 0px;
  width: 350px;
  aspect-ratio: 1;
}
.donation-section .container .image-holder img {
  width: 100%;
}

.events-section {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .events-section {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .events-section {
    margin-bottom: 75px;
  }
}
.events-section .listingHolder {
  margin-bottom: 5px;
}
.events-section .listingHolder .activity {
  margin-bottom: 20px;
  z-index: 2;
  padding: 20px;
  background-color: white;
  box-shadow: 0 1px 26px 0 rgba(0, 0, 0, 0.04);
  border: 0.6px solid #dbdbdb;
}
.events-section .listingHolder .activity .imgcontainer {
  height: 241px;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.events-section .listingHolder .activity .imgcontainer img {
  display: block;
  width: 100%;
  height: 100%;
  transition: ease-in-out 0.3s;
}
.events-section .listingHolder .activity .textBox .date {
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 15px;
}
.events-section .listingHolder .activity .textBox h4 {
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 25px;
  margin-bottom: 15px;
}
.events-section .listingHolder .activity .textBox p {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 28px;
  border-bottom: 1px solid rgba(151, 151, 151, 0.16);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.events-section .listingHolder .activity .textBox span {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 21px;
  display: block;
  position: relative;
  padding-inline-start: 23px;
}
.events-section .listingHolder .activity .textBox span::before {
  content: "";
  display: inline-block;
  height: 3px;
  width: 14px;
  background-color: #f1592a;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.events-section .listingHolder .activity:hover .imgcontainer img {
  scale: 1.1;
}

.scholarships-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  margin-bottom: 200px;
}
.scholarships-section .content-holder {
  height: 280px;
  position: relative;
}
.scholarships-section .content-holder .content {
  background-color: #ffffff;
  position: absolute;
  top: 75%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 65px;
}
.scholarships-section .content-holder .content .title {
  font-weight: 500;
  margin-bottom: 20px;
}
.scholarships-section .content-holder .content .title {
  font-size: 24px;
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .scholarships-section .content-holder .content .title {
    font-size: calc(24px + 6 * (100vw - 320px) / 1601);
    line-height: calc(24px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .scholarships-section .content-holder .content .title {
    font-size: 30px;
    line-height: 30px;
  }
}
.scholarships-section .content-holder .content .description {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 15px;
  max-width: 1000px;
}

.partners-section {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .partners-section {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .partners-section {
    margin-bottom: 75px;
  }
}
.partners-section .swiper .swiper-slide {
  border: 1px solid #dbdbdb;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-section .swiper .swiper-slide img {
  max-width: 100%;
}

/*======================
Donations
======================*/
.payments-methods {
  overflow: hidden;
  padding-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .payments-methods {
    padding-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .payments-methods {
    padding-bottom: 75px;
  }
}
.payments-methods .section-title {
  margin-bottom: 0;
}
.payments-methods .swiper {
  overflow: visible;
  padding-top: 25px;
}
.payments-methods .swiper .swiper-slide {
  box-shadow: 0 0 14px 0 rgba(228, 228, 228, 0.5);
  text-align: center;
  padding: 50px 20px;
}
.payments-methods .swiper .swiper-slide img {
  margin-bottom: 40px;
  width: 86px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
.payments-methods .swiper .swiper-slide p {
  color: #4d4d4d;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.payments-methods .swiper .swiper-slide:hover p {
  color: #f1592a;
}

.popup-container {
  padding: 40px 50px 60px 50px;
}
.popup-container .image-holder {
  margin-bottom: 30px;
  text-align: center;
}
.popup-container .title {
  font-weight: 500;
  margin-bottom: 15px;
}
.popup-container .title {
  font-size: 24px;
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .popup-container .title {
    font-size: calc(24px + 6 * (100vw - 320px) / 1601);
    line-height: calc(24px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .popup-container .title {
    font-size: 30px;
    line-height: 30px;
  }
}
.popup-container .description {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 50px;
  max-width: 800px;
}
.popup-container .types-holder {
  display: flex;
  justify-content: space-around;
}
.popup-container .types-holder .type {
  text-align: center;
  flex: 1 1 30%;
}
.popup-container .types-holder .type img {
  max-width: 100%;
  width: 50px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
}
.popup-container .types-holder .type h4 {
  font-weight: 500;
  font-size: 18px;
}
.popup-container .types-holder .type p {
  font-size: 14px;
  font-weight: 300;
}
.popup-container .types-holder .type:not(:last-child) {
  border-inline-end: 1px solid #e9e9e9;
}
.popup-container a {
  color: #0070ba;
  transition: all 0.3s ease-in-out;
}
.popup-container a:hover {
  color: #f1592a;
}
.popup-container.form {
  padding-top: 80px;
  text-align: center;
}
.popup-container.form .title {
  max-width: 480px;
  margin: auto;
  margin-bottom: 25px;
}

.campaign-section {
  background-color: #0070ba;
  padding: 45px 0;
}
.campaign-section .row {
  display: flex;
  align-items: center;
}
.campaign-section .row .left-side {
  vertical-align: middle;
  max-width: 600px;
}
.campaign-section .row .left-side h2 {
  max-width: 500px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 20px;
}
.campaign-section .row .left-side h2 {
  font-size: 24px;
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .campaign-section .row .left-side h2 {
    font-size: calc(24px + 6 * (100vw - 320px) / 1601);
    line-height: calc(24px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .campaign-section .row .left-side h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.campaign-section .row .left-side p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}
.campaign-section .row .right-side .video-holder {
  margin-bottom: 10px;
  position: relative;
}
.campaign-section .row .right-side .video-holder img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.campaign-section .row .right-side .video-holder .play-button {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.campaign-section .row .right-side .video-holder .play-button .play {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #ffffff;
  transition: all 0.3s ease-in-out;
}
.campaign-section .row .right-side .video-holder .play-button .play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0px;
  height: 0px;
  border-radius: 3px;
  border-style: solid;
  border-width: 0 12.5px 21.7px 12.5px;
  border-color: transparent transparent #ffffff transparent;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transition: all 0.3s ease-in-out;
}
.campaign-section .row .right-side .video-holder .play-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.354);
  transition: all 0.3s ease-in-out;
}
.campaign-section .row .right-side .video-holder:hover .play-button .play {
  border: 1px solid #f1592a;
}
.campaign-section .row .right-side .video-holder:hover .play-button .play::after {
  border-color: transparent transparent #f1592a transparent;
}
.campaign-section .row .right-side .video-holder:hover::before {
  background-color: rgba(0, 0, 0, 0);
}
.campaign-section .row .right-side p {
  font-size: 18px;
  font-family: 500;
  color: #ffffff;
}

.donation-goal {
  padding: 75px 0 50px 0;
  background-color: rgba(151, 151, 151, 0.16);
}
.donation-goal .summary p {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 300;
}

.document-section {
  background-color: rgba(151, 151, 151, 0.16);
  padding-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .document-section {
    padding-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .document-section {
    padding-bottom: 75px;
  }
}
.document-section .listingInfos {
  position: relative;
  padding: 24px 30px;
  display: block;
  border-inline-start: 4px solid #ffdd00;
  background-color: #ffffff;
  margin-bottom: 10px;
}
.document-section .listingInfos .listingTitle {
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}
.document-section .listingInfos .listingDescription {
  font-size: 13px;
  font-weight: 300;
  color: #4d4d4d;
  transition: all 0.3s ease-in-out;
}
.document-section .listingInfos .listingLink {
  position: absolute;
  inset-inline-end: 20px;
  bottom: 20px;
  width: 25px;
  height: 25px;
  background-image: url("../../images/PPFL/download-pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.document-section .listingInfos:hover .listingTitle {
  color: #f1592a;
}
.document-section .listingInfos:hover .listingDescription {
  color: #f1592a;
}
.document-section .listingInfos:hover .listingLink {
  bottom: 15px;
}

/*======================
Donors
======================*/
.our-donors {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
@media screen and (min-width: 320px) {
  .our-donors {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .our-donors {
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 320px) {
  .our-donors {
    padding-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .our-donors {
    padding-bottom: 75px;
  }
}
.our-donors .subtitle,
.our-donors .form-intro {
  margin-bottom: 45px;
}
.our-donors .subtitle h4,
.our-donors .form-intro h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #4d4d4d;
}
.our-donors .subtitle .description,
.our-donors .form-intro .description {
  font-weight: 300;
  font-size: 16px;
  color: #4d4d4d;
}
.our-donors .row {
  display: flex;
  flex-wrap: wrap;
}
.our-donors .row .listingItem {
  margin-bottom: 10px;
  padding: 20px 30px;
  background-color: #f6f6f6;
}
@media screen and (min-width: 320px) {
  .our-donors .row .listingItem {
    margin-bottom: calc(10px + 20 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .our-donors .row .listingItem {
    margin-bottom: 30px;
  }
}
.our-donors .row .listingItem .listingTitle {
  font-weight: 500;
  margin-bottom: 16px;
}
.our-donors .row .listingItem .listingTitle {
  font-size: 24px;
  line-height: 24px;
}
@media screen and (min-width: 320px) {
  .our-donors .row .listingItem .listingTitle {
    font-size: calc(24px + 6 * (100vw - 320px) / 1601);
    line-height: calc(24px + 6 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .our-donors .row .listingItem .listingTitle {
    font-size: 30px;
    line-height: 30px;
  }
}
.our-donors .row .listingItem .listingDescription {
  font-weight: 300;
  font-size: 16px;
}

.partner-donations .section-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.partner-donations .section-description,
.partner-donations .form-intro {
  margin-bottom: 40px;
}
.partner-donations .section-description .description-title,
.partner-donations .form-intro .description-title {
  font-weight: 500;
  font-size: 18px;
  color: #4d4d4d;
}
.partner-donations .section-description .description,
.partner-donations .form-intro .description {
  font-size: 16px;
  font-weight: 300;
  color: #4d4d4d;
}
.partner-donations .listingHolder .listingItem {
  margin-bottom: 20px;
  display: flex;
  gap: 40px;
}
@media screen and (min-width: 320px) {
  .partner-donations .listingHolder .listingItem {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .partner-donations .listingHolder .listingItem {
    margin-bottom: 75px;
  }
}
.partner-donations .listingHolder .listingItem .listingImage {
  flex: 1 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 200px;
  text-align: center;
  border: 1px solid #dbdbdb;
  vertical-align: middle;
}
.partner-donations .listingHolder .listingItem .listingImage img {
  max-width: 100%;
  width: 50%;
}
.partner-donations .listingHolder .listingItem .listingInfos {
  flex: 0 0 calc(75% - 40px);
}
.partner-donations .listingHolder .listingItem .listingInfos .listingTitle {
  font-size: 18px;
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 15px;
}
.partner-donations .listingHolder .listingItem .listingInfos .listingDescription {
  font-size: 16px;
  font-weight: 300;
  color: #4d4d4d;
  margin-bottom: 10px;
}
.partner-donations .listingHolder .listingItem .listingInfos .listingLink a {
  display: block;
  color: #4d4d4d;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
  padding-inline-start: 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.partner-donations .listingHolder .listingItem .listingInfos .listingLink a::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 3px;
  background-color: #f1592a;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.partner-donations .listingHolder .listingItem .listingInfos .listingLink a:hover {
  color: #f1592a;
}
.partner-donations .listingHolder .listingItem .listingInfos .listingLink a:hover::before {
  inset-inline-start: 3px;
}

/*======================
scholarships
======================*/
.scholarships-page {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .scholarships-page {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .scholarships-page {
    margin-bottom: 75px;
  }
}
.scholarships-page .block-content .image-holder {
  margin-bottom: 40px;
}
.scholarships-page .block-content .image-holder img {
  max-width: 100%;
}
.scholarships-page .block-content .article .content-summary {
  font-weight: 300;
  font-size: 16px;
  color: #4d4d4d;
  margin-bottom: 20px;
}
.scholarships-page .block-content .article .content-summary h3 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 25px;
}
.scholarships-page .block-content .article .content-summary ul {
  padding: 0;
}
.scholarships-page .block-content .article .content-summary ul li {
  position: relative;
  padding-left: 20px;
}
.scholarships-page .block-content .article .content-summary ul li::before {
  content: "" !important;
  display: inline-block !important;
  width: 15px !important;
  height: 15px !important;
  background: url(/images/Bullet.svg?v=6wR-barhgZzmvOMerKgxiOr_cb0) no-repeat center !important;
  position: absolute !important;
  transform: translateY(-50%) !important;
  left: 0 !important;
  top: 10px !important;
}
.scholarships-page .block-content .article .content-summary strong {
  font-weight: 500;
}

/*======================
annual-report
======================*/
.annual-report .listingItem {
  display: block;
  box-shadow: 0px 0px 13px 0px rgba(173, 173, 173, 0.15);
  -webkit-box-shadow: 0px 0px 13px 0px rgba(173, 173, 173, 0.15);
  -moz-box-shadow: 0px 0px 13px 0px rgba(173, 173, 173, 0.15);
  margin-bottom: 20px;
}
.annual-report .listingItem .listingImage {
  text-align: center;
  overflow: hidden;
}
.annual-report .listingItem .listingImage img {
  max-width: 100%;
  display: block;
  transition: all 0.3s ease-in-out;
}
.annual-report .listingItem .listingInfos {
  padding: 15px 20px 60px 20px;
  position: relative;
}
.annual-report .listingItem .listingInfos h3 {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.annual-report .listingItem .listingInfos::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 20px;
  inset-inline-end: 20px;
  background-image: url("../../images/PPFL/download-pdf.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.annual-report .listingItem:hover .listingImage img {
  transform: scale(1.01);
}
.annual-report .listingItem:hover .listingInfos h3 {
  color: #f1592a;
}
.annual-report .listingItem:hover .listingInfos::after {
  bottom: 18px;
}

/*======================
online-payment
======================*/
.online-payment-description {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .online-payment-description {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .online-payment-description {
    margin-bottom: 75px;
  }
}
.online-payment-description .left {
  font-size: 20px;
  font-weight: 500;
  color: #4d4d4d;
}
.online-payment-description .right {
  font-weight: 300;
  font-size: 16px;
  color: #4d4d4d;
}

.online-payment-form {
  margin-bottom: 20px;
}
@media screen and (min-width: 320px) {
  .online-payment-form {
    margin-bottom: calc(20px + 55 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .online-payment-form {
    margin-bottom: 75px;
  }
}
.online-payment-form form label {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 5px;
  display: block;
}
.online-payment-form form .input-holder {
  margin-bottom: 25px;
  position: relative;
}
.online-payment-form form .input-holder input {
  display: block;
  padding: 20px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  width: 100%;
}
.online-payment-form form .input-holder input:focus, .online-payment-form form .input-holder input:active, .online-payment-form form .input-holder input:focus-visible {
  border: 1px solid #0070ba;
  outline: none;
}
.online-payment-form form .input-holder input::-moz-placeholder {
  font-weight: 300;
  font-size: 14px;
  font-family: "Poppins", Arial;
}
.online-payment-form form .input-holder input::placeholder {
  font-weight: 300;
  font-size: 14px;
  font-family: "Poppins", Arial;
}
.online-payment-form form .input-holder.half {
  width: 50%;
}
.online-payment-form form .input-holder.half input {
  width: calc(100% - 15px);
}
.online-payment-form form .input-holder.half .error {
  inset-inline-end: 15px;
}
.online-payment-form form .radio-group {
  position: relative;
  margin-bottom: 25px;
}
.online-payment-form form .radio-group label {
  margin-bottom: 15px;
}
.online-payment-form form .radio-group .radio-button {
  margin-inline-end: 60px;
  position: relative;
  display: inline-block;
}
.online-payment-form form .radio-group .radio-button input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.online-payment-form form .radio-group .radio-button input:checked ~ label::after {
  visibility: visible;
}
.online-payment-form form .radio-group .radio-button label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  padding-inline-start: 30px;
  position: relative;
}
.online-payment-form form .radio-group .radio-button label::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #979797;
  border-radius: 50%;
}
.online-payment-form form .radio-group .radio-button label::after {
  content: "";
  visibility: hidden;
  position: absolute;
  inset-inline-start: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #f1592a;
  border-radius: 50%;
}
.online-payment-form form .button-holder {
  text-align: end;
}
.online-payment-form form .select-holder {
  position: relative;
  width: calc(50% - 15px);
  margin-bottom: 25px;
  display: inline-block;
}
.online-payment-form form .select-holder .dk-select {
  width: 100%;
  position: relative;
}
.online-payment-form form .select-holder .dk-select::after {
  content: "";
  width: 8px;
  height: 15px;
  position: absolute;
  inset-inline-end: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../images/PPFL/dropdown.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.online-payment-form form .select-holder .dk-select.dk-select-open-down::after {
  transform: translateY(-50%) rotate(180deg);
}
.online-payment-form form .select-holder .dk-select .dk-selected {
  padding: 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.online-payment-form form .select-holder .dk-select .dk-selected:focus, .online-payment-form form .select-holder .dk-select .dk-selected:active, .online-payment-form form .select-holder .dk-select .dk-selected:focus-visible {
  border-radius: 5px;
  outline: none;
  border: 1px solid #f1592a;
}
.online-payment-form form .select-holder .dk-select .dk-option.dk-option-highlight {
  background-color: #f1592a;
  color: white;
}
.online-payment-form form .select-holder .dk-select .dk-option.dk-option-selected {
  background-color: #f1592a;
  opacity: 0.6;
  color: white;
}
.online-payment-form form .input-description {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 25px;
}
.online-payment-form form .form__row .errorMessage .error {
  inset-inline-end: auto;
  inset-inline-start: 15px;
}
.online-payment-form form .error {
  color: #f1592a;
  position: absolute;
  top: 100%;
  inset-inline-end: 0px;
  text-align: end;
}

.other-payment-terms {
  background-color: #f5f5f5;
  padding: 45px 0;
}
.other-payment-terms .section-title {
  margin-bottom: 5px;
}
.other-payment-terms .section-title h2 {
  font-size: 22px;
}
.other-payment-terms .description p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 14px;
}
.other-payment-terms .description ul {
  padding: 0;
  list-style: none;
  margin-top: 20px;
}
.other-payment-terms .description ul li {
  margin-bottom: 15px;
  position: relative;
  display: block;
  transition: all 0.3s ease-in-out;
}
.other-payment-terms .description ul li::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.other-payment-terms .description ul li:first-child::after {
  width: 20px;
  height: 20px;
  background-image: url("../../images/PPFL/form-mail.svg");
}
.other-payment-terms .description ul li:last-child::after {
  width: 14px;
  height: 24px;
  background-image: url("../../images/PPFL/form-phone.svg");
}
.other-payment-terms .description ul li a {
  color: #4d4d4d;
  padding-inline-start: 30px;
  font-size: 16px;
  font-weight: 300;
}
.other-payment-terms .description ul li a:hover {
  color: #f1592a;
}
.other-payment-terms .description ul li a:hover::after {
  transform: translateY(-60%);
}

/*======================
ajax loader / payment gateway
======================*/
@keyframes leap {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-20px);
  }
}
@keyframes colorChange {
  0%, 100% {
    background-color: #e74c3c;
  }
  50% {
    background-color: #3498db;
  }
}
.ajaxLoader {
  position: fixed;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.5411764706);
  display: none;
  align-items: center;
  justify-content: center;
}
.ajaxLoader .dot {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #e74c3c;
  border-radius: 50%;
  margin: 0 5px;
  animation: leap 1s ease-in-out infinite, colorChange 2s infinite alternate;
}
.ajaxLoader .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.ajaxLoader .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.darkOverlay {
  overflow: hidden;
}
.darkOverlay::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3215686275);
}

.paymentWrapperPopup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 27vw;
  overflow: auto;
  padding: 30px 40px;
  max-height: 600px;
  background: white;
  border-radius: 10px;
  z-index: 2;
}
.paymentWrapperPopup::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}
.paymentWrapperPopup::-webkit-scrollbar {
  width: 4px;
  background-color: #f5f5f5;
}
.paymentWrapperPopup::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
.paymentWrapperPopup .popupPayment #embed-target {
  margin-top: -30px;
}
.paymentWrapperPopup .popupPayment .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.paymentWrapperPopup .popupPayment .header-container .close {
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #4d4d4d;
  display: block;
  background-image: url(../../images/close.jpg);
}
.paymentWrapperPopup .popupPayment .header-container .logo-holder {
  margin-inline-start: -5px;
  width: 50%;
}
.paymentWrapperPopup .popupPayment .header-container .logo-holder img {
  max-width: 100%;
}

.payment-wrapper > .row.mb-3 {
  display: none;
}

.online-payment-description.success .right {
  text-align: center;
  font-size: 30px;
  max-width: 700px;
  margin: 100px auto;
  padding-top: 100px;
  background-image: url(../../images/checked.png);
  background-repeat: no-repeat;
  background-position: top;
}

@media all and (max-width: 767px) {
  .online-payment-description.success .right {
    text-align: center;
    font-size: 22px;
    max-width: 100%;
    margin: 50px auto;
    padding-top: 80px;
    background-size: 50px;
  }
}
.landing-path .dash {
  padding-inline-start: 0;
}
.landing-path .dash::before {
  display: none;
}

/* Start:: error-page */
.error-section {
  min-height: 80vh;
  padding-top: 125px;
  padding-bottom: 65px;
  background-color: #ffffff;
  color: #4d4d4d;
}
.error-section .container .error-image-container {
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 40px;
}
.error-section .container .error-image-container img.error-image {
  aspect-ratio: 2.7397260274;
  width: 100%;
  height: 30vh;
  padding-inline: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.error-section .container .error-title {
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 30px;
}
.error-section .container .error-title {
  font-size: 20px;
  line-height: 20px;
}
@media screen and (min-width: 320px) {
  .error-section .container .error-title {
    font-size: calc(20px + 25 * (100vw - 320px) / 1601);
    line-height: calc(20px + 25 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .error-section .container .error-title {
    font-size: 45px;
    line-height: 45px;
  }
}
.error-section .container .error-summary {
  max-width: 400px;
  text-align: center;
  font-weight: 300;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 40px;
}
.error-section .container .error-summary {
  font-size: 14px;
  line-height: 14px;
}
@media screen and (min-width: 320px) {
  .error-section .container .error-summary {
    font-size: calc(14px + 4 * (100vw - 320px) / 1601);
    line-height: calc(14px + 4 * (100vw - 320px) / 1601);
  }
}
@media screen and (min-width: 1921px) {
  .error-section .container .error-summary {
    font-size: 18px;
    line-height: 18px;
  }
}
.error-section .container .redirect-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.error-section.full-page {
  min-height: 100vh;
  padding-top: 25.7142857143vh;
}
@media all and (max-width: 576px) {
  .error-section {
    padding-top: 150px;
    padding-bottom: 35px;
  }
  .error-section .container .error-image-container {
    margin-bottom: 25px;
  }
  .error-section .container .error-title {
    margin-bottom: 20px;
  }
}

/* End:: error-page */
@media all and (max-width: 1200px) {
  .desktop-main-navigation {
    display: none;
  }
  .mobile-main-navigation {
    display: flex;
  }
  .page-banner {
    margin-bottom: 100px;
  }
  .page-banner .container .height-lock {
    height: 300px;
  }
  .page-banner .container .height-lock .page-title {
    text-align: center;
    padding: 20px;
    top: calc(100% - 65px);
  }
  .page-nav .links-holder {
    flex-wrap: wrap;
    width: 100%;
  }
  .page-nav .links-holder li .link {
    box-shadow: none;
  }
  .page-nav .links-holder li:first-child .link {
    border-radius: 0px;
  }
  .page-nav .links-holder li:first-child .link.active {
    border-radius: 7px;
  }
  .page-nav .links-holder li:last-child .link {
    border-radius: 0px;
  }
  .page-nav .links-holder li:last-child .link.active {
    border-radius: 7px;
  }
}
@media all and (max-width: 992px) {
  .page-banner {
    margin-bottom: 100px;
  }
  .page-banner .container .height-lock {
    height: 200px;
  }
  .page-banner .container .height-lock .page-title {
    text-align: center;
    padding: 20px;
    top: calc(100% - 65px);
  }
  .statistics {
    padding: 20px 0px;
  }
  .statistics .fullitem .stat {
    margin-bottom: 15px;
  }
  .statistics .fullitem:not(:last-child) .stat {
    border-inline-end: none;
  }
  .time-line .timeline-holder .timelineElementBox .timelineImage img {
    width: 100%;
  }
  .time-line .timeline-holder .timelineElementBox .timelineSummary {
    flex-direction: column;
  }
  .time-line .timeline-holder .timelineElementBox .timelineSummary .timelineTitle {
    margin-inline-start: 0;
  }
  .our-values .values-listing .listingItem {
    flex-direction: column;
    padding: 30px;
  }
  .content-block .listingHolder .listingItem {
    flex-direction: column;
  }
  .content-block .listingHolder .listingItem:nth-child(even) {
    flex-direction: column;
  }
  .blue-section .content-holder {
    padding: 20px 0;
  }
  .scholarships-section {
    margin-bottom: 150px;
  }
  .scholarships-section .content-holder .content {
    top: 45%;
    padding: 20px 30px;
  }
  .donation-section .container .image-holder {
    top: auto;
    bottom: -20px;
    inset-inline-end: -30px;
    width: 200px;
  }
  .payments-methods .swiper .swiper-slide {
    padding: 20px;
  }
  .popup-container {
    padding: 20px;
  }
  .popup-container .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .popup-container .types-holder {
    gap: 10px;
  }
  .popup-container .types-holder .type img {
    width: 40px;
  }
  .popup-container .types-holder .type h4 {
    font-size: 16px;
  }
  .popup-container .types-holder .type p {
    font-size: 12px;
  }
  .popup-container .types-holder .type:not(:last-child) {
    border-inline-end: none;
  }
  .campaign-section .row {
    flex-direction: column-reverse;
    row-gap: 10px;
  }
  .online-payment-description .left {
    margin-bottom: 20px;
  }
  .online-payment-form form .input-holder.half,
  .online-payment-form form .select-holder.half {
    width: 100%;
  }
  .online-payment-form form .input-holder.half input,
  .online-payment-form form .select-holder.half input {
    width: 100%;
  }
  .partner-donations .listingHolder .listingItem {
    flex-direction: column;
  }
  .partner-donations .listingHolder .listingItem .listingImage {
    padding: 50px;
  }
  .our-donors .row .col-md-4 {
    width: 100%;
  }
  .footer p {
    text-align: center;
  }
  .footer .row {
    row-gap: 10px;
  }
  .landing-path {
    gap: 0;
    margin-bottom: 0;
  }
  .landing-path .path .description {
    width: unset;
  }
}
@media all and (max-width: 520px) {
  .time-line .timeline-holder .timeline_dual .timelineElement:nth-child(even) {
    float: none;
    width: 100%;
    margin: 0;
    margin-top: 20px !important;
    margin-bottom: 20px;
    background-color: white;
    z-index: 10;
  }
  .time-line .timeline-holder .timeline_dual .timelineElement:nth-child(odd) {
    float: none;
    width: 100%;
    margin: 0;
    margin-bottom: 20px !important;
    background-color: white;
    z-index: 10;
  }
  .time-line .timeline-holder .timeline_dual .spine {
    display: none;
  }
  .landing-path .path .description {
    bottom: 50%;
    width: 90% !important;
    transform: translateY(50%);
  }
}
@media (max-width: 716px) {
  .landing-path {
    gap: 0;
    margin-bottom: 0;
  }
  .landing-path .path .description {
    padding: 32px;
    padding-bottom: 64px;
    display: flex;
    gap: 20px;
    bottom: 20px;
    transform: unset;
    background-color: rgba(255, 255, 255, 0.8);
    width: unset;
  }
  .landing-path .path .description img {
    width: 180px;
  }
  .landing-path .path .description::before {
    content: "— Visitez le site";
    position: absolute;
    bottom: 24px;
    left: 32px;
    color: #f1592a;
    font-weight: normal;
    display: inline-flex;
  }
  .landing-path .path .description > *:first-child {
    flex: 2 2 0;
  }
  .landing-path .path .description > *:last-child {
    flex: 3 3 0;
  }
  .statistics .listingHolder {
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .statistics .listingHolder::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: calc(100% - 10px);
    width: 1px;
    background-color: white;
    opacity: 0.2;
  }
  .statistics .listingHolder .listingItemDIV {
    width: 50%;
  }
  .statistics .listingHolder .listingItemDIV * {
    text-align: start;
  }
  .statistics .listingHolder .listingItemDIV h2 {
    margin-bottom: 5px;
  }
  .statistics .listingHolder .listingItemDIV h2 .counter,
  .statistics .listingHolder .listingItemDIV h2 .counter + span {
    font-size: 40px;
  }
  .statistics .listingHolder .listingItemDIV .infoContent {
    padding-inline: 16px;
    padding-block: 8px 20px;
    margin: 0;
  }
}