.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 img.heading-icon {
  width: 30px;
  margin: 0 auto 25px;
  display: block;
}
.section-blocks .container h1, .section-blocks .container h2 {
  max-width: 800px;
  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 .text *:first-child {
  margin-top: 0;
}
.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;
  margin: 0 0 40px;
  transition: all 0.5s;
}
.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 .content .list:not(:first-child) {
  margin-top: 40px;
}
.section-blocks .container .blocks .block .content .list .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  grid-gap: 10px;
}
.section-blocks .container .blocks .block .content .list .item .icon {
  text-align: center;
  width: 40px;
  margin: 0;
}
.section-blocks .container .blocks .block .content .list .item .icon img {
  max-width: 25px;
  max-height: 25px;
}
.section-blocks .container .blocks .block .content .list .item p {
  width: calc(100% - 40px);
  margin: 0 0 5px;
}
.section-blocks .container .blocks .block:hover .background:after {
  top: 0;
}
.section-blocks .container .blocks .block:hover .content {
  top: 50%;
}
.section-blocks .container .blocks .block:hover .content h3 {
  margin-bottom: 20px;
}

@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 .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 .blocks .block {
    aspect-ratio: 1.5;
    flex: unset;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .section-blocks .container .blocks .block {
    aspect-ratio: 1;
  }
}
/*

Options - Theme Curved

*/
.section-blocks[options~=theme-curved] .container .blocks .block {
  border-radius: 100px 100px 20px 20px;
  aspect-ratio: 0.75;
  background-color: unset;
}
.section-blocks[options~=theme-curved] .container .blocks .block .background:after {
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-image: unset;
  border-radius: 80px 80px 15px 15px;
}
.section-blocks[options~=theme-curved] .container .blocks .block .content {
  padding: 0 40px;
}
.section-blocks[options~=theme-curved] .container .blocks .block .content h3 {
  text-align: center;
}
.section-blocks[options~=theme-curved] .container .blocks .block .content .text {
  text-align: center;
  font-size: 0.8em;
}
.section-blocks[options~=theme-curved] .container .blocks .block .content .icon {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0;
}
.section-blocks[options~=theme-curved] .container .blocks .block .content .icon svg {
  width: 20px;
}
.section-blocks[options~=theme-curved] .container .blocks .block .content .icon svg path {
  fill: var(--secondary-dark);
}
.section-blocks[options~=theme-curved] .container .blocks .block:hover .background:after {
  top: 20px;
  background-image: unset;
  background-color: var(--secondary-dark);
}
.section-blocks[options~=theme-curved] .container .blocks .block:hover .content {
  top: 40%;
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-curved] .container .blocks .block {
    aspect-ratio: unset;
    min-height: 350px;
  }
  .section-blocks[options~=theme-curved] .container .blocks .block .background:after {
    top: 20px;
    background-color: rgba(var(--primary-dark-rgb), 0.75);
  }
  .section-blocks[options~=theme-curved] .container .blocks .block .content .text {
    font-size: 0.9em;
  }
}
/*

Options - Theme Timeline

*/
.section-blocks[options~=theme-timeline] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-timeline] .container .blocks .block {
  flex: unset;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  aspect-ratio: unset;
  grid-gap: 30px;
  padding: 25px 100px 25px 0;
}
.section-blocks[options~=theme-timeline] .container .blocks .block:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: var(--secondary-dark);
}
.section-blocks[options~=theme-timeline] .container .blocks .block:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  border-right: 1px dashed rgba(0, 0, 0, 0.5);
}
.section-blocks[options~=theme-timeline] .container .blocks .block .background {
  position: relative;
  background-color: rgba(var(--primary-rgb), 1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .background:after {
  background-image: unset;
  top: 0;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .background img {
  max-width: 40%;
  max-height: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-blocks[options~=theme-timeline] .container .blocks .block:nth-child(1):after {
  top: 50%;
}
.section-blocks[options~=theme-timeline] .container .blocks .block:nth-child(2) .background {
  background-color: rgba(var(--primary-rgb), 0.9);
}
.section-blocks[options~=theme-timeline] .container .blocks .block:nth-child(3) .background {
  background-color: rgba(var(--primary-rgb), 0.8);
}
.section-blocks[options~=theme-timeline] .container .blocks .block:nth-child(4) .background {
  background-color: rgba(var(--primary-rgb), 0.7);
}
.section-blocks[options~=theme-timeline] .container .blocks .block:nth-child(5) .background {
  background-color: rgba(var(--primary-rgb), 0.6);
}
.section-blocks[options~=theme-timeline] .container .blocks .block:nth-child(6) .background {
  background-color: rgba(var(--primary-rgb), 0.5);
}
.section-blocks[options~=theme-timeline] .container .blocks .block .content {
  position: relative;
  height: auto;
  top: unset;
  left: unset;
  color: var(--black);
  width: calc(100% - 180px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 50px;
  padding: 0;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .content h3 {
  font-size: 1.5em;
  position: relative;
  left: unset;
  right: unset;
  bottom: unset;
  margin: 0;
  width: calc(40% - 25px);
}
.section-blocks[options~=theme-timeline] .container .blocks .block .content .text {
  width: calc(60% - 25px);
  font-size: 1.1em;
}
.section-blocks[options~=theme-timeline] .container .blocks .block .content .icon {
  display: none;
}
.section-blocks[options~=theme-timeline] .container .blocks .block p.number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: 0 0 0 -75px;
  font-size: 8em;
  opacity: 0.05;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-timeline] .container .blocks .block .background {
    width: 100px;
    height: 100px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content {
    width: calc(100% - 130px);
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content h3 {
    font-size: 1.4em;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content .text {
    font-size: 1em;
  }
}
@media (max-width: 800px) {
  .section-blocks[options~=theme-timeline] .container .blocks .block {
    padding-right: 50px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .background {
    width: 80px;
    height: 80px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content {
    grid-gap: 30px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content h3 {
    width: calc(40% - 15px);
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content .text {
    width: calc(60% - 15px);
    font-size: 0.9em;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-timeline] .container .blocks .block .content {
    display: block;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content h3 {
    width: 100%;
    margin-bottom: 15px;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block .content .text {
    width: 100%;
  }
  .section-blocks[options~=theme-timeline] .container .blocks .block p.number {
    left: unset;
    right: 20px;
    transform: translateY(-50%);
  }
}
/*

Options - Theme Timeline 2

*/
.section-blocks[options~=theme-timeline-2] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block {
  flex: unset;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  aspect-ratio: unset;
  grid-gap: 160px;
  padding: 50px 0;
  background-color: unset;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: var(--secondary-dark);
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-right: 1px dashed rgba(0, 0, 0, 0.5);
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block:nth-child(1):after {
  top: 50%;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .background {
  width: calc(50% - 80px);
  position: relative;
  background-color: unset;
  height: auto;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .background:after {
  background-image: unset;
  top: 0;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .background img.image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .background .icon {
  position: absolute;
  right: 10px;
  bottom: -10px;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .background .icon img {
  max-width: 50%;
  max-height: 50%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .content {
  width: calc(50% - 80px);
  position: relative;
  height: auto;
  top: unset;
  left: unset;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 50px;
  padding: 0 0 0 25px;
  overflow: unset;
  flex-wrap: wrap;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .content h3 {
  font-size: 1.5em;
  position: relative;
  left: unset;
  right: unset;
  bottom: unset;
  margin: 0;
  width: 100%;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .content .text {
  font-size: 1.1em;
  width: 100%;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .content .text p {
  position: relative;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .content .text p:before {
  content: "";
  position: absolute;
  right: calc(100% + 10px);
  background-image: url("/wp-content/uploads/2026/02/check.png");
  top: 0;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .content .text ul, .section-blocks[options~=theme-timeline-2] .container .blocks .block .content .text ol {
  padding-left: 20px;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block .content .icon {
  display: none;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block p.number {
  display: none;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block:nth-child(odd) {
  flex-direction: row-reverse;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block:nth-child(odd) .background .icon {
  right: unset;
  left: 10px;
}
.section-blocks[options~=theme-timeline-2] .container .blocks .block:nth-child(odd) .content {
  padding-left: 50px;
}
.section-blocks[options~=theme-timeline-2] .container .blocks:first-child .block:first-child {
  padding-top: 0;
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-timeline-2] .container .blocks .block {
    grid-gap: 80px;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block:before {
    left: 38%;
    transform: unset;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block:after {
    left: calc(38% + 8px);
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block .background {
    width: calc(40% - 40px);
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block .content {
    width: calc(60% - 40px);
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block .content .text {
    font-size: 1em;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block:nth-child(odd) {
    flex-direction: unset;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block:nth-child(odd) .background .icon {
    left: unset;
    right: 10px;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block:nth-child(odd) .content {
    padding-left: 25px;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-timeline-2] .container .blocks .block {
    grid-gap: 40px;
    flex-wrap: wrap;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block:before {
    left: 0;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block:after {
    left: 8px;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block .background {
    width: 100%;
    padding-left: 50px;
    max-width: 400px;
  }
  .section-blocks[options~=theme-timeline-2] .container .blocks .block .content {
    width: 100%;
    padding: 0 0 0 100px;
  }
}
/*

Options - Theme Deals

*/
.section-blocks[options~=theme-deals] .container .blocks .block {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: unset;
  justify-content: space-between;
  aspect-ratio: unset;
}
.section-blocks[options~=theme-deals] .container .blocks .block:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--white);
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
}
.section-blocks[options~=theme-deals] .container .blocks .block:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--white);
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}
.section-blocks[options~=theme-deals] .container .blocks .block .background {
  position: relative;
  width: 50%;
  background-color: unset;
  padding-right: 30px;
  height: 100%;
  align-self: stretch;
}
.section-blocks[options~=theme-deals] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-deals] .container .blocks .block .background img.image {
  border-radius: 15px;
}
.section-blocks[options~=theme-deals] .container .blocks .block .content {
  align-self: stretch;
  position: relative;
  height: unset;
  width: 50%;
  top: unset;
  left: unset;
  color: var(--black);
  padding: 50px 20px 50px 30px;
  border-left: 2px dashed var(--secondary-dark);
}
.section-blocks[options~=theme-deals] .container .blocks .block .content .tag {
  background-color: var(--secondary-dark);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--white);
  display: flex;
  grid-gap: 8px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 20px;
}
.section-blocks[options~=theme-deals] .container .blocks .block .content .tag img {
  width: 15px;
}
.section-blocks[options~=theme-deals] .container .blocks .block .content .tag p {
  margin: 0;
  font-size: 0.8em;
  letter-spacing: 1px;
}
.section-blocks[options~=theme-deals] .container .blocks .block .content h3 {
  position: relative;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0 0 40px;
}
.section-blocks[options~=theme-deals] .container .blocks .block .content p.link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--secondary);
  box-shadow: 0 10px 20px rgba(var(--secondary-rgb), 0.3);
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin-top: 50px;
}
.section-blocks[options~=theme-deals] .container .blocks .block .content p.link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-deals] .container .blocks .block .content p.link:hover:before {
  right: 0;
}
.section-blocks[options~=theme-deals] .container .blocks .block .content p.link:hover {
  box-shadow: 0 10px 30px rgba(var(--secondary-rgb), 0.6);
}
.section-blocks[options~=theme-deals] .container .blocks .block .content .icon {
  display: none;
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-deals] .container .blocks .block {
    flex: unset;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 25px !important;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-deals] .container .blocks .block {
    padding: 30px;
  }
  .section-blocks[options~=theme-deals] .container .blocks .block:before, .section-blocks[options~=theme-deals] .container .blocks .block:after {
    display: none;
  }
  .section-blocks[options~=theme-deals] .container .blocks .block .background {
    display: none;
  }
  .section-blocks[options~=theme-deals] .container .blocks .block .content {
    width: 100%;
    padding: 0;
    border-left: unset;
  }
}
/*

Options - Theme Side by side

*/
.section-blocks[options~=theme-side-by-side] .container .blocks .block {
  width: 100%;
  flex: unset;
  display: flex;
  align-items: center;
  aspect-ratio: unset;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 10px;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .background {
  width: 50%;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .background img.image {
  border-radius: 15px;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content {
  width: 50%;
  padding: 60px 40px;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content .icon {
  height: 60px;
  width: 200px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 25px;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-side-by-side] .container .blocks .block .content .link:hover:before {
  right: 0;
}

@media (max-width: 800px) {
  .section-blocks[options~=theme-side-by-side] .container .blocks {
    width: 100%;
  }
  .section-blocks[options~=theme-side-by-side] .container .blocks .block .background {
    width: 30%;
  }
  .section-blocks[options~=theme-side-by-side] .container .blocks .block .content {
    width: 70%;
  }
}
@media (max-width: 650px) {
  .section-blocks[options~=theme-side-by-side] .container .blocks {
    width: 100%;
  }
  .section-blocks[options~=theme-side-by-side] .container .blocks .block .background {
    width: 100%;
    height: auto;
  }
  .section-blocks[options~=theme-side-by-side] .container .blocks .block .background img.image {
    max-height: 150px;
  }
  .section-blocks[options~=theme-side-by-side] .container .blocks .block .content {
    width: 100%;
    padding: 25px;
  }
}
/*

Options - Theme Side by side half

*/
.section-blocks[options~=theme-side-by-side-half] .container .blocks {
  justify-content: flex-start;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block {
  width: calc(50% - 10px);
  flex: unset;
  display: flex;
  align-items: center;
  aspect-ratio: unset;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 30px;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .background {
  width: 33%;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .background img.image {
  border-radius: 15px;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content {
  width: 67%;
  padding: 60px 40px;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content .icon {
  height: 40px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 20px;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content .link:hover:before {
  right: 0;
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-side-by-side-half] .container .blocks .block {
    padding: 30px 10px;
  }
  .section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content {
    padding: 50px 15px 50px 25px;
  }
}
@media (max-width: 800px) {
  .section-blocks[options~=theme-side-by-side-half] .container .blocks {
    width: 100%;
  }
  .section-blocks[options~=theme-side-by-side-half] .container .blocks .block .background {
    width: 100%;
    height: auto;
  }
  .section-blocks[options~=theme-side-by-side-half] .container .blocks .block .background img.image {
    max-height: 150px;
  }
  .section-blocks[options~=theme-side-by-side-half] .container .blocks .block .content {
    width: 100%;
    padding: 25px;
  }
}
/*

Options - Theme Side by side narrow

*/
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks {
  justify-content: flex-start;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block {
  width: 100%;
  flex: unset;
  display: flex;
  align-items: center;
  aspect-ratio: unset;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 30px;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .background {
  width: 33%;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .background img.image {
  border-radius: 15px;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content {
  width: 67%;
  padding: 60px 40px;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content .icon {
  height: 40px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 20px;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content .link:hover:before {
  right: 0;
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block {
    padding: 30px 10px;
  }
  .section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content {
    padding: 50px 15px 50px 25px;
  }
}
@media (max-width: 800px) {
  .section-blocks[options~=theme-side-by-side-narrow] .container .blocks {
    width: 100%;
  }
  .section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .background {
    width: 100%;
    height: auto;
  }
  .section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .background img.image {
    max-height: 150px;
  }
  .section-blocks[options~=theme-side-by-side-narrow] .container .blocks .block .content {
    width: 100%;
    padding: 25px;
  }
}
/*

Options - Theme Circles

*/
.section-blocks[options~=theme-circles] .container .blocks {
  justify-content: center;
}
.section-blocks[options~=theme-circles] .container .blocks .block {
  width: calc(20% - 16px);
  min-width: 200px;
  flex: unset;
  background-color: unset;
  padding: 0;
  aspect-ratio: unset;
  display: block;
}
.section-blocks[options~=theme-circles] .container .blocks .block .background {
  width: 100%;
  height: unset;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
}
.section-blocks[options~=theme-circles] .container .blocks .block .background img.image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blocks[options~=theme-circles] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-circles] .container .blocks .block .content {
  width: 100%;
  padding: 0;
  margin-top: 12px;
  text-align: center;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
}
.section-blocks[options~=theme-circles] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
  font-size: 1.1em;
}
.section-blocks[options~=theme-circles] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-circles] .container .blocks .block .content .icon {
  height: 60px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 20px;
}
.section-blocks[options~=theme-circles] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-circles] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-circles] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-circles] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-circles] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-circles] .container .blocks .block .content .link:hover:before {
  right: 0;
}

/*

Options - Theme Icons

*/
.section-blocks[options~=theme-icons] .container .blocks {
  justify-content: center;
}
.section-blocks[options~=theme-icons] .container .blocks .block {
  width: calc(20% - 16px);
  min-width: 200px;
  flex: unset;
  background-color: unset;
  padding: 0;
  aspect-ratio: unset;
  display: block;
}
.section-blocks[options~=theme-icons] .container .blocks .block .background {
  width: 100%;
  height: unset;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
}
.section-blocks[options~=theme-icons] .container .blocks .block .background img.image {
  width: 100%;
  aspect-ratio: 1.25;
  border-radius: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: var(--white);
  padding: 20px;
}
.section-blocks[options~=theme-icons] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-icons] .container .blocks .block .content {
  width: 100%;
  padding: 0;
  margin-top: 12px;
  text-align: center;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
}
.section-blocks[options~=theme-icons] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
  font-size: 1.1em;
}
.section-blocks[options~=theme-icons] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-icons] .container .blocks .block .content .icon {
  height: 60px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 20px;
}
.section-blocks[options~=theme-icons] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-icons] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-icons] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-icons] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-icons] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-icons] .container .blocks .block .content .link:hover:before {
  right: 0;
}

/*

Options - Theme Steps

*/
.section-blocks[options~=theme-steps] .container .blocks {
  justify-content: center;
}
.section-blocks[options~=theme-steps] .container .blocks .block {
  width: calc(20% - 16px);
  min-width: 200px;
  flex: unset;
  background-color: unset;
  padding: 0;
  aspect-ratio: unset;
  display: block;
  overflow: unset;
}
.section-blocks[options~=theme-steps] .container .blocks .block .background {
  width: 125px;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--gray);
  top: unset;
  left: unset;
  position: relative;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-blocks[options~=theme-steps] .container .blocks .block .background img.image {
  max-width: 40%;
  max-height: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-blocks[options~=theme-steps] .container .blocks .block .background p.number {
  margin: 0;
  position: absolute;
  top: 10px;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background-color: var(--secondary-dark);
}
.section-blocks[options~=theme-steps] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-steps] .container .blocks .block:not(:last-child) .background::before {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 20px);
  border-top: 1px dashed rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 100%;
}
.section-blocks[options~=theme-steps] .container .blocks .block .content {
  width: 100%;
  padding: 0 20px 0 0;
  margin-top: 12px;
  text-align: center;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
}
.section-blocks[options~=theme-steps] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
  font-size: 1.1em;
}
.section-blocks[options~=theme-steps] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-steps] .container .blocks .block .content .icon {
  height: 60px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 20px;
}
.section-blocks[options~=theme-steps] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-steps] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-steps] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-steps] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-steps] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-steps] .container .blocks .block .content .link:hover:before {
  right: 0;
}

/*

Options - Header inline

*/
.section-blocks[options~=header-inline] .container {
  display: flex;
  align-items: flex-end;
  grid-gap: 50px;
  flex-wrap: wrap;
}
.section-blocks[options~=header-inline] .container .heading {
  width: calc(40% - 25px);
}
.section-blocks[options~=header-inline] .container .heading img.heading-icon {
  margin-left: 0;
}
.section-blocks[options~=header-inline] .container .heading :is(h1, h2) {
  text-align: left;
  margin-bottom: 0;
}
.section-blocks[options~=header-inline] .container .text {
  width: calc(60% - 25px);
  text-align: left;
}
.section-blocks[options~=header-inline] .container .text *:last-child {
  margin-bottom: 0;
}

/*

Options - Theme columns

*/
.section-blocks[options~=theme-columns] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-columns] .container .blocks .block:not(:nth-child(3n)) {
  border-right: 1px solid var(--black);
}
.section-blocks[options~=theme-columns] .container .blocks .block:last-child {
  border-right: 0;
}
.section-blocks[options~=theme-columns] .container .blocks .block {
  width: 33.3%;
  aspect-ratio: unset;
  flex: unset;
  display: block;
  padding: 30px 50px;
  transition: all 0.3s;
}
.section-blocks[options~=theme-columns] .container .blocks .block .background {
  position: relative;
  background-color: unset;
  height: unset;
}
.section-blocks[options~=theme-columns] .container .blocks .block .background::after {
  display: none;
}
.section-blocks[options~=theme-columns] .container .blocks .block .background img.image {
  width: 75px;
  height: auto;
  margin: 0 auto 20px;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content {
  position: relative;
  top: unset;
  width: unset;
  height: unset;
  color: unset;
  padding: 0;
  text-align: center;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content h3 {
  position: relative;
  bottom: unset;
  left: unset;
  right: unset;
  font-weight: 300;
  font-size: 1em;
  text-align: center;
  transition: unset;
  margin-top: 0;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content h3:not(:last-child) {
  font-weight: 500;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content .text {
  transition: unset;
  text-align: center;
}
.section-blocks[options~=theme-columns] .container .blocks a.block:hover {
  border: 1px solid var(--primary);
}
.section-blocks[options~=theme-columns] .container .blocks a.block:hover .content {
  color: var(--primary);
}
.section-blocks[options~=theme-columns][options~=darkmode] .container .blocks .block {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: unset;
}
.section-blocks[options~=theme-columns][options~=darkmode] .container .blocks .block .content {
  color: var(--white);
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-columns] .container .blocks .block {
    padding: 30px 20px;
  }
}
@media (max-width: 820px) {
  .section-blocks[options~=theme-columns] .container .blocks .block {
    width: 50%;
  }
  .section-blocks[options~=theme-columns] .container .blocks .block:not(:nth-child(3n)) {
    border-right: 0;
  }
  .section-blocks[options~=theme-columns] .container .blocks .block:not(:nth-child(2n)) {
    border-right: 1px solid var(--black);
  }
  .section-blocks[options~=theme-columns] .container .blocks .block:last-child {
    border-right: 0;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-columns] .container .blocks .block {
    width: 100%;
    border-right: 0 !important;
  }
  .section-blocks[options~=theme-columns] .container .blocks .block:not(:last-child) {
    border-bottom: 1px solid var(--black);
  }
}
/*

Options - Theme wireframes

*/
.section-blocks[options~=theme-wireframes] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block {
  border: 1px solid var(--black);
  width: 33.3%;
  margin-top: -1px;
  margin-left: -1px;
  aspect-ratio: unset;
  flex: unset;
  display: block;
  padding: 30px 50px;
  transition: all 0.3s;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .background {
  position: relative;
  background-color: unset;
  height: unset;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .background::after {
  display: none;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .background img.image {
  width: 60px;
  height: auto;
  margin: 0 auto 20px;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .content {
  position: relative;
  top: unset;
  width: unset;
  height: unset;
  color: unset;
  padding: 0;
  text-align: center;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .content h3 {
  position: relative;
  bottom: unset;
  left: unset;
  right: unset;
  font-weight: 300;
  font-size: 1em;
  text-align: center;
  transition: unset;
  margin-top: 0;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .content .text {
  transition: unset;
  text-align: center;
}
.section-blocks[options~=theme-wireframes] .container .blocks a.block:hover {
  border: 1px solid var(--primary);
}
.section-blocks[options~=theme-wireframes] .container .blocks a.block:hover .content {
  color: var(--primary);
}
.section-blocks[options~=theme-wireframes][options~=darkmode] .container .blocks .block {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: unset;
}
.section-blocks[options~=theme-wireframes][options~=darkmode] .container .blocks .block .content {
  color: var(--white);
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-wireframes] .container .blocks .block {
    padding: 30px 20px;
  }
}
@media (max-width: 820px) {
  .section-blocks[options~=theme-wireframes] .container .blocks .block {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-wireframes] .container .blocks .block {
    width: 100%;
  }
}
/*

Options - Theme cards

*/
.section-blocks[options~=theme-cards] .container {
  max-width: 1000px;
}
.section-blocks[options~=theme-cards] .container .blocks {
  grid-gap: 10px;
}
.section-blocks[options~=theme-cards] .container .blocks .block {
  flex: unset;
  aspect-ratio: 1.25;
  width: calc(50% - 5px);
  border-radius: 40px;
  overflow: hidden;
}
.section-blocks[options~=theme-cards] .container .blocks .block .background .icon {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 60px;
  max-height: 60px;
  z-index: 1;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content h3 {
  font-size: 1.75em;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content .icon {
  display: none;
}

@media (max-width: 800px) {
  .section-blocks[options~=theme-cards] .container .blocks {
    justify-content: center;
  }
  .section-blocks[options~=theme-cards] .container .blocks .block {
    width: 100%;
    max-width: 500px;
  }
  .section-blocks[options~=theme-cards] .container .blocks .block .background .icon {
    max-width: 40px;
    max-height: 40px;
  }
  .section-blocks[options~=theme-cards] .container .blocks .block .content h3 {
    font-size: 1.2em;
  }
}
/*

Options - Theme cards 2

*/
.section-blocks[options~=theme-cards-2] .container .blocks {
  grid-gap: 10px;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block {
  width: calc(33% - 7px);
  flex: unset;
  display: flex;
  align-items: center;
  aspect-ratio: unset;
  flex-wrap: wrap;
  background-color: var(--secondary-dark);
  border-radius: 15px;
  padding: 50px 20px;
  overflow: unset;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block:before {
  content: "";
  position: absolute;
  inset: 0;
  top: 10px;
  bottom: -4px;
  background-color: var(--gray);
  border-radius: 15px;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .background {
  width: 100%;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .background img.image {
  border-radius: 15px;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content {
  width: 100%;
  padding: 0;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
  font-size: 1.3em;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content .icon {
  height: 40px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 25px;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-cards-2] .container .blocks .block .content .link:hover:before {
  right: 0;
}
.section-blocks[options~=theme-cards-2][options~=background-gray] .container .blocks .block:before {
  background-color: var(--white);
}

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

Options - Theme cards 3

*/
.section-blocks[options~=theme-cards-3] .container .blocks {
  grid-gap: 10px;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block {
  width: calc(25% - 8px);
  flex: unset;
  display: flex;
  align-items: center;
  aspect-ratio: unset;
  flex-wrap: wrap;
  border-radius: 15px;
  padding: 50px 20px;
  overflow: unset;
  background-color: var(--gray);
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .background {
  width: 100%;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .background img.image {
  border-radius: 15px;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content {
  width: 100%;
  padding: 0;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
  font-size: 1.3em;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content .icon {
  height: 40px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 25px;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-cards-3] .container .blocks .block .content .link:hover:before {
  right: 0;
}
.section-blocks[options~=theme-cards-3][options~=wide-3] .container .blocks .block {
  width: calc(33% - 7px);
}
.section-blocks[options~=theme-cards-3][options~=wide-5] .container .blocks .block {
  width: calc(20% - 8px);
}

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

Options - Theme cards 4

*/
.section-blocks[options~=theme-cards-4] .container .blocks {
  justify-content: flex-start;
  grid-gap: 0;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block {
  width: 50%;
  flex: unset;
  display: flex;
  align-items: flex-start;
  aspect-ratio: unset;
  flex-wrap: wrap;
  background-color: var(--gray);
  border-radius: 0;
  padding: 30px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block:nth-child(odd) {
  border-left: 1px solid;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block:nth-child(1), .section-blocks[options~=theme-cards-4] .container .blocks .block:nth-child(2) {
  border-top: 1px solid;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .background {
  width: 30px;
  height: auto;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content {
  width: calc(100% - 40px);
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
  padding: 0 20px;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content .icon {
  height: 40px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 20px;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-cards-4] .container .blocks .block .content .link:hover:before {
  right: 0;
}
.section-blocks[options~=theme-cards-4][options~=background-gray] .container .blocks .block {
  background-color: var(--white);
}
.section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block {
  width: 33%;
}
.section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:nth-child(odd) {
  border-left: 0;
}
.section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:first-child {
  border-left: 1px solid;
}
.section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:nth-child(4n) {
  border-left: 1px solid;
}
.section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:nth-child(1), .section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:nth-child(2), .section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:nth-child(3) {
  border-top: 1px solid;
}

@media (max-width: 800px) {
  .section-blocks[options~=theme-cards-4] .container .blocks .block .background {
    width: 100%;
    height: 50px;
    justify-content: flex-start !important;
  }
  .section-blocks[options~=theme-cards-4] .container .blocks .block .content {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block {
    width: 50%;
  }
  .section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:nth-child(odd) {
    border-left: 1px solid;
  }
  .section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:nth-child(3) {
    border-top: 0;
  }
}
@media (max-width: 650px) {
  .section-blocks[options~=theme-cards-4] .container .blocks .block {
    width: 100%;
    border-left: 1px solid;
  }
  .section-blocks[options~=theme-cards-4] .container .blocks .block:nth-child(odd) {
    border-left: 1px solid;
  }
  .section-blocks[options~=theme-cards-4] .container .blocks .block:nth-child(2) {
    border-top: 0;
  }
  .section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block {
    width: 100%;
    border-left: 1px solid;
  }
  .section-blocks[options~=theme-cards-4][options~=wide-3] .container .blocks .block:not(:first-child) {
    border-top: 0;
  }
}
/*

Options - Theme cards 5

*/
.section-blocks[options~=theme-cards-5] .container .blocks {
  justify-content: flex-start;
  grid-gap: 0;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block {
  width: 20%;
  flex: unset;
  border-radius: 0;
  padding: 30px;
  border-top: 1px solid;
  border-right: 1px solid;
  aspect-ratio: unset;
  display: block;
  background-color: unset;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(5n) {
  border-right: 0;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(n+1):nth-child(-n+5) {
  border-top: 0;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .background {
  width: 100%;
  height: auto;
  background-color: unset;
  top: unset;
  left: unset;
  position: relative;
  display: block;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .background img.image {
  -o-object-fit: contain;
     object-fit: contain;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content {
  width: 100%;
  position: relative;
  height: unset;
  top: unset;
  left: unset;
  color: var(--black);
  padding: 20px 0 0;
  text-align: center;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content h3 {
  position: relative;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0 0 25px;
  text-align: unset;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content .icon {
  height: 40px;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 20px;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content .icon img {
  max-height: 100%;
  max-width: 100%;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content .icon:last-child {
  display: none;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content .link {
  padding: 20px 50px;
  font-size: 0.8em;
  position: relative;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: 1px solid var(--black);
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content .link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 105%;
  width: 100%;
  bottom: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content .link:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-cards-5] .container .blocks .block .content .link:hover:before {
  right: 0;
}
.section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block {
  width: 33%;
}
.section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(5n) {
  border-right: 1px solid;
}
.section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(n+1):nth-child(-n+5) {
  border-top: 1px solid;
}
.section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(3n) {
  border-right: 0;
}
.section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(n+1):nth-child(-n+3) {
  border-top: 0;
}
.section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block {
  width: 25%;
}
.section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(5n) {
  border-right: 1px solid;
}
.section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(n+1):nth-child(-n+5) {
  border-top: 1px solid;
}
.section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(4n) {
  border-right: 0;
}
.section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(n+1):nth-child(-n+4) {
  border-top: 0;
}

@media (max-width: 900px) {
  .section-blocks[options~=theme-cards-5] .container .blocks .block {
    width: 25%;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(5n) {
    border-right: 1px solid;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(4n) {
    border-right: 0;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(n+1):nth-child(-n+5) {
    border-top: 1px solid;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(n+1):nth-child(-n+4) {
    border-top: 0;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:last-child {
    border-right: 0;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block, .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block {
    width: 50%;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(3n), .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(3n) {
    border-right: 1px solid;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(n+1):nth-child(-n+4), .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(n+1):nth-child(-n+4) {
    border-top: 1px solid;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(2n), .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(2n) {
    border-right: 0;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(n+1):nth-child(-n+2), .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(n+1):nth-child(-n+2) {
    border-top: 0;
  }
}
@media (max-width: 650px) {
  .section-blocks[options~=theme-cards-5] .container .blocks .block {
    width: 50%;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(4n) {
    border-right: 1px solid;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(2n) {
    border-right: 0;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(n+1):nth-child(-n+4) {
    border-top: 1px solid;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:nth-child(n+1):nth-child(-n+2) {
    border-top: 0;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block:last-child {
    border-right: 0;
  }
  .section-blocks[options~=theme-cards-5] .container .blocks .block .background img.image {
    max-height: 300px;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block, .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block {
    width: 100%;
    border-right: 0 !important;
    border-top: 1px solid;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(3n), .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:last-child, .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(3n) {
    border-right: 0;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:nth-child(n+1):nth-child(-n+2), .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:nth-child(n+1):nth-child(-n+2) {
    border-top: 1px solid;
  }
  .section-blocks[options~=theme-cards-5][options~=wide-3] .container .blocks .block:first-child, .section-blocks[options~=theme-cards-5][options~=wide-4] .container .blocks .block:first-child {
    border-top: 0 !important;
  }
}
/*

Options - Background Secondary Dark

*/
.section-blocks[options~=background-secondary-dark] {
  background-color: var(--secondary-dark);
  margin: 0;
  padding: 5rem 0;
}
.section-blocks[options~=background-secondary-dark] .container .content {
  color: var(--white);
}
.section-blocks[options~=background-secondary-dark] .container .blocks .block .content {
  color: var(--white);
}
.section-blocks[options~=background-secondary-dark][options~=theme-side-by-side] .container .blocks .block .content .link, .section-blocks[options~=background-secondary-dark] [options~=theme-side-by-side-half] .container .blocks .block .content .link {
  color: var(--white);
  border: 1px solid var(--white);
}

/*

Options - Background gray

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

/*

Options - Narrow margins

*/
.section-blocks[options~=narrow-margins] {
  margin: 2rem 0;
}

/*

Options - Image contain

*/
.section-blocks[options~=image-contain] .container .blocks .block .background {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-blocks[options~=image-contain] .container .blocks .block .background img.image {
  -o-object-fit: contain;
     object-fit: contain;
  width: unset;
  height: unset;
  max-width: 100%;
  max-height: 100%;
  border-radius: unset;
}

/*

Options - Border bottom

*/
.section-blocks[options~=border-bottom] .container {
  border-bottom: 1px solid var(--black);
  padding-bottom: 2rem;
}

/*

Options - Block background secondary dark

*/
.section-blocks[options~=block-background-secondary-dark] .container .blocks .block {
  background-color: var(--secondary-dark);
}
.section-blocks[options~=block-background-secondary-dark] .container .blocks .block .content {
  color: var(--white);
}

/*

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;
  }
}