.section-blocks {
  padding: 0;
  position: relative;
  margin: 5rem 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 h1, .section-blocks .container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.section-blocks .container .text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.75em;
}
.section-blocks .container > .buttons {
  display: block;
  margin: 50px 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: 40px 40px 60px;
  background-color: rgba(var(--primary-rgb), 0.1);
  flex: 1 0 calc(33% - 14px);
  color: var(--black);
  text-decoration: none;
  border-radius: 15px;
}
.section-blocks .container .blocks .block .icon {
  height: 60px;
  width: 60px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  margin-bottom: 20px;
}
.section-blocks .container .blocks .block .icon img {
  height: 30px;
  width: auto;
}
.section-blocks .container .blocks .block h3 {
  margin-top: 0;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.4em;
  margin-bottom: 15px;
}
.section-blocks .container .blocks .block .text {
  max-width: unset;
  text-align: left;
  line-height: 1.5em;
  font-size: 0.94em;
  opacity: 0.75;
  padding-right: 30px;
}
.section-blocks .container .blocks .block .text *:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .section-blocks .container .blocks .block {
    flex: 1 0 calc(50% - 10px);
  }
}
@media (max-width: 650px) {
  .section-blocks .container {
    justify-content: center;
  }
  .section-blocks .container .blocks .block {
    flex: unset;
    width: 100%;
    max-width: 500px;
  }
}
/*

Options - Theme Carousel

*/
.section-blocks[options~=theme-carousel] .container {
  max-width: 900px;
}
.section-blocks[options~=theme-carousel] .container .blocks .block {
  border-radius: 15px;
  padding: 0;
  position: relative;
  flex: unset;
  opacity: 1;
}
.section-blocks[options~=theme-carousel] .container .blocks .block.first-block {
  aspect-ratio: 2.2;
  width: 100%;
  animation: unset;
  margin: 0;
  opacity: 1;
}
.section-blocks[options~=theme-carousel] .container .blocks .block:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 18px;
  border: 1px solid var(--black);
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.section-blocks[options~=theme-carousel] .container .blocks .block .icon {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  background-color: unset;
}
.section-blocks[options~=theme-carousel] .container .blocks .block .icon img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  overflow-clip-margin: unset;
}
.section-blocks[options~=theme-carousel] .container .blocks .block:hover:before {
  visibility: visible;
  opacity: 1;
}
.section-blocks[options~=theme-carousel] .container .blocks .block .content {
  display: none;
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel {
  position: relative;
  width: 100%;
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel .carousel-inner {
  display: flex;
  grid-gap: 20px;
  justify-content: flex-start;
  transition: all 0.5s;
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel .carousel-inner .block {
  aspect-ratio: 1;
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f2f2f2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel .arrow svg {
  width: 10px;
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel .arrow.arrow-left {
  left: -20px;
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel .arrow.arrow-right {
  right: -20px;
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel .arrow:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.section-blocks[options~=theme-carousel] .container .blocks .carousel:not(:has(.arrow)) .carousel-inner {
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-carousel] .container .blocks .block.first-block {
    aspect-ratio: 1.75;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-carousel] .container .blocks .block.first-block {
    aspect-ratio: 1.4;
  }
}
/*

Options - Theme Stats

*/
.section-blocks[options~=theme-stats] .container .blocks .block {
  background: none;
  flex: 1 0 calc(25% - 15px);
}
.section-blocks[options~=theme-stats] .container .blocks .block .icon {
  width: 100%;
  height: 100px;
  background: none;
}
.section-blocks[options~=theme-stats] .container .blocks .block .icon img {
  height: unset;
  width: unset;
  max-height: 100px;
  max-width: 100%;
}
.section-blocks[options~=theme-stats] .container .blocks .block .content {
  text-align: center;
}
.section-blocks[options~=theme-stats] .container .blocks .block .content h3 {
  font-size: 3em;
  margin: 0;
}
.section-blocks[options~=theme-stats] .container .blocks .block .content .text {
  text-align: center;
  padding-right: 0;
}
.section-blocks[options~=theme-stats] .container .buttons {
  display: flex;
  justify-content: center;
  grid-gap: 25px;
}
.section-blocks[options~=theme-stats] .container .buttons .button {
  margin: 0;
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-stats] .container .blocks .block {
    flex: 1 0 calc(50% - 10px);
  }
}
@media (max-width: 500px) {
  .section-blocks[options~=theme-stats] .container .blocks .block .content h3 {
    font-size: 2.4em;
  }
}
/*

Options - Theme Cards

*/
.section-blocks[options~=theme-cards] .container .blocks .block {
  background: none;
  padding: 0;
}
.section-blocks[options~=theme-cards] .container .blocks .block .icon {
  width: 100%;
  height: unset;
  aspect-ratio: 1.5;
  background: none;
  position: relative;
  max-height: 300px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  background-color: rgba(var(--primary-rgb), 0.5);
  border-radius: 20px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content h3 {
  transition: all 0.3s;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content p.link {
  margin: 20px 0 0;
  color: var(--primary);
  width: -moz-max-content;
  width: max-content;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content p.link:hover {
  text-decoration: underline;
}
.section-blocks[options~=theme-cards] .container .blocks .block:hover .icon::after {
  visibility: visible;
  opacity: 1;
}
.section-blocks[options~=theme-cards] .container .blocks .block:hover .content h3 {
  color: var(--primary);
}
.section-blocks[options~=theme-cards] .container .buttons {
  display: flex;
  justify-content: center;
  grid-gap: 25px;
}
.section-blocks[options~=theme-cards] .container .buttons .button {
  margin: 0;
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-stats] .container .blocks .block {
    flex: 1 0 calc(50% - 10px);
  }
}
@media (max-width: 500px) {
  .section-blocks[options~=theme-stats] .container .blocks .block .content h3 {
    font-size: 2.4em;
  }
}
/*

Options - Theme Image Blocks

*/
.section-blocks[options~=theme-image-blocks] .container {
  position: relative;
}
.section-blocks[options~=theme-image-blocks] .container .blocks {
  grid-gap: 25px;
  justify-content: flex-start;
  margin-top: 75px;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block {
  background-color: unset;
  padding: unset;
  width: calc(33% - 17px);
  flex: unset;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: unset;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block .icon:before {
  content: "";
  background-color: rgba(var(--primary-rgb), 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block .icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block .content {
  text-align: center;
  position: relative;
  padding: 80px 40px;
  color: var(--white);
  opacity: 0;
  transition: all 0.4s;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block .content h3 {
  font-size: 1.6em;
  margin-bottom: 25px;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block .content .text {
  text-align: center;
  font-weight: 500;
  padding-right: 0;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block .content .text *:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block .content p.link {
  margin-top: 20px;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block h3.overlay-header {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 100px 40px 40px;
  background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  width: 100%;
  color: var(--white);
  transition: all 0.4s;
  font-size: 1.75em;
  margin: 0;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block:hover .icon::before {
  opacity: 1;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block:hover .content {
  opacity: 1;
}
.section-blocks[options~=theme-image-blocks] .container .blocks .block:hover h3.overlay-header {
  opacity: 0;
}

@media (max-width: 1175px) {
  .section-blocks[options~=theme-image-blocks] .container .blocks {
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .section-blocks[options~=theme-image-blocks] .container .blocks .block {
    width: calc(50% - 13px);
  }
}
@media (max-width: 700px) {
  .section-blocks[options~=theme-image-blocks] .container .blocks .block {
    width: 100%;
  }
}
/*

Options - Theme Accordion

*/
.section-blocks[options~=theme-accordion] .container {
  display: flex;
  align-items: flex-start;
  grid-gap: 100px;
  max-width: 900px;
}
.section-blocks[options~=theme-accordion] .container .blocks {
  width: 350px;
  grid-gap: 5px;
}
.section-blocks[options~=theme-accordion] .container .blocks .tab {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
  background-color: rgba(var(--primary-bright-rgb), 0.5);
  padding: 10px;
  border-radius: 15px;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.section-blocks[options~=theme-accordion] .container .blocks .tab .icon {
  background-color: var(--primary);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
.section-blocks[options~=theme-accordion] .container .blocks .tab .icon img {
  max-width: 60%;
  max-height: 60%;
}
.section-blocks[options~=theme-accordion] .container .blocks .tab h3 {
  font-size: 1em;
  font-weight: 500;
  margin: 0;
  width: calc(100% - 42px);
}
.section-blocks[options~=theme-accordion] .container .blocks .tab .hidden {
  display: none;
}
.section-blocks[options~=theme-accordion] .container .blocks .tab:hover {
  background-color: rgba(var(--primary-bright-rgb), 1);
}
.section-blocks[options~=theme-accordion] .container .blocks .tab.active {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 15px 0 0 15px;
}
.section-blocks[options~=theme-accordion] .container .blocks .tab.active .icon {
  background-color: var(--white);
}
.section-blocks[options~=theme-accordion] .container .blocks .tab.active .triangle {
  opacity: 1;
}
.section-blocks[options~=theme-accordion] .container .blocks .tab.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 20px;
  height: 100%;
  background-color: var(--primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.section-blocks[options~=theme-accordion] .container .block-content {
  flex: 1;
}
.section-blocks[options~=theme-accordion] .container .block-content .icon {
  background-color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
.section-blocks[options~=theme-accordion] .container .block-content .icon img {
  max-width: 60%;
  max-height: 60%;
}
.section-blocks[options~=theme-accordion] .container .block-content h3 {
  font-size: 2.25em;
  font-weight: 500;
  margin: 40px 0 20px;
}
.section-blocks[options~=theme-accordion] .container .block-content .text {
  text-align: left;
  max-width: unset;
  margin: 0;
  line-height: 1.5em;
}
.section-blocks[options~=theme-accordion] .container .block-content .button {
  width: -moz-max-content;
  width: max-content;
  flex-direction: unset;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-accordion] .container {
    grid-gap: 50px;
  }
  .section-blocks[options~=theme-accordion] .container .blocks {
    width: 300px;
  }
}
@media (max-width: 750px) {
  .section-blocks[options~=theme-accordion] .container {
    grid-gap: 30px;
  }
  .section-blocks[options~=theme-accordion] .container .blocks {
    width: 200px;
  }
  .section-blocks[options~=theme-accordion] .container .blocks .tab .icon {
    height: 36px;
    width: 36px;
  }
  .section-blocks[options~=theme-accordion] .container .blocks .tab h3 {
    width: calc(100% - 46px);
    font-size: 0.9em;
  }
}
@media (max-width: 500px) {
  .section-blocks[options~=theme-accordion] .container .blocks {
    width: 150px;
  }
  .section-blocks[options~=theme-accordion] .container .blocks .tab .icon {
    height: 26px;
    width: 26px;
  }
  .section-blocks[options~=theme-accordion] .container .blocks .tab h3 {
    width: calc(100% - 36px);
    font-size: 0.8em;
  }
}
/*

Options - Theme Accordion Stacked

*/
.section-blocks[options~=theme-accordion-stacked] .container {
  max-width: 900px;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks {
  display: block;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab {
  background-color: rgba(var(--primary-rgb), 0.1);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 50px;
  padding: 20px 30px;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top .col {
  display: flex;
  grid-gap: 15px;
  align-items: center;
  width: calc(100% - 80px);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top .icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: var(--primary);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top .icon img {
  max-width: 60%;
  max-height: 60%;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top h3 {
  font-size: 1.2em;
  margin: 0 0 0 10px;
  width: calc(100% - 100px);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top .action-icon {
  cursor: pointer;
  padding: 5px;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top .action-icon svg {
  width: 20px;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top .action-icon svg.minus {
  display: none;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .bottom {
  display: none;
  padding: 20px 30px 50px;
  position: relative;
  overflow: hidden;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .bottom .text {
  text-align: left;
  max-width: unset;
  margin: 0;
  line-height: 1.5em;
  position: relative;
  z-index: 1;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .bottom .button {
  width: -moz-max-content;
  width: max-content;
  margin-top: 50px;
  flex-direction: unset;
  position: relative;
  z-index: 1;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .bottom .graphic {
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 250px;
  opacity: 0.75;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(2) {
  background-color: rgba(var(--primary-rgb), 0.2);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(3) {
  background-color: rgba(var(--primary-rgb), 0.3);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(4) {
  background-color: rgba(var(--primary-rgb), 0.4);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(5) {
  background-color: rgba(var(--primary-rgb), 0.5);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(6) {
  background-color: rgba(var(--primary-rgb), 0.6);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(7) {
  background-color: rgba(var(--primary-rgb), 0.7);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(8) {
  background-color: rgba(var(--primary-rgb), 0.8);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(9) {
  background-color: rgba(var(--primary-rgb), 0.9);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab:nth-child(10) {
  background-color: rgba(var(--primary-rgb), 1);
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab.open .top .action-icon svg.plus {
  display: none;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab.open .top .action-icon svg.minus {
  display: block;
}
.section-blocks[options~=theme-accordion-stacked] .container .blocks .tab.open .bottom {
  display: block;
}

@media (max-width: 700px) {
  .section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .top {
    padding: 20px 15px;
  }
  .section-blocks[options~=theme-accordion-stacked] .container .blocks .tab .bottom {
    padding: 20px 15px 50px;
  }
}
/*

Options - Background Color - Primary

*/
.section-blocks[options~=background-primary] {
  background-color: var(--primary);
  margin: 0;
  padding: 7rem 0;
}
.section-blocks[options~=background-primary] .container {
  color: var(--white);
}
.section-blocks[options~=background-primary] .container .subheading {
  background-color: rgba(0, 0, 0, 0.12);
  color: var(--white);
}

/*

Options - Background Color - Secondary

*/
.section-blocks[options~=background-secondary] {
  background-color: var(--secondary);
  margin: 0;
  padding: 7rem 0;
}
.section-blocks[options~=background-secondary] .container {
  color: var(--white);
}
.section-blocks[options~=background-secondary] .container .subheading {
  background-color: rgba(0, 0, 0, 0.12);
  color: var(--white);
}

/*

Options - Background Color - Gradient

*/
.section-blocks[options~=background-gradient] {
  background-image: var(--background-gradient-primary);
  margin: 0;
  padding: 7rem 0;
}
.section-blocks[options~=background-gradient] .container .subheading {
  color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.2);
}

/*

Options - Background Color - Gradient Secondary

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

/*

Options - 4 blocks wide

*/
.section-blocks[options~=wide-4] .container .blocks .block {
  flex: 1 0 calc(25% - 15px);
}

@media (max-width: 1000px) {
  .section-blocks[options~=wide-4] .container .blocks .block {
    flex: 1 0 calc(33% - 14px);
  }
}
@media (max-width: 650px) {
  .section-blocks[options~=wide-4] .container .blocks .block {
    flex: 1 0 calc(50% - 10px);
  }
}
@media (max-width: 500px) {
  .section-blocks[options~=wide-4] .container .blocks .block {
    flex: 1 0 100%;
  }
}
/*

Options - Narrow header

*/
.section-blocks[options~=narrow-header] .container .heading {
  max-width: 600px;
  margin: 0 auto;
}

/*

Scroll Animations

*/
.section-blocks {
  opacity: 0;
  transition: all 1s;
}
.section-blocks .block {
  margin: -50px 0 50px;
  opacity: 0;
}
.section-blocks.scrolled-to {
  opacity: 1;
}
.section-blocks.scrolled-to .block {
  animation: blockAppear 1s ease-out forwards;
}
.section-blocks.scrolled-to .block:nth-child(1) {
  animation-delay: 0s;
}
.section-blocks.scrolled-to .block:nth-child(2) {
  animation-delay: 0.2s;
}
.section-blocks.scrolled-to .block:nth-child(3) {
  animation-delay: 0.4s;
}
.section-blocks.scrolled-to .block:nth-child(4) {
  animation-delay: 0.6s;
}
.section-blocks.scrolled-to .block:nth-child(5) {
  animation-delay: 0.8s;
}
.section-blocks.scrolled-to .block:nth-child(6) {
  animation-delay: 1s;
}
.section-blocks.scrolled-to .block:nth-child(7) {
  animation-delay: 1.2s;
}
.section-blocks.scrolled-to .block:nth-child(8) {
  animation-delay: 1.4s;
}
.section-blocks.scrolled-to .block:nth-child(9) {
  animation-delay: 1.6s;
}
.section-blocks.scrolled-to .block:nth-child(10) {
  animation-delay: 1.8s;
}
.section-blocks.scrolled-to .block:nth-child(11) {
  animation-delay: 2s;
}
.section-blocks.scrolled-to .block:nth-child(12) {
  animation-delay: 2.2s;
}

@keyframes blockAppear {
  to {
    margin: 0;
    opacity: 1;
  }
}