.section-blocks:has(img.graphic) {
  margin: 0;
  padding: 7.5rem 0;
}
.section-blocks .container {
  position: relative;
  z-index: 1;
}
.section-blocks .container .content {
  max-width: 700px;
}
.section-blocks .container .content .buttons {
  margin-top: 40px;
}
.section-blocks .container .blocks {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  grid-gap: 20px;
}
.section-blocks .container .blocks:not(:first-child) {
  margin-top: 50px;
}
.section-blocks .container .blocks .block {
  width: calc(33% - 14px);
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--gray);
  transition: all 0.2s;
  position: relative;
  display: block;
}
.section-blocks .container .blocks .block .block-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.section-blocks .container .blocks .block .text a {
  position: relative;
  z-index: 2;
}
.section-blocks .container .blocks .block img.image {
  width: 100%;
  aspect-ratio: 2;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blocks .container .blocks .block img.image:not(:last-child) {
  margin-bottom: 20px;
}
.section-blocks .container .blocks .block img.icon {
  height: 40px;
  width: auto;
  max-width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-blocks .container .blocks .block img.icon:not(:last-child) {
  margin-bottom: 20px;
}
.section-blocks .container .blocks .block img.icon {
  transition: all 0.2s;
}
.section-blocks .container .blocks .block h3 {
  font-size: 1.3em;
  line-height: 1.2em;
  margin: 0 0 20px;
  font-weight: 500;
}
.section-blocks .container .blocks .block h3:last-child {
  margin-bottom: 0;
}
.section-blocks .container .blocks .block .text {
  font-size: 0.84em;
}
.section-blocks .container .blocks .block .text p {
  font-size: 1em;
}
.section-blocks .container .blocks .block p.link {
  margin: 25px 0 0;
  font-size: 0.84em;
  font-weight: 500;
  text-decoration: underline;
  color: var(--primary);
  transition: all 0.2s;
}
.section-blocks .container .blocks .block p.link svg {
  width: 15px;
  margin: 0 0 -2px 4px;
}
.section-blocks .container .blocks .block p.link svg path {
  transition: all 0.2s;
  fill: var(--primary);
}
.section-blocks .container .blocks .block *:last-child {
  margin-bottom: 0;
}
.section-blocks .container .blocks .block:not(.content):hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.section-blocks .container .blocks .block:not(.content):hover img.icon {
  filter: brightness(0) invert(1);
}
.section-blocks .container .blocks .block:not(.content):hover p.link {
  color: var(--white);
}
.section-blocks .container .blocks .block:not(.content):hover p.link svg path {
  fill: var(--white);
}
.section-blocks .container > .text:last-child {
  margin: 4em auto 0;
  max-width: 800px;
}

@media (max-width: 900px) {
  .section-blocks .container .blocks .block {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .section-blocks .container .blocks .block {
    width: 100%;
  }
  .section-blocks:has(img.graphic) {
    padding: 5em 0;
  }
}
/*

Options > Theme - Honeycomb

*/
.section-blocks[options~=theme-honeycomb] .container .blocks {
  --space-x: clamp(0.75rem, 1.5vw, 1.25rem);
  --pull-y: 2rem;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block {
  position: relative;
  width: calc(100% - var(--space-x));
  -webkit-mask: url("/wp-content/themes/Main/assets/images/honeycomb.svg") center/100% 100% no-repeat;
          mask: url("/wp-content/themes/Main/assets/images/honeycomb.svg") center/100% 100% no-repeat;
  background-color: var(--secondary);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block img.image {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  height: 100%;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block h3 {
  color: var(--white);
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block h3:last-child {
  margin: 0;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:hover {
  background-color: var(--primary);
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:hover img.image {
  opacity: 0.5;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block.muted {
  background-color: unset;
  padding: 0;
  border: 0;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block.muted img {
  height: 75%;
  width: 75%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block.muted:first-child {
  justify-content: flex-end;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block.muted:last-child {
  justify-content: flex-start;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(n+5) {
  transform: translateY(calc(var(--pull-y) * -1));
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(1) {
  grid-column: 1/span 2;
  grid-row: 1;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(2) {
  grid-column: 3/span 2;
  grid-row: 1;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(3) {
  grid-column: 5/span 2;
  grid-row: 1;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(4) {
  grid-column: 7/span 2;
  grid-row: 1;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(5) {
  grid-column: 2/span 2;
  grid-row: 2;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(6) {
  grid-column: 4/span 2;
  grid-row: 2;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(7) {
  grid-column: 6/span 2;
  grid-row: 2;
}
.section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(8) {
  grid-column: 8/span 2;
  grid-row: 2;
}
.section-blocks[options~=theme-honeycomb] .container .bottom {
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  grid-gap: 50px;
  max-width: 1000px;
  margin: 50px auto 0;
  position: relative;
  overflow: hidden;
}
.section-blocks[options~=theme-honeycomb] .container .bottom:before {
  content: "";
  background-image: url("/wp-content/uploads/2026/05/polygon-10.png");
  position: absolute;
  top: 0px;
  right: 0px;
  height: 200%;
  width: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}
.section-blocks[options~=theme-honeycomb] .container .bottom .text {
  text-align: left;
}
.section-blocks[options~=theme-honeycomb] .container .bottom .text *:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-honeycomb] .container .bottom .buttons a {
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-honeycomb] .container .blocks {
    grid-template-columns: repeat(7, 1fr);
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(n+5) {
    transform: none;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(n+4) {
    transform: translateY(calc(var(--pull-y) * -1));
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(2) {
    grid-column: 3/span 2;
    grid-row: 1;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(3) {
    grid-column: 5/span 2;
    grid-row: 1;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(4) {
    grid-column: 2/span 2;
    grid-row: 2;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(5) {
    grid-column: 4/span 2;
    grid-row: 2;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(6) {
    grid-column: 6/span 2;
    grid-row: 2;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(7) {
    grid-column: 3/span 2;
    grid-row: 3;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(8) {
    grid-column: 5/span 2;
    grid-row: 3;
  }
}
@media (max-width: 700px) {
  .section-blocks[options~=theme-honeycomb] .container .blocks {
    grid-template-columns: repeat(5, 1fr);
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block {
    transform: none !important;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block h3 {
    font-size: 1em;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(2) {
    grid-column: 3/span 2;
    grid-row: 1;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(3) {
    grid-column: 2/span 2;
    grid-row: 2;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(4) {
    grid-column: 4/span 2;
    grid-row: 2;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(5) {
    grid-column: 1/span 2;
    grid-row: 3;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(6) {
    grid-column: 3/span 2;
    grid-row: 3;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(7) {
    grid-column: 2/span 2;
    grid-row: 4;
  }
  .section-blocks[options~=theme-honeycomb] .container .blocks .block:nth-child(8) {
    grid-column: 4/span 2;
    grid-row: 4;
  }
  .section-blocks[options~=theme-honeycomb] .container .bottom {
    display: block;
  }
  .section-blocks[options~=theme-honeycomb] .container .bottom .buttons {
    justify-content: center;
    margin-top: 25px;
  }
}
/*

Options > Theme - Stats

*/
.section-blocks[options~=theme-stats] {
  margin: 0;
}
.section-blocks[options~=theme-stats] .container {
  width: 100%;
  max-width: unset;
}
.section-blocks[options~=theme-stats] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-stats] .container .blocks .block {
  flex: 1;
  border-radius: 0;
  border: 0;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  position: relative;
  min-width: 250px;
}
.section-blocks[options~=theme-stats] .container .blocks .block:nth-child(2n) {
  background-color: var(--secondary);
}
.section-blocks[options~=theme-stats] .container .blocks .block:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 100px;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}
.section-blocks[options~=theme-stats] .container .blocks .block img {
  margin: 0 auto 20px;
}
.section-blocks[options~=theme-stats] .container .blocks .block img.icon {
  filter: unset !important;
}
.section-blocks[options~=theme-stats] .container .blocks .block h3 {
  font-size: 4em;
  font-weight: 700;
}
.section-blocks[options~=theme-stats] .container .blocks .block .text {
  font-size: 1.1em;
}
.section-blocks[options~=theme-stats] .container .blocks .block .text p a {
  color: var(--white);
  font-weight: 400;
}

@media (max-width: 600px) {
  .section-blocks[options~=theme-stats] .container .blocks .block h3 {
    font-size: 3em;
  }
}
/*

Options > Theme - Featured Middle

*/
.section-blocks[options~=theme-featured-middle] .container .blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:nth-child(1) {
  grid-column: 2;
  grid-row: 1/span 2;
  aspect-ratio: unset;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block img.image {
  position: absolute;
  inset: 0;
  border-radius: 0;
  height: 100%;
  display: block;
  transition: all 0.2s;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block h3 {
  position: relative;
  font-size: 1.4em;
  color: var(--black);
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block .text {
  position: relative;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block p.link {
  position: absolute;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:hover {
  background-color: var(--secondary);
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:hover img.image {
  transform: scale(1.05);
  opacity: 0.25;
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:hover h3, .section-blocks[options~=theme-featured-middle] .container .blocks .block:hover .text {
  color: var(--white);
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:hover p.link {
  color: var(--white);
}
.section-blocks[options~=theme-featured-middle] .container .blocks .block:hover p.link svg path {
  fill: var(--white);
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-featured-middle] .container .blocks {
    display: block;
  }
  .section-blocks[options~=theme-featured-middle] .container .blocks .block {
    max-height: 300px;
    margin-bottom: 20px !important;
  }
  .section-blocks[options~=theme-featured-middle] .container .blocks .block:nth-child(1) {
    aspect-ratio: 1;
  }
  .section-blocks[options~=theme-featured-middle] .container .blocks .block img.image {
    -o-object-position: 50% 25%;
       object-position: 50% 25%;
  }
}
/*

Options > Theme - Brands

*/
.section-blocks[options~=theme-brands] .container .blocks {
  display: block;
}
.section-blocks[options~=theme-brands] .container .blocks .block {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 50px;
}
.section-blocks[options~=theme-brands] .container .blocks .block:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 100px;
  border-radius: 10px;
  background-color: var(--brand-color, var(--primary));
  transition: background-color 0.3s;
}
.section-blocks[options~=theme-brands] .container .blocks .block img.image {
  width: 300px;
  padding: 30px 50px;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: var(--gray-lt);
  margin-bottom: 0;
}
.section-blocks[options~=theme-brands] .container .blocks .block h3 {
  position: relative;
  font-size: 1.4em;
  color: var(--black);
}
.section-blocks[options~=theme-brands] .container .blocks .block .text {
  position: relative;
  flex: 1;
  text-align: left;
}
.section-blocks[options~=theme-brands] .container .blocks .block p.link {
  position: absolute;
}

/*

Options > Theme - Alternating Squares

*/
.section-blocks[options~=theme-alt-square] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-alt-square] .container .blocks .block {
  width: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 40px;
  border-radius: 0;
  border: 0;
  padding: 70px 40px;
  background-color: var(--white);
}
.section-blocks[options~=theme-alt-square] .container .blocks .block:nth-child(4n+2), .section-blocks[options~=theme-alt-square] .container .blocks .block:nth-child(4n+3) {
  background-color: var(--gray-lt);
}
.section-blocks[options~=theme-alt-square] .container .blocks .block:hover {
  background-color: var(--primary);
}
.section-blocks[options~=theme-alt-square] .container .blocks .block img.image {
  width: 100%;
  max-height: 200px;
  border-radius: 10px;
}
.section-blocks[options~=theme-alt-square] .container .blocks .block img.icon {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}
.section-blocks[options~=theme-alt-square] .container .blocks .block:has(img.icon) {
  padding-left: 100px;
}
.section-blocks[options~=theme-alt-square] .container .blocks .block h3 {
  position: relative;
  font-size: 1.4em;
  color: var(--black);
}
.section-blocks[options~=theme-alt-square] .container .blocks .block .text {
  position: relative;
  flex: 1;
  text-align: left;
}
.section-blocks[options~=theme-alt-square] .container .blocks .block p.link {
  position: absolute;
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-alt-square] .container .blocks .block {
    width: 100%;
  }
}
/*

Options > Theme - Locations

*/
.section-blocks[options~=theme-locations] .container .blocks {
  justify-content: center;
}
.section-blocks[options~=theme-locations] .container .blocks .block {
  padding: 10px 10px 100px;
  overflow: hidden;
  text-align: left;
}
.section-blocks[options~=theme-locations] .container .blocks .block img.image {
  aspect-ratio: 1.5;
}
.section-blocks[options~=theme-locations] .container .blocks .block h3 {
  font-size: 1.6em;
  padding: 0 20px;
}
.section-blocks[options~=theme-locations] .container .blocks .block .text {
  padding: 0 20px 0 50px;
  font-weight: 500;
}
.section-blocks[options~=theme-locations] .container .blocks .block .text > * {
  font-weight: 500;
}
.section-blocks[options~=theme-locations] .container .blocks .block .text p a {
  color: var(--black);
  transition: all 0.2s;
}
.section-blocks[options~=theme-locations] .container .blocks .block .text p:has(.badge) {
  position: relative;
}
.section-blocks[options~=theme-locations] .container .blocks .block .text p:has(.badge) .badge {
  position: absolute;
  left: -30px;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0;
  height: 25px;
  width: 20px;
}
.section-blocks[options~=theme-locations] .container .blocks .block .text p:has(.badge) .badge.address {
  background-image: url("/wp-content/uploads/2026/06/icon-location-1.png");
}
.section-blocks[options~=theme-locations] .container .blocks .block .text p:has(.badge) .badge.phone {
  background-image: url("/wp-content/uploads/2026/06/icon-phone-1.png");
}
.section-blocks[options~=theme-locations] .container .blocks .block .text p:has(.badge) .badge.fax {
  background-image: url("/wp-content/uploads/2026/06/icon-fax.png");
}
.section-blocks[options~=theme-locations] .container .blocks .block:before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(100% calc(100% - 75px), 100% 100%, calc(100% - 50px) 100%);
  background-color: var(--primary);
  transition: all 0.2s;
}
.section-blocks[options~=theme-locations] .container .blocks .block:after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 50px;
  width: 1px;
  height: 50px;
  transform: rotate(38deg);
  background-color: var(--primary);
  transition: all 0.2s;
}
.section-blocks[options~=theme-locations] .container .blocks .block:hover:before, .section-blocks[options~=theme-locations] .container .blocks .block:hover:after {
  background-color: var(--white);
}
.section-blocks[options~=theme-locations] .container .blocks .block:hover .text p a {
  color: var(--white);
}

/*

Options > Theme - Squares

*/
.section-blocks[options~=theme-squares] .container .blocks {
  grid-gap: 0;
  justify-content: center;
}
.section-blocks[options~=theme-squares] .container .blocks .block {
  border-radius: 0;
  width: 33%;
  border: 1px solid var(--black);
  background: unset;
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-squares] .container .blocks .block {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .section-blocks[options~=theme-squares] .container .blocks .block {
    width: 100%;
  }
}
/*

Options > Theme - Categories

*/
.section-blocks[options~=theme-categories] .container .blocks .block {
  width: calc(50% - 10px);
  border: 0;
  padding: 60px 40px;
}
.section-blocks[options~=theme-categories] .container .blocks .block img.image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s;
}
.section-blocks[options~=theme-categories] .container .blocks .block h3, .section-blocks[options~=theme-categories] .container .blocks .block .text {
  position: relative;
  padding-right: 60%;
}
.section-blocks[options~=theme-categories] .container .blocks .block h3 {
  margin-bottom: 100px;
  font-size: 1.5em;
}
.section-blocks[options~=theme-categories] .container .blocks .block:first-child {
  width: 100%;
}
.section-blocks[options~=theme-categories] .container .blocks .block:first-child h3, .section-blocks[options~=theme-categories] .container .blocks .block:first-child .text {
  padding-right: 75%;
}
.section-blocks[options~=theme-categories] .container .blocks .block:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: scale(1.01);
}
.section-blocks[options~=theme-categories] .container .blocks .block:hover img.image {
  opacity: 0.25;
}

@media (max-width: 800px) {
  .section-blocks[options~=theme-categories] .container .blocks .block {
    width: 100%;
    padding: 40px 20px;
  }
  .section-blocks[options~=theme-categories] .container .blocks .block h3, .section-blocks[options~=theme-categories] .container .blocks .block .text {
    padding-right: 50%;
  }
  .section-blocks[options~=theme-categories] .container .blocks .block:first-child :is(h3, .text) {
    padding-right: 50%;
  }
}
/*

Options > Header Inline

*/
.section-blocks[options~=header-inline] .container .blocks .block.content {
  background-color: unset;
  border: unset;
  padding: unset;
}
.section-blocks[options~=header-inline] .container .blocks .block.content :is(h1, h2) {
  font-size: 2.5em;
}
.section-blocks[options~=header-inline] .container .blocks .block.content .buttons {
  margin-top: 20px;
}

/*

Options > Header Side by side

*/
.section-blocks[options~=header-side-by-side] .container .content {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  grid-gap: 50px;
  max-width: unset;
}
.section-blocks[options~=header-side-by-side] .container .content .col {
  width: calc(50% - 25px);
}
.section-blocks[options~=header-side-by-side] .container .content:has(.subheading) {
  align-items: flex-start;
}
.section-blocks[options~=header-side-by-side] .container .content:has(.subheading) .col:nth-child(2) {
  margin-top: 50px;
}

@media (max-width: 900px) {
  .section-blocks[options~=header-side-by-side] .container .content {
    grid-gap: 20px;
  }
  .section-blocks[options~=header-side-by-side] .container .content .col {
    width: 100%;
  }
  .section-blocks[options~=header-side-by-side] .container .content:has(.subheading) .col:nth-child(2) {
    margin-top: 0;
  }
}
/*

Options > Header Dark Mode

*/
.section-blocks[options~=header-dark-mode] .container .content {
  color: var(--white);
}
.section-blocks[options~=header-dark-mode] .container .content p.subheading {
  color: var(--white);
}

/*

Options > Content Centered

*/
.section-blocks[options~=content-centered] .container {
  text-align: center;
}
.section-blocks[options~=content-centered] .container .content {
  margin: 0 auto;
}
.section-blocks[options~=content-centered] .container .content p.subheading {
  margin-left: auto;
  margin-right: auto;
}
.section-blocks[options~=content-centered] .container .content .buttons {
  justify-content: center;
}
.section-blocks[options~=content-centered] .container .blocks {
  text-align: left;
}

/*

Options > Blocks 2 Wide

*/
.section-blocks[options~=blocks-2-wide] .container .blocks .block {
  width: calc(50% - 10px);
  padding: 25px;
  padding-left: 250px;
  position: relative;
}
.section-blocks[options~=blocks-2-wide] .container .blocks .block img.image {
  position: absolute;
  top: 25px;
  left: 25px;
  height: calc(100% - 50px);
  margin-bottom: 0;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.section-blocks[options~=blocks-2-wide] .container .blocks .block .text {
  margin: 50px 0 20px;
}
.section-blocks[options~=blocks-2-wide][options~=block-no-bg] .container .blocks .block {
  width: calc(50% - 40px);
}

@media (max-width: 900px) {
  .section-blocks[options~=blocks-2-wide] .container .blocks .block {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=blocks-2-wide] .container .blocks .block {
    padding-left: 25px;
  }
  .section-blocks[options~=blocks-2-wide] .container .blocks .block img.image {
    position: relative;
    top: unset;
    left: unset;
    aspect-ratio: 2;
    height: unset;
    width: 100%;
    margin-bottom: 20px;
  }
  .section-blocks[options~=blocks-2-wide] .container .blocks .block .text {
    margin: 0 0 20px;
  }
}
/*

Options > Blocks 4 Wide

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

@media (max-width: 900px) {
  .section-blocks[options~=blocks-4-wide] .container .blocks .block {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=blocks-4-wide] .container .blocks .block {
    width: 100%;
  }
}
/*

Options > Blocks 5 Wide

*/
.section-blocks[options~=blocks-5-wide] .container .blocks .block {
  width: calc(20% - 16px);
  padding: 40px 20px;
}
.section-blocks[options~=blocks-5-wide] .container .blocks .block h3 {
  font-size: 1em;
}

@media (max-width: 900px) {
  .section-blocks[options~=blocks-5-wide] .container .blocks .block {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=blocks-5-wide] .container .blocks .block {
    width: 100%;
  }
}
/*

Options > Blocks Centered

*/
.section-blocks[options~=blocks-centered] .container .blocks {
  justify-content: center;
}

/*

Options > Block Pink Hover

*/
.section-blocks[options~=block-pink-hover] .container .blocks .block:hover {
  background-color: var(--color-4);
  border-color: var(--color-4);
}

/*

Options > Block Gray BG

*/
.section-blocks[options~=block-gray-bg] .container .blocks .block {
  background-color: var(--gray);
}
.section-blocks[options~=block-gray-bg] .container .blocks .block:hover {
  background-color: var(--primary);
}

/*

Options > Block White BG

*/
.section-blocks[options~=block-white-bg] .container .blocks .block {
  background-color: var(--white);
}
.section-blocks[options~=block-white-bg] .container .blocks .block:hover {
  background-color: var(--primary);
}

/*

Options > Block No BG

*/
.section-blocks[options~=block-no-bg] .container .blocks {
  grid-gap: 80px;
}
.section-blocks[options~=block-no-bg] .container .blocks .block {
  background-color: unset;
  border: 0;
  padding: 0;
  width: calc(33% - 54px);
}
.section-blocks[options~=block-no-bg] .container .blocks .block:hover {
  background-color: unset;
  color: unset;
}
.section-blocks[options~=block-no-bg] .container .blocks .block:hover img.icon {
  filter: unset;
}
.section-blocks[options~=block-no-bg][options~=background-primary] .container .blocks .block, .section-blocks[options~=block-no-bg][options~=background-secondary] .container .blocks .block {
  color: var(--white);
}

@media (max-width: 900px) {
  .section-blocks[options~=block-no-bg] .container .blocks .block {
    width: calc(50% - 40px);
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=block-no-bg] .container .blocks .block {
    width: 100%;
  }
}
/*

Options > Block Header Strong

*/
.section-blocks[options~=block-header-strong] .container .blocks .block h3 {
  font-weight: 700;
}

/*

Options > Block Center Content

*/
.section-blocks[options~=block-center-content] .container .blocks .block {
  text-align: center;
}

/*

Options > Block Content Inline

*/
.section-blocks[options~=block-content-inline] .container .blocks .block {
  padding-left: 90px;
  text-align: left;
  font-size: 0.9em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section-blocks[options~=block-content-inline] .container .blocks .block img.icon {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

/*

Options > Block Narrow Padding

*/
.section-blocks[options~=block-narrow-padding] .container .blocks .block {
  padding: 10px 10px 60px;
}
.section-blocks[options~=block-narrow-padding] .container .blocks .block h3, .section-blocks[options~=block-narrow-padding] .container .blocks .block .text {
  padding: 0 20px;
}

/*

Options > Block Corner Graphics

*/
.section-blocks[options~=block-corner-graphics] .container .blocks .block {
  overflow: hidden;
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(100% calc(100% - 75px), 100% 100%, calc(100% - 50px) 100%);
  background-color: var(--primary);
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 50px;
  width: 1px;
  height: 50px;
  transform: rotate(38deg);
  background-color: var(--primary);
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n+2):before {
  background-color: #eb008b;
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n+2):after {
  background-color: #eb008b;
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n+2):hover {
  background-color: #eb008b;
  border-color: #eb008b;
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n+3):before {
  background-color: #edd526;
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n+3):after {
  background-color: #edd526;
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n+3):hover {
  background-color: #edd526;
  border-color: #edd526;
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n):before {
  background-color: var(--black);
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n):after {
  background-color: var(--black);
}
.section-blocks[options~=block-corner-graphics] .container .blocks .block:nth-child(4n):hover {
  background-color: var(--black);
  border-color: var(--black);
}

/*

Options > Block Hover Icon Color

*/
.section-blocks[options~=block-hover-icon-color] .container .blocks .block:hover {
  background-color: var(--hover-color, var(--primary));
  border-color: var(--hover-color, var(--primary));
}

/*

Options > Icon x2

*/
.section-blocks[options~=icon-x2] .container .blocks .block img.icon {
  height: 80px;
}

/*

Options > Icon Full Width

*/
.section-blocks[options~=icon-full-width] .container .blocks .block img.icon {
  height: auto;
  width: 80%;
  max-height: 200px;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*

Options > Image Contain

*/
.section-blocks[options~=image-fit] .container .blocks .block img.image {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}

/*

Options > Image Full Width

*/
.section-blocks[options~=image-full-width] .container .blocks .block {
  padding-left: 25px;
}
.section-blocks[options~=image-full-width] .container .blocks .block img.image {
  position: relative;
  top: unset;
  left: unset;
  height: unset;
  width: 100%;
}
.section-blocks[options~=image-full-width] .container .blocks .block img.image:not(:last-child) {
  margin-bottom: 20px;
}
.section-blocks[options~=image-full-width] .container .blocks .block .text {
  margin: 0;
}

/*

Options > Connecting Lines

*/
.section-blocks[options~=connecting-lines] .container .blocks .block:not(:last-child):before {
  content: "";
  width: 100px;
  height: 3px;
  background-image: linear-gradient(to right, rgba(var(--primary-rgb), 0), rgba(var(--primary-rgb), 1));
  position: absolute;
  top: 25%;
  right: -75px;
}
.section-blocks[options~=connecting-lines][options~=blocks-2-wide] .container .blocks .block:nth-child(2n):before {
  display: none;
}
.section-blocks[options~=connecting-lines]:not([options~=blocks-2-wide]) .container .blocks .block:nth-child(3n):before {
  display: none;
}
.section-blocks[options~=connecting-lines][options~=background-primary] .container .blocks .block:not(:last-child):before, .section-blocks[options~=connecting-lines][options~=background-secondary] .container .blocks .block:not(:last-child):before {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

@media (max-width: 900px) {
  .section-blocks[options~=connecting-lines][options~=blocks-2-wide] .container .blocks .block:before {
    display: none;
  }
  .section-blocks[options~=connecting-lines]:not([options~=blocks-2-wide]) .container .blocks .block:nth-child(3n):before {
    display: block;
  }
  .section-blocks[options~=connecting-lines]:not([options~=blocks-2-wide]) .container .blocks .block:nth-child(2n):before {
    display: none;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=connecting-lines]:not([options~=blocks-2-wide]) .container .blocks .block:before {
    display: none;
  }
}
/*

Scroll Animations

*/
.section-blocks.scrolled-to .block:nth-child(1) {
  animation: block1 0.5s forwards;
}
.section-blocks.scrolled-to .block:nth-child(2) {
  animation: block2 0.6s forwards;
}
.section-blocks.scrolled-to .block:nth-child(3) {
  animation: block3 0.7s forwards;
}
.section-blocks.scrolled-to .block:nth-child(4) {
  animation: block4 0.8s forwards;
}
.section-blocks.scrolled-to .block:nth-child(5) {
  animation: block5 0.9s forwards;
}
.section-blocks.scrolled-to .block:nth-child(6) {
  animation: block6 1s forwards;
}
.section-blocks.scrolled-to .block:nth-child(7) {
  animation: block7 1.1s forwards;
}
.section-blocks.scrolled-to .block:nth-child(8) {
  animation: block8 1.2s forwards;
}
.section-blocks.scrolled-to .block:nth-child(9) {
  animation: block9 1.3s forwards;
}
.section-blocks.scrolled-to .block:nth-child(10) {
  animation: block10 1.4s forwards;
}
.section-blocks.scrolled-to .block:nth-child(11) {
  animation: block11 1.5s forwards;
}
.section-blocks.scrolled-to .block:nth-child(12) {
  animation: block12 1.6s forwards;
}
.section-blocks.scrolled-to .block:nth-child(13) {
  animation: block12 1.7s forwards;
}
.section-blocks.scrolled-to .block:nth-child(14) {
  animation: block12 1.8s forwards;
}
.section-blocks.scrolled-to .block:nth-child(15) {
  animation: block12 1.9s forwards;
}
.section-blocks.scrolled-to .block:nth-child(16) {
  animation: block12 2s forwards;
}
.section-blocks.scrolled-to .block:nth-child(17) {
  animation: block12 2.1s forwards;
}
.section-blocks.scrolled-to .block:nth-child(18) {
  animation: block12 2.2s forwards;
}
.section-blocks.scrolled-to .block {
  animation: block13 2.3s 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;
  }
}