/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-fasttrack {
  --min-breakpoint: 783px;
  --max-breakpoint: 782px;
  position: relative;
}
.block-fasttrack__container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  position: relative;
  padding: 4rem 0 4rem 4rem;
}
@media (min-width: 783px) {
  .block-fasttrack__container {
    flex-direction: row;
    gap: 3%;
    padding: 0.8rem 2% 2.75rem 1.8%;
    aspect-ratio: 8/3;
    margin: 4rem 0;
  }
}
@media (max-width: 782px) {
  .block-fasttrack__container:before {
    content: "";
    position: absolute;
    top: 6rem;
    left: 1rem;
    width: 2px;
    height: calc(100% - 12rem);
    background: var(--wp--preset--color--teal);
  }
}
@media (min-width: 1025px) {
  .block-fasttrack__container {
    padding: 1.5rem 2% 4rem 1.8%;
  }
}
.block-fasttrack__timeline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.block-fasttrack__entry {
  background: #e8e1dd;
  border-radius: 10px;
  padding: 1rem 1.5rem 0;
  display: flex;
  width: 100%;
  gap: 4vw;
  min-height: 70%;
  position: relative;
  flex: 1;
  margin: 1rem 0;
}
.block-fasttrack__entry:nth-child(even) {
  background: white;
}
@media (max-width: 782px) {
  .block-fasttrack__entry:first-child:before, .block-fasttrack__entry:last-child:before {
    position: absolute;
    content: "";
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--wp--preset--color--teal);
    border-radius: 50%;
    left: -3.9rem;
    background: var(--wp--preset--color--off-white);
  }
  .block-fasttrack__entry:last-child:before {
    bottom: 7px;
  }
}
@media (min-width: 783px) {
  .block-fasttrack__entry {
    display: flex;
    flex-direction: column;
    border-radius: 2.5rem;
    gap: 0;
    padding: 2rem 1rem 1rem;
    align-self: stretch;
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .block-fasttrack__entry {
    border-radius: 4rem;
  }
}
.block-fasttrack__quarter {
  font-weight: 300;
  text-align: center;
  font-size: clamp(2rem, 4vw, 6rem);
  display: block;
  color: var(--wp--preset--color--teal);
  line-height: 1.2;
}
@media (min-width: 783px) and (max-width: 1024px) {
  .block-fasttrack__quarter {
    font-size: var(--wp--preset--font-size--lead);
  }
}
.block-fasttrack__year {
  padding-left: 5px;
  font-weight: 500;
  font-size: var(--wp--preset--font-size--size-26);
  margin-bottom: 1rem;
  display: block;
  color: var(--wp--preset--color--teal);
}
@media (min-width: 783px) {
  .block-fasttrack__year {
    text-align: center;
    padding-left: 0;
  }
}
.block-fasttrack__text {
  font-weight: 300;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 782px) {
  .block-fasttrack__text p {
    text-align: left !important;
    margin-left: 8px;
  }
}
@media (min-width: 1025px) {
  .block-fasttrack__text {
    font-size: var(--wp--preset--font-size--incidental);
    margin-bottom: 2rem;
  }
}
@media (min-width: 783px) {
  .block-fasttrack__text p, .block-fasttrack__text li {
    font-size: clamp(1rem, 1.25vw, 1.8rem);
  }
}
.block-fasttrack__text ul {
  list-style: disc;
  margin-bottom: 5px;
}
@media (min-width: 783px) {
  .block-fasttrack__text ul {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 0;
  }
}
.block-fasttrack__text ul li {
  position: relative;
  margin-bottom: 5px;
}
@media (min-width: 1025px) {
  .block-fasttrack__text ul li {
    padding-left: 10px;
  }
  .block-fasttrack__text ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--wp--preset--color--teal);
  }
}
@media (max-width: 782px) {
  .block-fasttrack svg {
    display: none;
  }
}
