@font-face {
  font-family: "Northwell-Alt";
  src: url("../fonts/Northwell-Alt.woff2") format("woff2"), url("../fonts/Northwell-Alt.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*@mixin display-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@mixin flex-wrap($wrap: wrap) {
  -ms-flex-wrap: $wrap;
  flex-wrap: $wrap;
}

@mixin flex($values) {
  -webkit-box-flex: $values;
  -moz-box-flex: $values;
  -webkit-flex: $values;
  -ms-flex: $values;
  flex: $values;
}

@mixin flex-grow($grow: 1) {
  -webkit-box-flex: $grow;
  -ms-flex-positive: $grow;
  flex-grow: $grow;
}

@mixin order($val) {
  -webkit-box-ordinal-group: $val;
  -moz-box-ordinal-group: $val;
  -ms-flex-order: $val;
  -webkit-order: $val;
  order: $val;
}

@mixin columnCSS {
  display: inline-block;
  margin: 10px;
}

@mixin align-items($align: center) {
  -webkit-box-align: $align;
  -ms-flex-align: $align;
  align-items: $align;
}

@mixin align-content($align: center) {
  -ms-flex-line-pack: $align;
  align-content: $align;
}

@mixin justify-content($justify: center) {
  -webkit-box-pack: $justify;
  -ms-flex-pack: $justify;
  justify-content: $justify;
}

@mixin space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@mixin flex-direction($direction: column) {
  @if ($direction==column) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  @if ($direction==column-reverse) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  @if ($direction==row) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  @if ($direction==row-reverse) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}*/
.container {
  max-width: var(--container-width, 100%);
  width: 100%;
  margin: 0 auto;
  padding: 40px 2.5% !important;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 17.5px;
}
@media only screen and (max-width: 47.9375rem) {
  .container {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}
@media only screen and (max-width: 29.9375rem) {
  .container {
    padding: 0;
  }
}
.container.container-small {
  max-width: var(--small-container-width, 1150px);
}
@media only screen and (max-width: 71.1875rem) {
  .container.container-small {
    margin: 0 auto !important;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .container.container-small {
    margin: 0 auto !important;
  }
}
.container .grid-row, .container .products {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 17.5px;
  justify-content: center;
}
@media only screen and (max-width: 29.9375rem) {
  .container .grid-row, .container .products {
    flex-direction: column;
  }
}
.container .column {
  display: block;
  box-sizing: border-box;
}
.container .column.left {
  order: -1;
}
.container .column.full {
  flex: 1 1 100%;
  max-width: 100%;
}
.container .column.one-half {
  flex: 1 1 calc(50% - 17.5px);
  max-width: calc(50% - 17.5px);
}
@media only screen and (max-width: 47.9375rem) {
  .container .column.one-half {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.container .column.one-third {
  flex: 1 1 calc(33.333% - 17.5px);
  max-width: calc(33.333% - 17.5px);
}
@media only screen and (max-width: 71.1875rem) {
  .container .column.one-third {
    flex: 1 1 calc(50% - 17.5px);
    max-width: calc(50% - 17.5px);
  }
}
@media only screen and (max-width: 29.9375rem) {
  .container .column.one-third {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.container .column.two-third {
  flex: 1 1 calc(66.666% - 17.5px);
  max-width: calc(66.666% - 17.5px);
}
@media only screen and (max-width: 29.9375rem) {
  .container .column.two-third {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.container .column.one-fourth {
  flex: 1 1 calc(25% - 17.5px);
  max-width: calc(25% - 17.5px);
}
@media only screen and (max-width: 71.1875rem) {
  .container .column.one-fourth {
    flex: 1 1 calc(50% - 17.5px);
    max-width: calc(50% - 17.5px);
  }
}
@media only screen and (max-width: 29.9375rem) {
  .container .column.one-fourth {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.container .column.three-fourth {
  flex: 1 1 calc(75% - 17.5px);
  max-width: calc(75% - 17.5px);
}
.container .column.one-fifth {
  flex: 1 1 calc(20% - 17.5px);
  max-width: calc(20% - 17.5px);
}
@media only screen and (max-width: 71.1875rem) {
  .container .column.one-fifth {
    flex: 1 1 calc(25% - 17.5px);
    max-width: calc(25% - 17.5px);
  }
}
@media only screen and (max-width: 29.9375rem) {
  .container .column.one-fifth {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.container .column.two-fifth {
  flex: 1 1 calc(40% - 17.5px);
  max-width: calc(40% - 17.5px);
}
@media only screen and (max-width: 71.1875rem) {
  .container .column.two-fifth {
    flex: 1 1 calc(33.333% - 17.5px);
    max-width: calc(33.333% - 17.5px);
  }
}
@media only screen and (max-width: 29.9375rem) {
  .container .column.two-fifth {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.container .column.three-fifth {
  flex: 1 1 calc(60% - 17.5px);
  max-width: calc(60% - 17.5px);
}
@media only screen and (max-width: 29.9375rem) {
  .container .column.three-fifth {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.container .column.four-fifth {
  flex: 1 1 calc(80% - 17.5px);
  max-width: calc(80% - 17.5px);
}
@media only screen and (max-width: 29.9375rem) {
  .container .column.four-fifth {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
html {
  overflow-x: hidden;
  width: 100%;
  font-family: var(--primary-font);
  color: var(--text-color);
  margin: 0;
  cursor: default;
}
html body {
  margin: 0;
}
html a {
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
}
html ol, html ul {
  font-weight: 500;
  cursor: default;
  font-size: 18px;
}
@media only screen and (max-width: 22.4375rem) {
  html ol, html ul {
    font-size: 16px;
  }
}
html h1 {
  font-size: 30px;
  font-family: var(--title-font);
  color: var(--secondary-color);
  font-weight: 900;
  margin: 0;
  cursor: default;
}
@media only screen and (max-width: 63.9375rem) {
  html h1 {
    font-size: 28px;
  }
}
html h2, html h3 {
  margin: 0;
  font-size: 32px;
  font-family: var(--title-font);
  color: var(--secondary-color);
  cursor: default;
}
@media only screen and (max-width: 63.9375rem) {
  html h2, html h3 {
    font-size: 24px;
  }
}
html p {
  margin: 20px 0;
  color: var(--text-color);
  font-weight: 400;
  font-size: 18px;
  cursor: default;
}
@media only screen and (max-width: 22.4375rem) {
  html p {
    font-size: 16px;
  }
}
html p:nth-child(1) {
  margin-top: 0;
}
html p:nth-last-child(1) {
  margin-bottom: 0;
}
html img {
  max-width: 100%;
  height: auto;
}
html strong {
  color: var(--secondary-color);
}
html .background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  z-index: -1;
}
html .background-image.parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (max-width: 47.9375rem) {
  html .background-image.parallax {
    background-attachment: scroll;
  }
}
html .section {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
html .section .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem;
}
html .section .slider {
  padding: 0;
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 47.9375rem) {
  html .section .slider {
    margin: 0;
  }
}
html .section .slider .slick-track {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
html .section .slider .slick-prev, html .section .slider .slick-next {
  margin: 0;
  font-size: 0;
  position: absolute;
  bottom: -30px;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  border: none;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  padding: 0;
  border-radius: 5px;
}
html .section .slider .slick-prev:before, html .section .slider .slick-next:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='white' style='&%2310; color: white;&%2310;'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z' style='&%2310; color: white;&%2310;'/%3E%3C/svg%3E");
  width: 15px;
  height: 16px;
  display: inline-block;
  vertical-align: sub;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}
html .section .slider .slick-prev:hover, html .section .slider .slick-prev:focus, html .section .slider .slick-next:hover, html .section .slider .slick-next:focus {
  outline: none;
}
html .section .slider .slick-prev:hover:before, html .section .slider .slick-prev:focus:before, html .section .slider .slick-next:hover:before, html .section .slider .slick-next:focus:before {
  border: none;
}
html .section .slider .slick-prev {
  left: 0;
}
html .section .slider .slick-prev:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
html .section .slider .slick-next {
  left: calc(17.5px + 20px);
}
@media only screen and (max-width: 29.9375rem) {
  html .section .slider .slick-next {
    right: 0;
  }
}
html .section .slider .slick-next:before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
html .eyebrows {
  -webkit-box-ordinal-group: 0;
  -moz-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 17.5px;
}
html .eyebrows .eyebrow {
  display: inline-block;
  background: var(--background-accent);
  padding: 15px;
}
html .eyebrows .eyebrow i {
  margin-right: 10px;
  color: var(--primary-color);
}
html .eyebrows .eyebrow span {
  color: var(--primary-color);
  font-weight: 700;
}
html .icon {
  width: 20px;
  height: 21px;
  display: inline-block;
  vertical-align: sub;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}
html .icon.arrow {
  margin-left: 10px;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='white' style='&%2310; color: white;&%2310;'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z' style='&%2310; color: white;&%2310;'/%3E%3C/svg%3E");
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
html .icon.arrow.left {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-box-ordinal-group: 0;
  -moz-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
html .full-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
}
html #scroll-to-top-btn {
  position: fixed;
  z-index: 12;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: var(--background-accent);
  display: none;
  cursor: pointer;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
html #scroll-to-top-btn:hover {
  transform: translateY(-2px);
}
html #scroll-to-top-btn:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='var(--text-color)' style='&%2310; color: white;&%2310;'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z' style='&%2310; color: white;&%2310;'/%3E%3C/svg%3E");
  display: inline-block;
  vertical-align: sub;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 18px;
  left: 18px;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion-item .accordion-question {
  position: relative;
  background-color: var(--secondary-color);
}
.accordion-item .accordion-question.open .icon.chevron {
  cursor: default;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.accordion-item .accordion-question + .accordion-answer {
  display: block !important;
}
.accordion-item.chevron {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='var(--primary-color)' style='&%2310; color: white;&%2310;'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z' style='&%2310; color: white;&%2310;'/%3E%3C/svg%3E");
}
@media only screen and (max-width: 47.9375rem) {
  .accordion-item.chevron {
    font-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.accordion-item.chevron ul {
  padding-left: 5px;
}
.accordion-item.chevron ul a, .accordion-item.chevron ul li {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.accordion-item.chevron ul a:hover, .accordion-item.chevron ul li:hover {
  border-color: var(--text-color);
  color: var(--text-color);
}
.accordion-item.chevron .content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 20px;
}
@media only screen and (max-width: 29.9375rem) {
  .accordion-item.chevron .content {
    padding: 0;
  }
}
.accordion-item.chevron .accordion-answer {
  padding: 20px 30px;
}
@media only screen and (max-width: 47.9375rem) {
  .accordion-item.chevron .accordion-answer {
    padding: 20px;
  }
}
.accordion-item.chevron .entry-content {
  padding: 20px;
  text-align: center;
}
.image-container {
  position: relative;
  text-align: center;
}
.button {
  --tr-speed: 0.3s;
  --tr-ease: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--primary-color);
  border: 2px solid transparent;
  font-family: var(--button-font);
  padding: 15px 32px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
  transition: all var(--tr-speed) var(--tr-ease), transform var(--tr-speed) var(--tr-ease);
}
@media only screen and (max-width: 47.9375rem) {
  .button {
    padding: 10px 16px;
  }
}
.button .icon {
  width: auto;
  height: auto;
}
.button:hover {
  filter: brightness(0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.5);
}
.button:active {
  filter: brightness(0.8);
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.button:disabled {
  filter: brightness(1.3);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
.button--default span {
  color: white;
}
.button--outline, .button--secondary-outline {
  background-color: transparent;
  border-color: var(--primary-color);
  position: relative;
}
.button--outline span, .button--secondary-outline span {
  color: var(--primary-color);
}
.button--outline::before, .button--secondary-outline::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-color: var(--primary-color);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--tr-speed) var(--tr-ease);
  border-radius: inherit;
}
.button--outline:hover::before, .button--secondary-outline:hover::before {
  opacity: 1;
}
.button--outline:hover span, .button--secondary-outline:hover span {
  color: white;
}
.button--secondary {
  background-color: var(--secondary-color);
}
.button--secondary span {
  color: white;
}
.button--secondary:hover {
  filter: brightness(0.9);
}
.button--secondary:active {
  filter: brightness(0.8);
}
.button--secondary-outline {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.button--secondary-outline span {
  color: var(--secondary-color);
}
.button--secondary-outline::before {
  background-color: var(--secondary-color);
}
.button .button-title {
  margin-right: 8px;
  font-family: var(--button-font);
}
@media only screen and (max-width: 47.9375rem) {
  .button .button-title {
    margin-right: 4px;
  }
}
.button .icon {
  font-size: 16px;
  transition: transform var(--tr-speed) var(--tr-ease), color;
}
.button:hover .icon {
  transform: scale(1.1);
}
.button-group {
  margin-top: 17.5px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 17.5px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.button--pulse:hover {
  animation: pulse 0.5s ease-in-out;
}
.play-button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  text-decoration: none;
}
.play-button {
  width: 0;
  height: 0;
  border-left: 15px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 999;
}
.lightbox.hidden {
  display: none;
}
.lightbox-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.lightbox iframe {
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 29.9375rem) {
  .lightbox iframe {
    height: 300px;
  }
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #333435;
  display: inline-block;
  padding: 8px 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50% !important;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}
.close-btn:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='white'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z'/%3E%3C/svg%3E");
  width: 20px;
  height: 21px;
  background-size: 12px;
  display: inline-block;
  vertical-align: sub;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}
.close-btn:hover {
  background-color: red;
}
.lightbox-gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  z-index: 9999;
}
.lightbox-gallery.lightbox-open {
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
}
.lightbox-gallery .lightbox-content {
  display: block;
  max-width: 60vw;
  max-height: 70vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}
.lightbox-gallery .lightbox-caption {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50vw;
  max-width: 600px;
  background: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.lightbox-gallery .lightbox-caption .lightbox-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin: 0;
}
.lightbox-gallery .lightbox-caption .lightbox-description {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  color: white;
}
.lightbox-gallery .lightbox-caption .lightbox-categories {
  font-size: 0.8rem;
  font-style: italic;
  color: white;
  margin: 0;
}
.lightbox-gallery .lightbox-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 60vw;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto;
}
.lightbox-gallery .lightbox-navigation .prev, .lightbox-gallery .lightbox-navigation .next {
  display: inline-block;
  font-size: 0;
  cursor: pointer;
  margin: 0;
  color: white;
  background-color: var(--primary-color);
  padding: 15px;
  border-radius: 50%;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}
.lightbox-gallery .lightbox-navigation .prev:before, .lightbox-gallery .lightbox-navigation .next:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='white' style='&%2310; color: white;&%2310;'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z' style='&%2310; color: white;&%2310;'/%3E%3C/svg%3E");
  width: 15px;
  height: 15px;
  display: block;
  background-repeat: no-repeat;
}
.lightbox-gallery .lightbox-navigation .prev:hover, .lightbox-gallery .lightbox-navigation .next:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.lightbox-gallery .lightbox-navigation .prev:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.lightbox-gallery .lightbox-navigation .next:before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.lightbox-gallery .close-lightbox {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 50px;
  color: var(--primary-color);
  cursor: pointer;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}
.lightbox-gallery .close-lightbox:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.section.large {
  background-color: var(--primary-color);
}
.section.large .container {
  padding: 0 !important;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.section.large .container .content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 calc(2.5vw + 17.5px);
}
@media only screen and (max-width: 71.1875rem) {
  .section.large .container .content {
    padding: 40px calc(2.5vw + 17.5px);
  }
}
.section.large .container .content p {
  color: var(--secondary-color);
}
.section.large .container .column {
  min-width: 50%;
  max-width: 50%;
  margin: 0;
}
@media only screen and (max-width: 71.1875rem) {
  .section.large .container .column {
    min-width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 71.1875rem) {
  .section.large .container .column .image-container {
    max-height: 40vh;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media only screen and (max-width: 71.1875rem) {
  .section.large .container .column.left {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
.section.large .container img {
  display: block;
}
.section-404 {
  padding: 180px 0 90px;
  position: relative;
}
.section-404 h1 {
  margin: 0 0 20px;
  color: var(--primary-color);
}
.section-404 p {
  margin: 0 0 40px;
}
.section-404 .background-image {
  background-image: url(../uploads/space.png);
  display: block;
  background-size: auto;
  background-position: center;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
  height: 100%;
  background-repeat: no-repeat;
}
html .gform_fields {
  display: block !important;
}
html .gform_confirmation_message {
  color: var(--text-color);
  font-size: 18px;
  margin: 0;
}
html input, html textarea, html select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  color: var(--text-color);
  padding: 10px;
  font-size: 16px;
  width: 100%;
}
html input[type="checkbox"], html textarea[type="checkbox"], html select[type="checkbox"] {
  width: auto;
  margin: 0 5px 0 0;
}
html .gform_wrapper .gform_heading .gform_title {
  color: var(--primary-color);
  font-size: 24px;
  margin: 0;
}
html .gform_wrapper .gfield {
  margin: 10px 0;
}
html .gform_wrapper .gfield.one-half {
  width: calc(50% - 17.5px);
  display: inline-block;
}
html .gform_wrapper .gfield.one-half:nth-child(odd) {
  margin-right: 17.5px;
}
html .gform_wrapper .gfield.one-half:nth-child(even) {
  margin-left: 17.5px;
}
@media (max-width: 768px) {
  html .gform_wrapper .gfield.one-half {
    width: 100%;
    margin: 10px 0;
  }
}
html .gform_wrapper input[type="submit"] {
  background-color: var(--primary-color) !important;
  color: white;
  padding: 15px 20px !important;
  border: none;
  border-radius: 5px !important;
  cursor: pointer;
}
.section-menu {
  position: relative;
}
.section-menu.is-scroll {
  position: sticky;
  z-index: 999;
  height: auto;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
}
.section-menu .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.section-menu .main-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.section-menu .main-menu .logo-container img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}
.section-menu .main-menu .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
.section-menu .main-menu .menu-toggle.right .hamburger {
  justify-content: flex-end;
}
.section-menu .main-menu .menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  width: 40px;
  cursor: pointer;
}
.section-menu .main-menu .menu-toggle .hamburger span {
  border-radius: 10px;
  height: 4px;
  margin: 5px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  width: 100%;
}
.section-menu .main-menu .menu-toggle .hamburger span:nth-of-type(1) {
  width: 50%;
}
.section-menu .main-menu .menu-toggle .hamburger span:nth-of-type(2) {
  width: 100%;
}
.section-menu .main-menu .menu-toggle .hamburger span:nth-of-type(3) {
  width: 75%;
}
.section-menu .main-menu .menu-toggle.active .hamburger span:nth-of-type(1) {
  transform-origin: bottom;
  opacity: 0;
  width: 100%;
}
.section-menu .main-menu .menu-toggle.active .hamburger span:nth-of-type(2) {
  transform-origin: top;
  transform: rotate(-45deg);
  width: 100%;
}
.section-menu .main-menu .menu-toggle.active .hamburger span:nth-of-type(3) {
  transform-origin: bottom;
  width: 100%;
  transform: rotate(45deg) translate(-9px, -11px);
}
.section-menu .main-menu .main-menu-wrapper {
  display: flex;
  align-items: center;
}
.section-menu .main-menu .main-menu-wrapper.active .menu {
  margin: 0 5%;
}
.section-menu .main-menu .menu {
  display: flex;
}
.section-menu .main-menu .menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.section-menu .main-menu .menu ul > li {
  position: relative;
}
.section-menu .main-menu .menu ul > li a {
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6) ease;
}
.section-menu .main-menu .menu ul > li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  right: calc(-5vw + (17.5px / 2));
  min-width: 180px;
  border-radius: 4px;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .section-menu .main-menu .menu-toggle {
    display: block;
  }
  .section-menu .main-menu .main-menu-wrapper {
    display: none;
  }
  .section-menu .main-menu .main-menu-wrapper.active {
    display: block;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    z-index: 999;
    height: 100vh;
  }
  .section-menu .main-menu .menu {
    flex-direction: column;
  }
  .section-menu .main-menu .menu ul {
    flex-direction: column;
  }
  .section-menu .main-menu .menu ul > li {
    width: 100%;
  }
  .section-menu .main-menu .menu ul > li.menu-item-has-children .sub-menu {
    position: static;
    display: none;
    width: 100%;
  }
  .section-menu .main-menu .menu ul > li.menu-item-has-children .sub-menu.active {
    display: block;
  }
}
.section-footer {
  background-color: var(--background-accent);
}
@media only screen and (max-width: 63.9375rem) {
  .section-footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.section-footer .container .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-footer .container .menu ul li {
  margin-bottom: 0.75rem;
}
.section-footer .container .menu ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.section-footer .container .menu ul li a:hover {
  color: var(--primary-color);
}
.section-footer .container .menu ul li a.current_page_item {
  font-weight: 700;
  color: var(--primary-color);
}
.section-footer .container .social-media {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-footer .container .social-media li a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.section-footer .container .social-media li a:hover {
  color: var(--primary-color);
}
.section-socket {
  background-color: #1a1a1a;
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.section-socket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
}
.section-socket .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.section-socket .container .column.full {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.section-socket .container .copyright {
  font-size: 0.875rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.section-socket .container .copyright:hover {
  color: white;
}
.section-socket .container p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 0.3px;
  line-height: 1.6;
}
@media only screen and (max-width: 47.9375rem) {
  .section-socket .container .column.full {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .section-socket .container .column.full p:last-child {
    text-align: center;
  }
  .section-socket .container .column.full p:last-child span {
    display: block;
    margin: 0.25rem 0;
  }
  .section-socket .container .column.full p:last-child span::after {
    display: none;
  }
}
.section-menu {
  background-color: var(--background-accent);
}
.section-menu .main-menu .logo-container img {
  max-height: 60px;
}
.section-menu .main-menu .menu-toggle .hamburger span {
  background: var(--primary-color);
  transition: 0.3s;
  width: 100%;
}
.section-menu .main-menu .menu-toggle .hamburger span:nth-of-type(1) {
  width: 50%;
}
.section-menu .main-menu .menu-toggle .hamburger span:nth-of-type(3) {
  width: 75%;
}
.section-menu .main-menu .menu-toggle.active .hamburger span {
  background: var(--secondary-color);
  width: 100%;
  transform-origin: bottom;
}
.section-menu .main-menu .menu-toggle.active .hamburger span:nth-of-type(1) {
  opacity: 0;
}
.section-menu .main-menu .menu-toggle.active .hamburger span:nth-of-type(2) {
  transform-origin: top;
  transform: rotate(-45deg);
}
.section-menu .main-menu .menu-toggle.active .hamburger span:nth-of-type(3) {
  transform: rotate(45deg) translate(-9px, -11px);
}
.section-menu .main-menu .menu ul > li {
  margin: 0 15px;
}
.section-menu .main-menu .menu ul > li > a {
  color: #1a1a1a;
  font-weight: 500;
}
.section-menu .main-menu .menu ul > li > a:hover {
  color: var(--primary-color);
}
.section-menu .main-menu .menu ul > li > a.current_page_item {
  font-weight: 700;
  color: var(--primary-color);
}
.section-menu .main-menu .menu ul > li.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}
.section-menu .main-menu .menu ul > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.section-menu .main-menu .menu ul > li.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(225deg);
}
.section-menu .main-menu .menu ul > li.menu-item-has-children .sub-menu {
  background-color: var(--background-accent);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 8px 0;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.section-menu .main-menu .menu ul > li.menu-item-has-children .sub-menu li {
  position: relative;
  margin: 0;
}
.section-menu .main-menu .menu ul > li.menu-item-has-children .sub-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.section-menu .main-menu .menu ul > li.menu-item-has-children .sub-menu li a {
  color: #1a1a1a;
  padding: 12px 15px 12px 15px;
  display: block;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.section-menu .main-menu .menu ul > li.menu-item-has-children .sub-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  padding-left: 24px;
}
.section-menu .main-menu .menu ul > li.menu-item-has-children:hover > .sub-menu, .section-menu .main-menu .menu ul > li.menu-item-has-children:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .section-menu .main-menu .main-menu-wrapper.active {
    background-color: var(--background-accent);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .section-menu .main-menu .menu ul > li {
    margin: 15px 0;
  }
}
html .section-footer {
  background-color: var(--primary-color);
}
html .section-footer h3 {
  color: white;
}
html .section-footer p {
  color: white;
}
html .section-footer .menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
html .section-footer .menu > li {
  margin: 0;
  position: relative;
}
html .section-footer .menu > li > a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}
html .section-footer .menu > li > a:hover {
  color: var(--primary-color);
}
html .section-footer .menu > li > a.current_page_item {
  font-weight: 700;
  color: var(--primary-color);
}
html .section-footer .menu > li.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}
html .section-footer .menu > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
html .section-footer .menu > li.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(225deg);
}
html .section-footer .menu > li.menu-item-has-children .sub-menu {
  background-color: var(--background-accent);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 8px 0;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  z-index: 10;
}
html .section-footer .menu > li.menu-item-has-children .sub-menu li {
  margin: 0;
}
html .section-footer .menu > li.menu-item-has-children .sub-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
html .section-footer .menu > li.menu-item-has-children .sub-menu li a {
  color: white;
  padding: 12px 15px;
  display: block;
  white-space: nowrap;
  transition: all 0.3s ease;
}
html .section-footer .menu > li.menu-item-has-children .sub-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  padding-left: 24px;
}
html .section-footer .menu > li.menu-item-has-children:hover > .sub-menu, html .section-footer .menu > li.menu-item-has-children:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.section-socket .column {
  margin: 0 1rem;
}
.section-header {
  position: relative;
  min-height: 50vh;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.section-code-containers .container .container {
  padding: 0 !important;
}
.section-code-containers .tabs {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.section-code-containers .tabs .tab {
  padding: 10px;
  border: 1px solid #ccc;
  border-bottom: none;
  background-color: #f4f4f4;
}
.section-code-containers .tabs .tab.active {
  background-color: #fff;
  border-bottom: 1px solid #fff;
}
.section-code-containers .code-containers .container .container {
  padding: 0 !important;
}
.section-code-containers .column.four-fifth .column {
  margin: 1rem 0;
}
.section-code-containers .code-container {
  padding: 10px;
  border: 1px solid #ccc;
  background-color: white;
  position: relative;
}
.section-code-containers aside {
  padding: 30px;
  position: sticky;
  top: 75px;
  background: var(--secondary-color);
}
.section-code-containers ul {
  list-style-type: none;
  padding: 0;
}
.section-code-containers ul li {
  margin-bottom: 10px;
}
.section-code-containers pre {
  margin: 0;
  overflow: auto;
}
.section-code-containers .copy-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}
.section-code-containers .menu-bar {
  margin-bottom: 20px;
}
.section-code-containers .menu-bar a {
  margin-right: 10px;
  text-decoration: none;
  color: var(--primary-color);
}
.section-code-containers .menu-bar a:hover {
  text-decoration: underline;
}
.section-cta .column {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.section-cta .cta-container {
  background-color: var(--primary-color);
  padding: 80px 40px;
  display: inline-block;
  margin: 0 auto;
  width: auto;
  text-align: center;
}
.section-cta .cta-container .cta-content {
  max-width: 400px;
}
.section-cta .cta-container .cta-icon i {
  font-size: 40px;
  color: white;
  margin-bottom: 10px;
}
.section-cta .cta-container h2 {
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}
.section-cta .cta-container p {
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
}
.section-gallery .full {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.section-gallery button {
  border: none;
  background: none;
  padding: 0;
}
.section-gallery .gallery-image {
  flex: 1 1 calc(25% - 1rem * 2);
  max-width: calc(25% - 1rem * 2);
  display: block;
  overflow: hidden;
  position: relative;
}
.section-gallery .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-banner {
  position: relative;
  width: 100%;
}
.section-banner .container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section-banner .background-image {
  min-height: 60vh;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.section-banner .countdown-display {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
}
.section-banner .countdown-display .time {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  min-width: 120px;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.section-banner .countdown-display .time [class^="dagen"], .section-banner .countdown-display .time [class^="uur"], .section-banner .countdown-display .time [class^="minuten"], .section-banner .countdown-display .time [class^="seconden"] {
  animation: number-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@keyframes number-pop {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.section-banner .countdown-display .time .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 500;
  opacity: 0.8;
}
@media only screen and (max-width: 47.9375rem) {
  .section-banner .countdown-display {
    gap: 1rem;
  }
  .section-banner .countdown-display .time {
    min-width: 90px;
    padding: 1rem;
  }
  .section-banner .countdown-display .time [class^="dagen"], .section-banner .countdown-display .time [class^="uur"], .section-banner .countdown-display .time [class^="minuten"], .section-banner .countdown-display .time [class^="seconden"] {
    font-size: 2rem;
  }
  .section-banner .countdown-display .time .label {
    font-size: 0.8rem;
  }
}
.section-partner.slider .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.section-reviews .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.section-reviews .column:nth-child(1) {
  padding: 0 2.5%;
}
.section-reviews .column:nth-last-child(1) {
  text-align: center;
}
.section-reviews .slider {
  display: block;
  padding: 0 calc(2.5% - 1rem);
}
.section-reviews .slider .entry {
  background-color: var(--background-accent);
  border-radius: 20px;
  overflow: hidden;
}
.section-reviews .slider .entry .entry-header {
  background-color: var(--secondary-color);
  padding: 20px 30px;
}
.section-reviews .slider .entry .entry-header h3 {
  color: var(--primary-color);
  font-size: 20px;
}
.section-reviews .slider .entry .entry-header .stars {
  margin-bottom: 10px;
  display: block;
}
.section-reviews .slider .entry .entry-header .fa-star {
  color: var(--primary-color);
}
.section-reviews .slider .entry .entry-content {
  padding: 30px;
}
.section-reviews .slick-track {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.section-review .column.full {
  -webkit-box-ordinal-group: -1;
  -moz-box-ordinal-group: -1;
  -webkit-order: -2;
  -ms-flex-order: -2;
  order: -2;
}
@media only screen and (max-width: 63.9375rem) {
  .section-textblock-media .one-half:not(.left):not(.right) {
    min-width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 63.9375rem) {
  .section-textblock-media .one-half.left, .section-textblock-media .one-half.right {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin: 1rem auto;
    min-width: calc((100% / 3 * 2) - (1rem * 2));
    max-width: calc((100% / 3 * 2) - (1rem * 2));
  }
}
@media only screen and (max-width: 29.9375rem) {
  .section-textblock-media .one-half.left, .section-textblock-media .one-half.right {
    min-width: 100%;
    max-width: 100%;
  }
}
.section-textblock-media .full-link {
  background-color: transparent;
  cursor: pointer;
  border: none;
}
.section-textblock-media .column, .section-review .column, .section-textblock-form .column {
  position: relative;
}
.section-textblock-media .column.square-borders.left .image-container:before, .section-review .column.square-borders.left .image-container:before, .section-textblock-form .column.square-borders.left .image-container:before {
  left: -20px;
}
@media only screen and (max-width: 47.9375rem) {
  .section-textblock-media .column.square-borders.left .image-container:before, .section-review .column.square-borders.left .image-container:before, .section-textblock-form .column.square-borders.left .image-container:before {
    left: -2.5vw;
  }
}
.section-textblock-media .column.square-borders.left .image-container:after, .section-review .column.square-borders.left .image-container:after, .section-textblock-form .column.square-borders.left .image-container:after {
  left: -40px;
}
@media only screen and (max-width: 47.9375rem) {
  .section-textblock-media .column.square-borders.left .image-container:after, .section-review .column.square-borders.left .image-container:after, .section-textblock-form .column.square-borders.left .image-container:after {
    left: -5vw;
  }
}
.section-textblock-media .column.square-borders.right .image-container:before, .section-review .column.square-borders.right .image-container:before, .section-textblock-form .column.square-borders.right .image-container:before {
  right: -20px;
}
@media only screen and (max-width: 47.9375rem) {
  .section-textblock-media .column.square-borders.right .image-container:before, .section-review .column.square-borders.right .image-container:before, .section-textblock-form .column.square-borders.right .image-container:before {
    right: -2.5vw;
  }
}
.section-textblock-media .column.square-borders.right .image-container:after, .section-review .column.square-borders.right .image-container:after, .section-textblock-form .column.square-borders.right .image-container:after {
  right: -40px;
}
@media only screen and (max-width: 47.9375rem) {
  .section-textblock-media .column.square-borders.right .image-container:after, .section-review .column.square-borders.right .image-container:after, .section-textblock-form .column.square-borders.right .image-container:after {
    right: -5vw;
  }
}
.section-textblock-media .column.square-borders .image-container:before, .section-review .column.square-borders .image-container:before, .section-textblock-form .column.square-borders .image-container:before {
  content: "";
  display: block;
  background-color: transparent;
  width: 80%;
  height: 90%;
  top: -20px;
  border: 5px solid var(--secondary-color);
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 47.9375rem) {
  .section-textblock-media .column.square-borders .image-container:before, .section-review .column.square-borders .image-container:before, .section-textblock-form .column.square-borders .image-container:before {
    top: -10px;
  }
}
.section-textblock-media .column.square-borders .image-container:after, .section-review .column.square-borders .image-container:after, .section-textblock-form .column.square-borders .image-container:after {
  content: "";
  display: block;
  background-color: transparent;
  top: 20px;
  width: 80%;
  height: 65%;
  border: 5px solid var(--secondary-color);
  position: absolute;
  z-index: -1;
}
.section-textblock-media .column.square-shadow.right .image-container:before, .section-review .column.square-shadow.right .image-container:before, .section-textblock-form .column.square-shadow.right .image-container:before {
  right: -20px;
}
@media only screen and (max-width: 47.9375rem) {
  .section-textblock-media .column.square-shadow.right .image-container:before, .section-review .column.square-shadow.right .image-container:before, .section-textblock-form .column.square-shadow.right .image-container:before {
    right: -5vw;
  }
}
.section-textblock-media .column.square-shadow.left .image-container:before, .section-review .column.square-shadow.left .image-container:before, .section-textblock-form .column.square-shadow.left .image-container:before {
  left: -20px;
}
@media only screen and (max-width: 47.9375rem) {
  .section-textblock-media .column.square-shadow.left .image-container:before, .section-review .column.square-shadow.left .image-container:before, .section-textblock-form .column.square-shadow.left .image-container:before {
    left: -2.5vw;
  }
}
.section-textblock-media .column.square-shadow .image-container:before, .section-review .column.square-shadow .image-container:before, .section-textblock-form .column.square-shadow .image-container:before {
  content: "";
  display: block;
  background-color: var(--secondary-color);
  top: -20px;
  width: 100%;
  height: 80%;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 29.9375rem) {
  .section-tiles .entry:nth-child(1) {
    margin-top: 0 !important;
  }
  .section-tiles .entry:nth-last-child(1) {
    margin-bottom: 0 !important;
  }
}
.section-tiles .entry .content {
  padding: 30px;
}
.section-usp {
  background-color: var(--primary-color);
}
.section-usp .column {
  margin: 0;
}
.section-usp .usp-bar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: var(--secondary-color);
  padding: 10px 0;
}
@media only screen and (max-width: 29.9375rem) {
  .section-usp .usp-bar {
    display: block;
  }
}
@media only screen and (max-width: 29.9375rem) {
  .section-usp .usp-bar .usp {
    text-align: center;
    margin: 0;
    padding: 10px 0;
  }
}
.section-usp .usp-bar p, .section-usp .usp-bar strong {
  color: var(--secondary-color);
}
.section-usp .usp-bar p {
  font-size: 16px;
  min-width: 100%;
  display: block;
}
.section-usp .usp-bar strong {
  font-size: 28px;
  margin-bottom: 20px;
}
.section-usp .usp-bar .usp {
  margin: 0 10px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-usp .usp-bar .usp:nth-child(1) {
  margin-left: 0;
}
.section-usp .usp-bar .usp:nth-last-child(1) {
  margin-right: 0;
}
.section-usp .usp-bar .icon {
  margin-right: 10px;
  color: var(--secondary-color);
  font-weight: 900;
}
.social-media {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}
.social-media.primary-color .menu-item a:hover {
  background-color: rgba(var(--primary-color), 0.2);
}
.social-media.primary-color .menu-item a:hover i {
  color: var(--primary-color);
}
.social-media.secondary-color .menu-item a:hover {
  background-color: rgba(var(--secondary-color), 0.2);
}
.social-media.secondary-color .menu-item a:hover i {
  color: var(--secondary-color);
}
.social-media .menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(26, 26, 26, 0.4);
  transition: all 0.3s ease;
  color: white;
}
.social-media .menu-item a:hover {
  transform: scale(1.1);
}
.social-media .menu-item a i {
  font-size: 20px;
  transition: color 0.3s ease;
  color: white;
}
