@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&family=Lexend:wght@100..900&family=Marck+Script&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.css");



:root {
--primary: #6B2599;
--secondary: #2a1754;
--links: #492892;
--buttons: #4D40AA;
--text: #2A213D;
--circle-border: #4D40AA;
--timeline-gradient: to bottom, rgba(80, 80, 80, 0) 0%, rgb(130, 135, 162) 8%,
    rgb(84, 89, 113) 92%, rgba(80, 80, 80, 0) 100%;
--timeline-future: #6a6a6a;
--gap: 64px;
--item-height: 180px;  /* mobile default */
--duration: 18s;       /* total time to scroll one full set */
}

  
body {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 1.6rem;
    color: var(--text);
}
.main-content a {
  color: var(--links);
  text-decoration: underline;
}
.main-content a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.mt-6 {
  margin-top: 4rem;
}
.mb-6 {
  margin-bottom: 4rem;;
}

/**** Headers ****/
h1 {
  color: #fff;
  padding: 5px 50px;
  border-radius: 166px 0 166px 0;
  background: var(--secondary);
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;  
  display: inline-block;
}
h2, h3 {
  color: var(--links);
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-weight: 700;
}
h5 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.35rem;
}
small {
  font-size: .85rem;
}
.text-red {
  color: #8A1F35;
}
.main-content img {
  max-width: 100%;
}
a.btn-primary, button.btn-primary {
  background-color: var(--buttons);
  text-decoration: none;
  color: #FFF;
  border: 0;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-size: 1.5rem;
}
a.btn-primary:hover, button.btn-primary:hover, .btn:first-child:active, .btn:focus-visible, :not(.btn-check) + .btn:active {
  background-color: var(--secondary);
  text-decoration: none;
  color: #FFF;
}
a.btn-sm {
  font-size: 1rem;
  padding: .5rem 1.5rem;
}


/**** Navbar ****/
.navbar-nav > li > a {
    color: #FFF;
    white-space: nowrap;
}
.navbar-nav .dropdown-menu a {
    white-space: nowrap;
    color: #FFF;
}
/* .navbar-nav > .nav-item {
    margin-left: .5rem;
    margin-right: .5rem;
} */
.navbar-nav > .nav-item > .dropdown-menu .dropdown-item {
    font-size: 1.1rem;
}
/* .navbar-nav > .nav-item > .nav-link.active {
    font-weight: 700;
} */
.navbar-nav .dropdown-menu .nav-link.active {
    background-color: #5f1491;
}
.navbar-nav .dropdown-menu .nav-link:hover {
    background-color: #5f1491;
}
.navbar-nav > .nav-item > .nav-link.show {
    background-color: #4A1E76;
}
.navbar-brand img {
    max-width: 290px;
}
.dropdown-menu {
    background-color: var(--secondary);
    padding: 0;
}
.dropdown-menu[data-bs-popper] {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.navbar-logo {
  height: auto;
  width: auto;
  max-height: clamp(48px, 6vw, 70px);
}
@media (min-width: 768px) {
  .navbar .nav-link {
    font-size: clamp(0.9rem, 1.5vw, 1.4rem);
  }
}
@media (max-width: 767px) {
  .navbar .nav-link {
    padding: 10px;
  }
  .navbar .nav-link:focus {
    color: #FFF;
  }
}
.navbar-nav {
  gap: clamp(0.25rem, 1vw, 0.75rem);
}


/* custom nav toggler */
.navbar-toggler {
  padding:0;
  position:absolute;
  width:30px;
  height:60px;
  top:18px;
  right:32px;
  transition-duration:.5s;
  border:none;
  -webkit-appearance:none;
  -moz-appearance:none
 }
 @media(max-width:400px) {
  .navbar-toggler {
   top:14px
  }
 }
 .navbar-toggler .icon-left {
  transition-duration:.5s;
  position:absolute;
  height:4px;
  top:25px;
  width:15px;
  background-color:rgba(255,255,255,.87)
 }
 .navbar-toggler .icon-left::before {
  transition-duration:.5s;
  position:absolute;
  width:15px;
  height:4px;
  background-color:rgba(255,255,255,.87);
  content:"";
  top:-10px
 }
 .navbar-toggler .icon-left::after {
  transition-duration:.5s;
  position:absolute;
  width:15px;
  height:4px;
  background-color:rgba(255,255,255,.87);
  content:"";
  top:10px
 }
 .navbar-toggler .icon-right {
  transition-duration:.5s;
  position:absolute;
  height:4px;
  top:25px;
  width:15px;
  background-color:rgba(255,255,255,.87);
  left:15px
 }
 .navbar-toggler .icon-right::before {
  transition-duration:.5s;
  position:absolute;
  width:15px;
  height:4px;
  background-color:rgba(255,255,255,.87);
  content:"";
  top:-10px
 }
 .navbar-toggler .icon-right::after {
  transition-duration:.5s;
  position:absolute;
  width:15px;
  height:4px;
  background-color:rgba(255,255,255,.87);
  content:"";
  top:10px
 }
 .navbar-toggler[aria-expanded="true"] .icon-left {
  transition-duration:.5s;
  background:transparent
 }
 .navbar-toggler[aria-expanded="true"] .icon-left::before {
  -webkit-transform:rotateZ(45deg) scaleX(1.4) translate(2px,2px);
  transform:rotateZ(45deg) scaleX(1.4) translate(2px,2px)
 }
 .navbar-toggler[aria-expanded="true"] .icon-left::after {
  -webkit-transform:rotateZ(-45deg) scaleX(1.4) translate(2px,-2px);
  transform:rotateZ(-45deg) scaleX(1.4) translate(2px,-2px)
 }
 .navbar-toggler[aria-expanded="true"] .icon-right {
  transition-duration:.5s;
  background:transparent
 }
 .navbar-toggler[aria-expanded="true"] .icon-right::before {
  -webkit-transform:rotateZ(-45deg) scaleX(1.4) translate(-2px,2px);
  transform:rotateZ(-45deg) scaleX(1.4) translate(-2px,2px)
 }
 .navbar-toggler[aria-expanded="true"] .icon-right::after {
  -webkit-transform:rotateZ(45deg) scaleX(1.4) translate(-2px,-2px);
  transform:rotateZ(45deg) scaleX(1.4) translate(-2px,-2px)
 }




/**** Home Hero Section ****/
.heroSection {
    background-color: var(--primary);
}
.heroImageWrapper {
  height: 430px;
}
.heroImage {
  object-fit: cover;   
  object-position: 50% 10%; 
}
.heroOverlayCard {
  position: relative;
  background-color: rgba(42, 23, 84, .8);
  border-radius: 100px 0;
  font-size: 1.65rem;
  line-height: 2.4rem;
}
@media (max-width: 991px) {
  .heroOverlayCard {
    margin: -140px 15px 15px 15px;
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
}
@media (min-width: 992px) {
  .heroOverlayCard {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    max-width: 750px;
  }
}


/**** Breadcrumb ****/
.pageBanner {
  background-color: var(--secondary);
  padding: 3rem 2rem;
}
.pageBanner h1 {
  padding: 5px 10px 5px 50px;
}
.pageBannerBG {
  background-color: #4A1E76;
  height: 400px;
  border-radius: 2.5rem;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,.35));
  position: relative;
  overflow: hidden;
}
.pageBannerBG::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 23, 84, 0.5);
  z-index: 1;
}
.pageBanner h1 {
  border-radius: 0;
  font-size: 3rem;
  font-weight: 700;
  background: transparent;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.6));
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 7vw, 3rem);
  line-height: 1.1;
  max-width: 90%;
  word-break: break-word;
  overflow-wrap: break-word;
}
.pageBannerBG.pact-study-journey {
  background-image: url(/user/pages/images/pageBanners/pact-study-journey.jpg);
  background-size: cover;
  background-position: 50% 25%;
}
.pageBannerBG.pact-participants {
  background-image: url(/user/pages/images/pageBanners/pact-participants.jpg);
  background-size: cover;
  background-position: 50% 50%;
}
.pageBannerBG.get-involved {
  background-image: url(/user/pages/images/pageBanners/get-involved.jpg);
  background-size: cover;
  background-position: 50% 50%;
}
.pageBannerBG.news {
  background-image: url(/user/pages/images/pageBanners/in-the-news.jpg);
  background-size: cover;
  background-position: 50% 72%;
}
.pageBannerBG.contact {
  background-image: url(/user/pages/images/pageBanners/contact.jpg);
  background-size: cover;
  background-position: 50% 43%;
}
.pageBannerBG.study-newsletters {
  background-image: url(/user/pages/images/pageBanners/study-newsletters.jpg);
  background-size: cover;
  background-position: 50% 50%;
}
.pageBannerBG.resources {
  background-image: url(/user/pages/images/pageBanners/resources.jpg);
  background-size: cover;
  background-position: 50% 65%;
}




/**** SVG ****/
svg {
  max-height: 75px;
  margin: 0 auto 5px;
}
.st0, .cls-1 {
  fill: #fff;
}
.doc {
  opacity: 0;
/*   transform: translateX(10px); */
  animation: docEnter 1.25s ease-out forwards;
  transform-box: fill-box;
  transform-origin: center;
}
.glass {
  transform-origin: center;
  transform-box: fill-box;
  animation: rotateGlass 1.2s ease-in-out infinite alternate;
}

/* CTA1 */
@keyframes docEnter {
  to {
    opacity: 1;
/*     transform: translateX(0); */
  }
}
@keyframes rotateGlass {
  from {
    transform: rotate(-12deg);
  }
  to {
    transform: rotate(8deg);
  }
}
.doc path:nth-child(n+2) {
  transform-box: fill-box;     
  transform-origin: left;    
  animation: growShrink 2s ease-in-out infinite alternate;
}
@keyframes growShrink {
  0% { transform: scaleX(.9); }
  100% { transform: scaleX(1.05); }
}

/* CTA2 */
#Cog {
  transform-origin: center;
  transform-box: fill-box;
  animation: spin 20s linear infinite; 
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* CTA3 */
#Light {
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse 1.5s infinite alternate; 
}
@keyframes pulse {
    0% { transform: scale(.9); }
    50% { transform: scale(1); }
    100% { transform: scale(.9); }
}






/**** CTA Row ****/
.CTAbg {
  background-color: var(--secondary);
}
.CTArow {
  min-height: 200px;
}
.CTArow .row {
  background-color: var(--secondary);
  padding: 25px 0;
}
.CTArow a,
.CTArow a:hover {
  text-decoration: none;
}
.CTArow .card {
  background-color: #7E26B7;
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.5));
}
.CTArow h5 {
  color: #fff;
  font-weight: 600;
  margin-top: 5px;
}
.CTArow .card:hover {
  background-color: #9339CE;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.25));
}
.row.cards-row {
  display: flex;
  flex-wrap: wrap;
}
.row.cards-row > .col {
  display: flex;
}
.row.cards-row .card {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}





/**** Icons ****/
.fade-in, .fade-in2, .fade-in3 {
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}
.fade-in {
  animation: fadeIn 2s ease-out forwards;
  animation-delay: 0.3s;
}
.fade-in2 {
  animation-delay: 0.75s;
}
.fade-in3 {
  animation-delay: 1.25s;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}



/**** Home PACT Glance ****/
.glanceSubtitle span {
  background-color: #FFF;
  margin-bottom: -15px;
  padding: 0 15px;
  color: var(--primary);
}
@media (max-width: 500px) {
  .glanceSubtitle span {
    padding: 0 5px;
  }
}
.glanceStatsWrapper {
  border: 3px solid var(--secondary);
  border-radius: 2.5rem;
}
.statIcon {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.statIcon2 {
  width: 160px;
  height: 120px;
  object-fit: contain;
}
.statNumber {
  font-size: clamp(1rem, 2.5vw, 2.5rem);
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  color: var(--primary);
}
.statLabel {
  font-family: 'Lexend', sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary);
}
/* Responsive tweaks */
@media (max-width: 767px) {
  .statNumber {
    font-size: 2rem;
  }
}
  











/**** Timeline ****/
#timeline {
  background: #ecebf3;
}
.timeline {
  position: relative;
  width: 760px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 1em 0;
  list-style-type: none;
  font-weight: 600;
  font-size: 1.05rem;
}
.timeline::before {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  display: block;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background: rgb(80, 80, 80);
  background: linear-gradient(var(--timeline-gradient));
  z-index: 5;
}
.timeline li {
  padding: 1em 0;
}
.timeline li::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.direction-l {
  position: relative;
  width: 350px;
  float: left;
  text-align: right;
}
.direction-r {
  position: relative;
  width: 350px;
  float: right;
}
.flag-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}
.flag {
  position: relative;
  display: inline;
  background: #622d84;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
}
.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15),
    0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}
.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15),
    0 0 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}
.direction-l .flag::before,
.direction-r .flag::before {
  position: absolute;
  top: 50%;
  right: -40px;
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border-radius: 10px;
  border: 4px solid var(--circle-border);
  z-index: 10;
}
.direction-r .flag::before {
  left: -40px;
}
.direction-l .flag::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-left-color: #6b2f92;
  border-width: 8px;
  pointer-events: none;
}
.direction-r .flag::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-right-color: #6b2f92;
  border-width: 8px;
  pointer-events: none;
}
.time-wrapper {
  display: inline;
  line-height: 1em;
  font-size: 0.66666em;
  color: rgb(250, 80, 80);
  vertical-align: middle;
}
.direction-l .time-wrapper {
  float: left;
}
.direction-r .time-wrapper {
  float: right;
}
.time {
  display: inline-block;
  padding: 4px 6px;
  background: rgb(248, 248, 248);
}
.desc {
  margin: 1em 0.75em 0 0;
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.direction-r .desc {
  margin: 1em 0 0 0.75em;
}
.future.flag::after {
  border-left-color: var(--timeline-future);
}
/* Timeline Media Queries */
@media screen and (max-width: 760px) {
  .timeline {
    width: 100%;
    padding: 4em 0 1em 0;
  }
  .timeline li {
    padding: 2em 0;
  }
  .direction-l,
  .direction-r {
    float: none;
    width: 100%;
    text-align: center;
  }
  .flag-wrapper {
    text-align: center;
  }
  .flag {
    background: #6b2f92;
    z-index: 15;
  }
  .direction-l .flag::before,
  .direction-r .flag::before {
    position: absolute;
    top: -30px;
    left: 50%;
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    margin-left: -9px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid var(--circle-border);
    z-index: 10;
  }
  .direction-l .flag::after,
  .direction-r .flag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -8px;
    height: 0;
    width: 0;
    margin-left: -8px;
    border: solid transparent;
    border-bottom-color: #6b2f92;
    border-width: 8px;
    pointer-events: none;
  }
  .time-wrapper {
    display: block;
    position: relative;
    margin: 4px 0 0 0;
    z-index: 14;
  }

  .direction-l .time-wrapper {
    float: none;
  }

  .direction-r .time-wrapper {
    float: none;
  }

  .desc {
    position: relative;
    margin: 1em 0 0 0;
    padding: 1em;
    background: rgb(245, 245, 245);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 15;
  }
  .direction-l .desc,
  .direction-r .desc {
    position: relative;
    margin: 1em 1em 0 1em;
    padding: 1em;
    z-index: 15;
  }
  .future.flag::after {
      border-left-color: none;
      border-bottom-color: var(--timeline-future);
    }
}
@media screen and (min-width: 400px) and (max-width: 660px) {
    .direction-l .desc,
    .direction-r .desc {
        margin: 1em 4em 0 4em;
    }
}
.future {
  background: var(--timeline-future);
}

/* animated overlay that “draws” step-by-step */
.timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 0;                  /* starts at 0 and grows */
  background: #6b2f92;        /* or: background: linear-gradient(var(--timeline-gradient)); */
  border-radius: 3px;
  z-index: 6;                 /* above the grey base line (z-index:5) */
  transform: translateX(-50%);
}
.timeline {
  position: relative;
  z-index: 0; 
}
/* Base gray line */
.timeline::before {
  z-index: -1; /* behind flags */
}
/* Animated purple line overlay */
.timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 0; /* full height */
  background: #6b2f92;
  border-radius: 3px;
  transform-origin: top; /* <-- important */
  transform: scaleY(0);
  z-index: -1;
  transform: translateX(-50%);
  /* transform: translateX(-50%) scaleY(0); */
}
/* Timeline items */
.timeline li {
  opacity: 0.3;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}
.flag::before {
  opacity: 0;
}
.active .flag::before {
  opacity: 1;
}
.timeline li.active {
  opacity: 1;
  transform: translateY(0);
}
/* Flags above everything */
.flag {
  position: relative;
  z-index: 3;
  transition: transform 0.3s, box-shadow 0.3s;
}






/**** Institutions ****/
.logoCarousel {
  overflow: hidden;  
  position: relative; 
  width: 100%;       
}
.track {
  display:flex;
  gap:32px;
  will-change:transform;
  align-items:center
}
.item {
  flex:0 0 auto;
  width:200px;
  height:140px;
  border-radius:8px;
  overflow:hidden;
  background:#ddd;
}
.item img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
@media (min-width:900px){ 
  .item {
    width:240px;
    height:160px;
  } 
  }
@media (
  max-width:450px){ 
  .item {
    width:140px;
    height:100px;
  } 
}
/* CSS version */
#logoCarousel {
  /* margin: 100px auto; */
  width: 100%;
  display: flex;
  overflow-x: hidden;
}
.logoTrack {
  display: flex;
  align-items: center;
  justifiy-content: center;
  gap: 3.5em;
  padding-right: 3.5em;
  animation: scrollingLogos 30s infinite linear;
}
#logoCarousel:hover .logoTrack,
#logoCarousel:focus .logoTrack {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
.logoImage {
  flex: 0 0 5em;
  align-content: center;
}
.logoImage img {
  max-width: 340px;
}
@keyframes scrollingLogos {
  from {translate: 0;}
  to {translate: -100%;}
}
@media (min-width: 1200px) {
  #logoCarousel .logoTrack:last-of-type {
    display: none;
  }
  .logoTrack {
    animation: none;
    margin: 0 auto;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .logoTrack {
    animation: scrollingLogos 20s infinite linear;
  }
}



/**** PACT Experience Journey****/
.roadmapContainer {
  margin: 0 auto;
  padding: 0 20px;
	width: 70%;
  max-width: 900px;
}
/* roadmap-content container */
.roadmap-content {
	position: relative;
	max-width: 100%;
}
.roadmap-content p ~ ul {
  margin-top: -10px;
}
/* setting padding based on even or odd */
.roadmap-content:nth-child(odd) {
	padding: 30px 0 30px 30px;
}
.roadmap-content:nth-child(even) {
	padding: 30px 30px 30px 0;
}
/* Global ::before */
.roadmap-content::before {
	content: "";
	position: absolute;
	width: 50%;
	border: dashed rgb(130, 135, 162) 20px;
}
/* Setting the border of top, bottom, left */
.roadmap-content:nth-child(odd)::before {
	left: 0px;
	top: -5px;
	bottom: -5px;
	border-width: 5px 0 5px 5px;
	border-radius: 50px 0 0 50px;
}
.roadmap-content:first-of-type::before {
	top: 25px;
}
.roadmap-content:last-of-type::before {
	bottom: 0;
}
/* Setting the top and bottom to "-5px" because earlier it was out of a pixel in mobile devices */
@media only screen and (max-width: 400px) {
	.roadmap-content:nth-child(odd)::before {
		top: -5px;
		bottom: -5px;
	}
}
/* Setting the border of top, bottom, right */
.roadmap-content:nth-child(even)::before {
	right: 0;
	top: 0;
	bottom: 0;
	border-width: 5px 5px 5px 0;
	border-radius: 0 50px 50px 0;
}
/* Removing the border if it is the first roadmap-content */
.roadmap-content:first-child::before {
	border-top: 0;
	border-top-left-radius: 0;
}
/* Removing the border if it is the last roadmap-content  and it's odd */
.roadmap-content:last-child:nth-child(odd)::before {
	border-bottom: 0;
	border-bottom-left-radius: 0;
}
/* Removing the border if it is the last roadmap-content  and it's even */
.roadmap-content:last-child:nth-child(even)::before {
	border-bottom: 0;
	border-bottom-right-radius: 0;
}
/* Information about the timeline */
.info {
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	padding: 10px;
  z-index: 10;
  position: relative;
}
/* Title of the roadmap-content */
.rmTitle {
	position: relative;
  text-transform: uppercase;
  color: #492892;
  font-size: 24px;
  font-weight: 700;
}
/* Timeline dot  */
.rmTitle::before {
	content: "";
	position: absolute;
  display: inline-block;
	width: 80px;
	height: 80px;
  background: url('/user/pages/images/journey_brain.png') no-repeat center center;
  background-size: contain;
}
.roadmap-content:last-of-type .rmTitle::before {
	content: "";
	position: absolute;
  display: inline-block;
	width: 80px;
	height: 80px;
  background: url('/user/pages/images/journey_beyond.png') no-repeat center center;
  background-size: contain;
}
/* text right if the roadmap-content is even  */
.roadmap-content:nth-child(even) > .info > .rmTitle {
	text-align: right;
}
/* text left if the roadmap-content is even  */
.roadmap-content:nth-child(even) > .info > p {
	text-align: left;
}
/* setting dot to the left if the roadmap-content is odd */
.roadmap-content:nth-child(odd) > .info > .rmTitle::before {
	left: -85px;  
  top: -20px;
}
.roadmap-content:nth-child(odd) > .info > .markerouter {
	left: -90px;
  top: -20px;
}
/* setting dot to the right if the roadmap-content is even */
.roadmap-content:nth-child(even) > .info > .rmTitle::before {
	right: -90px;
  top: -20px;
}
.roadmap-content:nth-child(even) > .info > .markerouter {
	right: 10px;
  top: -20px;
}
/* .roadmap-right, .roadmap-right > .info > p {
  text-align: left;
} */
.markerouter {
	position: absolute;
	top: 30px;
}
.marker {
	transform: perspective(40px) rotateX(20deg) rotateZ(-45deg);
	transform-origin: 50% 50%;
	border-radius: 50% 50% 50% 0;
	padding: 0 3px 3px 0;
	width: 40px;
	height: 40px;
	background: #ed1f34;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -2.8em 0 0 -0.8em;
	-webkit-box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.5);
	box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.5);
}
.marker::after {
	content: "";
	width: 1em;
	height: 1em;
	margin: 1em 0 0 0.7em;
	background: #ffffff;
	position: absolute;
	border-radius: 50%;
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: inset -2px 2px 4px hsla(0, 0, 0, 0.5);
	-webkit-box-shadow: inset -2px 2px 4px hsla(0, 0, 0, 0.5);
	box-shadow: inset -2px 2px 4px hsla(0, 0, 0, 0.5);
}
.beacon {
	position: relative;
	top: -6px;
	left: -16px;
	height: 3em;
	width: 3em;
	border-radius: 50%;
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}
.beacon::before,
.beacon::after {
	position: absolute;
	content: "";
	height: 3em;
	width: 3em;
	left: 0;
	top: 0;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 0 0 0 3px #ed1f34;
	-webkit-animation: active 2s infinite linear;
	-moz-animation: active 2s infinite linear;
	animation: active 2s infinite linear;
}
.beacon::after {
	-moz-animation-delay: 1s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
@-webkit-keyframes active {
	0% {
		-webkit-transform: scale(0.1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(2.5);
		opacity: 0;
	}
}
@keyframes active {
	0% {
		transform: scale(0.1);
		transform: box-shadow(0px 0px 0px 1px #ed1f34);
		opacity: 1;
	}
	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}





/**** PACT Participants ****/
.flowCard {
  border-radius: 15px;
  border: 6px solid #4b2e83;
  overflow: hidden;
  background: #fff;
  transition: 0.2s ease-in-out;
}
.flowCard .card-text {
  font-weight: 700;
  line-height: 1.4rem;
}
.flowCard:hover {
  transform: translateY(-4px);
  transition: 0.2s ease-in-out;
}
.cardHeader {
  background-color: #4b2e83;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  font-size: 2.5rem;
}
.phasesIcon {
  max-height: 130px;
}
.flowArrow {
  font-size: 1rem;
  color: var(--secondary);
  max-width: 50px;
}


/**** Wall Of Why ****/
.whatsYourWhy {
  background: #ECEBF3;
  padding: 3rem 2rem 5rem;
  margin: 3rem 0;
  text-align: center;
}
.whatsYourWhy img {
  max-height: 50px;
}
.wywTitle {
  margin-bottom: 1.5rem;
  color: var(--primary);
  background-color: transparent;
  padding: 0 10px;
}
.wywTitle span {
  font-family: "Marck Script", sans-serif;
  font-weight: 600;
}
.wallOfWhys {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}
.note {
  background-color: #fffa88;
  padding: 1.25rem;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  transform: rotate(-4deg);
  transition: transform 0.2s;
  /* font-size: 1.45rem; */
  line-height: 1.75rem;
  border-radius: 5px;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}
.note:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 2;
}
/* Random color & rotation variation */
/* .note:nth-child(odd) { background: #ffd6a5; transform: rotate(2deg); }
.note:nth-child(even) { background: #caffbf; transform: rotate(-1deg); }
.note:nth-child(3n) { background: #9bf6ff; transform: rotate(3deg); } */





/**** Newsletters ****/
.pastNewsletters {
  max-width: 450px;
  margin: 0 auto;
}
.newsletterItem a {
  border-top: 1px solid #707070;
  padding: 20px 0;
  text-decoration: none;
  display: block;
}
.newsletterItem.is-last {
  border-bottom: 1px solid #707070;
}
.newsletterItem a {
  color: #2A213D;
}
.newsletterItem i {
  color: var(--links);
}
.newsletterItem a:hover {
  text-decoration: none;
  background-color: #e5e2ec;
}
#prevPage, #nextPage {
  background: transparent;
  border: 0;
  color: var(--links);
  font-size: 1.8rem;
  vertical-align: bottom;
}
#prevPage:hover, #nextPage:hover {
  color: var(--primary);
}
#prevPage:hover i::before {
  content: "\F12D";
}
#nextPage:hover i::before {
  content: "\F136";
}



/**** In The News ****/
/* Featured */
.featuredImg {
  background-color: var(--links);  
  border-radius: 10px 0 0 10px;
}
@media (max-width: 767px) {
  .featuredImg {
    border-radius: 10px 10px 0 0;
  }
}
.featuredArticle {
  border: 3px solid var(--links);
  margin: 0 .5rem .5rem .5rem;
}
.computerFrame {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: auto;
}
.computerOverlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
}
.computerScreen {
  position: absolute;
  z-index: 1;
  top: 17%;
  left: 14%;
  width: 72%;
  height: 47%;
  object-fit: cover;
  border-radius: 6px;
}
/* All News */
.newsArticles h5 {
  color: var(--text);
}
.newsArticles h5,
.newsArticles p {
  margin-bottom: 0;
}
.newsArticles a {
  padding: 20px;
  text-decoration: none;
  display: block;
}
.newsArticles i {
  color: var(--links);
}
.newsArticles a:hover {
  text-decoration: none;
  background-color: #e5e2ec;
}
.newsArticles.first-visible {
  border-top: 1px solid #707070;
}
.newsArticles {
  border-bottom: 1px solid #707070;
}
/* Archives */
.archiveList {
  padding-left: 0;
}
.archiveList li {
  display: block;
  border-bottom: 1px dashed var(--secondary);
}
a.archiveFilter {
  text-decoration: none;
  padding: 10px;
}
.archiveFilter .badge {
  background-color: var(--primary);
}
.archiveFilter.active {  
  background-color: #efeaf2;
}




/**** Forms ****/
.control-label {
  display: none;
}
.form-field {
  margin-bottom: 1rem;
}
.form-control {
  padding: .75rem 1rem;
  font-size: 1.25rem;
  border-radius: 12px;
  border: 1px solid #b5b5b5;
}
.form-control:focus {
  border-color: #b5b5b5;
  box-shadow: 0 0 0 .25rem rgba(42, 23, 84, 0.15);
}
select.form-control {
  color: #6b6f73;
}
.selectWrapper {
  position: relative;
}
.selectWrapper::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
input[type="checkbox"] {
  height: 20px;
  width: 20px;
  accent-color: var(--buttons);
}
.notices.error.red {
  padding: 10px;
  background-color: #cc2903;
  color: white;  
  margin-bottom: 15px;
}
.notices.error.red p {
  margin-bottom: 0;
}

/* Floating Placeholders */
.formFieldFloating {
  position: relative;
}
.formFieldFloating input,
.formFieldFloating textarea {
  width: 100%;
  padding: 1.2rem 0.75rem 0.4rem;
}
.formFieldFloating label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  background: white;
  padding: 0 0.25rem;
  color: #777;
  transition: all 0.2s ease;
  pointer-events: none;
}
.formFieldFloating textarea ~ label {
  top: 15%;
}
.formFieldFloating input:focus + label,
.formFieldFloating input:not(:placeholder-shown) + label,
.formFieldFloating textarea:focus + label,
.formFieldFloating textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.75rem;
  color: var(--primary);
}

/* reCaptcha Label */
form .form-field:not(.formFieldFloating) .form-label {
  display: none;
}





/**** Google Maps ****/
.iwTitle {
  padding-right: 30px;
}
.gm-style-iw-chr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
}
.gm-style-iw-d {
  padding-top: 0 !important;
}
.gm-ui-hover-effect {
  position: absolute !important;  
  right: 0;
  top: 5px;
}
.infoWindowContent p {
  font-size: 1rem;
}




/**** Accordion ****/
.accordion-header button {
  font-weight: 700;  
  font-size: 1.2rem;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: var(--links);
  border-bottom: 1px solid var(--links);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  font-size: 1rem;
}
.accordion-item:last-of-type {
  border-bottom: 1px solid #dee2e6 !important;
}
.accordion-button::after {
  background-image: none !important;
  font-family: "bootstrap-icons";
  font-size: 1.5rem;
  content: "\F4FA";
  transform: none !important;
}
.accordion-button:not(.collapsed)::after {
  content: "\F2E6"; 
}
.accordion-body h5:not(:first-of-type) {
  margin-top: 2rem;
}
#studyLocations .accordion-body.studyLocations p {
  border-left: 1px solid var(--links);
  margin-left: 5px;
  padding-left: 10px;
}



/**** To Top ****/
#to_top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  transition: background-color ease-in 200ms;
  -moz-transition: background-color ease-in 200ms;
  -webkit-transition: background-color ease-in 200ms;
  -o-transition: background-color ease-in 200ms;
  -ms-transition: background-color ease-in 200ms;
}
#to_top i {
  color: #333;
  font-size: 2.8rem;
}



/**** Footer ****/
.footer {
    background-color: var(--primary);
}
.footerSupport {
    background-color: var(--secondary);
}
.footerSupport .small {
  font-size: .8em;
}
.footer li {
  line-height: 1.3rem;
}
.noLink {
  cursor: default;
  pointer-events: none;
  opacity: .75;
  letter-spacing: .05em;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}