.section-blocks {
  padding: 0;
  position: relative;
  margin: 7rem 0;
}
.section-blocks .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black);
}
.section-blocks .background img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blocks .container {
  position: relative;
}
.section-blocks .container img.heading-icon {
  width: 30px;
  margin: 0 auto 25px;
  display: block;
}
.section-blocks .container h1, .section-blocks .container h2 {
  max-width: 600px;
  margin: 0 auto 25px;
  text-align: center;
}
.section-blocks .container .text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.75em;
}
.section-blocks .container > .buttons {
  display: block;
  margin: 75px auto 0;
}
.section-blocks .container > .buttons .button {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 20px;
}
.section-blocks .container > .buttons .button:last-child {
  margin-bottom: 0;
}
.section-blocks .container .blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 20px;
  width: 100%;
}
.section-blocks .container .blocks:not(:first-child) {
  margin-top: 50px;
}
.section-blocks .container .blocks .block {
  padding: 30px;
  background-color: #fff;
  flex: 1 0 calc(25% - 15px);
  aspect-ratio: 0.6;
  color: var(--black);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.section-blocks .container .blocks .block .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-blocks .container .blocks .block .background img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blocks .container .blocks .block .background:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 150%;
  transition: all 0.5s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 50%);
}
.section-blocks .container .blocks .block .content {
  position: absolute;
  height: 50%;
  width: 100%;
  top: 100%;
  left: 0;
  transition: all 0.5s;
  color: var(--white);
  padding: 0 30px;
}
.section-blocks .container .blocks .block .content h3 {
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
  position: absolute;
  bottom: 100%;
  left: 30px;
  right: 30px;
}
.section-blocks .container .blocks .block .content .text {
  text-align: left;
  line-height: 1.5em;
  font-size: 0.9em;
  margin-bottom: 0;
  transition: all 0.3s;
}
.section-blocks .container .blocks .block .content .text *:first-child {
  margin-top: 0;
}
.section-blocks .container .blocks .block .content .text *:last-child {
  margin-bottom: 0;
}
.section-blocks .container .blocks .block .content p.link {
  margin: 20px 0 0;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.section-blocks .container .blocks .block:hover .background:after {
  top: 0;
}
.section-blocks .container .blocks .block:hover .content {
  top: 50%;
}

@media (max-width: 1150px) {
  .section-blocks .container .blocks .block:hover .content {
    top: 25%;
  }
}
@media (max-width: 1000px) {
  .section-blocks .container .blocks .block {
    aspect-ratio: 0.4;
  }
}
@media (max-width: 900px) {
  .section-blocks .container h1, .section-blocks .container h2 {
    font-size: 2.75em;
  }
  .section-blocks .container .blocks .block {
    flex: 1 0 calc(50% - 10px);
    aspect-ratio: 1;
    display: flex;
    align-items: flex-end;
  }
  .section-blocks .container .blocks .block .background:after {
    top: 0;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  }
  .section-blocks .container .blocks .block .content {
    top: 0 !important;
    overflow-y: auto;
    position: relative;
    padding: 0;
    height: auto;
    max-height: 100%;
  }
  .section-blocks .container .blocks .block .content h3 {
    position: relative;
    bottom: unset;
    left: 0;
  }
}
@media (max-width: 700px) {
  .section-blocks .container h1, .section-blocks .container h2 {
    font-size: 2.5em;
  }
  .section-blocks .container .blocks .block {
    aspect-ratio: 1.5;
    flex: unset;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .section-blocks .container .blocks .block {
    aspect-ratio: 1;
  }
}
/*

Options - Theme: Timeline

*/
.section-blocks[options~=theme-timeline] .container {
  max-width: 900px;
}
.section-blocks[options~=theme-timeline] .container .blocks {
  grid-gap: unset;
}
.section-blocks[options~=theme-timeline] .container .blocks .block {
  flex: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: unset;
  background-color: unset;
  padding: unset;
  overflow: unset;
  flex-wrap: wrap;
}
.section-blocks[options~=theme-timeline] .container .blocks .block:not(:first-child) {
  padding-top: 100px;
}
.section-blocks[options~=theme-timeline] .container .blocks .block:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: rgba(var(--primary-rgb), 0.25);
  left: calc(50% - 2px);
  transition: all 1.5s;
}
.section-blocks[options~=theme-timeline] .container .blocks .block:after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 7.5px);
  width: 15px;
  height: 15px;
  background-color: var(--primary);
  box-shadow: 0 0 0 8px rgba(var(--primary-rgb), 0.3);
  border-radius: 100%;
  opacity: 0;
  transition: all 1.5s;
}
.section-blocks[options~=theme-timeline] .container .blocks .block:first-child:before {
  border-radius: 5px 5px 0 0;
}
.section-blocks[options~=theme-timeline] .container .blocks .block:last-child:before {
  border-radius: 0 0 5px 5px;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .background {
  position: relative;
  top: unset;
  left: unset;
  width: calc(50% - 75px);
  height: unset;
  background-color: unset;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .background::after {
  display: none;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .background img {
  width: unset;
  max-width: 100%;
  height: unset;
  -o-object-fit: unset;
     object-fit: unset;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .content {
  width: calc(50% - 75px);
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: unset;
  padding: unset;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .content h3 {
  position: relative;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2em;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0 0 30px;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .content .text {
  font-size: 1em;
}
.section-blocks[options~=theme-timeline].scrolled-to .container .blocks .block:before {
  background-color: rgba(var(--primary-rgb), 1);
}
.section-blocks[options~=theme-timeline].scrolled-to .container .blocks .block:after {
  top: calc(50% - 7.5px);
  opacity: 1;
}

@media (max-width: 800px) {
  .section-blocks[options~=theme-timeline] .container .blocks .block:before {
    left: calc(40% - 2px);
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block:after {
    left: calc(40% - 7.5px);
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .background {
    width: calc(40% - 35px);
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content {
    width: calc(60% - 35px);
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content h3 {
    font-size: 2.25em;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-timeline] .container .blocks .block {
    padding-left: 25px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block:before {
    left: -2px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block:after {
    left: -7.5px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .background {
    width: 100%;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .background img {
    max-width: 300px;
    margin: 0 0 40px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content {
    width: 100%;
  }
}
/*

Options - Theme: Timeline Left

*/
.section-blocks[options~=theme-timeline-left] .container {
  max-width: 900px;
}
.section-blocks[options~=theme-timeline-left] .container .blocks {
  grid-gap: unset;
  margin-top: 75px;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block {
  flex: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: unset;
  background-color: unset;
  padding: unset;
  overflow: unset;
  flex-wrap: wrap;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block:not(:first-child) {
  padding-top: 100px;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: rgba(var(--primary-rgb), 0.25);
  left: 38px;
  transition: all 1.5s;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block:first-child:before {
  border-radius: 5px 5px 0 0;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block:last-child:before {
  border-radius: 0 0 5px 5px;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block .background {
  position: relative;
  top: unset;
  left: unset;
  width: 80px;
  height: 80px;
  border: 15px solid rgba(var(--primary-rgb), 0.5);
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block .background::after {
  display: none;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block .background img {
  width: unset;
  max-width: 32px;
  max-height: 32px;
  height: unset;
  -o-object-fit: unset;
     object-fit: unset;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block .content {
  width: calc(100% - 125px);
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: unset;
  padding: unset;
  display: flex;
  grid-gap: 40px;
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block .content h3 {
  position: relative;
  font-size: 2.3em;
  font-weight: 600;
  line-height: 1.2em;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0 0 30px;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  width: calc(50% - 20px);
}
.section-blocks[options~=theme-timeline-left] .container .blocks .block .content .text {
  font-size: 1em;
  width: calc(50% - 20px);
  font-size: 1.2em;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block .background {
  animation: timelineLeft 1s forwards;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(1) .background {
  animation-delay: 1s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(2) .background {
  animation-delay: 1.2s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(3) .background {
  animation-delay: 1.4s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(4) .background {
  animation-delay: 1.6s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(5) .background {
  animation-delay: 1.8s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(6) .background {
  animation-delay: 2s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(7) .background {
  animation-delay: 2.2s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(8) .background {
  animation-delay: 2.4s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(9) .background {
  animation-delay: 2.6s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(10) .background {
  animation-delay: 2.8s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(11) .background {
  animation-delay: 3s;
}
.section-blocks[options~=theme-timeline-left].scrolled-to .block:nth-child(12) .background {
  animation-delay: 3.2s;
}

@keyframes timelineLeft {
  from {
    border-color: rgba(var(--primary-rgb), 0.5);
  }
  to {
    border-color: var(--primary);
  }
}
@media (max-width: 800px) {
  .section-blocks[options~=theme-timeline-left] .container .blocks .block .content h3 {
    font-size: 2em;
  }
  .section-blocks[options~=theme-timeline-left] .container .blocks .block .content .text {
    font-size: 1em;
  }
}
@media (max-width: 650px) {
  .section-blocks[options~=theme-timeline-left] .container .blocks .block:before {
    left: 28px;
  }
  .section-blocks[options~=theme-timeline-left] .container .blocks .block .background {
    width: 60px;
    height: 60px;
    border: 10px solid rgba(var(--primary-rgb), 0.5);
  }
  .section-blocks[options~=theme-timeline-left] .container .blocks .block .background img {
    max-width: 20px;
    max-height: 20px;
  }
  .section-blocks[options~=theme-timeline-left] .container .blocks .block .content {
    display: block;
    width: calc(100% - 90px);
  }
  .section-blocks[options~=theme-timeline-left] .container .blocks .block .content h3 {
    width: unset;
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .section-blocks[options~=theme-timeline-left] .container .blocks .block .content .text {
    width: unset;
  }
}
/*

Options - Theme: Featured List

*/
.section-blocks[options~=theme-featured-list] {
  margin: 7rem 0 10rem;
}
.section-blocks[options~=theme-featured-list] .container .blocks {
  grid-column-gap: 300px;
  justify-content: space-between;
  position: relative;
}
.section-blocks[options~=theme-featured-list] .container .blocks .block {
  flex: unset;
  width: calc(50% - 150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: unset;
  background-color: unset;
  padding: unset;
  overflow: unset;
  flex-wrap: wrap;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}
.section-blocks[options~=theme-featured-list] .container .blocks .block .background {
  position: relative;
  top: unset;
  left: unset;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
}
.section-blocks[options~=theme-featured-list] .container .blocks .block .background::after {
  display: none;
}
.section-blocks[options~=theme-featured-list] .container .blocks .block .background img {
  width: unset;
  max-width: 30px;
  height: unset;
  -o-object-fit: unset;
     object-fit: unset;
}
.section-blocks[options~=theme-featured-list] .container .blocks .block .content {
  width: calc(100% - 90px);
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: unset;
  padding: unset;
}
.section-blocks[options~=theme-featured-list] .container .blocks .block .content h3 {
  position: relative;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.2em;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0 0 15px;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.section-blocks[options~=theme-featured-list] .container .blocks .block .content .text {
  font-size: 0.9em;
}
.section-blocks[options~=theme-featured-list] .container .blocks .block:nth-child(odd) {
  flex-direction: row-reverse;
}
.section-blocks[options~=theme-featured-list] .container .blocks .block:nth-child(odd) h3, .section-blocks[options~=theme-featured-list] .container .blocks .block:nth-child(odd) .text {
  text-align: right;
}
.section-blocks[options~=theme-featured-list] .container .blocks img.middle-graphic {
  max-width: 175px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-blocks[options~=theme-featured-list] .container .blocks svg.curved-line {
  position: absolute;
  height: calc(100% + 75px);
  width: 396px;
  left: calc(50% - 198px);
}
.section-blocks[options~=theme-featured-list] .container .blocks svg.curved-line .base-path {
  stroke: rgba(var(--primary-rgb), 0.2);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
}
.section-blocks[options~=theme-featured-list] .container .blocks svg.curved-line .streak-path {
  stroke: var(--primary);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 40 1000;
  stroke-dashoffset: 40;
  stroke-dashoffset: 1080;
  animation: uStreak 8s ease-in-out infinite;
}
.section-blocks[options~=theme-featured-list][options~=background-black], .section-blocks[options~=theme-featured-list][options~=background-gray] {
  margin: 0;
  padding: 7rem 0 10rem;
}

@keyframes uStreak {
  0% {
    stroke-dashoffset: 1080;
  }
  50%, 100% {
    stroke-dashoffset: -400;
  }
}
@media (max-width: 900px) {
  .section-blocks[options~=theme-featured-list] .container .blocks {
    grid-column-gap: 100px;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks img.middle-graphic {
    display: none;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks svg.curved-line {
    width: 175px;
    left: calc(50% - 88px);
  }
  .section-blocks[options~=theme-featured-list] .container .blocks .block {
    width: calc(50% - 50px);
  }
}
@media (max-width: 750px) {
  .section-blocks[options~=theme-featured-list] .container .blocks {
    grid-column-gap: 20px;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks img.middle-graphic {
    display: none;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks svg.curved-line {
    width: 90px;
    left: calc(50% - 45px);
  }
  .section-blocks[options~=theme-featured-list] .container .blocks .block {
    width: calc(50% - 10px);
  }
  .section-blocks[options~=theme-featured-list] .container .blocks .block .content {
    width: calc(100% - 80px);
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-featured-list] .container .blocks {
    grid-column-gap: 0;
    max-width: 400px;
    margin: 50px auto 0;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks img.middle-graphic {
    display: none;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks svg.curved-line {
    display: none;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks .block {
    width: 100%;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks .block:nth-child(odd) {
    flex-direction: unset;
  }
  .section-blocks[options~=theme-featured-list] .container .blocks .block:nth-child(odd) h3, .section-blocks[options~=theme-featured-list] .container .blocks .block:nth-child(odd) .text {
    text-align: left;
  }
}
/*

Options - Theme: Accordion

*/
.section-blocks[options~=theme-accordion] .container {
  max-width: 900px;
}
.section-blocks[options~=theme-accordion] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-accordion] .container .blocks .block {
  width: 100%;
  flex: unset;
  aspect-ratio: unset;
  padding: unset;
  background-color: var(--gray-light);
  margin: 0;
  position: relative;
}
.section-blocks[options~=theme-accordion] .container .blocks .block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-blocks[options~=theme-accordion] .container .blocks .block:nth-child(2):before {
  background-color: rgba(var(--black-rgb), 0.05);
}
.section-blocks[options~=theme-accordion] .container .blocks .block:nth-child(3):before {
  background-color: rgba(var(--black-rgb), 0.1);
}
.section-blocks[options~=theme-accordion] .container .blocks .block:nth-child(4):before {
  background-color: rgba(var(--black-rgb), 0.15);
}
.section-blocks[options~=theme-accordion] .container .blocks .block:nth-child(5):before {
  background-color: rgba(var(--black-rgb), 0.2);
}
.section-blocks[options~=theme-accordion] .container .blocks .block:nth-child(6):before {
  background-color: rgba(var(--black-rgb), 0.25);
}
.section-blocks[options~=theme-accordion] .container .blocks .block .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  cursor: pointer;
  position: relative;
}
.section-blocks[options~=theme-accordion] .container .blocks .block .label h3 {
  margin: 0;
  font-size: 1.8em;
  font-weight: 400;
}
.section-blocks[options~=theme-accordion] .container .blocks .block .label .icon {
  height: 40px;
}
.section-blocks[options~=theme-accordion] .container .blocks .block .label .icon svg.plus {
  width: 40px;
}
.section-blocks[options~=theme-accordion] .container .blocks .block .label .icon svg.minus {
  display: none;
  width: 30px;
}
.section-blocks[options~=theme-accordion] .container .blocks .block .content {
  position: relative;
  height: unset;
  top: unset;
  padding: 0 40px 40px;
  color: unset;
  display: none;
}
.section-blocks[options~=theme-accordion] .container .blocks .block .content .text {
  max-width: unset;
}
.section-blocks[options~=theme-accordion] .container .blocks .block .content .text a {
  color: var(--black);
  text-decoration: underline;
}
.section-blocks[options~=theme-accordion] .container .blocks .block.open .label .icon svg.plus {
  display: none;
}
.section-blocks[options~=theme-accordion] .container .blocks .block.open .label .icon svg.minus {
  display: block;
}
.section-blocks[options~=theme-accordion] .container .blocks .block.open .content {
  display: block;
}

/*

Options - Theme: Gradient Horizontal

*/
.section-blocks[options~=theme-gradient-horizontal] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block {
  position: relative;
  aspect-ratio: unset;
  padding: 75px 30px;
  flex: unset;
  width: 33%;
  overflow: unset;
  display: block;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:before {
  background-color: var(--black);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(2):after {
  background-color: rgba(0, 0, 0, 0.1);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(3):after {
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(3):after {
  background-color: rgba(0, 0, 0, 0.3);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(4):after {
  background-color: rgba(0, 0, 0, 0.4);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(5):after {
  background-color: rgba(0, 0, 0, 0.5);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(6):after {
  background-color: rgba(0, 0, 0, 0.6);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(7):after {
  background-color: rgba(0, 0, 0, 0.7);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(8):after {
  background-color: rgba(0, 0, 0, 0.8);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(9):after {
  background-color: rgba(0, 0, 0, 0.9);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(10):after {
  background-color: rgb(0, 0, 0);
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(1):after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(1):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(4):after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(4):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(7):after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(7):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(10):after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(10):before {
  left: -50vw;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(3):after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(3):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(6):after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(6):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(9):after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(9):before {
  right: -50vw;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:last-child:after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:last-child:before {
  right: -100vw !important;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block .background {
  position: relative;
  width: unset;
  height: 70px;
  background-color: unset;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block .background img {
  max-width: 60px;
  max-height: 60px;
  -o-object-fit: unset;
     object-fit: unset;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block .content {
  position: relative;
  height: auto;
  top: unset;
  padding: unset;
  z-index: 1;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block .content h3 {
  position: relative;
  bottom: unset;
  left: unset;
  right: unset;
  font-size: 2em;
  font-weight: 500;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block .content p.link {
  margin-top: 50px;
  font-size: 0.9em;
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.section-blocks[options~=theme-gradient-horizontal] .container .blocks .block .content p.link:hover {
  color: var(--white);
}

@media (max-width: 800px) {
  .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block {
    width: 50%;
  }
  .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(odd):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(odd):after {
    left: -50vw !important;
    right: 0 !important;
  }
  .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(even):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(even):after {
    left: 0 !important;
    right: -50vw !important;
  }
  .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:last-child:after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:last-child:before {
    right: -100vw !important;
  }
}
@media (max-width: 550px) {
  .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block {
    width: 100%;
  }
  .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(odd):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(odd):after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(even):before, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:nth-child(even):after {
    left: -50vw !important;
    right: -50vw !important;
  }
  .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:last-child:after, .section-blocks[options~=theme-gradient-horizontal] .container .blocks .block:last-child:before {
    right: -100vw !important;
  }
}
/*

Options - Theme: Cards

*/
.section-blocks[options~=theme-cards] .container h2 {
  font-size: 2em;
  font-weight: 600;
}
.section-blocks[options~=theme-cards] .container .blocks {
  justify-content: space-between;
  position: relative;
  grid-gap: 10px;
}
.section-blocks[options~=theme-cards] .container .blocks .block {
  flex: unset;
  width: calc(33% - 7px);
  display: block;
  aspect-ratio: unset;
  background-color: var(--gray-light);
  padding: unset;
  overflow: unset;
  flex-wrap: wrap;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
  padding: 75px 30px 50px;
  border-radius: 20px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .background {
  position: relative;
  top: unset;
  left: unset;
  background: unset;
  height: unset;
}
.section-blocks[options~=theme-cards] .container .blocks .block .background::after {
  display: none;
}
.section-blocks[options~=theme-cards] .container .blocks .block .background img {
  width: unset;
  height: 50px;
  -o-object-fit: unset;
     object-fit: unset;
  margin-bottom: 30px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content {
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: unset;
  padding: 0;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content h3 {
  position: relative;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.2em;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0 0 15px;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content .text {
  font-size: 0.9em;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content:has(p.link) {
  padding-bottom: 100px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content:has(p.link) p.link {
  position: absolute;
  bottom: 0;
  margin: 0;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content:has(p.link) p.link:hover {
  color: var(--black);
}
.section-blocks[options~=theme-cards] .container .blocks .block:has(.most-popular) {
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-cards] .container .blocks .block:has(.most-popular):after {
  content: "Most Popular";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.7em;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 0 0 10px 10px;
}
.section-blocks[options~=theme-cards][options~=cards-4] .container .blocks .block {
  width: calc(25% - 8px);
}
.section-blocks[options~=theme-cards][options~=cards-green-icon-background] .container .blocks .block .background {
  background-color: var(--primary);
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-blocks[options~=theme-cards][options~=cards-green-icon-background] .container .blocks .block .background img {
  max-width: 30px;
  max-height: 30px;
  margin: 0;
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-cards][options~=cards-4] .container .blocks .block {
    width: calc(33% - 7px);
  }
}
@media (max-width: 900px) {
  .section-blocks[options~=theme-cards] .container .blocks .block {
    width: calc(50% - 5px);
  }
}
@media (max-width: 800px) {
  .section-blocks[options~=theme-cards][options~=cards-4] .container .blocks .block {
    width: calc(50% - 5px);
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-cards] .container .blocks .block {
    width: 100%;
  }
  .section-blocks[options~=theme-cards][options~=cards-4] .container .blocks .block {
    width: 100%;
  }
}
/*

Options - Background: Black

*/
.section-blocks[options~=background-black] {
  margin: 0;
  padding: 7rem 0;
  background-color: var(--black);
}
.section-blocks[options~=background-black] .container .heading {
  color: var(--white);
}
.section-blocks[options~=background-black] .container .blocks .block .content {
  color: var(--white);
}
.section-blocks[options~=background-black] .container .blocks .block .content .text {
  opacity: 0.7;
}

/*

Options - Background: Gray

*/
.section-blocks[options~=background-gray] {
  margin: 0;
  padding: 7rem 0;
  background-color: var(--gray-light);
}

/*

Options - Negative Margin Top

*/
.section-blocks[options~=negative-margin-top] {
  margin-top: -3.5rem;
}

/*

Options - Accordion: No Background

*/
.section-blocks[options~=accordion-no-background] .container .blocks .block {
  background: unset;
  border-top: 1px solid;
}
.section-blocks[options~=accordion-no-background] .container .blocks .block:before {
  display: none;
}
.section-blocks[options~=accordion-no-background] .container .blocks .block:last-child {
  border-bottom: 1px solid;
}

/*

Scroll Animations

*/
.section-blocks.scrolled-to .block:nth-child(1) {
  animation: block1 1s forwards;
}
.section-blocks.scrolled-to .block:nth-child(2) {
  animation: block2 1.25s forwards;
}
.section-blocks.scrolled-to .block:nth-child(3) {
  animation: block3 1.5s forwards;
}
.section-blocks.scrolled-to .block:nth-child(4) {
  animation: block4 1.75s forwards;
}
.section-blocks.scrolled-to .block:nth-child(5) {
  animation: block5 2s forwards;
}
.section-blocks.scrolled-to .block:nth-child(6) {
  animation: block6 2.25s forwards;
}
.section-blocks.scrolled-to .block:nth-child(7) {
  animation: block7 2.5s forwards;
}
.section-blocks.scrolled-to .block:nth-child(8) {
  animation: block8 2.75s forwards;
}
.section-blocks.scrolled-to .block:nth-child(9) {
  animation: block9 3s forwards;
}
.section-blocks.scrolled-to .block:nth-child(10) {
  animation: block10 3.25s forwards;
}
.section-blocks.scrolled-to .block:nth-child(11) {
  animation: block11 3.5s forwards;
}
.section-blocks.scrolled-to .block:nth-child(12) {
  animation: block12 3.75s forwards;
}
.section-blocks.scrolled-to .block {
  animation: block13 4s forwards;
}

@keyframes block1 {
  from {
    margin: -50px 0 50px;
    opacity: 0;
  }
  to {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block2 {
  0%, 20% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block3 {
  0%, 33% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block4 {
  0%, 43% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block5 {
  0%, 50% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block6 {
  0%, 55% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block7 {
  0%, 60% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block8 {
  0%, 64% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block9 {
  0%, 67% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block10 {
  0%, 70% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block11 {
  0%, 72% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block12 {
  0%, 74% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block13 {
  0%, 75% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}