/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus { outline: none; }
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}
/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}
.flickity-button:hover {
  background: white;
  cursor: pointer;
}
.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}
.flickity-button-icon {
  fill: currentColor;
}
/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}
.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots { direction: rtl; }
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}
.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}
@charset "UTF-8";
.f {
  display: flex;
}
.f--wrap {
  flex-wrap: wrap;
}
.f--col {
  display: flex;
  flex-direction: column;
}
.f--reverse {
  flex-direction: row-reverse;
}
.f--center {
  justify-content: center;
}
.f--between {
  justify-content: space-between;
}
.f--end {
  justify-content: flex-end;
}
.f--top {
  align-items: flex-start;
}
.f--middle {
  align-items: center;
}
.f--bottom {
  align-items: flex-end;
}
.t--right {
  text-align: right;
}
.t--center {
  text-align: center;
}
.f--right {
  float: right;
}
.c--white {
  color: #fff;
}
.c--black {
  color: #0c0c0e;
}
.c--light {
  color: #f2f2f2;
}
.c--mid {
  color: #8e8e9a;
}
.c--dark {
  color: #303030;
}
.c--brand {
  color: #cfb054;
}
.c--blue {
  color: #006aa6;
}
.c--green {
  color: #01837f;
}
.bg--white {
  background-color: #fff;
}
.bg--black {
  background-color: #0c0c0e;
}
.bg--mid {
  background-color: #8e8e9a;
}
.bg--dark {
  background-color: #303030;
}
.bg--brand {
  background-color: #cfb054;
}
.bg--blue {
  background-color: #006aa6;
}
.bg--green {
  background-color: #01837f;
}
.bg--purple {
  background-color: #9f1a65;
}
body {
  position: relative;
}
body:before {
  content: "";
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/bg--diamonds.png);
  background-size: 52px 46px;
  background-repeat: repeat;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
[class*=fx--] {
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: ease;
}
.fx--in {
  opacity: 0;
  transition-timing-function: linear;
}
.fx--in-up {
  transform: translateY(20px);
  opacity: 0;
}
.fx--in-left {
  transform: translateX(-20px);
  opacity: 0;
}
.fx--in-right {
  transform: translateX(20px);
  opacity: 0;
}
.fx--in-out {
  transform: scale(0.95);
  transform-origin: center;
  opacity: 0;
}
.s--revealed [class*=fx--],
[class*=fx--].s--revealed {
  transform: translate(0) scale(1);
  opacity: 1;
}
.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.relative {
  position: relative;
}
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.video video,
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[data-object-fit] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
[data-object-fit=bottom] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.overlay {
  position: relative;
  z-index: 0;
}
.overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 14, 0.1);
  pointer-events: none;
}
.error-msg {
  padding: 80px 0;
}
.no-scroll {
  position: fixed;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.no-transform {
  transform: none;
}
.scroll-lock {
  position: fixed;
  top: 0;
}
.d--smw {
  display: none !important;
}
@media (max-width: 736px) {
  .d--smw {
    display: block !important;
  }
}
.d--smw--up {
  display: none !important;
}
@media (min-width: 737px) {
  .d--smw--up {
    display: block !important;
  }
}
.d--md {
  display: none !important;
}
@media (max-width: 768px) {
  .d--md {
    display: block !important;
  }
}
.d--md--up {
  display: none !important;
}
@media (min-width: 769px) {
  .d--md--up {
    display: block !important;
  }
}
.no-margin {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.page-cookie-policy .editor:first-of-type p:first-of-type {
  font-size: inherit;
}
.editor .sitemap-list a {
  text-decoration: none;
}
.post-type-archive-zoom-meetings .footer {
  display: none;
}
.post-type-archive-zoom-meetings a {
  color: inherit;
}
.table-horizontal {
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  margin-bottom: 60px;
}
.table-horizontal::-webkit-scrollbar {
  display: none;
}
.table-horizontal table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: #f2f2f2;
}
@media (max-width: 736px) {
  .table-horizontal table {
    overflow-x: scroll;
  }
}
.table-horizontal th {
  text-align: left;
  color: #303030;
  background: #D8D8D8;
}
.table-horizontal td {
  color: #8E8E9A;
}
.table-horizontal th,
.table-horizontal td {
  font-size: 14px;
  padding: 6px 8px;
  border: 1px solid #8E8E9A;
  text-align: center;
}
@media (max-width: 736px) {
  .table-horizontal th,
  .table-horizontal td {
    font-size: 12px;
  }
}
.table-horizontal table td[class*=col-],
.table-horizontal table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}
.table-horizontal table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}
.table-horizontal caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #8E8E9A;
  text-align: left;
}
.table-full {
  margin: 40px 0;
}
@media (max-width: 736px) {
  .table-full {
    overflow-x: scroll;
  }
}
.table-full table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: #f2f2f2;
}
@media (max-width: 736px) {
  .table-full table {
    min-width: 800px;
  }
}
.table-full tr:nth-child(2n) td {
  background: #e9e9e9;
}
.table-full th {
  background: #cfb054;
  color: #fff;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #D8D8D8;
  border: 0;
  text-align: left;
}
.table-full td {
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #8E8E9A;
  border: 0;
  text-align: left;
}
.table-vertical {
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  margin-bottom: 20px;
}
.table-vertical::-webkit-scrollbar {
  display: none;
}
.table-vertical table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: #f2f2f2;
}
@media (max-width: 736px) {
  .table-vertical table {
    width: 600px;
  }
}
.table-vertical tr td:nth-child(1) {
  color: #303030;
  background: #D8D8D8;
}
.table-vertical td {
  color: #8E8E9A;
}
.table-vertical td {
  font-size: 14px;
  padding: 6px 8px;
  border: 1px solid #8E8E9A;
  text-align: left;
}
@media (max-width: 736px) {
  .table-vertical td {
    font-size: 12px;
  }
}
.table-vertical table td[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}
.table-vertical table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}
.table-vertical caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #8E8E9A;
  text-align: left;
}
.table-lined {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 60px;
}
.table-lined::-webkit-scrollbar {
  display: none;
}
.table-lined table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: transparent;
  table-layout: inherit;
}
@media (max-width: 736px) {
  .table-lined table {
    width: 600px;
  }
}
.table-lined tr td:nth-child(odd) {
  color: #303030;
  font-weight: bold;
}
.table-lined td {
  color: #8E8E9A;
}
.table-lined td {
  font-size: 14px;
  padding: 8px 0 8px 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #8E8E9A;
  text-align: left;
}
@media (max-width: 736px) {
  .table-lined td {
    font-size: 12px;
    padding: 8px 20px 8px 0;
  }
}
.table-lined table td[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}
.table-lined table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}
.table-lined caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #8E8E9A;
  text-align: left;
}
.table-horizontal,
.table-vertical,
.table-lined {
  position: relative;
  padding-bottom: 20px;
}
.table-horizontal.add-scroll-prompt::after,
.table-vertical.add-scroll-prompt::after,
.table-lined.add-scroll-prompt::after {
  display: none;
  position: absolute;
  content: "Scroll \27F6";
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 736px) {
  .table-horizontal.add-scroll-prompt::after,
  .table-vertical.add-scroll-prompt::after,
  .table-lined.add-scroll-prompt::after {
    display: block;
  }
  .library-back-to-the-future-ii-annuities-101 .table-horizontal.add-scroll-prompt::after,
  .library-back-to-the-future-ii-annuities-101 .table-vertical.add-scroll-prompt::after,
  .library-back-to-the-future-ii-annuities-101 .table-lined.add-scroll-prompt::after {
    display: none !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  background-color: #f2f2f2;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
svg {
  display: inline-block;
  overflow: visible;
}
ul {
  list-style-type: none;
}
button {
  border: 0;
  outline: 0;
  color: currentColor;
  background-color: transparent;
  cursor: pointer;
}
button:active,
button:focus {
  outline: 0;
}
.no-scroll #hu-revoke,
.no-scroll .calendly-badge-widget .calendly-badge-content {
  display: none;
}
.fullVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@font-face {
  font-family: "Graphik Regular Web";
  src: url("/wp-content/themes/equilibrium/dist/fonts/Graphik-Regular-Web.woff2") format("woff2"), url("/wp-content/themes/equilibrium/dist/fonts/Graphik-Regular-Web.woff") format("woff");
  font-style: normal;
  font-stretch: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Graphik Medium Web";
  src: url("/wp-content/themes/equilibrium/dist/fonts/Graphik-Medium-Web.woff2") format("woff2"), url("/wp-content/themes/equilibrium/dist/fonts/Graphik-Medium-Web.woff") format("woff");
  font-style: normal;
  font-stretch: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Graphik Bold Web";
  src: url("/wp-content/themes/equilibrium/dist/fonts/Graphik-Bold-Web.woff2") format("woff2"), url("/wp-content/themes/equilibrium/dist/fonts/Graphik-Bold-Web.woff") format("woff");
  font-style: normal;
  font-stretch: normal;
  font-weight: 700;
}
[type=checkbox],
[type=radio],
[type=text],
[type=email],
[type=tel],
[type=number],
[type=date],
select,
textarea {
  box-shadow: none;
  background-color: transparent;
  border: 1px solid #8e8e9a;
  font-size: 18px;
  color: #0c0c0e;
  font-family: "Graphik Regular Web", sans-serif;
  font-weight: 400;
  outline: 0;
  transition: 0.2s linear;
  width: 100%;
}
[type=checkbox]:hover,
[type=radio]:hover,
[type=text]:hover,
[type=email]:hover,
[type=tel]:hover,
[type=number]:hover,
[type=date]:hover,
select:hover,
textarea:hover {
  border-color: rgba(12, 12, 14, 0.2);
}
[type=checkbox]:focus,
[type=radio]:focus,
[type=text]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=number]:focus,
[type=date]:focus,
select:focus,
textarea:focus {
  border-color: rgba(12, 12, 14, 0.5);
}
[type=checkbox]::-webkit-input-placeholder,
[type=radio]::-webkit-input-placeholder,
[type=text]::-webkit-input-placeholder,
[type=email]::-webkit-input-placeholder,
[type=tel]::-webkit-input-placeholder,
[type=number]::-webkit-input-placeholder,
[type=date]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #8e8e9a;
}
[type=checkbox]:-moz-placeholder,
[type=radio]:-moz-placeholder,
[type=text]:-moz-placeholder,
[type=email]:-moz-placeholder,
[type=tel]:-moz-placeholder,
[type=number]:-moz-placeholder,
[type=date]:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #8e8e9a;
}
[type=checkbox]::-moz-placeholder,
[type=radio]::-moz-placeholder,
[type=text]::-moz-placeholder,
[type=email]::-moz-placeholder,
[type=tel]::-moz-placeholder,
[type=number]::-moz-placeholder,
[type=date]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #8e8e9a;
}
[type=checkbox]:-ms-input-placeholder,
[type=radio]:-ms-input-placeholder,
[type=text]:-ms-input-placeholder,
[type=email]:-ms-input-placeholder,
[type=tel]:-ms-input-placeholder,
[type=number]:-ms-input-placeholder,
[type=date]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #8e8e9a;
}
select {
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 22px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230c0c0e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
[type=checkbox],
[type=radio],
[type=text],
[type=email],
[type=tel],
[type=number],
[type=date] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
textarea {
  overflow: auto;
}
[type=text],
[type=email],
[type=tel],
[type=number],
[type=date],
select,
textarea {
  display: block;
  padding: 16px 15px 13px;
  line-height: 1.2;
}
select {
  -webkit-appearance: none;
}
select option {
  background: white;
  color: #303030;
}
select:invalid {
  color: transparent !important;
}
select:invalid option {
  background: white;
  color: #303030;
}
.service-video-question select:invalid {
  color: transparent !important;
}
.service-video-question select:invalid option {
  background: white;
  color: #303030;
}
[type=checkbox],
[type=radio] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
[type=checkbox]:checked,
[type=radio]:checked {
  border-color: #0c0c0e;
  background-color: #0c0c0e;
  box-shadow: inset 0 0 0 3px #fff;
}
[type=radio] {
  border-radius: 50%;
}
.wpcf7-form .wpcf7-form-control-wrap {
  margin: 0 0 20px;
}
.wpcf7-form label {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 16px;
  display: block;
  color: inherit;
  margin: 0 0 3px;
}
.wpcf7-form p {
  margin-bottom: 21px;
  display: block;
}
.wpcf7-form p br {
  display: none;
}
.wpcf7-form br {
  display: none;
}
.wpcf7-form span {
  display: block;
}
.wpcf7-form .wpcf7-list-item {
  margin: 0;
  margin-bottom: 10px;
}
.wpcf7-form .wpcf7-list-item.last {
  margin-bottom: 0;
}
.wpcf7-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #8e8e9a;
  cursor: pointer;
  margin: 0;
}
.wpcf7-form .wpcf7-list-item [type=checkbox] {
  margin-right: 15px;
}
.wpcf7-form button,
.wpcf7-form [type=submit] {
  color: #fff !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7-form .interest-options {
  display: flex;
  flex-wrap: wrap;
}
.wpcf7-form .interest-options:before {
  width: 100%;
  margin: 0 0 10px;
  content: "Select interests";
  font-weight: 900;
  display: block;
}
.wpcf7-form .interest-options .wpcf7-list-item {
  width: 50%;
  margin: 0;
}
.wpcf7-form .interest-options .wpcf7-list-item:nth-child(n+3) {
  margin: 10px 0 0;
}
span.wpcf7-not-valid-tip {
  font-size: 12px;
  display: block;
  padding-top: 5px;
  color: #fb6969;
}
.wpcf7-not-valid {
  border: 1px solid #fb6969 !important;
}
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ok {
  border: 0;
  padding: 0;
  font-weight: 500;
}
div.wpcf7-mail-sent-ok {
  font-size: 18px;
  color: #cfb054;
}
div.wpcf7-mail-sent-ok,
div.wpcf7-response-output {
  font-weight: 900;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 20px;
}
.eq-output {
  display: none;
  padding: 20px 0;
}
.eq-output.valid span {
  color: #cfb054;
}
.eq-output span {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}
.wpcf7 .wpcf7-list-item.first,
.wpcf7 .wpcf7-list-item.last {
  display: inline-block;
}
.wpcf7 .wpcf7-list-item.first span,
.wpcf7 .wpcf7-list-item.last span {
  display: inline-block;
  vertical-align: text-bottom;
  padding-right: 10px;
}
div.wpcf7 .ajax-loader {
  background-repeat: no-repeat;
}
.wpcf7 form .wpcf7-response-output {
  border: 0;
  font-size: 45px;
  margin: 0 !important;
}
[data-class=wpcf7cf_group] {
  margin-bottom: 31px;
}
.container,
.container--slim,
.container--full {
  max-width: 1350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 27px;
  padding-right: 27px;
}
@media (max-width: 768px) {
  .container,
  .container--slim,
  .container--full {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container--slim {
  max-width: 1184px;
}
.container--full {
  max-width: 100%;
}
.g, .newsletter__form p {
  display: flex;
  flex-wrap: wrap;
  margin-left: -13.5px;
  margin-right: -13.5px;
}
.g__col, .newsletter__form p > span {
  padding-left: 13.5px;
  padding-right: 13.5px;
}
@media (max-width: 768px) {
  .section .g__col, .section .newsletter__form p > span, .newsletter__form .section p > span {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .section--t .g__col, .section--t .newsletter__form p > span, .newsletter__form .section--t p > span {
    width: 100%;
  }
}
@media (max-width: 736px) {
  .section--m .g__col, .section--m .newsletter__form p > span, .newsletter__form .section--m p > span {
    width: 100%;
  }
}
.section-p {
  padding-top: 93px;
  padding-bottom: 93px;
}
.fullwidth-content {
  width: 100% !important;
}
.g100 {
  width: 100%;
}
.g83 {
  width: 83.33%;
}
.g80 {
  width: 80%;
}
.g75 {
  width: 75%;
}
.g70 {
  width: 70%;
}
.g66 {
  width: 66.66%;
}
.g62 {
  width: 62.5%;
}
.g60 {
  width: 60%;
}
.g50 {
  width: 50%;
}
.g40 {
  width: 40%;
}
.g37 {
  width: 37.5%;
}
.g33 {
  width: 33.33%;
}
.g30 {
  width: 30%;
}
.g25 {
  width: 25%;
}
.g20 {
  width: 20%;
}
.g16 {
  width: 16.67%;
}
.g12 {
  width: 12.5%;
}
.col-offset--10 {
  margin-left: 10%;
}
.col-center {
  margin-left: auto;
  margin-right: auto;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  line-height: 1.2;
  font-size: 14px;
  font-family: "Graphik Medium Web", sans-serif;
  color: #8e8e9a;
  font-weight: 500;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.peopleHead__content p,
.homeAction__content p,
.awardsHead__content p,
.editor blockquote,
.h4,
.h5,
.h6 {
  line-height: 1;
  color: #303030;
  font-family: "Graphik Bold Web", sans-serif;
  font-weight: 900;
}
.c--white h1,
.c--white h2,
.c--white h3,
.c--white h4,
.c--white h5,
.c--white h6,
.c--white .h1,
.c--white .h2,
.c--white .h3,
.c--white .peopleHead__content p,
.peopleHead__content .c--white p,
.c--white .homeAction__content p,
.homeAction__content .c--white p,
.c--white .awardsHead__content p,
.awardsHead__content .c--white p,
.c--white .editor blockquote,
.editor .c--white blockquote,
.c--white .h4,
.c--white .h5,
.c--white .h6 {
  color: #fff;
}
h1,
.h1 {
  font-size: 90px;
}
@media (max-width: 736px) {
  h1,
  .h1 {
    font-size: 38px;
  }
}
h2,
.h2 {
  font-size: 45px;
  line-height: 1.17;
}
@media (max-width: 736px) {
  h2,
  .h2 {
    font-size: 33px;
  }
}
h3,
.h3,
.peopleHead__content p,
.homeAction__content p,
.awardsHead__content p,
.editor blockquote {
  font-size: 22px;
  line-height: 1.27;
}
@media (max-width: 736px) {
  h3,
  .h3,
  .peopleHead__content p,
  .homeAction__content p,
  .awardsHead__content p,
  .editor blockquote {
    font-size: 22px;
  }
}
h4,
.h4 {
  font-size: 22px;
}
h5,
.h5 {
  font-size: 18px;
}
h6,
.h6 {
  font-size: 14px;
}
p {
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 1.5em;
}
a {
  color: currentColor;
  text-decoration: none;
  transition: color 0.1s linear;
}
a[href^=mailto] {
  word-break: initial;
}
address {
  font-style: normal;
}
table {
  table-layout: fixed;
}
.editor:first-of-type p:first-of-type {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 22px;
  line-height: 1.27;
}
.editor:first-of-type p:first-of-type strong {
  color: #303030;
}
@media (max-width: 736px) {
  .editor:first-of-type p:first-of-type {
    font-size: 18px;
    line-height: 1.56;
  }
}
.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  margin-bottom: 1em;
  margin-top: 1em;
}
.editor h1:first-child,
.editor h2:first-child,
.editor h3:first-child,
.editor h4:first-child,
.editor h5:first-child,
.editor h6:first-child {
  margin-top: 0;
}
.editor .btn, .editor .serviceAction__form [type=submit], .serviceAction__form .editor [type=submit], .editor .contact__form [type=submit], .contact__form .editor [type=submit], .editor .aboutAction__form [type=submit], .aboutAction__form .editor [type=submit], .editor .popup-form [type=submit], .popup-form .editor [type=submit], .editor .slideout-form [type=submit], .slideout-form .editor [type=submit], .editor .newsletter__form [type=submit], .newsletter__form .editor [type=submit], .editor [data-form-block-id] form button, [data-form-block-id] form .editor button, .editor .wpcf7-form button, .wpcf7-form .editor button,
.editor .wpcf7-form [type=submit],
.wpcf7-form .editor [type=submit] {
  text-decoration: none;
  margin-top: 60px;
}
.editor h2 {
  font-size: 27px;
  line-height: 1.27;
}
.editor p,
.editor ul,
.editor ol {
  font-size: 18px;
  line-height: 1.56;
  font-weight: 400;
  margin-bottom: 1.5em;
}
.editor ul {
  list-style-type: disc;
}
.editor ul,
.editor ol {
  margin-top: 1em;
  list-style-position: inside;
}
.editor ul ul,
.editor ul ol,
.editor ol ul,
.editor ol ol {
  padding-left: 1em;
}
.editor a {
  outline: 0;
}
.editor img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
@media (max-width: 736px) {
  .editor figure {
    width: 100% !important;
  }
}
.editor ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding: 0;
}
.editor ol li {
  margin: 0 0 20px 0;
  counter-increment: my-awesome-counter;
  position: relative;
  padding-left: 64px;
}
.editor ol li::before {
  content: counter(my-awesome-counter);
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  width: 32px;
  left: 0;
  top: 0;
  color: #fff;
  text-align: center;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--hex.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 37px;
  line-height: 36px;
}
.editor ul {
  list-style: none;
  padding: 0;
}
.editor ul li {
  position: relative;
  padding-left: 32px;
}
.editor ul li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--bullet.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 12px;
  height: 15px;
}
.editor a {
  text-decoration: underline;
  color: #303030;
}
.editor a:hover {
  text-decoration: none;
  color: #cfb054;
}
.editor blockquote {
  line-height: 1.27;
  margin: 88px 0;
  color: #303030;
  font-weight: 500;
}
@media (max-width: 736px) {
  .editor blockquote {
    margin: 44px 0;
  }
}
.editor blockquote p {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.editor blockquote p:first-of-type {
  font-family: "Graphik Bold Web", sans-serif !important;
  font-size: 27px !important;
}
.editor blockquote cite {
  font-size: 18px;
}
.editor figure {
  margin-bottom: 2em;
}
.editor figcaption {
  display: block;
  padding-top: 0.5em;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}
.editor .postPreview {
  text-decoration: none;
}
.editor .postPreview:hover {
  color: initial;
}
.editor .testimonials .testimonials__head a {
  text-decoration: none;
}
.editor .testimonials .post-wrapper a {
  text-decoration: none;
}
.editor .testimonials .post-wrapper a:hover {
  color: initial;
}
.editor .relatedServices a {
  text-decoration: none;
}
.editor iframe {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.single-library .editor iframe {
  height: 396.5px;
}
@media (max-width: 736px) {
  .single-library .editor iframe {
    height: calc((100vw - 40px) * 0.5625);
  }
}
@media (max-width: 736px) {
  .aboutBlocks {
    text-align: center;
  }
  .aboutBlocks h2, .aboutBlocks img {
    margin-bottom: 20px;
  }
}
.aboutBlocks__row {
  padding: 90px 0;
}
@media (max-width: 768px) {
  .aboutBlocks__row img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 736px) {
  .aboutBlocks__row {
    padding: 45px 0;
  }
}
.aboutBlocks__content {
  max-width: 490px;
  margin: 0 auto;
}
.aboutBlocks__content h2 {
  margin-bottom: 38px;
}
.aboutBlocks__content p {
  margin-bottom: 17px;
}
.aboutBlocks__logos {
  padding-bottom: 185px;
  padding: 90px 0;
}
@media (max-width: 736px) {
  .aboutBlocks__logos {
    padding-top: 35px;
    padding-bottom: 65px;
  }
}
.aboutBlocks__logos div {
  flex: 1;
  padding: 0 30px;
}
.aboutBlocks__cta {
  text-align: center;
}
.aboutBlocks__cta strong {
  font-size: 27px;
  color: #303030;
  margin-right: 60px;
}
@media (max-width: 768px) {
  .aboutBlocks__cta strong {
    font-size: 22px;
    line-height: 26px;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .aboutBlocks__cta a {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
.accordion-container {
  margin: 0 0 40px;
}
.accordion {
  cursor: pointer;
  padding: 20px 0;
  width: 100%;
  border: none;
  text-align: left;
  color: #cfb054;
  outline: none;
  transition: 0.4s;
}
.accordion::before {
  position: relative;
  content: "";
  top: 2px;
  color: #303030;
  font-weight: bold;
  float: left;
  margin-right: 10px;
  width: 11px;
  height: 22px;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--right-gold.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.active::before {
  transform: rotate(90deg);
}
.panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel.editor p:first-of-type {
  font-size: 18px;
  line-height: 1.56;
}
.additional-module {
  margin: 60px 0;
}
.additional-module + .additional-module {
  margin: 20px 0 60px;
}
.additional-module.additional-module-light .additional-module-inner {
  background-color: #ffffff;
}
.additional-module.additional-module-dark .additional-module-inner {
  background-color: #303030;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/bg--diamonds-dark.png);
  background-size: 52px 46px;
  background-repeat: repeat;
}
.additional-module.additional-module-dark .content h3,
.additional-module.additional-module-dark .content p {
  color: #ffffff;
}
.additional-module .additional-module-inner {
  position: relative;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 2px 2px 10px 0px rgba(12, 12, 14, 0.3);
}
@media (min-width: 768px) {
  .additional-module .additional-module-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.additional-module .image,
.additional-module .img-mask {
  position: relative;
  width: 100%;
  height: 225px;
  min-height: 100%;
  border-radius: 12px;
  max-width: 460px;
  overflow: hidden;
  display: block;
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .additional-module .image,
  .additional-module .img-mask {
    height: 175px;
    width: 32%;
    margin: 0;
    max-width: none;
  }
}
.additional-module .image > img,
.additional-module .img-mask > img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
  border-radius: 6px;
}
.additional-module .image .subbrand-elements img,
.additional-module .img-mask .subbrand-elements img {
  width: 46px;
  right: 14px;
  bottom: 14px;
}
@media (min-width: 768px) {
  .additional-module .content {
    width: calc(68% - 22px);
  }
}
.additional-module .content .meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0 22px;
}
@media (min-width: 768px) {
  .additional-module .content .meta {
    flex-direction: row;
  }
}
.additional-module .content .meta span {
  font-size: 16px;
  color: #cfb054;
}
.additional-module .content h3 {
  margin-bottom: 17px;
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 21px;
}
@media (min-width: 768px) {
  .additional-module .content h3 {
    margin-right: 140px;
  }
}
.additional-module .content p {
  font-family: "Graphik Medium Web", sans-serif;
  margin-bottom: 17px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .additional-module .content p {
    margin-right: 140px;
  }
}
@media (min-width: 768px) {
  .additional-module .content .btn, .additional-module .content .serviceAction__form [type=submit], .serviceAction__form .additional-module .content [type=submit], .additional-module .content .contact__form [type=submit], .contact__form .additional-module .content [type=submit], .additional-module .content .aboutAction__form [type=submit], .aboutAction__form .additional-module .content [type=submit], .additional-module .content .popup-form [type=submit], .popup-form .additional-module .content [type=submit], .additional-module .content .slideout-form [type=submit], .slideout-form .additional-module .content [type=submit], .additional-module .content .newsletter__form [type=submit], .newsletter__form .additional-module .content [type=submit], .additional-module .content [data-form-block-id] form button, [data-form-block-id] form .additional-module .content button, .additional-module .content .wpcf7-form button, .wpcf7-form .additional-module .content button,
  .additional-module .content .wpcf7-form [type=submit],
  .wpcf7-form .additional-module .content [type=submit] {
    position: absolute;
    bottom: 22px;
    right: 22px;
  }
}
[data-form-block-id] {
  background: #ffffff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  margin: 40px auto;
  max-width: 900px;
}
.single-events [data-form-block-id] {
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  max-width: none;
}
.single-events [data-form-block-id] .emptyContainer,
.single-events [data-form-block-id] .columnContainer {
  padding: 0 !important;
}
.single-events [data-form-block-id] .lp-required {
  color: #ffffff !important;
}
[data-form-block-id] [data-editorblocktype] {
  margin: 20px 0 0;
}
[data-form-block-id] [data-editorblocktype]:first-child {
  margin: 0;
}
[data-form-block-id] [data-editorblocktype=Text] p {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 16px !important;
}
[data-form-block-id] [data-editorblocktype=Divider] {
  display: none;
}
[data-form-block-id] form label {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 16px;
  font-weight: normal !important;
}
[data-form-block-id] form [type=text],
[data-form-block-id] form [type=email],
[data-form-block-id] form [type=tel],
[data-form-block-id] form [type=number],
[data-form-block-id] form [type=date],
[data-form-block-id] form select,
[data-form-block-id] form textarea {
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: normal;
  border-radius: 0;
  border: 1px solid #8e8e9a;
}
[data-form-block-id] form button {
  background-color: #0c0c0e !important;
  border-radius: 999px !important;
  margin-top: 0 !important;
  height: 50px !important;
  line-height: normal !important;
}
[data-form-block-id] form button:hover {
  background-color: #cfb054 !important;
  border-color: #cfb054 !important;
}
@media (max-width: 768px) {
  [data-form-block-id] form button {
    margin-top: 30px;
  }
}
.btn, .serviceAction__form [type=submit], .contact__form [type=submit], .aboutAction__form [type=submit], .popup-form [type=submit], .slideout-form [type=submit], .newsletter__form [type=submit], .wpcf7-form button,
.wpcf7-form [type=submit], [data-form-block-id] form button {
  cursor: pointer;
  display: inline-block;
  background: #cfb054;
  border: 1px solid #cfb054;
  color: #0c0c0e;
  transition: 0.15s linear;
  line-height: 1;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  padding: 17px 64px;
  border-radius: 26px;
  font-size: 18px;
  outline: 0;
  text-decoration: none;
}
.btn:hover, .serviceAction__form [type=submit]:hover, .contact__form [type=submit]:hover, .aboutAction__form [type=submit]:hover, .popup-form [type=submit]:hover, .slideout-form [type=submit]:hover, .newsletter__form [type=submit]:hover, .wpcf7-form button:hover,
.wpcf7-form [type=submit]:hover, [data-form-block-id] form button:hover {
  background-color: #303030;
  border-color: #303030;
  color: #fff;
}
@media (max-width: 736px) {
  .btn, .serviceAction__form [type=submit], .contact__form [type=submit], .aboutAction__form [type=submit], .popup-form [type=submit], .slideout-form [type=submit], .newsletter__form [type=submit], .wpcf7-form button,
  .wpcf7-form [type=submit], [data-form-block-id] form button {
    font-size: 14px;
    padding: 14px 20px;
  }
}
.btn--small {
  border-radius: 17px;
  padding: 10px 15px;
  font-size: 14px;
}
.btn--outline {
  background-color: transparent;
  color: #cfb054;
}
.btn--outline:hover {
  background-color: #cfb054;
  color: #0c0c0e;
}
.btn--outline-black {
  background-color: transparent;
  color: #0c0c0e;
  border-color: #0c0c0e;
}
.btn--outline-black:hover {
  background-color: #cfb054;
  color: #0c0c0e;
  border-color: #cfb054;
}
.btn--outline-white {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline-white:hover {
  color: #fff;
  background-color: #cfb054;
  border-color: #cfb054;
}
.btn--black, .serviceAction__form [type=submit], .contact__form [type=submit], .aboutAction__form [type=submit], .newsletter__form [type=submit], [data-form-block-id] form button {
  border-color: #0c0c0e;
  background-color: #0c0c0e;
  color: #fff;
}
.btn--black:hover, .serviceAction__form [type=submit]:hover, .contact__form [type=submit]:hover, .aboutAction__form [type=submit]:hover, .newsletter__form [type=submit]:hover, [data-form-block-id] form button:hover {
  border-color: #cfb054;
  background-color: #cfb054;
  color: #0c0c0e;
}
.btn--grey {
  border-color: #646464;
  background-color: #646464;
  color: #ffffff;
}
.btn--grey:hover {
  border-color: #cfb054;
  background-color: #cfb054;
  color: #0c0c0e;
}
.btn--lightgrey {
  border-color: #ddd;
  background-color: #ddd;
  color: #aaa;
}
.btn--brand {
  border-color: #cfb054;
  background-color: #cfb054;
  color: #fff;
}
.btn--brand:hover {
  border-color: #303030;
  background-color: #303030;
  color: #fff;
}
.btn--dark {
  border-color: #303030;
  background-color: #303030;
  color: #fff;
}
.btn--dark:hover {
  border-color: #cfb054;
  background-color: #cfb054;
  color: #303030;
}
.btn--white {
  border-color: #fff;
  background-color: #fff;
  color: #006aa6;
}
.btn--white:hover {
  border-color: #fff;
  background-color: transparent;
}
.btn--purple {
  border-color: #9f1a65;
  background-color: #9f1a65;
  color: #fff;
}
.btn--purple:hover {
  border-color: #cfb054;
  background-color: #cfb054;
}
.btn--brand-white {
  border-color: #cfb054;
  color: #fff;
}
.btn--brand-white:hover {
  border-color: #303030;
  background-color: #303030;
  color: #cfb054;
}
.btn--brand-alt {
  border-color: #cfb054;
  background-color: #cfb054;
  color: #fff;
}
.btn--brand-alt:hover {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.btn--green {
  border-color: #00817C;
  background-color: #00817C;
  color: #fff;
}
.btn--green:hover {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.btn--blue {
  border-color: #0064A5;
  background-color: #0064A5;
  color: #fff;
}
.btn--blue:hover {
  border-color: #303030;
  background-color: #303030;
  color: #fff;
}
.btn--green-alt {
  border-color: #0c0c0e;
  background-color: #0c0c0e;
  color: #fff;
}
.btn--green-alt:hover {
  border-color: #00817C;
  background-color: #00817C;
}
.btn--play {
  border-color: #fff;
  background-color: #fff;
  color: #0c0c0e !important;
  font-style: normal;
  margin-bottom: 20px;
}
.btn--play svg {
  margin-right: 15px;
}
.btn--play svg path,
.btn--play svg polygon {
  fill: #0c0c0e;
}
.btn--play:hover {
  border-color: #cfb054;
  background-color: #cfb054;
  color: #fff !important;
}
.btn--play:hover svg path,
.btn--play:hover svg polygon {
  fill: #fff;
}
.link {
  display: inline-flex;
  align-items: center;
  transition: 0.15s linear;
  cursor: pointer;
  font-size: 18px;
  color: #303030;
  font-family: "Graphik Medium Web", sans-serif;
}
.c--white .link {
  color: #fff;
}
.link:hover, a:hover .link {
  color: #cfb054;
}
.link:after {
  content: "\203A";
  margin-left: 7px;
  position: relative;
  font-weight: bold;
}
.link.back::before {
  content: "\2039";
  margin-right: 7px;
  position: relative;
  font-weight: bold;
}
.link.back::after {
  display: none;
}
.link.p {
  padding-top: 6px;
}
.play,
.play--small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 93px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: 0.15s linear;
  cursor: pointer;
}
@media (max-width: 736px) {
  .play,
  .play--small {
    width: 75px;
    height: 75px;
  }
}
.play:hover,
.play--small:hover {
  background-color: #cfb054;
}
.play svg,
.play--small svg {
  height: 34px;
  width: 29px;
  position: relative;
  left: 3px;
}
.play--small {
  width: 30px;
  height: 30px;
}
.play--small svg {
  width: 9px;
  height: 11px;
  left: 1px;
}
.center-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
.center-btn.invert {
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .center-btn.invert {
    margin-top: 37px;
  }
}
@media (max-width: 736px) {
  .center-btn--m {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.btn-spacer {
  padding: 20px 0;
  margin-bottom: 60px;
}
.cookies {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.cookies__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cfb054;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cookies__inner p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 1024px) {
  .cookies__inner p {
    text-align: center;
  }
}
.cookies__inner a {
  color: #303030;
}
.cookies__inner a:hover {
  text-decoration: underline;
}
.cookies__inner .btn, .cookies__inner .serviceAction__form [type=submit], .serviceAction__form .cookies__inner [type=submit], .cookies__inner .contact__form [type=submit], .contact__form .cookies__inner [type=submit], .cookies__inner .aboutAction__form [type=submit], .aboutAction__form .cookies__inner [type=submit], .cookies__inner .popup-form [type=submit], .popup-form .cookies__inner [type=submit], .cookies__inner .slideout-form [type=submit], .slideout-form .cookies__inner [type=submit], .cookies__inner .newsletter__form [type=submit], .newsletter__form .cookies__inner [type=submit], .cookies__inner .wpcf7-form button, .wpcf7-form .cookies__inner button,
.cookies__inner .wpcf7-form [type=submit],
.wpcf7-form .cookies__inner [type=submit], .cookies__inner [data-form-block-id] form button, [data-form-block-id] form .cookies__inner button {
  border-color: #fff;
  color: #fff;
  padding: 8px 30px;
  margin-left: 10px;
}
@media (max-width: 1024px) {
  .cookies__inner .btn, .cookies__inner .serviceAction__form [type=submit], .serviceAction__form .cookies__inner [type=submit], .cookies__inner .contact__form [type=submit], .contact__form .cookies__inner [type=submit], .cookies__inner .aboutAction__form [type=submit], .aboutAction__form .cookies__inner [type=submit], .cookies__inner .popup-form [type=submit], .popup-form .cookies__inner [type=submit], .cookies__inner .slideout-form [type=submit], .slideout-form .cookies__inner [type=submit], .cookies__inner .newsletter__form [type=submit], .newsletter__form .cookies__inner [type=submit], .cookies__inner .wpcf7-form button, .wpcf7-form .cookies__inner button,
  .cookies__inner .wpcf7-form [type=submit],
  .wpcf7-form .cookies__inner [type=submit], .cookies__inner [data-form-block-id] form button, [data-form-block-id] form .cookies__inner button {
    margin-top: 10px;
  }
}
.cookies__inner .btn:hover, .cookies__inner .serviceAction__form [type=submit]:hover, .serviceAction__form .cookies__inner [type=submit]:hover, .cookies__inner .contact__form [type=submit]:hover, .contact__form .cookies__inner [type=submit]:hover, .cookies__inner .aboutAction__form [type=submit]:hover, .aboutAction__form .cookies__inner [type=submit]:hover, .cookies__inner .popup-form [type=submit]:hover, .popup-form .cookies__inner [type=submit]:hover, .cookies__inner .slideout-form [type=submit]:hover, .slideout-form .cookies__inner [type=submit]:hover, .cookies__inner .newsletter__form [type=submit]:hover, .newsletter__form .cookies__inner [type=submit]:hover, .cookies__inner .wpcf7-form button:hover, .wpcf7-form .cookies__inner button:hover,
.cookies__inner .wpcf7-form [type=submit]:hover,
.wpcf7-form .cookies__inner [type=submit]:hover, .cookies__inner [data-form-block-id] form button:hover, [data-form-block-id] form .cookies__inner button:hover {
  border-color: #303030;
}
.download-blocks {
  padding-top: 138px;
  padding-bottom: 60px;
}
@media (max-width: 736px) {
  .download-blocks {
    padding-top: 20px;
  }
}
.download-blocks span,
.download-blocks strong {
  display: block;
  text-align: right;
}
@media (max-width: 736px) {
  .download-blocks span,
  .download-blocks strong {
    text-align: center;
  }
}
.download-blocks span {
  font-size: 18px;
}
.download-blocks strong {
  font-family: "Graphik Bold Web", sans-serif;
  font-size: 30px;
  color: #303030;
  margin-bottom: 20px;
}
.download-blocks .btn, .download-blocks .serviceAction__form [type=submit], .serviceAction__form .download-blocks [type=submit], .download-blocks .contact__form [type=submit], .contact__form .download-blocks [type=submit], .download-blocks .aboutAction__form [type=submit], .aboutAction__form .download-blocks [type=submit], .download-blocks .popup-form [type=submit], .popup-form .download-blocks [type=submit], .download-blocks .slideout-form [type=submit], .slideout-form .download-blocks [type=submit], .download-blocks .newsletter__form [type=submit], .newsletter__form .download-blocks [type=submit], .download-blocks .wpcf7-form button, .wpcf7-form .download-blocks button,
.download-blocks .wpcf7-form [type=submit],
.wpcf7-form .download-blocks [type=submit], .download-blocks [data-form-block-id] form button, [data-form-block-id] form .download-blocks button {
  padding: 15px 33px;
  color: #fff;
  float: right;
}
@media (max-width: 736px) {
  .download-blocks .btn, .download-blocks .serviceAction__form [type=submit], .serviceAction__form .download-blocks [type=submit], .download-blocks .contact__form [type=submit], .contact__form .download-blocks [type=submit], .download-blocks .aboutAction__form [type=submit], .aboutAction__form .download-blocks [type=submit], .download-blocks .popup-form [type=submit], .popup-form .download-blocks [type=submit], .download-blocks .slideout-form [type=submit], .slideout-form .download-blocks [type=submit], .download-blocks .newsletter__form [type=submit], .newsletter__form .download-blocks [type=submit], .download-blocks .wpcf7-form button, .wpcf7-form .download-blocks button,
  .download-blocks .wpcf7-form [type=submit],
  .wpcf7-form .download-blocks [type=submit], .download-blocks [data-form-block-id] form button, [data-form-block-id] form .download-blocks button {
    float: none;
  }
}
.download-blocks .content,
.download-blocks .image {
  float: left;
  width: 50%;
}
@media (max-width: 736px) {
  .download-blocks .content,
  .download-blocks .image {
    width: 100%;
  }
}
.download-blocks .content {
  position: relative;
  padding-right: 20px;
}
@media (max-width: 736px) {
  .download-blocks .content {
    top: 0%;
    transform: translateY(0%);
    text-align: center;
    padding-right: 0;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
@media (max-width: 736px) {
  .download-blocks .image {
    text-align: center;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
.download-blocks .image img {
  max-width: 100%;
  height: auto;
}
.dropdown {
  width: 100%;
  max-width: 200px;
  position: relative;
  z-index: 1;
}
.dropdown__title {
  cursor: pointer;
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  font-size: 18px;
  transition: 0.15s linear;
}
@media (max-width: 480px) {
  .dropdown__title {
    font-size: 14px;
  }
}
.dropdown__title:hover, .dropdown__title.s--open {
  color: #0c0c0e;
}
.dropdown__title svg {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-left: 10px;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.dropdown__title.s--open svg {
  transform: rotate(180deg);
}
.dropdown__title [stroke] {
  stroke: currentColor;
}
.dropdown__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #fff;
}
.dropdown__content ul {
  padding: 10px 0;
}
.dropdown__content a,
.dropdown__content span {
  display: block;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
}
.dropdown__content a:hover,
.dropdown__content span:hover {
  color: #0c0c0e;
}
.js-form {
  display: flex;
  flex: 1;
}
.reset {
  display: flex;
  margin-right: 40px;
  padding-bottom: 7px;
}
.reset a:hover {
  color: #303030;
}
@media (max-width: 736px) {
  .reset {
    display: none;
  }
}
.select-dropdown {
  width: 100%;
  max-width: 200px;
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-right: 30px;
}
.select-dropdown::last-child {
  margin-right: 0px;
}
.select-dropdown__button {
  font-family: "Graphik Medium Web", sans-serif;
  cursor: pointer;
  padding: 7px 0;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  font-size: 18px;
  width: 100%;
  transition: 0.15s linear;
}
.select-dropdown__button::focus {
  outline: none;
}
.select-dropdown__button .zmdi-chevron-down {
  position: absolute;
  right: 10px;
  top: 12px;
  z-index: 999;
  width: 14px;
  height: 10px;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--dropdown.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.select-dropdown__list {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  margin: 0;
  padding: 0;
  border-top: 0px solid transparent;
  list-style-type: none;
  opacity: 0;
  pointer-events: none;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 2;
}
.select-dropdown__list.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}
.select-dropdown__list.active .zmdi-chevron-down {
  transform: rotate(180deg);
}
.select-dropdown__list-item {
  display: block;
  list-style-type: none;
  padding: 10px 15px;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  color: #8e8e9a;
  text-align: left;
  transition: all ease-in-out 0.3s;
}
.dropdown-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.eventPreview {
  display: block;
}
.eventPreview img {
  display: block;
}
.eventPreview h3 {
  margin-bottom: 17px;
}
.eventPreview p {
  font-family: "Graphik Medium Web", sans-serif;
  margin-bottom: 17px;
}
.eventPreview__meta {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.events-2024-archive-banner {
  background: #000;
  position: relative;
  padding: 90px 0;
}
.events-2024-archive-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.events-2024-archive-banner .inner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1200px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.events-2024-archive-banner h1 {
  font-size: 48px;
  color: #ffffff;
}
.events-2024-archive-banner p {
  max-width: 800px;
  margin: 20px 0 0;
  color: #ffffff;
}
.events-2024-archive {
  padding: 20px 0 100px;
}
@media (min-width: 782px) {
  .events-2024-archive {
    padding: 50px 0 140px;
  }
}
.events-2024-archive .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 782px) {
  .events-2024-archive .inner {
    width: calc(100% - 40px);
  }
}
@media (min-width: 1000px) {
  .events-2024-archive .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1000px) {
  .events-2024-archive .main-column {
    width: calc(100% - 330px);
  }
}
@media (min-width: 1000px) {
  .events-2024-archive .sidebar {
    width: 280px;
  }
}
.events-2024-archive-tile-item {
  position: relative;
}
.events-2024-archive-tile-item:nth-child(n+2) {
  margin: 60px 0 0;
}
@media (min-width: 1000px) {
  .events-2024-archive-tile-item .upper {
    display: flex;
  }
}
.events-2024-archive-tile-item .upper .image {
  position: relative;
  width: 100%;
  margin: 0 0 10px;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .events-2024-archive-tile-item .upper .image {
    width: 280px;
    margin: 0 20px 0 0;
  }
}
.events-2024-archive-tile-item .upper .image img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 8px;
}
@media (min-width: 1000px) {
  .events-2024-archive-tile-item .upper .image img {
    width: 280px;
  }
}
.events-2024-archive-tile-item .upper .image .sold-out-tag {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 175px;
  height: 28px;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
  background: #cfb054;
  text-transform: uppercase;
  font-weight: bold;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 3;
}
.events-2024-archive-tile-item .upper .detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.events-2024-archive-tile-item .upper .detail h2 {
  font-size: 26px;
}
@media (min-width: 782px) {
  .events-2024-archive-tile-item .upper .detail h2 {
    max-width: calc(100% - 100px);
  }
}
.events-2024-archive-tile-item .upper .detail p {
  font-size: 14px;
  margin: 15px 0;
}
.events-2024-archive-tile-item .upper .detail .btn, .events-2024-archive-tile-item .upper .detail .serviceAction__form [type=submit], .serviceAction__form .events-2024-archive-tile-item .upper .detail [type=submit], .events-2024-archive-tile-item .upper .detail .contact__form [type=submit], .contact__form .events-2024-archive-tile-item .upper .detail [type=submit], .events-2024-archive-tile-item .upper .detail .aboutAction__form [type=submit], .aboutAction__form .events-2024-archive-tile-item .upper .detail [type=submit], .events-2024-archive-tile-item .upper .detail .popup-form [type=submit], .popup-form .events-2024-archive-tile-item .upper .detail [type=submit], .events-2024-archive-tile-item .upper .detail .slideout-form [type=submit], .slideout-form .events-2024-archive-tile-item .upper .detail [type=submit], .events-2024-archive-tile-item .upper .detail .newsletter__form [type=submit], .newsletter__form .events-2024-archive-tile-item .upper .detail [type=submit], .events-2024-archive-tile-item .upper .detail .wpcf7-form button, .wpcf7-form .events-2024-archive-tile-item .upper .detail button,
.events-2024-archive-tile-item .upper .detail .wpcf7-form [type=submit],
.wpcf7-form .events-2024-archive-tile-item .upper .detail [type=submit], .events-2024-archive-tile-item .upper .detail [data-form-block-id] form button, [data-form-block-id] form .events-2024-archive-tile-item .upper .detail button {
  margin: auto 0 0;
}
.events-2024-archive-tile-item .upper .detail .category {
  margin: 0 0 4px;
}
@media (min-width: 1000px) {
  .events-2024-archive-tile-item .upper .detail .category {
    position: absolute;
    top: 5px;
    right: 0;
    margin: 0;
  }
  .swiper-container .events-2024-archive-tile-item .upper .detail .category {
    top: 15px;
    right: 20px;
  }
}
.events-2024-archive-tile-item .rows {
  margin: 30px 0 0;
}
.events-2024-event-row {
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.events-2024-event-row:first-child {
  border-top: 1px solid #ccc;
}
.events-2024-event-row.calendar-icon {
  padding-left: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-calendar'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 18px auto;
}
.events-2024-event-row .detail {
  display: flex;
}
@media (max-width: 782px) {
  .events-2024-event-row .detail {
    flex-direction: column;
    gap: 6px;
  }
}
.events-2024-event-row .meta-item {
  color: #0c0c0e;
}
@media (min-width: 782px) {
  .events-2024-event-row .meta-item {
    white-space: nowrap;
  }
}
@media (max-width: 782px) {
  .events-2024-event-row .meta-item {
    font-weight: normal;
  }
}
@media (min-width: 782px) {
  .events-2024-event-row .meta-item.date {
    min-width: 280px;
    padding: 0 20px 0 0;
  }
}
@media (min-width: 782px) {
  .events-2024-event-row .meta-item.time {
    width: 120px;
  }
}
.events-2024-event-row .meta-item.reduce-text-size {
  font-size: 12px;
}
.events-2024-event-row .btn, .events-2024-event-row .serviceAction__form [type=submit], .serviceAction__form .events-2024-event-row [type=submit], .events-2024-event-row .contact__form [type=submit], .contact__form .events-2024-event-row [type=submit], .events-2024-event-row .aboutAction__form [type=submit], .aboutAction__form .events-2024-event-row [type=submit], .events-2024-event-row .popup-form [type=submit], .popup-form .events-2024-event-row [type=submit], .events-2024-event-row .slideout-form [type=submit], .slideout-form .events-2024-event-row [type=submit], .events-2024-event-row .newsletter__form [type=submit], .newsletter__form .events-2024-event-row [type=submit], .events-2024-event-row .wpcf7-form button, .wpcf7-form .events-2024-event-row button,
.events-2024-event-row .wpcf7-form [type=submit],
.wpcf7-form .events-2024-event-row [type=submit], .events-2024-event-row [data-form-block-id] form button, [data-form-block-id] form .events-2024-event-row button {
  white-space: nowrap;
  margin: 0 0 0 10px;
}
.events-2024-single-banner {
  background: grey;
  position: relative;
}
.events-2024-single-banner .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 0 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 782px) {
  .events-2024-single-banner .inner {
    width: calc(100% - 40px);
  }
}
.events-2024-single-banner .content {
  color: #ffffff;
}
.events-2024-single-banner .content.text-white {
  color: #ffffff;
}
.events-2024-single-banner .content.text-white h1 {
  color: #ffffff;
}
.events-2024-single-banner .content.text-black {
  color: #3a3a3a;
}
.events-2024-single-banner .content.text-black h1 {
  color: #3a3a3a;
}
.events-2024-single-banner h1 {
  font-size: 46px;
  margin: 0 0 20px;
}
.events-2024-single-banner p {
  font-size: 16px;
  max-width: 480px;
}
.events-2024-single-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.events-2024-single-banner .btn, .events-2024-single-banner .serviceAction__form [type=submit], .serviceAction__form .events-2024-single-banner [type=submit], .events-2024-single-banner .contact__form [type=submit], .contact__form .events-2024-single-banner [type=submit], .events-2024-single-banner .aboutAction__form [type=submit], .aboutAction__form .events-2024-single-banner [type=submit], .events-2024-single-banner .popup-form [type=submit], .popup-form .events-2024-single-banner [type=submit], .events-2024-single-banner .slideout-form [type=submit], .slideout-form .events-2024-single-banner [type=submit], .events-2024-single-banner .newsletter__form [type=submit], .newsletter__form .events-2024-single-banner [type=submit], .events-2024-single-banner .wpcf7-form button, .wpcf7-form .events-2024-single-banner button,
.events-2024-single-banner .wpcf7-form [type=submit],
.wpcf7-form .events-2024-single-banner [type=submit], .events-2024-single-banner [data-form-block-id] form button, [data-form-block-id] form .events-2024-single-banner button {
  color: #0c0c0e;
}
.events-2024-single-banner .btn:hover, .events-2024-single-banner .serviceAction__form [type=submit]:hover, .serviceAction__form .events-2024-single-banner [type=submit]:hover, .events-2024-single-banner .contact__form [type=submit]:hover, .contact__form .events-2024-single-banner [type=submit]:hover, .events-2024-single-banner .aboutAction__form [type=submit]:hover, .aboutAction__form .events-2024-single-banner [type=submit]:hover, .events-2024-single-banner .popup-form [type=submit]:hover, .popup-form .events-2024-single-banner [type=submit]:hover, .events-2024-single-banner .slideout-form [type=submit]:hover, .slideout-form .events-2024-single-banner [type=submit]:hover, .events-2024-single-banner .newsletter__form [type=submit]:hover, .newsletter__form .events-2024-single-banner [type=submit]:hover, .events-2024-single-banner .wpcf7-form button:hover, .wpcf7-form .events-2024-single-banner button:hover,
.events-2024-single-banner .wpcf7-form [type=submit]:hover,
.wpcf7-form .events-2024-single-banner [type=submit]:hover, .events-2024-single-banner [data-form-block-id] form button:hover, [data-form-block-id] form .events-2024-single-banner button:hover {
  color: #ffffff;
}
.events-2024-upcoming-list {
  position: relative;
  margin: 45px 0;
}
.events-2024-upcoming-list h2 {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0 0 15px;
}
.events-2024-upcoming-list .inner {
  padding: 30px 45px 30px;
  background: #ffffff;
  border-radius: 6px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 782px) {
  .events-2024-upcoming-list .inner {
    padding: 30px 15px 30px;
  }
}
.events-2024-content {
  position: relative;
  margin: 100px 0;
}
.events-2024-content .inner {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.events-2024-content h2 {
  font-size: 30px;
  color: #cfb054;
  margin: 35px 0;
}
.events-2024-content p {
  color: #0c0c0e;
}
.events-2024-content img {
  display: block;
  max-width: 900px;
  width: 100%;
  border-radius: 8px;
  margin: 35px auto;
}
.events-2024-content .responsive {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 35px auto;
  background: #ccc;
}
.events-2024-content .responsive:before {
  content: " ";
  padding: 0 0 56.25%;
  display: block;
}
.events-2024-content .responsive iframe,
.events-2024-content .responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.events-2024-related-slides {
  position: relative;
  overflow: hidden;
  margin: 80px 0 0;
}
.events-2024-related-slides .inner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.events-2024-related-slides .intro {
  padding: 0 0 10px;
  border-bottom: 1px solid #ccc;
  margin: 0 0 30px;
}
@media (min-width: 782px) {
  .events-2024-related-slides .intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.events-2024-related-slides .intro h2 {
  font-size: 30px;
}
@media (max-width: 782px) {
  .events-2024-related-slides .intro h2 {
    margin-bottom: 10px;
  }
}
.events-2024-related-slides .swiper-container {
  width: 100%;
  position: relative;
  overflow: visible;
}
.events-2024-related-slides .swiper-wrapper {
  position: relative;
}
.events-2024-related-slides .swiper-slide {
  width: inherit;
  padding: 15px;
  border-radius: 10px;
  background: #303030;
  margin: 0;
}
.events-2024-related-slides .swiper-slide .upper h2 {
  color: #fff;
}
.events-2024-related-slides .swiper-slide .upper .btn, .events-2024-related-slides .swiper-slide .upper .serviceAction__form [type=submit], .serviceAction__form .events-2024-related-slides .swiper-slide .upper [type=submit], .events-2024-related-slides .swiper-slide .upper .contact__form [type=submit], .contact__form .events-2024-related-slides .swiper-slide .upper [type=submit], .events-2024-related-slides .swiper-slide .upper .aboutAction__form [type=submit], .aboutAction__form .events-2024-related-slides .swiper-slide .upper [type=submit], .events-2024-related-slides .swiper-slide .upper .popup-form [type=submit], .popup-form .events-2024-related-slides .swiper-slide .upper [type=submit], .events-2024-related-slides .swiper-slide .upper .slideout-form [type=submit], .slideout-form .events-2024-related-slides .swiper-slide .upper [type=submit], .events-2024-related-slides .swiper-slide .upper .newsletter__form [type=submit], .newsletter__form .events-2024-related-slides .swiper-slide .upper [type=submit], .events-2024-related-slides .swiper-slide .upper .wpcf7-form button, .wpcf7-form .events-2024-related-slides .swiper-slide .upper button,
.events-2024-related-slides .swiper-slide .upper .wpcf7-form [type=submit],
.wpcf7-form .events-2024-related-slides .swiper-slide .upper [type=submit], .events-2024-related-slides .swiper-slide .upper [data-form-block-id] form button, [data-form-block-id] form .events-2024-related-slides .swiper-slide .upper button {
  border-color: #fff;
  color: #fff;
}
.events-2024-related-slides .swiper-slide .events-2024-event-row .meta-item {
  color: #fff;
}
.events-2024-related-slides .related-buttons {
  position: absolute;
  display: flex;
  justify-content: center;
  left: 145px;
  top: 44px;
}
@media (min-width: 782px) {
  .events-2024-related-slides .related-buttons {
    top: 0;
    right: 145px;
    left: auto;
  }
}
.events-2024-related-slides .related-buttons .related-button {
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  margin: 0 3px;
  background-color: #E6E6E6;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.2s linear;
}
.events-2024-related-slides .related-buttons .related-button:hover {
  transition: all 0.2s linear;
  background-color: #303030;
}
.events-2024-related-slides .related-buttons .related-button.related-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.events-2024-related-slides .related-buttons .related-button.related-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.events-2024-related-slides .related-buttons .related-button.related-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
.events-2024-related-slides .related-buttons .related-button.related-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
.events-2024-preview {
  margin: 0 auto 100px;
}
.events-2024-preview .events-2024-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 0 0 20px;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .events-2024-preview .events-2024-preview-heading {
    margin-bottom: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.event-topic {
  position: relative;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  border: 2px solid #8e8e9a;
  padding: 45px 20px;
  margin-bottom: 30px;
  background-color: #fff;
}
.event-topic.clean-up {
  border: 0;
  margin-top: 50px;
  padding: 0;
  background: none;
}
.event-topic:hover {
  border-color: #9f1a65;
}
.event-topic h2 {
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 17px;
}
.event-topic .g__col, .event-topic .newsletter__form p > span, .newsletter__form .event-topic p > span {
  margin: 0 !important;
}
@media (max-width: 768px) {
  .event-topic .g__col, .event-topic .newsletter__form p > span, .newsletter__form .event-topic p > span {
    width: 100%;
  }
}
.event-topic img {
  width: 100%;
  margin-bottom: 20px;
}
.event-topic table {
  width: 100%;
  margin-top: 50px;
  border-collapse: collapse;
  display: table;
}
.event-topic table tr {
  background: none !important;
  border-bottom: 1px solid #8e8e9a;
}
.event-topic table tr:first-child {
  border-top: 1px solid #8e8e9a;
}
@media (max-width: 768px) {
  .event-topic table tr {
    padding: 20px 0;
    border-top: 0;
    display: block;
  }
  .event-topic table tr:first-of-type {
    border-top: 1px solid #8e8e9a;
  }
}
.event-topic table td {
  padding: 20px 0;
}
.event-topic table td:nth-child(2) {
  width: 100%;
  padding-top: 30px;
}
.event-topic table td br {
  display: none;
}
@media (max-width: 768px) {
  .event-topic table td {
    display: inline-block;
    width: 50%;
    padding: 10px 5px;
  }
  .event-topic table td:nth-child(4) {
    width: 100%;
  }
  .event-topic table td:nth-child(5) {
    width: 50%;
  }
  .event-topic table td:nth-child(6) {
    width: 70%;
    text-align: right;
  }
  .event-topic table td span {
    font-size: 13px;
  }
}
@media (max-width: 736px) {
  .event-topic table td:nth-child(5) {
    width: 100%;
  }
}
.event-topic table td .sml-link {
  display: block;
  font-size: 14px;
  text-decoration: underline;
  color: #0c0c0e;
  text-align: center;
}
.event-topic table td .btn-double {
  display: flex;
}
.event-topic table td .btn, .event-topic table td .serviceAction__form [type=submit], .serviceAction__form .event-topic table td [type=submit], .event-topic table td .contact__form [type=submit], .contact__form .event-topic table td [type=submit], .event-topic table td .aboutAction__form [type=submit], .aboutAction__form .event-topic table td [type=submit], .event-topic table td .popup-form [type=submit], .popup-form .event-topic table td [type=submit], .event-topic table td .slideout-form [type=submit], .slideout-form .event-topic table td [type=submit], .event-topic table td .newsletter__form [type=submit], .newsletter__form .event-topic table td [type=submit], .event-topic table td .wpcf7-form button, .wpcf7-form .event-topic table td button,
.event-topic table td .wpcf7-form [type=submit],
.wpcf7-form .event-topic table td [type=submit], .event-topic table td [data-form-block-id] form button, [data-form-block-id] form .event-topic table td button {
  margin: 0 0 0 5px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .event-topic table td .btn, .event-topic table td .serviceAction__form [type=submit], .serviceAction__form .event-topic table td [type=submit], .event-topic table td .contact__form [type=submit], .contact__form .event-topic table td [type=submit], .event-topic table td .aboutAction__form [type=submit], .aboutAction__form .event-topic table td [type=submit], .event-topic table td .popup-form [type=submit], .popup-form .event-topic table td [type=submit], .event-topic table td .slideout-form [type=submit], .slideout-form .event-topic table td [type=submit], .event-topic table td .newsletter__form [type=submit], .newsletter__form .event-topic table td [type=submit], .event-topic table td .wpcf7-form button, .wpcf7-form .event-topic table td button,
  .event-topic table td .wpcf7-form [type=submit],
  .wpcf7-form .event-topic table td [type=submit], .event-topic table td [data-form-block-id] form button, [data-form-block-id] form .event-topic table td button {
    font-size: 12px;
    padding: 10px;
  }
}
@media (max-width: 736px) {
  .event-topic table td .btn, .event-topic table td .serviceAction__form [type=submit], .serviceAction__form .event-topic table td [type=submit], .event-topic table td .contact__form [type=submit], .contact__form .event-topic table td [type=submit], .event-topic table td .aboutAction__form [type=submit], .aboutAction__form .event-topic table td [type=submit], .event-topic table td .popup-form [type=submit], .popup-form .event-topic table td [type=submit], .event-topic table td .slideout-form [type=submit], .slideout-form .event-topic table td [type=submit], .event-topic table td .newsletter__form [type=submit], .newsletter__form .event-topic table td [type=submit], .event-topic table td .wpcf7-form button, .wpcf7-form .event-topic table td button,
  .event-topic table td .wpcf7-form [type=submit],
  .wpcf7-form .event-topic table td [type=submit], .event-topic table td [data-form-block-id] form button, [data-form-block-id] form .event-topic table td button {
    float: none;
  }
}
.event-topic .show-more-container {
  position: relative;
  width: 100%;
}
.event-topic .show-more-container table {
  list-style-type: none;
  padding: 0;
}
.event-topic .show-more-container table:after {
  content: "";
  display: table;
  clear: both;
}
.event-topic .show-more-container .show-more-btn {
  position: relative;
  width: auto;
  cursor: pointer;
  text-align: center;
  margin: 0 auto;
  display: table;
}
@media (max-width: 736px) {
  .event-topic .show-more-container .show-more-btn {
    padding: 17px 64px;
  }
}
.event-topic .show-more-container .show-more-btn:hover {
  color: #fff;
}
.event-topic .show-more-container .show-more-btn span {
  position: relative;
  display: inline-block;
}
.event-topic .show-more-container .show-more-btn span::before {
  position: absolute;
  content: "";
  background-image: url("/wp-content/themes/equilibrium/_src/images/icon--arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  transform-origin: center;
  left: -25px;
  width: 10px;
  height: 25px;
  top: -3px;
}
.event-topic .show-more-container .show-more-btn .loaded {
  display: none;
}
.event-topic .show-more-container [type=checkbox] {
  display: none;
}
.event-topic .show-more-container input[id^=show_more_] {
  display: none;
}
.event-topic .show-more-container input[id^=show_more_]:checked ~ table tr {
  max-height: 999px;
  width: 100%;
  display: table-row;
  transition: 0.2s ease-in;
}
.event-topic .show-more-container input[id^=show_more_]:checked ~ .show-more-btn .loaded {
  display: block;
}
.event-topic .show-more-container input[id^=show_more_]:checked ~ .show-more-btn .loaded::before {
  transform: rotate(180deg);
}
.event-topic .show-more-container input[id^=show_more_]:checked ~ .show-more-btn .unloaded {
  display: none;
}
.featPosts {
  padding-top: 60px;
}
.featPosts .g__col, .featPosts .newsletter__form p > span, .newsletter__form .featPosts p > span {
  margin-bottom: 30px;
}
.featPosts__head {
  margin-bottom: 38px;
}
.featPosts__head a {
  margin-top: -7px;
}
@media (max-width: 736px) {
  .featPosts__head a {
    display: none;
  }
}
/**
 * Allow for horizontal scrolling on mobile
 * Used on: Spotlight / Testimonials 3 col
 */
@media (max-width: 736px) {
  .post-wrapper .g__col, .post-wrapper .newsletter__form p > span, .newsletter__form .post-wrapper p > span {
    width: 100%;
  }
}
.features {
  position: relative;
  padding-top: 70px;
  padding-bottom: 190px;
}
.features::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  width: 705px;
  background-color: #303030;
}
@media (max-width: 768px) {
  .features::after {
    width: 505px;
  }
}
@media (max-width: 736px) {
  .features::after {
    width: 300px;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .features .g33 {
    width: 50%;
    padding: 30px 30px;
  }
  .features .g33:last-of-type {
    width: 100%;
  }
}
@media (max-width: 736px) {
  .features {
    padding-top: 32px;
    padding-bottom: 80px;
  }
}
.features .features-icon {
  height: 80px;
  margin-bottom: 22px;
}
.features .features-icon img {
  height: 100%;
}
.features h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.features span {
  font-size: 18px;
  white-space: normal;
}
.features a {
  position: relative;
  display: block;
  transform: translateY(0%);
  transition: transform 0.3s ease;
}
.features a:hover {
  transform: translateY(-10%);
}
.footer {
  position: relative;
  padding-top: 180px;
  padding-bottom: 30px;
}
.footer:before {
  transform: scaleY(-1);
  top: auto;
  bottom: 0;
}
.footer__bg {
  position: absolute;
  bottom: 100%;
  margin-bottom: -61px;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 21.0625%;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (min-width: 1681px) {
  .footer__bg {
    margin-bottom: -130px;
  }
}
@media screen and (min-width: 2050px) {
  .footer__bg {
    margin-bottom: -245px;
  }
}
@media (max-width: 768px) {
  .footer__bg {
    margin-bottom: -80px;
  }
}
.footer__bg svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer__brand {
  position: relative;
}
.footer__brand a {
  color: #303030;
  display: inline-block;
  margin-bottom: 46px;
  margin-left: 50px;
}
@media (max-width: 1024px) {
  .footer__brand a {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .footer__brand a {
    margin-bottom: 10px;
  }
}
@media (max-width: 736px) {
  .footer__brand a {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 736px) {
  .footer__brand a svg {
    width: 250px;
    height: auto;
  }
}
.footer__brand p {
  position: absolute;
  top: 50px;
  width: 100%;
  margin-left: 117px;
  font-size: 14px;
  font-weight: 400;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .footer__brand p {
    margin-left: 65px;
  }
}
@media (max-width: 768px) {
  .footer__brand p {
    margin-left: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 736px) {
  .footer__brand p {
    position: relative;
    top: 0;
    margin: 20px 0 0;
  }
}
@media (max-width: 768px) {
  .footer__brand.g__col, .newsletter__form p > span.footer__brand {
    width: 100%;
  }
}
.footer__nav {
  text-align: center;
  padding-top: 15px;
}
@media (max-width: 1200px) {
  .footer__nav {
    width: 100%;
    margin: 30px 0;
  }
}
@media (max-width: 768px) {
  .footer__nav .g__col, .footer__nav .newsletter__form p > span, .newsletter__form .footer__nav p > span {
    width: 100%;
  }
  .footer__nav .g__col:last-child, .footer__nav .newsletter__form p > span:last-child, .newsletter__form .footer__nav p > span:last-child {
    display: none;
  }
}
.footer__nav ul {
  display: inline-block;
  text-align: left;
}
@media (max-width: 736px) {
  .footer__nav ul {
    width: 100%;
    margin-top: 20px;
  }
}
.footer__nav li {
  font-size: 14px;
  margin-bottom: 19px;
}
@media (max-width: 736px) {
  .footer__nav li {
    width: 50%;
    padding-right: 12px;
    float: left;
  }
  .footer__nav li:nth-child(1) {
    width: 100%;
  }
}
.footer__nav li:first-child {
  color: #303030;
  font-size: 18px;
}
.footer__nav a:hover {
  color: #cfb054;
}
.footer__social {
  padding-top: 27px;
  padding-bottom: 50px;
}
.footer__social a {
  margin: 0 15px;
  padding: 0 15px;
  transition: 0.15s linear;
}
@media (max-width: 736px) {
  .footer__social a {
    padding: 0;
  }
}
.footer__social a:hover {
  filter: hue-rotate(75deg) brightness(500%) saturate(500%);
}
.footer__social span {
  display: none;
  color: #303030;
}
@media (max-width: 736px) {
  .footer__social span {
    display: inline;
  }
}
.footer__social img {
  display: block;
}
.footer__legal {
  max-width: 1193px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 736px) {
  .footer__legal {
    text-align: left;
  }
}
.footer__legal p {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 15px;
}
.fullVideo {
  position: relative;
  padding: 340px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 0;
  cursor: pointer;
  background-color: #0c0c0e;
}
@media (max-width: 768px) {
  .fullVideo {
    padding: 111px 0;
  }
}
@media (max-width: 736px) {
  .fullVideo {
    padding: 85px 0;
  }
}
.fullVideo.video-block {
  margin-top: 80px;
  margin-left: -123px;
  margin-right: -123px;
  margin-bottom: 80px;
  padding: 198px 0;
}
@media (max-width: 768px) {
  .fullVideo.video-block {
    padding: 104px 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 736px) {
  .fullVideo.video-block {
    padding: 34px 0;
  }
}
.fullVideo.s--playing .container,
.fullVideo.s--playing img {
  pointer-events: none;
  opacity: 0;
  transition: 0.5s linear;
}
.fullVideo i {
  margin-bottom: 47px;
}
.fullVideo:hover i {
  background-color: #cfb054;
}
.fullVideo img,
.fullVideo video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.fullVideo video {
  z-index: -2;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  background-color: #0c0c0e;
}
.fullVideo h2 {
  color: #fff;
}
@media (max-width: 736px) {
  .fullVideo h2 {
    display: none;
  }
}
.fullVideo.full-iframe {
  overflow: hidden;
  padding: 56.25% 0 0 0;
  position: relative;
}
.fullVideo.full-iframe iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.header-wrap {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 1024px) {
  .header-wrap {
    height: 100px;
  }
}
.header-spacer {
  height: 168px;
  width: 100%;
  background-color: transparent;
  transition: height 0.4s;
}
.header {
  background-color: #0c0c0e;
  color: #8e8e9a;
}
@media (max-width: 1024px) {
  .header {
    padding: 0;
  }
  .header.is-active {
    position: fixed;
    left: 0;
    right: 0;
    padding-bottom: 0;
    overflow-y: scroll;
    height: 100vh;
  }
}
@media (max-width: 736px) {
  .header {
    padding: 0;
  }
}
.header .header-inner {
  position: relative;
  z-index: 901;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #0c0c0e;
}
.header__logo {
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 1024px) {
  .header__logo {
    width: 191px;
  }
  .header__logo svg {
    width: 191px;
    height: auto;
  }
}
.header__logo .anniversary-logo {
  width: 45px;
  height: auto;
  display: block;
  margin: 0 0 0 28px;
}
@media (max-width: 1024px) {
  .header__logo .anniversary-logo {
    width: 30px;
    margin: 0 0 0 16px;
  }
}
.header__callout {
  line-height: 1.2;
  color: #72727B;
  margin-right: 25px;
  margin-bottom: 0;
  font-size: 13px;
}
.header__callout.gold-prompt {
  color: #cfb054;
}
@media (min-width: 1200px) {
  .header__callout {
    font-size: 16px;
  }
}
.header__callout a {
  color: #fff;
  float: none !important;
}
.header__callout a:hover {
  color: #cfb054;
}
@media (max-width: 1024px) {
  .header__actions {
    display: none;
  }
}
.header__button {
  margin-right: 10px;
}
.header-socket {
  position: relative;
  z-index: 9999;
  width: 100%;
  padding: 8px 20px;
  background-color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
.header-socket .gold-prompt {
  color: #cfb054;
}
.header-socket p, .header-socket a {
  font-size: 16px;
}
@media (max-width: 320px) {
  .header-socket p, .header-socket a {
    font-size: 9px;
  }
}
.header-socket a {
  color: #cfb054;
}
.header-socket .btn, .header-socket .serviceAction__form [type=submit], .serviceAction__form .header-socket [type=submit], .header-socket .contact__form [type=submit], .contact__form .header-socket [type=submit], .header-socket .aboutAction__form [type=submit], .aboutAction__form .header-socket [type=submit], .header-socket .popup-form [type=submit], .popup-form .header-socket [type=submit], .header-socket .slideout-form [type=submit], .slideout-form .header-socket [type=submit], .header-socket .newsletter__form [type=submit], .newsletter__form .header-socket [type=submit], .header-socket .wpcf7-form button, .wpcf7-form .header-socket button,
.header-socket .wpcf7-form [type=submit],
.wpcf7-form .header-socket [type=submit], .header-socket [data-form-block-id] form button, [data-form-block-id] form .header-socket button {
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 1025px) {
  .header-socket {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header-socket {
    display: flex;
  }
  .header-socket a,
  .header-socket p {
    display: inline-block;
  }
}
.hamburger {
  position: relative;
  vertical-align: top;
  width: 26px;
  height: 17px;
  padding: 0;
  display: inline-block;
}
@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  position: relative;
  height: 1px;
  width: 100%;
  background: #cfb054;
  display: block;
  transition: background 100ms ease;
}
.hamburger span::before, .hamburger span::after {
  position: absolute;
  content: "";
  height: 1px;
  left: 0;
  width: 100%;
  background: #cfb054;
  display: inline-block;
  transition: all 200ms ease;
}
.hamburger span::before {
  top: -8px;
}
.hamburger span::after {
  bottom: -8px;
}
.hamburger.is-active span {
  background: transparent;
}
.hamburger.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.scroll-down .header-wrap {
  transform: translate3d(0, -100%, 0);
}
.scroll-down .header-wrap.no-transform {
  transform: none !important;
}
.scroll-up .header-wrap {
  transform: none;
}
@media screen and (max-device-width: 1366px) {
  body.iphone.osx .header-wrap,
  body.linux .header-wrap {
    position: relative !important;
  }
  body.iphone.osx .header-spacer,
  body.linux .header-spacer {
    display: none !important;
  }
  body.scroll-down .header-wrap {
    transform: none !important;
  }
  body.scroll-up .header-wrap {
    transform: none !important;
  }
}
.hero-image {
  position: relative;
  width: 100%;
  height: 320px;
  clip-path: polygon(100% 0%, 0% 0%, 0% 54%, 88% 100%, 100% 83%);
  clip-path: polygon(100% 0%, 0% 0%, 0% 35.99964%, 88% 100%, 100% 55.33278%);
  z-index: 10;
}
@media (max-width: 768px) {
  .hero-image {
    clip-path: polygon(100% 0%, 0% 0%, 0% 54%, 88% 92%, 100% 83%);
  }
}
@media (max-width: 736px) {
  .hero-image {
    height: auto;
  }
}
.hero-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 736px) {
  .hero-image > img {
    height: auto;
  }
}
.hero-image .subbrand-banner-element {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 140px;
  transform: translateY(-50%);
}
@media (max-width: 736px) {
  .hero-image .subbrand-banner-element {
    width: 80px;
  }
}
.hero-image .subbrand-banner-element img {
  width: 100%;
  height: auto;
  display: block;
}
.hero {
  position: relative;
  height: 80vh;
}
.hero .hero--img-overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.hero .hero--img-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero--img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero .hero--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero--content {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.hero .hero--content .container--slim {
  position: relative;
  height: 100%;
}
.hero .hero--content .container--slim .title {
  position: absolute;
  z-index: 1;
  top: 5%;
  padding-right: 20px;
}
.hero .hero--content .container--slim .title h1 {
  color: #fff;
}
.hero .hero--content .container--slim .msg {
  position: absolute;
  z-index: 11;
  bottom: 8%;
  left: 0;
  right: 0;
  text-align: right;
  max-width: 1184px;
}
@media (max-width: 736px) {
  .hero .hero--content .container--slim .msg {
    text-align: left;
    padding: 0 20px;
    bottom: 5%;
  }
}
.hero .hero--content .container--slim .msg .inner {
  max-width: 350px;
  display: inline-block;
}
@media (max-width: 736px) {
  .hero .hero--content .container--slim .msg .inner {
    max-width: 250px;
  }
}
.hero .hero--content .container--slim .msg .inner span {
  font-family: "Graphik Bold Web", sans-serif;
  color: #fff;
  font-size: 27px;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 736px) {
  .hero .hero--content .container--slim .msg .inner span {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.hero .hero--content .container--slim .msg .inner .btn, .hero .hero--content .container--slim .msg .inner .serviceAction__form [type=submit], .serviceAction__form .hero .hero--content .container--slim .msg .inner [type=submit], .hero .hero--content .container--slim .msg .inner .contact__form [type=submit], .contact__form .hero .hero--content .container--slim .msg .inner [type=submit], .hero .hero--content .container--slim .msg .inner .aboutAction__form [type=submit], .aboutAction__form .hero .hero--content .container--slim .msg .inner [type=submit], .hero .hero--content .container--slim .msg .inner .popup-form [type=submit], .popup-form .hero .hero--content .container--slim .msg .inner [type=submit], .hero .hero--content .container--slim .msg .inner .slideout-form [type=submit], .slideout-form .hero .hero--content .container--slim .msg .inner [type=submit], .hero .hero--content .container--slim .msg .inner .newsletter__form [type=submit], .newsletter__form .hero .hero--content .container--slim .msg .inner [type=submit], .hero .hero--content .container--slim .msg .inner .wpcf7-form button, .wpcf7-form .hero .hero--content .container--slim .msg .inner button,
.hero .hero--content .container--slim .msg .inner .wpcf7-form [type=submit],
.wpcf7-form .hero .hero--content .container--slim .msg .inner [type=submit], .hero .hero--content .container--slim .msg .inner [data-form-block-id] form button, [data-form-block-id] form .hero .hero--content .container--slim .msg .inner button {
  background-color: #cfb054;
  border-color: #cfb054;
  color: #fff;
}
.hero .hero--lines {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  padding-top: 37.0625%;
  overflow: hidden;
  margin-bottom: -80px;
}
@media (max-width: 736px) {
  .hero .hero--lines {
    margin-bottom: -15px;
  }
}
.hero .hero--lines svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.totalizer {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  border-radius: 100%;
  width: 338px;
  height: 338px;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 768px) {
  .totalizer {
    width: 230px;
    height: 230px;
  }
}
.totalizer .inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.totalizer .inner span {
  font-family: "Graphik Bold Web", sans-serif;
  color: #303030;
}
.totalizer .inner .total,
.totalizer .inner .prefix,
.totalizer .inner .suffix {
  font-size: 80px;
}
@media (max-width: 768px) {
  .totalizer .inner .total,
  .totalizer .inner .prefix,
  .totalizer .inner .suffix {
    font-size: 45px;
  }
}
.totalizer .inner .msg {
  display: block;
  font-size: 27px;
  padding: 0 80px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .totalizer .inner .msg {
    font-size: 24px;
    padding: 0 40px;
  }
}
.hero-carousel-wrapper {
  position: relative;
}
.hero-carousel-wrapper .scroll-for-more {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, 50%);
  z-index: 99;
}
.hero-carousel-wrapper .scroll-for-more:hover {
  background: #ffffff;
}
.hero-carousel-wrapper .scroll-for-more .iicon {
  position: absolute;
  width: 28px;
  top: calc(50% - 14px);
  left: calc(50% - 14px);
  transform: rotate(90deg);
}
.hero-carousel-wrapper .scroll-for-more .iicon-svg {
  display: block;
  width: 100%;
}
.hero-carousel-wrapper .scroll-for-more .label {
  display: none;
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  z-index: 0;
  cursor: pointer;
  max-height: calc(100vh - 175px);
  background-color: #cfb054;
}
@media (max-width: 768px) {
  .hero-carousel {
    height: 570px;
    max-height: none;
  }
}
.hero-carousel::before {
  /*
  position: absolute;
  z-index: 100;
  content: '';
  right: 40px;
  bottom: 40px;
  width: 12px;
  height: 28px;
  background-image: url('/wp-content/themes/equilibrium/dist/images/icon--down-arrow.svg');
  background-repeat: no-repeat;
  */
}
.hero-carousel .flickity-page-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
  text-align: left;
  max-width: 1130px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1024px) {
  .hero-carousel .flickity-page-dots {
    padding: 0 20px;
  }
}
@media (max-width: 736px) {
  .hero-carousel .flickity-page-dots {
    bottom: 25px;
  }
}
.hero-carousel .dot {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/icon--dot.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 13px;
  height: 15px;
  margin: 0 6px;
  opacity: 1;
}
.hero-carousel .dot.is-selected, .hero-carousel .dot:hover {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/icon--dot-active.svg);
}
.hero-carousel.s--playing .container,
.hero-carousel.s--playing img {
  pointer-events: none;
  opacity: 0;
  transition: 0.5s linear;
}
.hero-carousel__slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-carousel__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 736px) {
  .hero-carousel__img.with-mobile {
    display: none;
  }
}
.hero-carousel__img__mobile {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}
@media (max-width: 736px) {
  .hero-carousel__img__mobile {
    display: block;
  }
}
.hero-carousel__content {
  position: absolute;
  z-index: 1;
  bottom: 116px;
  left: 0;
  right: 0;
}
@media (max-width: 736px) {
  .hero-carousel__content {
    bottom: 0;
    padding: 0;
    height: 297px;
    padding-right: 20px;
  }
}
@media (max-width: 1024px) {
  .hero-carousel__content.quote-content {
    bottom: 40px;
  }
}
@media (max-width: 736px) {
  .hero-carousel__content.quote-content {
    bottom: 0;
    padding: 0;
    height: 277px;
  }
  .hero-carousel__content.quote-content .container--slim {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
.hero-carousel__content .h1 {
  font-size: 54px;
  color: #fff;
  max-width: 550px;
  width: 100%;
  margin-bottom: 30px;
}
.hero-carousel__content .h1 span {
  display: block;
}
@media (max-width: 768px) {
  .hero-carousel__content .h1 {
    margin-bottom: 15px;
    font-size: 54px;
    line-height: 1.17;
    max-width: 490px;
  }
}
@media (max-width: 736px) {
  .hero-carousel__content .h1 {
    font-size: 33px;
  }
}
.hero-carousel__content .play--small {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .hero-carousel__content .play--small {
    margin-top: 0;
  }
}
.hero-carousel__content .subtitle {
  display: block;
  font-size: 22px;
  line-height: 1.27;
  color: #fff;
  max-width: 372px;
  width: 100%;
}
@media (max-width: 736px) {
  .hero-carousel__content .subtitle {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
  }
}
.hero-carousel__content .btn, .hero-carousel__content .serviceAction__form [type=submit], .serviceAction__form .hero-carousel__content [type=submit], .hero-carousel__content .contact__form [type=submit], .contact__form .hero-carousel__content [type=submit], .hero-carousel__content .aboutAction__form [type=submit], .aboutAction__form .hero-carousel__content [type=submit], .hero-carousel__content .popup-form [type=submit], .popup-form .hero-carousel__content [type=submit], .hero-carousel__content .slideout-form [type=submit], .slideout-form .hero-carousel__content [type=submit], .hero-carousel__content .newsletter__form [type=submit], .newsletter__form .hero-carousel__content [type=submit], .hero-carousel__content .wpcf7-form button, .wpcf7-form .hero-carousel__content button,
.hero-carousel__content .wpcf7-form [type=submit],
.wpcf7-form .hero-carousel__content [type=submit], .hero-carousel__content [data-form-block-id] form button, [data-form-block-id] form .hero-carousel__content button {
  background-color: #fff;
  border-color: #fff;
  color: #cfb054;
  margin-top: 20px;
}
.hero-carousel__content .btn:hover, .hero-carousel__content .serviceAction__form [type=submit]:hover, .serviceAction__form .hero-carousel__content [type=submit]:hover, .hero-carousel__content .contact__form [type=submit]:hover, .contact__form .hero-carousel__content [type=submit]:hover, .hero-carousel__content .aboutAction__form [type=submit]:hover, .aboutAction__form .hero-carousel__content [type=submit]:hover, .hero-carousel__content .popup-form [type=submit]:hover, .popup-form .hero-carousel__content [type=submit]:hover, .hero-carousel__content .slideout-form [type=submit]:hover, .slideout-form .hero-carousel__content [type=submit]:hover, .hero-carousel__content .newsletter__form [type=submit]:hover, .newsletter__form .hero-carousel__content [type=submit]:hover, .hero-carousel__content .wpcf7-form button:hover, .wpcf7-form .hero-carousel__content button:hover,
.hero-carousel__content .wpcf7-form [type=submit]:hover,
.wpcf7-form .hero-carousel__content [type=submit]:hover, .hero-carousel__content [data-form-block-id] form button:hover, [data-form-block-id] form .hero-carousel__content button:hover {
  background-color: #303030;
  border-color: #303030;
  color: #fff;
}
@media (max-width: 736px) {
  .hero-carousel__content .btn, .hero-carousel__content .serviceAction__form [type=submit], .serviceAction__form .hero-carousel__content [type=submit], .hero-carousel__content .contact__form [type=submit], .contact__form .hero-carousel__content [type=submit], .hero-carousel__content .aboutAction__form [type=submit], .aboutAction__form .hero-carousel__content [type=submit], .hero-carousel__content .popup-form [type=submit], .popup-form .hero-carousel__content [type=submit], .hero-carousel__content .slideout-form [type=submit], .slideout-form .hero-carousel__content [type=submit], .hero-carousel__content .newsletter__form [type=submit], .newsletter__form .hero-carousel__content [type=submit], .hero-carousel__content .wpcf7-form button, .wpcf7-form .hero-carousel__content button,
  .hero-carousel__content .wpcf7-form [type=submit],
  .wpcf7-form .hero-carousel__content [type=submit], .hero-carousel__content [data-form-block-id] form button, [data-form-block-id] form .hero-carousel__content button {
    margin-top: 0;
  }
}
.hero-carousel__content .quote {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  max-width: 705px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-carousel__content .quote {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
  }
}
.hero-carousel__content .author {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-carousel__content .author {
    font-size: 22px;
    line-height: 1;
  }
}
@media (max-width: 736px) {
  .hero-carousel__content-inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.hero-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 736px) {
  .hero-carousel img {
    height: 273px;
  }
}
.hero-carousel video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.hero-carousel .person-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 54px;
  z-index: 2;
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
}
.hero-carousel .person-details .inner {
  max-width: 613px;
}
.hero-carousel .person-details .inner .float {
  float: right;
}
.hero-carousel .person-details .inner .name,
.hero-carousel .person-details .inner .position {
  color: #fff;
  display: block;
}
.hero-carousel .icon-quote {
  position: relative;
  top: 50px;
  left: -50px;
  mix-blend-mode: soft-light;
  display: inline-block;
  opacity: 0.4;
  width: 70px;
  height: 70px;
}
@media (max-width: 1024px) {
  .hero-carousel .icon-quote {
    left: -10px;
  }
}
@media (max-width: 736px) {
  .hero-carousel .icon-quote {
    top: 20px;
    width: 40px;
    height: 40px;
    display: none;
  }
}
.hero-carousel .icon-quote svg {
  width: 100%;
  height: 100%;
}
.hero-carousel .icon-quote svg path {
  stroke: #fff;
}
.popup-form.video-modal {
  max-width: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.3);
}
.popup-form.video-modal video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 300px;
}
.hero-carousel__content h1,
.hero-carousel__content .h1,
.hero-carousel__content .subtitle,
.hero-carousel__content .quote,
.hero-carousel__content .author,
.hero-carousel__content .btn,
.hero-carousel__content .serviceAction__form [type=submit],
.serviceAction__form .hero-carousel__content [type=submit],
.hero-carousel__content .contact__form [type=submit],
.contact__form .hero-carousel__content [type=submit],
.hero-carousel__content .aboutAction__form [type=submit],
.aboutAction__form .hero-carousel__content [type=submit],
.hero-carousel__content .popup-form [type=submit],
.popup-form .hero-carousel__content [type=submit],
.hero-carousel__content .slideout-form [type=submit],
.slideout-form .hero-carousel__content [type=submit],
.hero-carousel__content .newsletter__form [type=submit],
.newsletter__form .hero-carousel__content [type=submit],
.hero-carousel__content .wpcf7-form button,
.wpcf7-form .hero-carousel__content button,
.hero-carousel__content .wpcf7-form [type=submit],
.wpcf7-form .hero-carousel__content [type=submit],
.hero-carousel__content [data-form-block-id] form button,
[data-form-block-id] form .hero-carousel__content button {
  opacity: 0;
}
img[data-object-fit=contain] {
  -o-object-fit: contain;
     object-fit: contain;
}
img[data-object-fit=cover] {
  -o-object-fit: cover;
     object-fit: cover;
}
.ie [data-object-fit] {
  height: auto;
}
@media (max-width: 736px) {
  .flickity-prev-next-button {
    top: calc(50% - 12px);
  }
}
.heroIntro {
  position: relative;
  padding-top: 70px;
  padding-bottom: 20px;
  background: #FFF;
  overflow: hidden;
}
@media (max-width: 736px) {
  .heroIntro {
    padding-top: 36px;
  }
}
.heroIntro svg {
  position: absolute;
  bottom: -68%;
  left: 90px;
  width: 157%;
}
#find-out-more {
  position: absolute;
  top: -140px;
  width: 0;
  height: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.heroIntro__content {
  position: relative;
  padding: 42px 60px;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  z-index: 5;
}
@media (max-width: 736px) {
  .heroIntro__content {
    padding: 24px 12px;
  }
}
.heroIntro__content h1, .heroIntro__content h2, .heroIntro__content h3, .heroIntro__content h4, .heroIntro__content h5, .heroIntro__content h6 {
  font-family: "Graphik Regular Web", sans-serif;
  font-size: 28px;
  margin-bottom: 40px;
  line-height: 1.35;
}
@media (max-width: 736px) {
.heroIntro__content h1, .heroIntro__content h2, .heroIntro__content h3, .heroIntro__content h4, .heroIntro__content h5, .heroIntro__content h6 {
  font-size: 22px;
  }
}
.heroIntro__content h1 strong, .heroIntro__content h2 strong, .heroIntro__content h3 strong, .heroIntro__content h4 strong, .heroIntro__content h5 strong, .heroIntro__content h6 strong {
  font-family: "Graphik Bold Web", sans-serif;
}
.heroIntro__content p {
  font-size: 22px;
  line-height: 1.27;
}
@media (max-width: 736px) {
  .heroIntro__content p {
    font-size: 18px;
    line-height: 24px;
  }
}
.heroIntro__content strong {
  color: #0c0c0e;
  font-weight: 500;
}
.heroIntro__content a {
  color: #cfb054;
}
.hexagons--bg {
  padding: 90px 0;
}
.hexagons .items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90vw;
  max-width: 1080px;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/hex-bg.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 125px 0;
  margin: 0 auto 80px;
}
@media (max-width: 1024px) {
  .hexagons .items {
    padding: 0;
    justify-content: center;
  }
}
.hexagons .item {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  width: calc(33.33% - 21px);
  height: calc((30vw - 21px) * 1.1765);
  max-height: 394px;
  padding: 45px 30px;
}
@media (max-width: 1024px) {
  .hexagons .item {
    width: calc(50% - 15px);
    height: calc((45vw - 15px) * 1.1765);
    max-width: 340px;
  }
  .hexagons .item:first-child {
    margin: 0 30px 0 0;
  }
}
@media (max-width: 768px) {
  .hexagons .item {
    width: 100%;
    height: 105.885vw;
  }
  .hexagons .item:first-child {
    margin: 0;
  }
}
.hexagons .item:nth-child(1) {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/hex-pink.svg);
}
.hexagons .item:nth-child(2) {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/hex-blue.svg);
}
.hexagons .item:nth-child(3) {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/hex-grey.svg);
}
.hexagons .item .h3, .hexagons .item .peopleHead__content p, .peopleHead__content .hexagons .item p, .hexagons .item .homeAction__content p, .homeAction__content .hexagons .item p, .hexagons .item .awardsHead__content p, .awardsHead__content .hexagons .item p, .hexagons .item .editor blockquote, .editor .hexagons .item blockquote {
  color: #fff;
}
.hexagons .item p {
  font-size: 12px;
  color: #fff;
  margin: 1em 0;
}
.hexagons .item .link {
  font-size: 12px;
  display: inline-block;
  color: #fff;
}
.homepage-banner {
  position: relative;
  overflow: hidden;
}
@media (min-width: 782px) {
  .homepage-banner {
    margin: 0;
  }
}
.homepage-banner .video-wrapper {
  position: relative;
}
.homepage-banner .video-wrapper:before {
  content: " ";
  padding: 0 0 50%;
  display: block;
}
@media (min-width: 782px) {
  .homepage-banner .video-wrapper:before {
    padding: 0 0 40%;
  }
}
.homepage-banner .video-wrapper video {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: translateX(-50%);
}
.homepage-banner .image {
  position: absolute;
  height: auto;
  display: block;
  display: inline-block;
  opacity: 0;
  width: 40%;
}
.homepage-banner h1,
.homepage-banner h2 {
  position: absolute;
  font-size: 50px;
  text-align: center;
  bottom: 0;
  left: 5%;
  width: 90%;
  z-index: 10;
}
@media (min-width: 782px) {
  .homepage-banner h1,
  .homepage-banner h2 {
    font-size: 4.8vw;
  }
}
.homepage-banner h1 strong,
.homepage-banner h2 strong {
  color: #cfb054;
}
.homepage-banner h1 span,
.homepage-banner h2 span {
  opacity: 0;
  position: relative;
  display: inline-block;
}
.homepage-banner .swiper-slide {
  position: relative;
}
.homepage-banner .swiper-slide:before {
  content: " ";
  display: block;
  padding: 0 0 125%;
}
@media (min-width: 782px) {
  .homepage-banner .swiper-slide:before {
    padding: 0 0 50%;
  }
}
.homepage-banner .swiper-slide.swiper-slide-active svg {
  opacity: 1;
}
.homepage-banner .swiper-slide[data-index="0"] svg {
  width: 80%;
  right: 0;
  top: 0;
}
@media (min-width: 782px) {
  .homepage-banner .swiper-slide[data-index="0"] svg {
    width: 41%;
  }
}
@media (min-width: 782px) {
  .homepage-banner .swiper-slide[data-index="0"] h1,
  .homepage-banner .swiper-slide[data-index="0"] h2 {
    top: 50%;
    bottom: auto;
    left: 10%;
    width: 40%;
    transform: translateY(-50%);
  }
}
.homepage-banner .swiper-slide[data-index="1"] svg {
  width: 140%;
  left: -21%;
  bottom: 25%;
}
@media (min-width: 782px) {
  .homepage-banner .swiper-slide[data-index="1"] svg {
    width: 58%;
    left: 21%;
    bottom: 0;
  }
}
@media (min-width: 782px) {
  .homepage-banner .swiper-slide[data-index="1"] h1,
  .homepage-banner .swiper-slide[data-index="1"] h2 {
    top: 5%;
    left: 10%;
    width: 80%;
  }
}
.homepage-banner .swiper-slide[data-index="2"] svg {
  width: 90%;
  right: 0;
  top: 0;
}
@media (min-width: 782px) {
  .homepage-banner .swiper-slide[data-index="2"] svg {
    width: 52%;
  }
}
@media (min-width: 782px) {
  .homepage-banner .swiper-slide[data-index="2"] h1,
  .homepage-banner .swiper-slide[data-index="2"] h2 {
    bottom: 10%;
    left: 2.5%;
    width: 52%;
  }
}
@media (min-width: 782px) {
  .homepage-banner .swiper-slide[data-index="2"] h1,
  .homepage-banner .swiper-slide[data-index="2"] h2 {
    bottom: 13.5%;
  }
}
.homepage-banner .swiper-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.homepage-banner .swiper-button:hover {
  background: white;
  cursor: pointer;
}
.homepage-banner .swiper-button.prev {
  left: 15px;
}
.homepage-banner .swiper-button.next {
  right: 15px;
}
.homepage-banner .swiper-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}
.homepage-banner .swiper-button svg {
  fill: currentColor;
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
.imageTextBlock__row {
  padding: 90px 0;
}
@media (max-width: 736px) {
  .imageTextBlock__row {
    padding: 40px 0;
  }
}
.imageTextBlock__content {
  max-width: 490px;
  margin: 0 auto;
}
.imageTextBlock__content h2 {
  margin-bottom: 38px;
}
.imageTextBlock__content p {
  margin-bottom: 17px;
}
.imageTextBlock__row h2 {
  margin-bottom: 20px;
}
.imageTextBlock__row img {
  margin-bottom: 20px;
}
@media (max-width: 736px) {
  .imageTextBlock__row {
    text-align: center;
  }
}
.latestEvent--content .img-mask,
.latestFeat .img-mask,
.postPreview .img-mask,
.eventPreview .img-mask,
.post-item .img-mask {
  position: relative;
  overflow: hidden;
  margin-bottom: 23px;
  border-radius: 20px;
}
.latestEvent--content .img-mask > img,
.latestFeat .img-mask > img,
.postPreview .img-mask > img,
.eventPreview .img-mask > img,
.post-item .img-mask > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 600ms ease;
  transform: scale(1);
}
.latestEvent--content .img-mask:before,
.latestFeat .img-mask:before,
.postPreview .img-mask:before,
.eventPreview .img-mask:before,
.post-item .img-mask:before {
  content: " ";
  position: relative;
  display: block;
  padding: 0 0 66.6%;
}
.latestEvent--content:hover .img-mask > img,
.latestFeat:hover .img-mask > img,
.postPreview:hover .img-mask > img,
.eventPreview:hover .img-mask > img,
.post-item:hover .img-mask > img {
  transform: scale(1.1);
}
.postPreview .img-mask {
  aspect-ratio: 1/1;
}
.subbrand-elements {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.subbrand-elements .strap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  text-align: center;
  text-transform: uppercase;
  z-index: 10;
}
.subbrand-elements .strap.pulse {
  background: #0064a5;
  color: #ffffff;
}
.subbrand-elements .strap.book {
  background: #000000;
  color: #cfb253;
}
.subbrand-elements .strap.bonnet {
  background: #3c3c3b;
  color: #ffffff;
}
.subbrand-elements .strap.edit {
  background: #cfb253;
  color: #ffffff;
}
.subbrand-elements img {
  position: absolute;
  width: 70px;
  height: auto;
  display: block;
  bottom: 20px;
  right: 20px;
  transform: none !important;
  z-index: 10;
}
.information-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 0 0 56px;
  width: calc(100% - 40px);
  max-width: 500px;
  background: white;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  display: none;
  overflow: hidden;
  transform: translate(-50%, -50%);
  z-index: 9998;
}
.information-dialog:after {
  content: " ";
  position: absolute;
  bottom: 56px;
  left: 20px;
  right: 20px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
#cookie-law-info-bar ~ .information-dialog .content {
  height: calc(100vh - 130px);
}
.show-information-dialog .information-dialog {
  display: block;
}
.information-dialog .content {
  height: calc(100vh - 40px);
  max-height: 600px;
  overflow: scroll;
}
.information-dialog .content .inner {
  padding: 40px 30px;
}
.information-dialog .content p {
  font-size: 16px;
}
.information-dialog .content p:last-child {
  margin: 0;
}
.information-dialog .lower {
  background: #e4e4e4;
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  height: 56px;
}
.information-dialog .lower .btn:hover, .information-dialog .lower .serviceAction__form [type=submit]:hover, .serviceAction__form .information-dialog .lower [type=submit]:hover, .information-dialog .lower .contact__form [type=submit]:hover, .contact__form .information-dialog .lower [type=submit]:hover, .information-dialog .lower .aboutAction__form [type=submit]:hover, .aboutAction__form .information-dialog .lower [type=submit]:hover, .information-dialog .lower .popup-form [type=submit]:hover, .popup-form .information-dialog .lower [type=submit]:hover, .information-dialog .lower .slideout-form [type=submit]:hover, .slideout-form .information-dialog .lower [type=submit]:hover, .information-dialog .lower .newsletter__form [type=submit]:hover, .newsletter__form .information-dialog .lower [type=submit]:hover, .information-dialog .lower .wpcf7-form button:hover, .wpcf7-form .information-dialog .lower button:hover,
.information-dialog .lower .wpcf7-form [type=submit]:hover,
.wpcf7-form .information-dialog .lower [type=submit]:hover, .information-dialog .lower [data-form-block-id] form button:hover, [data-form-block-id] form .information-dialog .lower button:hover {
  border-color: #cfb054;
  color: #fff;
}
.information-dialog .close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(12, 12, 14, 0.8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='28' height='28' stroke='%23FFFFFF' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.3s;
  display: none;
}
.information-dialog .close:hover {
  background-color: #0c0c0e;
}
.latestEvent {
  margin-bottom: 80px;
}
.latestEvent .latestEvent--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 762px) {
  .latestEvent .latestEvent--header {
    margin-bottom: 80px;
  }
}
.latestEvent .latestEvent--content {
  display: block;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (min-width: 762px) {
  .latestEvent .latestEvent--content {
    display: flex;
  }
}
.latestEvent .latestEvent--content .image {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 762px) {
  .latestEvent .latestEvent--content .image {
    width: 40%;
    margin-bottom: 0;
  }
}
.latestEvent .latestEvent--content .image .img-mask {
  margin-bottom: 0;
}
.latestEvent .latestEvent--content .content {
  width: 100%;
}
@media (min-width: 762px) {
  .latestEvent .latestEvent--content .content {
    width: 60%;
  }
}
.latestEvent .latestEvent--content .event-details {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 15px;
  gap: 20px;
}
.latestEvent .latestEvent--content .event-title {
  font-size: 30px;
  margin-bottom: 20px;
}
@media (min-width: 762px) {
  .latestEvent .latestEvent--content .event-title {
    font-size: 54px;
    margin-bottom: 30px;
  }
}
.latestEvent .latestEvent--content .event-meta {
  font-size: 16px;
  margin-bottom: 10px;
}
.latestEvent .latestEvent--content .event-buttons {
  align-items: center;
  display: flex;
  gap: 10px;
}
.mainNav {
  padding: 20px 0 0;
  background-color: #fff;
  color: #8e8e9a;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .mainNav {
    display: none;
  }
  .mainNav.is-active {
    display: block;
    padding-top: 0;
    padding-bottom: 60px;
  }
  .mainNav.is-active .container--slim {
    padding-left: 0;
    padding-right: 0;
  }
}
.mainNav__menu {
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 1024px) {
  .mainNav__menu {
    display: inline-block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.scrollable {
  display: flex;
}
@media (max-width: 1024px) {
  .scrollable {
    display: block;
    border-bottom: 1px solid #D8D8D8;
    overflow: scroll;
    max-height: calc(100vh - 360px);
  }
}
.mainNav__item {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.mainNav__item:first-of-type {
  margin-left: 0;
}
.mainNav__item a:hover {
  color: #cfb054;
}
.mainNav__item svg:hover polygon {
  fill: #cfb054;
}
.mainNav__item[data-active] > a {
  color: #D8D8D8;
}
.mainNav__item[data-active] > .has-children::after {
  color: #D8D8D8;
}
@media (max-width: 1024px) {
  .mainNav__item {
    position: relative;
    border-bottom: 1px solid #D8D8D8;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mainNav__item a {
    display: inline-block;
    color: #303030;
  }
}
.has-children {
  position: relative;
  float: right;
  width: 20px;
  height: 5px;
}
@media (min-width: 1025px) {
  .has-children {
    display: none;
  }
}
.has-children::after {
  position: absolute;
  content: "\203A";
  color: #303030;
  font-size: 30px;
  top: -14px;
}
@media (min-width: 1025px) {
  .cta-btn {
    display: none;
  }
}
@media (max-width: 1024px) {
  .cta-btn {
    position: absolute;
    width: 50%;
    right: 0;
  }
  .cta-btn .btn, .cta-btn .serviceAction__form [type=submit], .serviceAction__form .cta-btn [type=submit], .cta-btn .contact__form [type=submit], .contact__form .cta-btn [type=submit], .cta-btn .aboutAction__form [type=submit], .aboutAction__form .cta-btn [type=submit], .cta-btn .popup-form [type=submit], .popup-form .cta-btn [type=submit], .cta-btn .slideout-form [type=submit], .slideout-form .cta-btn [type=submit], .cta-btn .newsletter__form [type=submit], .newsletter__form .cta-btn [type=submit], .cta-btn .wpcf7-form button, .wpcf7-form .cta-btn button,
  .cta-btn .wpcf7-form [type=submit],
  .wpcf7-form .cta-btn [type=submit], .cta-btn [data-form-block-id] form button, [data-form-block-id] form .cta-btn button {
    float: right;
    margin-top: 10px;
    margin-right: 20px;
  }
}
@media (max-width: 1024px) {
  .menu-search {
    position: absolute;
    width: 50%;
  }
}
.mainNav__item--dropdown > a {
  position: relative;
}
.mainNav__item--dropdown a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}
.mainNav__dropdown {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  top: 100%;
  width: 185px;
  background-color: #fff;
  margin-top: 10px;
  margin-left: -27px;
  border-radius: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 2;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .mainNav__dropdown {
    display: none;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    background-color: none;
    width: 100%;
    opacity: 1;
    top: auto;
    left: auto;
    border-radius: 0;
    box-shadow: none;
    margin: 30px 0 0;
  }
}
@media (min-width: 1025px) {
  li:hover .mainNav__dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
}
.mainNav__dropdown::before {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  content: "";
  background: transparent;
  height: 10px;
}
@media (max-width: 1024px) {
  .mainNav__dropdown::before {
    display: none;
  }
}
.mainNav__dropdown::after {
  position: absolute;
  top: -15px;
  left: 40px;
  content: "";
  border-top: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-right: 8px solid transparent;
}
@media (max-width: 1024px) {
  .mainNav__dropdown::after {
    display: none;
  }
}
@media (max-width: 1024px) {
  li.is-active .mainNav__dropdown {
    display: block;
    pointer-events: auto;
  }
}
.mainNav__dropdown h3 {
  font-weight: 500;
  padding-bottom: 33px;
  border-bottom: 1px solid #f2f2f2;
}
@media (max-width: 1024px) {
  .mainNav__dropdown .mainNav__heading {
    display: none;
  }
  .mainNav__dropdown .g33,
  .mainNav__dropdown .g70 {
    width: 100%;
  }
}
.mainNav__heading,
.mainNav__link {
  align-self: flex-end;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .mainNav__heading,
  .mainNav__link {
    display: none;
  }
}
.mainNav__heading a,
.mainNav__link a {
  margin-bottom: 33px;
}
.mainNav__submenus,
.mainNav__content {
  padding-top: 0;
}
@media (max-width: 1024px) {
  .mainNav__submenus,
  .mainNav__content {
    padding-top: 0;
  }
}
.mainNav__submenu li {
  padding: 10px 0;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .mainNav__submenu li {
    margin-bottom: 0;
    padding: 15px 0;
  }
}
.mainNav__submenu li[data-active] > a {
  color: #D8D8D8;
}
.mainNav__submenu li[data-active] > .has-children::after {
  color: #D8D8D8;
}
.mainNav__submenu li:first-child {
  color: #303030;
}
@media (max-width: 1024px) {
  .mainNav__submenu a {
    padding: 0;
    font-size: 14px;
  }
}
.mainNav__submenu a:hover {
  color: #cfb054;
}
.mainNav__content {
  position: relative;
  padding-bottom: 95px;
  z-index: 0;
  padding-left: 30px;
}
.mainNav__content:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-color: #f2f2f2;
  z-index: -1;
}
@media (max-width: 1024px) {
  .mainNav__content:before {
    display: none;
  }
}
.mainNav__content p:first-child {
  margin-top: -5px;
}
.mainNav__content strong {
  color: #303030;
  font-weight: 500;
}
.mainNav__content img {
  display: block;
  margin-top: 15px;
  margin-bottom: 10px;
}
.mainNav__search {
  align-self: flex-start;
  margin-top: -10px;
  width: 190px;
}
.mainNav__search input {
  border: 0;
  padding: 10px;
  outline: 0;
  margin-right: 16px;
}
.mainNav__search input::-webkit-input-placeholder {
  color: #8e8e9a;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}
.mainNav__search input:-moz-placeholder {
  color: #8e8e9a;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}
.mainNav__search input::-moz-placeholder {
  color: #8e8e9a;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}
.mainNav__search input:-ms-input-placeholder {
  color: #8e8e9a;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}
.mainNav__search button {
  color: #8e8e9a;
  transition: 0.15s linear;
}
.mainNav__search button:hover {
  color: #0c0c0e;
}
@media (max-width: 1024px) {
  .mainNav__search {
    display: none;
  }
}
@media (min-width: 769px) {
  .mainNav__search.mobile {
    display: none;
  }
}
@media (max-width: 1024px) {
  .mainNav__search.mobile {
    display: flex;
    margin-top: 0;
    padding: 20px 20px;
    text-align: left;
  }
  .mainNav__search.mobile input {
    padding: 0;
  }
  .mainNav__search.mobile input::-webkit-input-placeholder {
    text-align: left !important;
  }
  .mainNav__search.mobile input:-moz-placeholder {
    text-align: left !important;
  }
  .mainNav__search.mobile input::-moz-placeholder {
    text-align: left !important;
  }
  .mainNav__search.mobile input:-ms-input-placeholder {
    text-align: left !important;
  }
}
.reveal .show-description {
  display: none;
}
.reveal .show-description.active {
  display: block;
}
.reveal .show-description strong {
  font-size: 18px;
}
.newsletter {
  position: relative;
  padding-top: 52px;
  padding-bottom: 52px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
.newsletter .container--slim {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 768px) {
  .newsletter .container--slim {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.newsletter .wpcf7-spinner {
  display: none;
}
.single-events .newsletter {
  margin: 150px 0 0;
}
.page-template-page--service-video .newsletter {
  padding-bottom: 50px;
  margin: 120px 0 0;
}
.newsletter h2 {
  margin-bottom: 27px;
}
.newsletter h2 + p {
  margin-bottom: 34px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 300;
  max-width: 660px;
}
.newsletter #newsletter {
  position: absolute;
  top: -100px;
  left: 0;
}
.newsletter__form .wpcf7-form-control-wrap {
  margin: 0 0 5px;
}
.newsletter__form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsletter__form form > * {
  width: 100%;
}
.grant-row .newsletter__form form > * {
  display: flex;
  justify-content: space-between;
}
.newsletter__form form p {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.grant-row .newsletter__form form p {
  margin: 0;
  width: calc(50% - 10px);
}
@media (max-width: 768px) {
  .grant-row .newsletter__form form p {
    width: 100%;
  }
}
.newsletter__form form p:last-child {
  width: 100%;
}
@media (max-width: 768px) {
  .newsletter__form form p {
    width: 100%;
  }
}
.newsletter__form form p label {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.newsletter__form form p > span {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 768px) {
  .newsletter__form .g50 {
    width: 100%;
  }
}
.newsletter__form p {
  align-items: flex-start;
  margin-bottom: 0;
}
.grant-row .newsletter__form p {
  margin: 0;
}
.newsletter__form p > span {
  width: 100%;
  margin-top: 0;
  margin-bottom: 16px;
}
.page-template-page--service-video .newsletter__form p > span {
  width: 100%;
}
@media (max-width: 812px) {
  .newsletter__form p > span {
    flex: 100%;
  }
}
.newsletter__form p label {
  padding-left: 13.5px;
  padding-right: 13.5px;
}
.newsletter__form .wpcf7-checkbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (max-width: 812px) {
  .newsletter__form .wpcf7-checkbox {
    display: inline-block;
    width: 100%;
  }
  .newsletter__form .wpcf7-checkbox span {
    display: inline-block;
    width: 100%;
    display: block;
    margin-right: 0 !important;
  }
}
.newsletter__form .wpcf7-list-item {
  margin-right: 20px;
}
.ie .newsletter__form p > span {
  flex: 1 1 auto;
}
.peopleCarousel {
  position: relative;
}
.peopleCarousel .flickity-page-dots {
  position: relative;
  bottom: 70px;
  z-index: 2;
  text-align: left;
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .peopleCarousel .flickity-page-dots {
    padding: 0 20px;
    bottom: 40px;
  }
}
.peopleCarousel .dot {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/icon--dot.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 13px;
  height: 15px;
  margin: 0 6px;
  opacity: 1;
}
.peopleCarousel .dot.is-selected, .peopleCarousel .dot:hover {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/icon--dot-active.svg);
}
.peopleCarousel .play--small {
  margin-bottom: 10px;
}
.peopleCarousel__slide {
  position: relative;
  width: 100%;
  height: 570px;
}
.peopleCarousel__slide.height-set {
  height: 570px;
}
.peopleCarousel__slide .peopleCarousel__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 736px) {
  .peopleCarousel__slide .peopleCarousel__img {
    display: none;
  }
}
.peopleCarousel__slide .peopleCarousel__img__mobile {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}
@media (max-width: 736px) {
  .peopleCarousel__slide .peopleCarousel__img__mobile {
    display: block;
  }
}
.peopleCarousel__slide .peopleCarousel__img img {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .peopleCarousel__slide .peopleCarousel__img img {
    -o-object-position: 70%;
       object-position: 70%;
  }
}
.peopleCarousel__slide .person-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 54px;
  z-index: 2;
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
}
.peopleCarousel__slide .person-details .inner {
  max-width: 613px;
}
@media (max-width: 736px) {
  .peopleCarousel__slide .person-details .inner {
    padding-left: 20px;
  }
}
.peopleCarousel__slide .person-details .inner .float {
  float: right;
}
@media (max-width: 736px) {
  .peopleCarousel__slide .person-details .inner .float {
    float: none;
  }
}
.peopleCarousel__slide .person-details .inner .name,
.peopleCarousel__slide .person-details .inner .position {
  color: #fff;
  display: block;
}
.peopleCarousel__content {
  position: absolute;
  top: 93px;
  max-width: 955px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .peopleCarousel__content {
    width: auto;
    padding-right: 20px;
  }
}
.peopleCarousel__content h1,
.peopleCarousel__content .h1 {
  color: #fff;
  max-width: 790px;
}
.peopleCarousel__content h1 span,
.peopleCarousel__content .h1 span {
  display: block;
}
@media (max-width: 768px) {
  .peopleCarousel__content h1,
  .peopleCarousel__content .h1 {
    margin-bottom: 15px;
    font-size: 54px;
    line-height: 1.17;
  }
}
@media (max-width: 736px) {
  .peopleCarousel__content h1,
  .peopleCarousel__content .h1 {
    font-size: 38px;
    line-height: 1;
  }
}
.peopleCarousel__content h1 {
  margin-bottom: 45px;
}
.peopleCarousel__content .subtitle {
  display: block;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  max-width: 372px;
  width: 100%;
}
@media (max-width: 736px) {
  .peopleCarousel__content .subtitle {
    font-size: 18px;
    line-height: 1;
  }
}
.peopleCarousel__content .subtitle.xl {
  max-width: 613px;
  padding-bottom: 30px;
}
.peopleCarousel__content .btn, .peopleCarousel__content .serviceAction__form [type=submit], .serviceAction__form .peopleCarousel__content [type=submit], .peopleCarousel__content .contact__form [type=submit], .contact__form .peopleCarousel__content [type=submit], .peopleCarousel__content .aboutAction__form [type=submit], .aboutAction__form .peopleCarousel__content [type=submit], .peopleCarousel__content .popup-form [type=submit], .popup-form .peopleCarousel__content [type=submit], .peopleCarousel__content .slideout-form [type=submit], .slideout-form .peopleCarousel__content [type=submit], .peopleCarousel__content .wpcf7-form button, .wpcf7-form .peopleCarousel__content button,
.peopleCarousel__content .wpcf7-form [type=submit],
.wpcf7-form .peopleCarousel__content [type=submit], .peopleCarousel__content [data-form-block-id] form button, [data-form-block-id] form .peopleCarousel__content button, .peopleCarousel__content .newsletter__form [type=submit], .newsletter__form .peopleCarousel__content [type=submit] {
  margin-top: 40px;
  background-color: #fff;
  border-color: #fff;
}
.peopleCarousel__content .btn:hover, .peopleCarousel__content .serviceAction__form [type=submit]:hover, .serviceAction__form .peopleCarousel__content [type=submit]:hover, .peopleCarousel__content .contact__form [type=submit]:hover, .contact__form .peopleCarousel__content [type=submit]:hover, .peopleCarousel__content .aboutAction__form [type=submit]:hover, .aboutAction__form .peopleCarousel__content [type=submit]:hover, .peopleCarousel__content .popup-form [type=submit]:hover, .popup-form .peopleCarousel__content [type=submit]:hover, .peopleCarousel__content .slideout-form [type=submit]:hover, .slideout-form .peopleCarousel__content [type=submit]:hover, .peopleCarousel__content .wpcf7-form button:hover, .wpcf7-form .peopleCarousel__content button:hover,
.peopleCarousel__content .wpcf7-form [type=submit]:hover,
.wpcf7-form .peopleCarousel__content [type=submit]:hover, .peopleCarousel__content [data-form-block-id] form button:hover, [data-form-block-id] form .peopleCarousel__content button:hover, .peopleCarousel__content .newsletter__form [type=submit]:hover, .newsletter__form .peopleCarousel__content [type=submit]:hover {
  background-color: #cfb054;
  border-color: #cfb054;
}
.word {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.word:first-of-type {
  display: block;
}
.page-template-front-page .word:first-of-type,
.page-template-page--home .word:first-of-type {
  display: inline-block;
}
.letter {
  display: inline-block;
  vertical-align: text-top;
}
.people-listing {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .people-listing {
    margin-bottom: 48px;
  }
}
.people-listing .people-item {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  transition: transform 300ms ease;
  min-height: 307px;
  overflow: hidden;
  margin: 20px 0;
  background-color: #fff;
}
.people-listing .people-item img {
  margin-bottom: 10px;
  width: 100%;
}
.people-listing .people-item img.logo {
  margin: 20px 0 0;
  height: 25px;
  width: auto;
}
.people-listing .people-item .people-item--content {
  padding: 20px 10px;
}
.people-listing .people-item .people-item--content strong,
.people-listing .people-item .people-item--content span {
  display: block;
}
.people-listing .people-item .people-item--content strong {
  color: #303030;
  margin-bottom: 10px;
}
.people-listing .people-item:hover {
  transform: scale(1.025);
}
@media (max-width: 768px) {
  .people-listing .people-item {
    margin-bottom: 42px;
  }
}
@media (max-width: 768px) {
  .people-listing .g25 {
    width: 33.33333333%;
  }
}
@media (max-width: 736px) {
  .people-listing .g25 {
    width: 100%;
  }
}
.people-filter ul {
  display: block;
  text-align: center;
}
.people-filter ul li {
  display: inline-block;
}
.people-filter label,
.people-filter a {
  display: inline-block;
  padding: 5px 10px;
  width: 100%;
}
.people-filter label span,
.people-filter a span {
  position: relative;
  display: inline-block;
  min-width: auto;
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 18px;
  padding: 0 32px;
  text-transform: uppercase;
  cursor: pointer;
  color: #303030;
  background: transparent;
  border: 1px solid transparent;
}
.people-filter label input[type=radio],
.people-filter a input[type=radio] {
  display: none;
}
.people-filter label input[type=radio]:checked + span,
.people-filter a input[type=radio]:checked + span {
  border-color: #303030;
}
.people-filter label.active span,
.people-filter a.active span {
  border-color: #303030;
}
.philanthopy-flexible-content {
  position: relative;
  margin: 0 0 100px;
}
.philanthopy-banner {
  position: relative;
  padding: 140px 0 120px;
}
.philanthopy-banner h1 {
  font-size: 54px;
  margin: 0 0 36px;
}
.philanthopy-banner p {
  max-width: 1000px;
  margin: 20px 0 0;
}
.philanthopy-banner p:first-of-type {
  font-size: 26px;
  line-height: 1.2;
  color: #0c0c0e;
}
.philanthopy-accordion {
  margin: 120px 0 0;
}
.philanthopy-accordion h2 {
  font-size: 36px;
}
.philanthopy-accordion .items {
  margin: 40px 0 0;
}
.philanthopy-accordion .item {
  background: #cfb054;
  border-radius: 10px;
}
.philanthopy-accordion .item:nth-child(n+2) {
  margin: 18px 0 0;
}
.philanthopy-accordion .item[open] i {
  transform: rotate(45deg);
}
.philanthopy-accordion summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 28px 24px;
}
@media (max-width: 768px) {
  .philanthopy-accordion summary {
    display: block;
  }
}
.philanthopy-accordion summary h3 {
  font-size: 28px;
}
.philanthopy-accordion summary p {
  font-size: 18px;
  color: #ffffff;
  width: 700px;
  margin: 0 72px 0 0;
}
@media (max-width: 768px) {
  .philanthopy-accordion summary p {
    width: auto;
    margin: 12px 48px 0 0;
  }
}
.philanthopy-accordion .detail {
  padding: 0 24px 36px;
  margin: -12px 0 0;
}
.philanthopy-accordion .detail .detail-inner {
  width: 700px;
  margin: 0 72px 0 auto;
}
@media (max-width: 768px) {
  .philanthopy-accordion .detail .detail-inner {
    width: auto;
    margin: 0;
  }
}
.philanthopy-accordion .detail p {
  font-size: 26px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}
.philanthopy-accordion i {
  position: absolute;
  top: calc(50% - 12px);
  right: 24px;
  width: 24px;
  height: 24px;
  transition: transform 0.4s;
}
.philanthopy-accordion i:before, .philanthopy-accordion i:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border: 1px solid #ffffff;
}
.philanthopy-accordion i:after {
  transform: rotate(90deg);
}
.philanthopy-strip {
  position: relative;
  margin: 48px 0 0;
  text-align: center;
}
.philanthopy-strip .inner {
  border-radius: 10px;
  background-color: #0c0c0e;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/bg--diamonds-dark.png), url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/bg--diamonds-dark.png);
  background-size: 60px auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px;
}
.philanthopy-strip h2 {
  font-size: 28px;
  color: #ffffff;
}
.philanthopy-strip p {
  font-size: 18px;
  color: #ffffff;
  margin: 20px 0 0;
}
.philanthopy-panels {
  position: relative;
  margin: 100px 0 0;
}
.philanthopy-panels .intro h2 {
  font-size: 28px;
  margin: 0 0 18px;
}
.philanthopy-panels .intro p {
  color: #0c0c0e;
  margin: 0;
}
.philanthopy-panels .intro p:nth-of-type(n+2) {
  margin: 6px 0 0;
}
.philanthopy-panels .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 36px 0 0;
}
.philanthopy-panels .item {
  width: calc(25% - 15px);
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 24px 12px;
}
@media (max-width: 768px) {
  .philanthopy-panels .item {
    width: 100%;
  }
  .philanthopy-panels .item:nth-child(n+2) {
    margin: 10px 0 0;
  }
}
.philanthopy-panels .item h2 {
  font-size: 36px;
  margin: 0 0 24px;
}
.philanthopy-panels .item img {
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 140px;
  border-radius: 6px;
  margin: 0 0 24px;
}
.philanthopy-panels .item p {
  font-size: 16px;
  margin: 0 0 12px;
}
.philanthopy-carousel {
  position: relative;
  margin: 100px 0 0;
  overflow: hidden;
}
.philanthopy-carousel h2 {
  font-size: 36px;
  text-align: center;
}
.philanthopy-carousel .parent {
  margin: 40px 0 0;
}
.philanthopy-carousel .flickity-viewport {
  overflow: visible;
}
.philanthopy-carousel .step {
  background: #0c0c0e;
  width: 800px;
  height: auto;
  padding: 24px;
  color: #fff;
  margin: 0 20px 0 0;
  display: flex;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .philanthopy-carousel .step {
    display: block;
    width: 400px;
    margin: 0 10px 0 0;
  }
}
.philanthopy-carousel .step .image {
  width: 290px;
}
@media (max-width: 768px) {
  .philanthopy-carousel .step .image {
    width: 100%;
  }
}
.philanthopy-carousel .step .image img {
  width: 290px;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .philanthopy-carousel .step .image img {
    width: 100%;
  }
}
.philanthopy-carousel .step .content {
  width: calc(100% - 290px);
  padding: 0 0 0 36px;
}
@media (max-width: 768px) {
  .philanthopy-carousel .step .content {
    width: 100%;
    padding: 0;
    margin: 20px 0 0;
  }
}
.philanthopy-carousel .step h3 {
  font-size: 28px;
  color: #ffffff;
}
.philanthopy-carousel .step p {
  font-size: 16px;
  margin: 15px 0 0;
}
.philanthopy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px auto 0;
  width: calc(100% - 24px);
  max-width: 900px;
  text-align: center;
}
.philanthopy-content h2 {
  font-size: 36px;
}
.philanthopy-content .content {
  margin: 24px 0 0;
}
.philanthopy-content .content p {
  color: #0c0c0e;
  margin: 0;
}
.philanthopy-content .content p:nth-child(n+2) {
  margin: 12px 0 0;
}
.philanthopy-content .btn, .philanthopy-content .serviceAction__form [type=submit], .serviceAction__form .philanthopy-content [type=submit], .philanthopy-content .contact__form [type=submit], .contact__form .philanthopy-content [type=submit], .philanthopy-content .aboutAction__form [type=submit], .aboutAction__form .philanthopy-content [type=submit], .philanthopy-content .popup-form [type=submit], .popup-form .philanthopy-content [type=submit], .philanthopy-content .slideout-form [type=submit], .slideout-form .philanthopy-content [type=submit], .philanthopy-content .wpcf7-form button, .wpcf7-form .philanthopy-content button,
.philanthopy-content .wpcf7-form [type=submit],
.wpcf7-form .philanthopy-content [type=submit], .philanthopy-content [data-form-block-id] form button, [data-form-block-id] form .philanthopy-content button, .philanthopy-content .newsletter__form [type=submit], .newsletter__form .philanthopy-content [type=submit] {
  margin: 36px 0 0;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #cfb054 !important;
}
[data-status=sent] p {
  display: none;
}
[data-status=sent] .wpcf7-response-output {
  font-size: 32px !important;
}
.slideout-form-container {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .slideout-form-container {
    position: relative;
  }
}
.slideout-form {
  position: absolute;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: auto;
  z-index: 900;
  top: -60px;
  right: 0;
  padding: 40px;
  background-color: #cfb054;
  color: #fff;
  max-width: 520px;
  width: 100%;
  transform: translateY(-200%);
  transition: transform 1500ms ease;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
@media (max-width: 1024px) {
  .slideout-form {
    top: 0;
  }
}
.slideout-form.active {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow-y: scroll;
}
.slideout-form .h3, .slideout-form .peopleHead__content p, .peopleHead__content .slideout-form p, .slideout-form .homeAction__content p, .homeAction__content .slideout-form p, .slideout-form .awardsHead__content p, .awardsHead__content .slideout-form p, .slideout-form .editor blockquote, .editor .slideout-form blockquote {
  color: inherit;
  margin-bottom: 14px;
}
.slideout-form p {
  display: block;
  margin-bottom: 6px;
}
.slideout-form label {
  display: block;
}
.slideout-form br {
  display: none;
}
.slideout-form .wpcf7-spinner {
  display: none;
}
.slideout-form [type=text],
.slideout-form [type=email],
.slideout-form [type=tel],
.slideout-form select,
.slideout-form textarea {
  border-color: #fff;
  background-color: #fff;
}
.slideout-form textarea {
  height: 150px;
}
.slideout-form [type=submit] {
  color: #fff !important;
  background-color: #0c0c0e !important;
  margin-bottom: 0;
  margin: 5px 0 0;
}
@media (max-width: 736px) {
  .slideout-form {
    position: initial;
  }
}
.popup-form {
  position: fixed;
  top: 40px;
  left: 40px;
  right: 0;
  bottom: 40px;
  overflow-y: scroll;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000;
  padding: 40px 20px;
  background-color: #fff;
  color: #303030;
  max-width: 480px;
  width: 100%;
  height: auto;
  transition: transform 500ms ease;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 736px) {
  .popup-form {
    max-width: 320px;
  }
}
.popup-form[data-popup=newsletter], .popup-form[data-popup=service-download], .popup-form[data-popup=register-interest], .popup-form[data-popup=event-form] {
  padding: 30px 20px 10px;
  top: 50vh;
  overflow: visible;
  transform: translateY(-50%);
  bottom: auto;
  border-radius: 10px;
  left: 0;
  box-shadow: 0 3px 8px rgba(58, 58, 58, 0.2);
}
.popup-form[data-popup=newsletter] h2, .popup-form[data-popup=service-download] h2, .popup-form[data-popup=register-interest] h2, .popup-form[data-popup=event-form] h2 {
  font-size: 28px;
  margin: 0 0 20px;
}
.popup-form[data-popup=newsletter] .wpcf7-spinner, .popup-form[data-popup=service-download] .wpcf7-spinner, .popup-form[data-popup=register-interest] .wpcf7-spinner, .popup-form[data-popup=event-form] .wpcf7-spinner {
  display: none;
}
.popup-form[data-popup=newsletter] .wpcf7-response-output, .popup-form[data-popup=service-download] .wpcf7-response-output, .popup-form[data-popup=register-interest] .wpcf7-response-output, .popup-form[data-popup=event-form] .wpcf7-response-output {
  padding: 0;
  font-size: 18px;
  color: #fb6969;
}
.popup-form[data-popup=newsletter] .wpcf7-not-valid-tip + .wpcf7-not-valid-tip, .popup-form[data-popup=service-download] .wpcf7-not-valid-tip + .wpcf7-not-valid-tip, .popup-form[data-popup=register-interest] .wpcf7-not-valid-tip + .wpcf7-not-valid-tip, .popup-form[data-popup=event-form] .wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
  display: none;
}
.popup-form[data-popup=newsletter] .wpcf7-form .wpcf7-list-item, .popup-form[data-popup=service-download] .wpcf7-form .wpcf7-list-item, .popup-form[data-popup=register-interest] .wpcf7-form .wpcf7-list-item, .popup-form[data-popup=event-form] .wpcf7-form .wpcf7-list-item {
  margin-bottom: 5px;
}
.popup-form[data-popup=newsletter] .close, .popup-form[data-popup=service-download] .close, .popup-form[data-popup=register-interest] .close, .popup-form[data-popup=event-form] .close {
  position: absolute;
  background: #cfb054;
  top: -11px;
  right: -11px;
  line-height: 34px;
  width: 34px;
  height: 34px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 80px;
  color: #ffffff;
}
.popup-form[data-popup=service-download] {
  padding: 30px 20px 10px;
}
.popup-form[data-popup=service-download] .wpcf7-response-output {
  padding: 0 0 20px;
}
.popup-form.active {
  opacity: 1;
  visibility: visible;
}
.popup-form .close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #8e8e9a;
  display: inline-block;
  cursor: pointer;
}
.popup-form .h3, .popup-form .peopleHead__content p, .peopleHead__content .popup-form p, .popup-form .homeAction__content p, .homeAction__content .popup-form p, .popup-form .awardsHead__content p, .awardsHead__content .popup-form p, .popup-form .editor blockquote, .editor .popup-form blockquote {
  color: inherit;
  margin-bottom: 20px;
  text-align: center;
}
.popup-form [type=text],
.popup-form [type=email],
.popup-form [type=tel],
.popup-form select,
.popup-form textarea {
  border-color: #8e8e9a;
  background-color: transparent;
}
.popup-form textarea {
  height: 150px;
}
.popup-form [type=submit] {
  color: #fff;
  background-color: #cfb054;
  margin: 0 auto;
}
.popup-form [type=submit]:hover {
  color: #fff;
  background-color: #303030;
  border-color: #303030;
}
.popup-form .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
}
.page-events .popup-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item:nth-child(3), .single-events .popup-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item:nth-child(3) {
  order: -1;
}
.showreel-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000;
  padding: 40px 20px;
  background-color: rgba(48, 48, 48, 0.9);
  color: #303030;
  width: 100%;
  height: auto;
  transition: transform 500ms ease;
  opacity: 0;
  visibility: hidden;
}
.showreel-modal.active {
  opacity: 1;
  visibility: visible;
}
.showreel-modal .close {
  position: relative;
  display: block;
  text-align: right;
  padding-bottom: 4px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.showreel-modal .fullVideo {
  padding: 248px 0;
}
@media (max-width: 768px) {
  .showreel-modal .fullVideo {
    padding: 124px 0;
  }
}
@media (max-width: 736px) {
  .showreel-modal .fullVideo {
    padding: 22px 0;
  }
}
.showreel-modal .fullVideo.full-iframe {
  padding: 56.25% 0 0 0;
}
.showreel-modal .container--slim {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.ie-support-wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.ie .ie-support-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.ie-support {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
  max-width: 1195px;
  width: 100%;
  margin: 0 auto;
  padding: 101px 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .ie-support {
    position: relative;
    overflow-y: scroll;
    height: 600px;
    width: 600px;
    padding: 70px 40px;
  }
}
@media (max-width: 736px) {
  .ie-support {
    height: 600px;
    width: 300px;
  }
}
.ie-support__header {
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.ie-support__header p {
  font-size: 30px;
  line-height: 38px;
}
@media (max-width: 736px) {
  .ie-support__header p {
    font-size: 16px;
    line-height: 24px;
  }
}
.ie-support__header strong {
  color: #303030;
}
.ie-support__close {
  position: absolute;
  display: block;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.ie-support__footer {
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.ie-support__footer a {
  text-decoration: underline;
}
.ie-support__footer a:hover {
  text-decoration: none;
}
.ie-support__options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  padding: 40px 0 72px 0;
}
.ie-support__option {
  width: 25%;
  text-align: center;
}
@media (max-width: 1024px) {
  .ie-support__option {
    width: 50%;
    padding: 20px 0;
  }
}
@media (max-width: 736px) {
  .ie-support__option {
    width: 100%;
  }
}
.ie-support__option strong {
  font-family: "Graphik Bold Web", sans-serif;
  color: #303030;
  display: block;
  margin-bottom: 26px;
}
.ie-support__option svg {
  width: 93px;
  height: 93px;
  margin-bottom: 24px;
}
.ie-support__option img {
  width: 93px;
  height: auto;
  margin-bottom: 24px;
}
.ie-support__option .btn, .ie-support__option .serviceAction__form [type=submit], .serviceAction__form .ie-support__option [type=submit], .ie-support__option .contact__form [type=submit], .contact__form .ie-support__option [type=submit], .ie-support__option .aboutAction__form [type=submit], .aboutAction__form .ie-support__option [type=submit], .ie-support__option .wpcf7-form button, .wpcf7-form .ie-support__option button,
.ie-support__option .wpcf7-form [type=submit],
.wpcf7-form .ie-support__option [type=submit], .ie-support__option [data-form-block-id] form button, [data-form-block-id] form .ie-support__option button, .ie-support__option .newsletter__form [type=submit], .newsletter__form .ie-support__option [type=submit], .ie-support__option .slideout-form [type=submit], .slideout-form .ie-support__option [type=submit], .ie-support__option .popup-form [type=submit], .popup-form .ie-support__option [type=submit] {
  border-color: #8E8E9A;
  color: #8E8E9A;
  font-size: 12px;
  max-width: 215px;
  padding: 18px 18px;
}
.ie-support__option .btn:hover, .ie-support__option .serviceAction__form [type=submit]:hover, .serviceAction__form .ie-support__option [type=submit]:hover, .ie-support__option .contact__form [type=submit]:hover, .contact__form .ie-support__option [type=submit]:hover, .ie-support__option .aboutAction__form [type=submit]:hover, .aboutAction__form .ie-support__option [type=submit]:hover, .ie-support__option .wpcf7-form button:hover, .wpcf7-form .ie-support__option button:hover,
.ie-support__option .wpcf7-form [type=submit]:hover,
.wpcf7-form .ie-support__option [type=submit]:hover, .ie-support__option [data-form-block-id] form button:hover, [data-form-block-id] form .ie-support__option button:hover, .ie-support__option .newsletter__form [type=submit]:hover, .newsletter__form .ie-support__option [type=submit]:hover, .ie-support__option .slideout-form [type=submit]:hover, .slideout-form .ie-support__option [type=submit]:hover, .ie-support__option .popup-form [type=submit]:hover, .popup-form .ie-support__option [type=submit]:hover {
  background: #303030;
  border-color: #303030;
  color: #fff;
}
.postPreview {
  display: block;
}
.postPreview img {
  display: block;
  margin-bottom: 20px;
}
.postPreview h3 {
  margin-bottom: 17px;
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 21px;
}
.postPreview p {
  font-family: "Graphik Medium Web", sans-serif;
  margin-bottom: 17px;
  font-size: 16px;
}
.postPreview__meta {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}
.relatedServices {
  padding-top: 150px;
  padding-bottom: 90px;
}
@media (min-width: 769px) {
  .relatedServices .center-btn {
    display: none;
  }
}
@media (max-width: 736px) {
  .relatedServices {
    padding-top: 117px;
  }
}
.relatedServices__head {
  position: relative;
  display: block;
  margin-bottom: 38px;
}
.relatedServices__head h2 {
  text-align: center;
}
.relatedServices__head a {
  position: absolute;
  right: 0;
  top: auto;
  bottom: 11px;
}
@media (max-width: 736px) {
  .relatedServices__head a {
    display: none;
  }
}
.relatedServices__block {
  position: relative;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.relatedServices__block img {
  position: relative;
  margin-bottom: 10px;
}
.relatedServices__block h3 {
  color: #303030;
  font-weight: 500;
  margin-bottom: 17px;
  display: block;
}
.relatedServices__block span {
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
}
.relatedServices__block a {
  font-size: 14px;
  font-weight: 900;
}
.serviceBlocks {
  padding-bottom: 35px;
}
@media (max-width: 736px) {
  .serviceBlocks {
    padding-top: 0;
  }
}
@media (min-width: 769px) {
  .serviceBlocks .center-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .serviceBlocks .g33 {
    margin-bottom: 20px;
  }
}
.serviceBlocks__head {
  margin-bottom: 62px;
  position: relative;
}
.serviceBlocks__head h2 {
  text-align: center;
  font-size: 30px;
  line-height: 38px;
}
.serviceBlocks__head a {
  position: absolute;
  bottom: 7px;
  right: 0;
}
@media (max-width: 768px) {
  .serviceBlocks__head a {
    display: none;
  }
}
.serviceBlocks__block {
  position: relative;
  background-color: #E6E6E6;
  border: 2px solid #8e8e9a;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.serviceBlocks__block span {
  position: absolute;
  right: 20px;
  bottom: 0;
  height: 166px;
}
@media (max-width: 736px) {
  .serviceBlocks__block span {
    height: 120px;
  }
}
.serviceBlocks__block img {
  max-height: 100%;
  width: auto;
}
.serviceBlocks__block h3 {
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  color: #8e8e9a;
}
.serviceBlocks__block p {
  margin-bottom: 80px;
  width: 100%;
}
@media (max-width: 736px) {
  .serviceBlocks__block p {
    margin-bottom: 68px;
  }
}
.serviceBlocks__block a {
  color: #8e8e9a;
  width: 100%;
  margin-bottom: 17px;
}
.serviceBlocks__block ul {
  margin-bottom: 43px;
}
@media (max-width: 768px) {
  .serviceBlocks__block ul {
    margin-bottom: 20px;
  }
}
.serviceBlocks__block li {
  margin-bottom: 19px;
}
@media (max-width: 736px) {
  .serviceBlocks__block li {
    margin-bottom: 8px;
  }
}
.service-video-tabbed-content {
  background: #fff;
  padding: 100px 0;
}
.service-video-tabbed-content .upper {
  text-align: center;
  max-width: 950px;
  width: calc(100% - 40px);
  margin: 0 auto 80px;
}
.service-video-tabbed-content .upper h2 {
  margin-bottom: 36px;
}
.service-video-tabbed-content .upper p {
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 736px) {
  .service-video-tabbed-content .upper p {
    font-size: 16px;
  }
}
.service-video-tabbed-content .lower[data-current-tab="1"] [data-tab="1"] {
  background: #cfb054;
  color: #fff;
}
.service-video-tabbed-content .lower[data-current-tab="1"] [data-window="1"] {
  display: block;
}
.service-video-tabbed-content .lower[data-current-tab="2"] [data-tab="2"] {
  background: #cfb054;
  color: #fff;
}
.service-video-tabbed-content .lower[data-current-tab="2"] [data-window="2"] {
  display: block;
}
.service-video-tabbed-content .lower[data-current-tab="3"] [data-tab="3"] {
  background: #cfb054;
  color: #fff;
}
.service-video-tabbed-content .lower[data-current-tab="3"] [data-window="3"] {
  display: block;
}
.service-video-tabbed-content .lower[data-current-tab="4"] [data-tab="4"] {
  background: #cfb054;
  color: #fff;
}
.service-video-tabbed-content .lower[data-current-tab="4"] [data-window="4"] {
  display: block;
}
.service-video-tabbed-content .lower[data-current-tab="5"] [data-tab="5"] {
  background: #cfb054;
  color: #fff;
}
.service-video-tabbed-content .lower[data-current-tab="5"] [data-window="5"] {
  display: block;
}
.service-video-tabbed-content .lower[data-current-tab="6"] [data-tab="6"] {
  background: #cfb054;
  color: #fff;
}
.service-video-tabbed-content .lower[data-current-tab="6"] [data-window="6"] {
  display: block;
}
.service-video-tabbed-content .tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1010px;
  width: calc(100% - 40px);
  background: rgba(216, 216, 216, 0.3);
  border-radius: 26px;
  padding: 0;
  margin: 0 auto;
  overflow: auto;
}
@media (min-width: 768px) {
  .service-video-tabbed-content .tabs {
    flex-direction: row;
  }
}
@media (max-width: 736px) {
  .service-video-tabbed-content .tabs {
    background: transparent;
  }
}
.service-video-tabbed-content .tab {
  flex: 1;
  font-size: 18px;
  color: #8E8E9A;
  cursor: pointer;
  display: inline-block;
  transition: 0.15s linear;
  line-height: 1;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  padding: 16px 22px;
  border-radius: 26px;
  outline: 0;
  text-decoration: none;
}
@media (max-width: 768px) {
  .service-video-tabbed-content .tab {
    font-size: 18px;
  }
}
@media (max-width: 736px) {
  .service-video-tabbed-content .tab {
    width: 100%;
    background: rgba(216, 216, 216, 0.3);
    margin: 5px 0;
  }
}
.service-video-tabbed-content .windows {
  width: calc(100% - 40px);
  max-width: 900px;
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  .service-video-tabbed-content .windows {
    margin: 80px auto 0;
  }
}
.service-video-tabbed-content .window {
  display: none;
}
.service-video-tabbed-content .window-inner.has-image {
  display: block;
}
@media (min-width: 768px) {
  .service-video-tabbed-content .window-inner.has-image {
    display: flex;
    align-items: flex-start;
  }
}
.service-video-tabbed-content .window-inner.has-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .service-video-tabbed-content .window-inner.has-image img {
    width: 280px;
    margin: 0 40px 0 0;
  }
}
.share-horizontal h2 {
  font-size: 18px;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}
.center-social .share-horizontal h2 {
  text-align: center;
}
.share-horizontal .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.center-social .share-horizontal .buttons {
  justify-content: center;
}
.share-horizontal .button {
  display: block;
  padding: 10px;
  color: #303030;
  margin: 0 5px;
}
.share-horizontal .button.mobile-only {
  display: none;
}
@media (max-width: 736px) {
  .share-horizontal .button.mobile-only {
    display: block;
  }
}
.single-events .share-horizontal .button {
  color: #FFFFFF;
}
.share-horizontal .button:hover {
  color: #cfb054;
}
.share {
  display: flex;
}
.share a {
  margin: 16px;
  color: #303030;
}
.single-events .share a {
  color: #FFFFFF;
}
.share a:hover {
  color: #cfb054;
}
.testimonial-carousel {
  position: relative;
}
@media (max-width: 812px) {
  .testimonial-carousel {
    background-color: #5E56A4;
  }
}
.testimonial-carousel .flickity-page-dots {
  position: relative;
  bottom: 70px;
  z-index: 2;
  text-align: left;
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 812px) {
  .testimonial-carousel .flickity-page-dots {
    position: absolute;
    padding: 0 30px;
    bottom: 15px;
  }
}
@media (max-width: 736px) {
  .testimonial-carousel .flickity-page-dots {
    padding: 0 20px;
    bottom: 10px;
  }
}
.testimonial-carousel .dot {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/icon--dot.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 13px;
  height: 15px;
  margin: 0 6px;
  opacity: 1;
}
.testimonial-carousel .dot.is-selected, .testimonial-carousel .dot:hover {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/icon--dot-active.svg);
}
.testimonial-carousel--slide {
  position: relative;
  width: 100%;
  height: 520px;
}
@media (max-width: 812px) {
  .testimonial-carousel--slide {
    height: auto;
  }
  .testimonial-carousel--slide .container--slim {
    padding: 0;
  }
}
@media (max-width: 812px) {
  .testimonial-carousel--slide .testimonial-carousel--img {
    position: relative;
    height: 400px;
  }
}
@media (max-width: 736px) {
  .testimonial-carousel--slide .testimonial-carousel--img {
    height: 293px;
  }
}
.testimonial-carousel--slide .testimonial-carousel--img img {
  position: absolute;
  top: 0;
  left: 0;
}
.testimonial-carousel--slide .icon-quote {
  position: relative;
  top: 50px;
  left: -50px;
  mix-blend-mode: soft-light;
  display: inline-block;
  opacity: 0.4;
  width: 70px;
  height: 70px;
}
@media (max-width: 1260px) {
  .testimonial-carousel--slide .icon-quote {
    left: -10px;
  }
}
@media (max-width: 812px) {
  .testimonial-carousel--slide .icon-quote {
    top: 20px;
    left: -10px;
    width: 40px;
    height: 40px;
    display: none;
  }
}
.testimonial-carousel--slide .icon-quote svg {
  width: 100%;
  height: 100%;
}
.testimonial-carousel--slide .icon-quote svg path {
  stroke: #fff;
}
.testimonial-carousel--slide .icon-quote--reverse {
  position: absolute;
  mix-blend-mode: soft-light;
  bottom: 40px;
  right: 0;
}
@media (max-width: 812px) {
  .testimonial-carousel--slide .icon-quote--reverse {
    width: 40px;
    height: 40px;
  }
}
.testimonial-carousel--slide .icon-quote--reverse svg {
  width: 100%;
}
@media (max-width: 812px) {
  .testimonial-carousel--slide .icon-quote--reverse svg path {
    stroke: #fff;
  }
}
.testimonial-carousel--content {
  position: absolute;
  bottom: 100px;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .testimonial-carousel--content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 812px) {
  .testimonial-carousel--content {
    position: relative;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    padding-top: 36px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
    max-width: none;
  }
}
@media (max-width: 736px) {
  .testimonial-carousel--content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.testimonial-carousel--content .quote {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  max-width: 705px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 812px) {
  .testimonial-carousel--content .quote {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
  }
}
.testimonial-carousel--content .author {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 812px) {
  .testimonial-carousel--content .author {
    font-size: 22px;
    line-height: 1;
  }
}
.testimonialPreview {
  display: block;
}
.testimonialPreview img {
  display: block;
}
.testimonialPreview h3 {
  margin-bottom: 17px;
}
.testimonialPreview p {
  font-family: "Graphik Medium Web", sans-serif;
  margin-bottom: 17px;
}
.testimonialPreview__meta {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonialImg {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 23px;
}
.testimonialImg img {
  display: block;
  width: 100%;
}
.testimonialImg::after {
  position: absolute;
  content: "";
  z-index: 5;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--play.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 28px;
  background-color: rgba(225, 225, 225, 0.5);
}
@media (max-width: 736px) {
  .testimonialImg::after {
    width: 75px;
    height: 75px;
  }
}
.testimonialImg.no-vid::after {
  display: none;
}
.testimonials {
  padding-top: 150px;
  padding-bottom: 90px;
}
@media (max-width: 736px) {
  .testimonials {
    padding-top: 39px;
  }
}
.testimonials.long {
  padding-top: 100px;
}
@media (max-width: 736px) {
  .testimonials.long {
    padding-top: 77px;
  }
}
.testimonials.long .testimonials__head {
  position: relative;
  display: block;
  text-align: center;
}
.testimonials.long .testimonials__head a {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 11px;
}
@media (max-width: 768px) {
  .testimonials.long .g33:last-of-type {
    display: none;
  }
}
@media (max-width: 736px) {
  .testimonials.long .g33:last-of-type {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .testimonials .g__col, .testimonials .newsletter__form p > span, .newsletter__form .testimonials p > span {
    width: 50%;
  }
}
@media (max-width: 736px) {
  .testimonials .g__col, .testimonials .newsletter__form p > span, .newsletter__form .testimonials p > span {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .testimonials .center-btn {
    display: none;
  }
}
.testimonials__head {
  margin-bottom: 38px;
}
@media (max-width: 768px) {
  .testimonials__head {
    text-align: center;
    align-items: center;
  }
}
.testimonials__head a {
  position: relative;
  top: -7px;
}
@media (max-width: 768px) {
  .testimonials__head a {
    display: none;
  }
}
.testimonials__block {
  height: 460px;
  position: relative;
  padding: 20px 30px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .testimonials__block {
    height: 191px;
  }
}
.testimonials__block img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 736px) {
  .g30 {
    display: none;
  }
}
.g33 .testimonials__block {
  height: 257px;
}
.testimonials__content {
  position: relative;
  color: #fff;
  max-width: 430px;
}
@media (max-width: 736px) {
  .testimonials__content {
    display: none;
  }
}
.testimonials__content i {
  margin-bottom: 14px;
}
.testimonials__block:hover .testimonials__content i {
  background-color: #cfb054;
}
.testimonials__content h3 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 13px;
}
.testimonials__content span {
  font-weight: 400;
}
.testimonials__block-content {
  display: block;
  margin-top: 20px;
}
.testimonials__block-content h3 {
  margin-bottom: 13px;
}
.testimonials__block-content span {
  font-size: 18px;
  line-height: 1.56;
}
@media (max-width: 768px) {
  .testimonials__block-content span {
    display: none;
  }
}
.testimonials__block-content strong {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.56;
  font-weight: 400;
  color: #303030;
}
@media (max-width: 768px) {
  .testimonials__block-content strong {
    display: none;
  }
}
.values {
  padding-top: 103px;
  padding-bottom: 103px;
  background-color: #fff;
  overflow: unset;
}
.values h2 {
  font-size: 18px;
  color: #8e8e9a;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 400;
}
@media (max-width: 736px) {
  .values h2 {
    padding: 0 20px;
  }
}
.values .values-content {
  position: relative;
  height: 580px;
}
.values .values-content.is-scrolling {
  overflow-y: auto;
}
.values .values-content .value-options {
  position: absolute;
  height: 100%;
  width: 40%;
  display: inline-block;
  padding: 0;
  margin: 0;
}
@media (max-width: 736px) {
  .values .values-content .value-options {
    width: 100%;
  }
}
@media (max-width: 736px) {
  .values .values-content .value-options {
    position: relative;
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.values .values-content .value-options li {
  padding: 20px 0;
}
@media (max-width: 1200px) {
  .values .values-content .value-options li {
    padding: 15px 0;
  }
}
@media (max-width: 736px) {
  .values .values-content .value-options li {
    padding: 5px 0;
  }
}
.values .values-content .value-options li strong {
  font-family: "Graphik Bold Web", sans-serif;
  line-height: 70px;
  font-size: 45px;
  display: block;
  cursor: pointer;
  color: #8e8e9a;
}
@media (max-width: 1200px) {
  .values .values-content .value-options li strong {
    font-size: 36px;
    line-height: 56px;
  }
}
@media (max-width: 736px) {
  .values .values-content .value-options li strong {
    font-size: 30px;
    line-height: 38px;
  }
}
.values .values-content .value-options li strong.swiper-pagination-bullet-active {
  color: #303030;
}
.values .values-content .value-options li span {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 22px;
}
@media (max-width: 1200px) {
  .values .values-content .value-options li span {
    font-size: 18px;
  }
}
@media (max-width: 736px) {
  .values .values-content .value-options li span {
    font-size: 18px;
  }
}
.values .values-content .value-wrapper,
.values .values-content .swiper-wrapper {
  width: 60%;
  float: right;
}
@media (max-width: 736px) {
  .values .values-content .value-wrapper,
  .values .values-content .swiper-wrapper {
    width: 100%;
    float: none;
    height: 293px;
    bottom: 0;
    position: absolute;
  }
  .values .values-content .value-wrapper .value-slide,
  .values .values-content .value-wrapper .swiper-slide,
  .values .values-content .swiper-wrapper .value-slide,
  .values .values-content .swiper-wrapper .swiper-slide {
    height: 100% !important;
  }
}
.values .values-content .value-slide {
  position: relative;
  height: 100%;
  border: 1px solid red;
}
.values .values-content .value-slide img {
  width: auto;
  height: 100%;
}
.swiper-container {
  width: 100%;
  height: 552px;
}
@media (max-width: 736px) {
  .swiper-container {
    height: auto;
    height: 293px;
  }
}
.swiper-container img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lock {
  overflow: hidden;
}
.values-tabs {
  background: #fff;
  padding-top: 58px;
}
.values-tabs__header {
  text-align: center;
  max-width: 950px;
  width: 100%;
  margin: 0 auto 80px auto;
}
.values-tabs__header h2 {
  margin-bottom: 52px;
}
.values-tabs__header p {
  font-size: 27px;
  line-height: 1.27;
}
@media (max-width: 736px) {
  .values-tabs__header p {
    font-size: 18px;
    line-height: 24px;
  }
}
.values-tabs__header p strong {
  color: #303030;
  font-weight: 400;
}
.values-tabs .tabs {
  position: relative;
}
.values-tabs .tabs__list {
  display: block;
  max-width: 1010px;
  width: 100%;
  background: rgba(216, 216, 216, 0.3);
  border-radius: 26px;
  padding: 0;
  margin: 0 auto;
  overflow: auto;
}
@media (max-width: 736px) {
  .values-tabs .tabs__list {
    background: transparent;
  }
}
.values-tabs .tabs__li {
  float: left;
  width: 25%;
  padding: 0;
}
@media (max-width: 736px) {
  .values-tabs .tabs__li {
    float: none;
    width: 100%;
  }
}
.values-tabs .tabs__btn {
  font-size: 21px;
  color: #8E8E9A;
  width: 100%;
  cursor: pointer;
  display: inline-block;
  transition: 0.15s linear;
  line-height: 1;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  padding: 17px 64px;
  border-radius: 26px;
  outline: 0;
  text-decoration: none;
}
@media (max-width: 768px) {
  .values-tabs .tabs__btn {
    font-size: 18px;
    padding: 17px 30px;
  }
}
@media (max-width: 736px) {
  .values-tabs .tabs__btn {
    background: rgba(216, 216, 216, 0.3);
    margin: 10px 0;
  }
}
.values-tabs .tabs__btn.is-active {
  background: #cfb054;
  color: #fff;
}
.values-tabs .tabs__content {
  padding: 112px 0;
}
@media (max-width: 736px) {
  .values-tabs .tabs__content {
    padding: 66px 0;
  }
}
@media (max-width: 768px) {
  .values-tabs .tabs__content .g40 {
    width: 50%;
  }
}
@media (max-width: 736px) {
  .values-tabs .tabs__content .g40 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .values-tabs .tabs__content .col-offset--10 {
    margin-left: 0;
  }
}
.values-tabs .tabs__content .btn, .values-tabs .tabs__content .serviceAction__form [type=submit], .serviceAction__form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .contact__form [type=submit], .contact__form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .aboutAction__form [type=submit], .aboutAction__form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .wpcf7-form button, .wpcf7-form .values-tabs .tabs__content button,
.values-tabs .tabs__content .wpcf7-form [type=submit],
.wpcf7-form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content [data-form-block-id] form button, [data-form-block-id] form .values-tabs .tabs__content button, .values-tabs .tabs__content .newsletter__form [type=submit], .newsletter__form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .slideout-form [type=submit], .slideout-form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .popup-form [type=submit], .popup-form .values-tabs .tabs__content [type=submit] {
  margin-top: 58px;
}
@media (max-width: 736px) {
  .values-tabs .tabs__content .btn, .values-tabs .tabs__content .serviceAction__form [type=submit], .serviceAction__form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .contact__form [type=submit], .contact__form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .aboutAction__form [type=submit], .aboutAction__form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .wpcf7-form button, .wpcf7-form .values-tabs .tabs__content button,
  .values-tabs .tabs__content .wpcf7-form [type=submit],
  .wpcf7-form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content [data-form-block-id] form button, [data-form-block-id] form .values-tabs .tabs__content button, .values-tabs .tabs__content .newsletter__form [type=submit], .newsletter__form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .slideout-form [type=submit], .slideout-form .values-tabs .tabs__content [type=submit], .values-tabs .tabs__content .popup-form [type=submit], .popup-form .values-tabs .tabs__content [type=submit] {
    margin-top: 51px;
  }
}
@media (max-width: 736px) {
  .values-tabs .tabs__content img {
    margin-bottom: 21px;
  }
}
.venn {
  position: relative;
  padding-top: 135px;
  padding-bottom: 165px;
}
@media (max-width: 768px) {
  .venn {
    padding-top: 84px;
    padding-bottom: 80px;
  }
}
.venn p {
  font-size: 22px;
  line-height: 1.27;
  margin-bottom: 30px;
}
@media (max-width: 736px) {
  .venn p {
    font-size: 18px;
    line-height: 24px;
  }
}
.venn strong {
  color: #0c0c0e;
  font-weight: 500;
}
.venn a.btn, .venn .serviceAction__form a[type=submit], .serviceAction__form .venn a[type=submit], .venn .contact__form a[type=submit], .contact__form .venn a[type=submit], .venn .aboutAction__form a[type=submit], .aboutAction__form .venn a[type=submit],
.venn .wpcf7-form a[type=submit],
.wpcf7-form .venn a[type=submit], .venn .newsletter__form a[type=submit], .newsletter__form .venn a[type=submit], .venn .slideout-form a[type=submit], .slideout-form .venn a[type=submit], .venn .popup-form a[type=submit], .popup-form .venn a[type=submit] {
  text-decoration: none;
}
.venn a {
  color: #cfb054;
  text-decoration: underline;
}
.venn a:hover {
  text-decoration: none;
}
.venn.with-services {
  padding-top: 90px;
}
.venn.with-services .content {
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .venn.with-services .content {
    border: 0;
  }
}
.venn.with-services .content p {
  font-size: 22px;
  line-height: 1.27;
  margin-bottom: 30px;
}
@media (max-width: 736px) {
  .venn.with-services .content p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .venn .col-offset--10 {
    margin-left: 0;
  }
}
.venn-reveal {
  text-align: center;
  padding-top: 75px;
  position: relative;
}
.venn-reveal h2 {
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 32px;
}
.venn-reveal p {
  font-size: 22px;
  line-height: 1.27;
  margin-bottom: 30px;
}
@media (max-width: 736px) {
  .venn-reveal p {
    font-size: 18px;
    line-height: 24px;
  }
}
.venn-reveal .show-description {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.venn-reveal .show-description.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: all 200ms ease;
}
.vennBox {
  position: relative;
  height: 26.167vw;
  width: 26.167vw;
  margin: 0 auto;
  margin-top: 95px;
}
@media (max-width: 768px) {
  .vennBox {
    width: 50vw;
    height: 50vw;
    margin-top: 130px;
    margin-bottom: 100px;
  }
}
.vennBox::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  width: 60px;
  height: 60px;
  background-image: url("/wp-content/themes/equilibrium/_src/images/eq-symbol.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: top 3000ms ease;
}
.vennBox.is-active::before {
  top: calc(50% + 20px);
}
@media (max-width: 736px) {
  .vennBox.is-active::before {
    top: calc(50% + 10px);
  }
}
.circle {
  position: absolute;
  border-radius: 50%;
  border: 4px solid #cfb054;
  height: 26.167vw;
  width: 26.167vw;
  text-align: center;
  transition: background-color 300ms ease;
}
@media (max-width: 768px) {
  .circle {
    border: 2px solid #cfb054;
    width: 50vw;
    height: 50vw;
  }
}
.circle .circle-title {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Graphik Bold Web", sans-serif;
  font-size: 18px;
  opacity: 0;
}
@media (max-width: 1280px) {
  .circle .circle-title {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .circle .circle-title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .circle .circle-title {
    font-size: 10px;
  }
}
.circle .circle-title.is-active {
  -webkit-animation: textOpacity 2.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 1500ms;
  animation: textOpacity 2.5s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1500ms;
}
.circle .circle-title span {
  display: block;
}
.circle:hover {
  z-index: 1;
}
.circle1.is-active {
  -webkit-animation: c1 2.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 300ms;
  animation: c1 2.5s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 300ms;
}
.circle1 .circle-title {
  color: #006aa6;
  left: calc(50% - 100px);
  transform: translateX(-50%);
}
@media (max-width: 1280px) {
  .circle1 .circle-title {
    left: calc(50% - 85px);
  }
}
@media (max-width: 1024px) {
  .circle1 .circle-title {
    left: calc(50% - 65px);
  }
}
@media (max-width: 768px) {
  .circle1 .circle-title {
    left: calc(50% - 45px);
  }
}
.circle1 .circle-title span {
  display: block;
}
.circle2.is-active {
  -webkit-animation: c2 2.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 300ms;
  animation: c2 2.5s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 300ms;
}
.circle2 .circle-title {
  color: #9f1a65;
  top: calc(50% - 100px);
}
.circle2 .circle-title span {
  display: block;
}
@media (max-width: 1280px) {
  .circle2 .circle-title {
    top: calc(50% - 85px);
  }
}
@media (max-width: 1024px) {
  .circle2 .circle-title {
    top: calc(50% - 65px);
  }
}
@media (max-width: 768px) {
  .circle2 .circle-title {
    top: calc(50% - 55px);
    left: 0;
  }
}
.circle3.is-active {
  animation: c3 2.5s ease-in-out;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 300ms;
}
.circle3 .circle-title {
  color: #8e8e9a;
  left: calc(50% + 100px);
  transform: translateX(-50%);
}
.circle3 .circle-title span {
  display: block;
}
@media (max-width: 1280px) {
  .circle3 .circle-title {
    left: calc(50% + 85px);
  }
}
@media (max-width: 1024px) {
  .circle3 .circle-title {
    left: calc(50% + 65px);
  }
}
@media (max-width: 768px) {
  .circle3 .circle-title {
    left: calc(50% + 45px);
  }
}
@media (max-width: 768px) {
  .add-m {
    margin-top: 30px;
  }
}
@keyframes c1 {
  from {
    border-color: #cfb054;
    transform: translate(0, 0);
  }
  to {
    border-color: #006aa6;
    transform: translate(-25%, 25%);
  }
}
@keyframes c2 {
  from {
    border-color: #cfb054;
    transform: translate(0, 0);
  }
  to {
    border-color: #9f1a65;
    transform: translate(0, -25%);
  }
}
@keyframes c3 {
  from {
    border-color: #cfb054;
    transform: translate(0, 0);
  }
  to {
    border-color: #8e8e9a;
    transform: translate(25%, 25%);
  }
}
@keyframes textOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.venn-links-mobile {
  padding: 0;
  margin: 0;
  margin-top: 40px;
}
.venn-links-mobile p {
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 1.5em;
}
.venn-links-mobile .accordion {
  padding: 20px 0;
  border-top: 1px solid #8e8e9a;
  font-size: "Graphik Bold Web", sans-serif;
  font-weight: 900;
  font-size: 18px;
}
.venn-links-mobile .accordion::before {
  display: none;
}
.venn-links-mobile .accordion span {
  float: right;
  transform: rotate(-90deg);
}
.venn-links-mobile .accordion.blue {
  color: #006aa6;
}
.venn-links-mobile .accordion.blue span svg polyline {
  stroke: #006aa6;
}
.venn-links-mobile .accordion.purple {
  color: #9f1a65;
}
.venn-links-mobile .accordion.purple span svg polyline {
  stroke: #9f1a65;
}
.venn-links-mobile .accordion.grey {
  color: #8e8e9a;
}
.venn-links-mobile .accordion.grey span svg polyline {
  stroke: #8e8e9a;
}
[data-default-show] {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.video-banner {
  position: relative;
  width: 100%;
  height: 679px;
  z-index: 0;
  cursor: pointer;
  background-color: #0c0c0e;
}
@media (max-width: 768px) {
  .video-banner {
    height: 575px;
  }
}
@media (max-width: 736px) {
  .video-banner {
    height: 375px;
  }
}
.video-banner.s--playing .container,
.video-banner.s--playing img {
  pointer-events: none;
  opacity: 0;
  transition: 0.5s linear;
}
.video-banner__content {
  position: absolute;
  z-index: 1;
  bottom: 61px;
  left: 0;
  right: 0;
}
@media (max-width: 736px) {
  .video-banner__content {
    bottom: 40px;
  }
}
.video-banner__content h2 {
  font-size: 63px;
  color: #fff;
  max-width: 680px;
  width: 100%;
}
@media (max-width: 768px) {
  .video-banner__content h2 {
    margin-bottom: 15px;
    font-size: 54px;
    line-height: 1.17;
  }
}
@media (max-width: 736px) {
  .video-banner__content h2 {
    font-size: 33px;
  }
}
.video-banner__content h2 span {
  display: block;
}
.video-banner__content .play--small {
  width: 30px;
  height: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .video-banner__content .play--small {
    margin-top: 0;
  }
}
.video-banner__content .spacer {
  height: 50px;
}
@media (max-width: 736px) {
  .video-banner__content .spacer {
    height: 10px;
  }
}
.video-banner__content .subtitle {
  display: block;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  max-width: 372px;
  width: 100%;
}
@media (max-width: 736px) {
  .video-banner__content .subtitle {
    font-size: 18px;
    line-height: 1;
  }
}
.video-banner img {
  position: absolute;
  top: 0;
  left: 0;
}
.video-banner video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.popup-form.video-modal {
  max-width: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.3);
}
.popup-form.video-modal video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 300px;
}
.page-template-page--about .serviceBlocks__block ul {
  display: none;
}
@media (max-width: 736px) {
  .page-template-page--about .serviceBlocks {
    padding-top: 90px;
  }
}
.page-template-page--about .homeAwards {
  padding-top: 84px;
}
.about {
  overflow: hidden;
}
.about .container--slim {
  padding-top: 90px;
  padding-bottom: 90px;
  z-index: 0;
}
@media (max-width: 736px) {
  .about .container--slim {
    padding-top: 70px;
    overflow: hidden;
  }
}
.about svg {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 420px;
  z-index: -1;
}
@media (max-width: 736px) {
  .about svg {
    right: -150px;
    height: 35vh;
  }
}
.about__content {
  max-width: 830px;
}
.about__content span {
  font-size: 18px;
  display: block;
  margin-bottom: 7px;
}
.about__content h2 {
  margin-bottom: 50px;
}
.about__content p {
  margin-bottom: 42px;
}
.aboutAction {
  padding: 94px 0;
  margin-bottom: 150px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 736px) {
  .aboutAction {
    margin-bottom: 0;
  }
}
.aboutAction h2 {
  margin-bottom: 38px;
  max-width: 700px;
}
.aboutAction p {
  margin-bottom: 47px;
  max-width: 700px;
}
.aboutAction__form {
  position: relative;
  z-index: 2;
}
.aboutAction__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.aboutAction__form p {
  margin-bottom: 13px;
  max-width: 100%;
}
.aboutAction__form textarea {
  height: 202px;
}
.aboutAction__form [type=submit] {
  display: block;
  width: 216px;
  margin: auto;
  margin-top: 24px;
}
.join-team-bar {
  background-color: #006aa6;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 30px;
  margin: 80px auto;
  background-image: url("/wp-content/themes/equilibrium/_src/images/joinbar_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.join-team-bar h2 {
  color: inherit;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 30px;
}
.join-team-bar p {
  margin-bottom: 26px;
}
.our-team-bar {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f2f2f2;
}
.our-team-bar.people-listing {
  margin-bottom: 0;
}
@media (max-width: 736px) {
  .our-team-bar.people-listing .g25 {
    width: 75%;
  }
}
.our-team-bar .our-team-bar__head {
  position: relative;
  display: block;
  margin-bottom: 38px;
}
.our-team-bar .our-team-bar__head h2 {
  text-align: center;
}
.our-team-bar .our-team-bar__head a {
  position: absolute;
  right: 0;
  top: auto;
  bottom: 11px;
}
@media (max-width: 768px) {
  .our-team-bar .our-team-bar__head a {
    bottom: 65px;
  }
}
@media (max-width: 736px) {
  .our-team-bar .our-team-bar__head a {
    bottom: 85px;
  }
}
.accreditations-outer {
  background: #ffffff;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  width: calc(100% - 30px);
}
.accreditations-outer .accreditations-outer-upper {
  padding: 35px 0 15px;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
.accreditations-outer .accreditations-outer-heading {
  font-size: 36px;
  text-align: center;
}
.accreditations-outer .accreditations-outer-introduction {
  font-size: 16px;
  text-align: center;
  max-width: 480px;
  margin: 15px auto 25px;
}
.accreditations-outer .accreditations-carousel {
  width: 100%;
  position: relative;
  padding: 30px 15px;
}
@media (max-width: 736px) {
  .accreditations-outer .accreditations-carousel {
    padding: 30px 35px;
  }
}
.accreditations-outer .swiper-container {
  height: auto !important;
}
.accreditations-outer .swiper-slide {
  width: calc(33.33% - 13.3px);
}
@media (max-width: 768px) {
  .accreditations-outer .swiper-slide {
    width: calc(50% - 20px);
  }
}
@media (max-width: 736px) {
  .accreditations-outer .swiper-slide {
    width: 100%;
  }
}
.accreditations-outer .accreditations-buttons .accreditations-button {
  position: absolute;
  top: calc(50% - 20px);
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  background-color: #E6E6E6;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.2s linear;
}
.accreditations-outer .accreditations-buttons .accreditations-button:hover {
  transition: all 0.2s linear;
  background-color: #303030;
}
.accreditations-outer .accreditations-buttons .accreditations-button.accreditations-button-prev {
  left: -46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.accreditations-outer .accreditations-buttons .accreditations-button.accreditations-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
@media (max-width: 768px) {
  .accreditations-outer .accreditations-buttons .accreditations-button.accreditations-button-prev {
    left: -30px;
  }
}
.accreditations-outer .accreditations-buttons .accreditations-button.accreditations-button-next {
  right: -46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
.accreditations-outer .accreditations-buttons .accreditations-button.accreditations-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
@media (max-width: 768px) {
  .accreditations-outer .accreditations-buttons .accreditations-button.accreditations-button-next {
    right: -30px;
  }
}
.accreditations-outer .accredditation-title {
  margin-bottom: 1em;
}
.accreditations-outer .accreditations-outer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}
.accreditations-outer .description-text p {
  font-size: 14px;
  margin: 0;
}
.page-template-page--accreditations .awardsHead__content p {
  color: #8E8E9A;
}
.page-template-page--accreditations .awardsHead__content strong {
  font-weight: 900;
  color: #303030;
}
.page-template-page--accreditations .video-banner {
  background-color: transparent;
  height: 518px;
  text-align: left;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-template-page--accreditations .video-banner {
    height: 398px;
  }
}
@media (max-width: 736px) {
  .page-template-page--accreditations .video-banner {
    height: 252px;
  }
}
.page-template-page--accreditations .video-banner__content {
  bottom: 0;
}
.page-template-page--accreditations .fullVideo img {
  z-index: 0;
  margin-top: 0;
}
.page-template-page--accreditations .serviceAction {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  color: #303030;
}
.page-template-page--accreditations .tabs__btn, .page-template-page--accreditations .split {
  color: #303030;
}
.page-template-page--accreditations .tabs__content .h3, .page-template-page--accreditations .tabs__content .peopleHead__content p, .peopleHead__content .page-template-page--accreditations .tabs__content p, .page-template-page--accreditations .tabs__content .homeAction__content p, .homeAction__content .page-template-page--accreditations .tabs__content p, .page-template-page--accreditations .tabs__content .awardsHead__content p, .awardsHead__content .page-template-page--accreditations .tabs__content p, .page-template-page--accreditations .tabs__content .editor blockquote, .editor .page-template-page--accreditations .tabs__content blockquote {
  color: #303030;
}
.page-template-page--accreditations .contact__form [type=text],
.page-template-page--accreditations .contact__form [type=email],
.page-template-page--accreditations .contact__form [type=tel],
.page-template-page--accreditations .contact__form select,
.page-template-page--accreditations .contact__form textarea {
  border-color: #D8D8D8;
}
.page-template-page--accreditations .footer__bg {
  margin-bottom: -165px;
}
.page-template-page--accreditations .factsheet-bar {
  background-color: #cfb054;
  background-image: url("/wp-content/themes/equilibrium/_src/images/awards_bg.svg");
}
.page-template-page--accreditations .factsheet-bar .btn--white {
  color: #cfb054;
}
.page-template-page--accreditations .factsheet-bar .btn--white:hover {
  color: #fff;
}
.accreditations__featured {
  text-align: center;
  padding-bottom: 112px;
}
.accreditations__featured h2 {
  margin-bottom: 22px;
}
.accreditations__content {
  max-width: 949px;
  width: 100%;
  margin: 0 auto;
}
.accreditations__item {
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
}
@media (max-width: 768px) {
  .accreditations__item {
    width: 100%;
  }
}
.accreditations__item img {
  margin-bottom: 20px;
}
.accreditations__item strong {
  color: #303030;
}
.awards-facts {
  position: relative;
  margin: 80px 0 0;
}
.awards-facts .row {
  background: #fff;
  padding: 60px 0;
}
.awards-facts .row:nth-child(2n) {
  background: #e6e6e6;
}
.awards-facts .container {
  max-width: 980px;
  display: flex;
}
.awards-facts .detail {
  flex: 1;
  max-width: 560px;
}
.awards-facts h2 {
  font-size: 28px;
  line-height: 1.2;
}
.awards-facts ul {
  margin: 30px 0 0;
}
.awards-facts li {
  font-size: 16px;
  position: relative;
  list-style-type: none;
  padding: 0 0 0 25px;
}
.awards-facts li:nth-child(n+2) {
  margin: 10px 0 0;
}
.awards-facts li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--bullet.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 15px;
  height: 18px;
}
.awards-facts .image {
  position: relative;
  width: 260px;
  height: 180px;
  border: 1px solid #cfb054;
  border-radius: 12px;
  margin: 0 30px 0 0;
}
.awards-facts .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.awards-testimonial {
  position: relative;
}
.awards-testimonial blockquote {
  position: relative;
  background: #FFF;
  border: 20px solid #cfb054;
  padding: 40px 40px 40px 120px;
}
@media (max-width: 736px) {
  .awards-testimonial blockquote {
    border: 10px solid #cfb054;
    padding: 40px 20px;
  }
}
.awards-testimonial blockquote:before {
  content: "\201C";
  font-size: 140px;
  line-height: 1;
  color: #303030;
  font-family: "Arial", sans-serif;
  font-weight: 900;
  display: block;
  position: absolute;
  top: 20px;
  left: 30px;
}
@media (max-width: 736px) {
  .awards-testimonial blockquote:before {
    display: none;
  }
}
.awards-testimonial .quotation {
  font-size: 28px;
  line-height: 1.4;
  color: #303030;
  font-family: "Graphik Bold Web", sans-serif;
  font-weight: 900;
}
.awards-testimonial .author {
  display: flex;
  margin: 40px 0 0;
}
@media (max-width: 736px) {
  .awards-testimonial .author {
    margin: 20px 0 0;
  }
}
.awards-testimonial .author .name {
  font-size: 16px;
}
.awards-testimonial .author .role {
  font-size: 16px;
  margin: 0 0 0 12px;
  padding: 0 0 0 12px;
  border-left: 1px solid #cfb054;
}
.awards-outer {
  background: #ffffff;
  border-radius: 12px;
  margin: 60px auto 100px;
}
.awards-outer .awards-outer-heading {
  font-size: 36px;
  padding: 35px 0 15px;
  text-align: center;
}
.awards-outer .awards-outer-introduction {
  font-size: 16px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 25px;
}
.awards-outer .awards-row {
  border-top: 1px solid #ccc;
}
.awards-outer .awards-row h2 {
  display: inline-block;
  font-size: 22px;
  background: #dbdbdb;
  border-radius: 999px;
  padding: 10px 40px;
}
.awardsHead {
  padding-top: 93px;
  margin-bottom: 79px;
}
@media (max-width: 736px) {
  .awardsHead {
    padding-top: 79px;
  }
}
.awardsHead.single h1 {
  margin-bottom: 20px;
}
.awardsHead.single span {
  font-size: 18px;
}
.awardsHead.single .editor {
  padding-top: 60px;
}
.awardsHead.single .editor p:first-of-type {
  font-size: 18px;
}
.awardsHead__content {
  max-width: 704px;
}
.awardsHead__content h1 {
  margin-bottom: 36px;
}
.search .awardsHead__content h1 {
  font-weight: 400;
}
.awardsHead__content em {
  font-style: normal;
  font-weight: 900;
}
.awardsHead__content p {
  margin-bottom: 0;
}
@media (max-width: 736px) {
  .awardsHead__content p {
    margin-bottom: 0;
  }
}
.awardsHead__content strong {
  color: #0c0c0e;
  font-weight: 500;
}
.awards-row {
  position: relative;
  padding-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.awards-row h2 {
  margin-bottom: 40px;
}
@media (max-width: 736px) {
  .awards-row h2 {
    margin-bottom: 10px;
  }
}
.awards-row .awards-item {
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 20px;
}
.awards-row .awards-item img {
  margin-bottom: 25px;
}
.awards-row .awards-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.awards-row .showmore {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
.show-more-container {
  position: relative;
  width: 100%;
}
.show-more-container ul {
  list-style-type: none;
  padding: 0;
}
.show-more-container ul:after {
  content: "";
  display: table;
  clear: both;
}
.show-more-container ul li {
  width: 33.33333333%;
  margin: 0;
  float: left;
  min-height: 500px;
}
@media (min-width: 768px) {
  .page-template-page--awards-accreditations .show-more-container ul li {
    width: 25%;
  }
  .page-template-page--awards-accreditations .show-more-container ul li:nth-child(4) {
    display: block;
  }
}
.show-more-container ul li:nth-child(1n+4) {
  max-height: 0;
  display: none;
  transition: 0.1s ease-in;
}
@media (max-width: 768px) {
  .show-more-container ul li {
    width: 50%;
  }
}
@media (max-width: 736px) {
  .show-more-container ul li {
    width: 100%;
  }
}
.show-more-container .show-more-btn {
  position: relative;
  width: auto;
  cursor: pointer;
  text-align: center;
}
.show-more-container .show-more-btn:hover {
  color: #303030;
}
.show-more-container .show-more-btn .loaded {
  display: none;
}
.show-more-container [type=checkbox] {
  display: none;
}
.show-more-container input[id^=show_more_] {
  display: none;
}
.show-more-container input[id^=show_more_]:checked ~ ul li:nth-child(1n+4) {
  max-height: 999px;
  display: inline-block;
  transition: 0.2s ease-in;
}
.show-more-container input[id^=show_more_]:checked ~ .show-more-btn .loaded {
  display: block;
}
.show-more-container input[id^=show_more_]:checked ~ .show-more-btn .unloaded {
  display: none;
}
.page-template-page--charity h1 {
  font-size: 63px;
}
@media (max-width: 736px) {
  .page-template-page--charity h1 {
    font-size: 38px;
  }
}
.page-template-page--charity .hero {
  height: 570px;
  overflow: hidden;
}
.page-template-page--charity .heroIntro {
  z-index: 2;
}
.page-template-page--charity .heroIntro::before {
  display: none;
}
.page-template-page--charity .featPosts.content-blocks {
  padding-top: 0;
}
.page-template-page--charity .features {
  padding-top: 93px;
  padding-bottom: 128px;
  background-color: #fff;
}
@media (max-width: 736px) {
  .page-template-page--charity .features {
    padding-top: 44px;
    padding-bottom: 78px;
  }
  .page-template-page--charity .features .g33:first-of-type {
    width: 100%;
  }
  .page-template-page--charity .features .g33 {
    width: 50%;
    padding: 30px 0;
  }
}
.page-template-page--charity .features::after {
  display: none;
}
.page-template-page--charity .testimonials__block {
  height: auto;
}
@media (max-width: 736px) {
  .page-template-page--charity .testimonials .testimonials__head {
    margin-bottom: 0;
  }
  .page-template-page--charity .testimonials .testimonials__block {
    padding: 0;
  }
}
.page-template-page--charity .testimonials__block-content h3 {
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 400;
}
.page-template-page--charity .testimonials__block-content span {
  display: block;
}
.page-template-page--charity .featPosts h2 {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .page-template-page--charity .testimonials.long .testimonials__head {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .page-template-page--charity .testimonials.long .testimonials__head {
    margin-bottom: 38px;
  }
}
@media (max-width: 1024px) {
  .page-template-page--charity .testimonials.long .testimonials__head a {
    bottom: 55px;
  }
}
.page-template-page--charity .newsletter {
  position: relative;
}
@media (max-width: 768px) {
  .page-template-page--charity .newsletter {
    padding-bottom: 300px;
  }
}
@media (max-width: 736px) {
  .page-template-page--charity .newsletter {
    padding-bottom: 260px;
  }
}
.page-template-page--charity .newsletter::after {
  /*
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 370px; // 30%;
  height: 370px; //40%;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/bg--people.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
  @include md {
    width: 350px;
    height: 350px;
  }
  // @include smw {
  //   width: 100%;
  //   height: 100%;
  // }
  */
}
.page-template-page--charity .newsletter h2, .page-template-page--charity .newsletter p, .page-template-page--charity .newsletter label {
  color: #fff;
}
.page-template-page--charity .newsletter [type=submit] {
  color: #01837f !important;
  background-color: #fff;
  border-color: #01837f;
}
.page-template-page--charity .newsletter [type=submit]:hover {
  background-color: #303030;
  color: #fff !important;
}
.page-template-page--charity .newsletter select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
.page-template-page--charity .newsletter [type=text],
.page-template-page--charity .newsletter [type=email],
.page-template-page--charity .newsletter [type=checkbox],
.page-template-page--charity .newsletter [type=tel],
.page-template-page--charity .newsletter [type=date],
.page-template-page--charity .newsletter select,
.page-template-page--charity .newsletter textarea {
  background: #fff;
  border-color: #fff;
  color: #0c0c0e;
}
.page-template-page--charity .newsletter [type=text]::-webkit-input-placeholder,
.page-template-page--charity .newsletter [type=email]::-webkit-input-placeholder,
.page-template-page--charity .newsletter [type=checkbox]::-webkit-input-placeholder,
.page-template-page--charity .newsletter [type=tel]::-webkit-input-placeholder,
.page-template-page--charity .newsletter [type=date]::-webkit-input-placeholder,
.page-template-page--charity .newsletter select::-webkit-input-placeholder,
.page-template-page--charity .newsletter textarea::-webkit-input-placeholder {
  color: #0c0c0e;
}
.page-template-page--charity .newsletter [type=text]:-moz-placeholder,
.page-template-page--charity .newsletter [type=email]:-moz-placeholder,
.page-template-page--charity .newsletter [type=checkbox]:-moz-placeholder,
.page-template-page--charity .newsletter [type=tel]:-moz-placeholder,
.page-template-page--charity .newsletter [type=date]:-moz-placeholder,
.page-template-page--charity .newsletter select:-moz-placeholder,
.page-template-page--charity .newsletter textarea:-moz-placeholder {
  color: #0c0c0e;
}
.page-template-page--charity .newsletter [type=text]::-moz-placeholder,
.page-template-page--charity .newsletter [type=email]::-moz-placeholder,
.page-template-page--charity .newsletter [type=checkbox]::-moz-placeholder,
.page-template-page--charity .newsletter [type=tel]::-moz-placeholder,
.page-template-page--charity .newsletter [type=date]::-moz-placeholder,
.page-template-page--charity .newsletter select::-moz-placeholder,
.page-template-page--charity .newsletter textarea::-moz-placeholder {
  color: #0c0c0e;
}
.page-template-page--charity .newsletter [type=text]:-ms-input-placeholder,
.page-template-page--charity .newsletter [type=email]:-ms-input-placeholder,
.page-template-page--charity .newsletter [type=checkbox]:-ms-input-placeholder,
.page-template-page--charity .newsletter [type=tel]:-ms-input-placeholder,
.page-template-page--charity .newsletter [type=date]:-ms-input-placeholder,
.page-template-page--charity .newsletter select:-ms-input-placeholder,
.page-template-page--charity .newsletter textarea:-ms-input-placeholder {
  color: #0c0c0e;
}
.donateBar {
  background-color: #01837f;
  padding-top: 69px;
  padding-bottom: 79px;
}
.donateBar .inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 736px) {
  .donateBar .inner {
    display: block;
  }
}
.donateBar .inner .h2 {
  color: #fff;
  display: block;
  margin-bottom: 40px;
}
.donateBar .inner .btn, .donateBar .inner .serviceAction__form [type=submit], .serviceAction__form .donateBar .inner [type=submit], .donateBar .inner .contact__form [type=submit], .contact__form .donateBar .inner [type=submit], .donateBar .inner .wpcf7-form button, .wpcf7-form .donateBar .inner button,
.donateBar .inner .wpcf7-form [type=submit],
.wpcf7-form .donateBar .inner [type=submit], .donateBar .inner [data-form-block-id] form button, [data-form-block-id] form .donateBar .inner button, .donateBar .inner .newsletter__form [type=submit], .newsletter__form .donateBar .inner [type=submit], .donateBar .inner .slideout-form [type=submit], .slideout-form .donateBar .inner [type=submit], .donateBar .inner .popup-form [type=submit], .popup-form .donateBar .inner [type=submit], .donateBar .inner .aboutAction__form [type=submit], .aboutAction__form .donateBar .inner [type=submit] {
  color: #01837f;
  border-color: #01837f;
}
.donateBar .inner .btn:hover, .donateBar .inner .serviceAction__form [type=submit]:hover, .serviceAction__form .donateBar .inner [type=submit]:hover, .donateBar .inner .contact__form [type=submit]:hover, .contact__form .donateBar .inner [type=submit]:hover, .donateBar .inner .wpcf7-form button:hover, .wpcf7-form .donateBar .inner button:hover,
.donateBar .inner .wpcf7-form [type=submit]:hover,
.wpcf7-form .donateBar .inner [type=submit]:hover, .donateBar .inner [data-form-block-id] form button:hover, [data-form-block-id] form .donateBar .inner button:hover, .donateBar .inner .newsletter__form [type=submit]:hover, .newsletter__form .donateBar .inner [type=submit]:hover, .donateBar .inner .slideout-form [type=submit]:hover, .slideout-form .donateBar .inner [type=submit]:hover, .donateBar .inner .popup-form [type=submit]:hover, .popup-form .donateBar .inner [type=submit]:hover, .donateBar .inner .aboutAction__form [type=submit]:hover, .aboutAction__form .donateBar .inner [type=submit]:hover {
  background-color: #303030;
  color: #fff;
}
.location-maps {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 80px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 736px) {
  .location-maps {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .location-maps .location {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 736px) {
  .location-maps .location {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.location-maps .location h2 {
  font-size: 27px;
  font-family: "Graphik Medium Web", sans-serif;
  margin-bottom: 15px;
}
.location-maps .location p {
  margin-bottom: 15px;
}
.map-wrap {
  width: 100%;
  height: 398px;
  margin-bottom: 15px;
  background-color: #D8D8D8;
}
@media (max-width: 736px) {
  .map-wrap {
    height: 234px;
  }
}
.tabs__list {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
  display: flex;
}
@media (max-width: 736px) {
  .tabs__list {
    flex-direction: column;
  }
}
.tabs__li {
  padding: 5px;
}
.tabs__btn, .split {
  font-family: "Graphik Bold Web", sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 45px;
  line-height: 70px;
}
@media (max-width: 1024px) {
  .tabs__btn, .split {
    font-size: 33px;
  }
}
@media (max-width: 736px) {
  .tabs__btn, .split {
    font-size: 27px;
    line-height: 34px;
  }
}
@media (max-width: 480px) {
  .tabs__btn, .split {
    font-size: 24px;
    line-height: 26px;
  }
}
.tabs__btn {
  opacity: 0.7;
  text-decoration: underline;
}
.tabs__btn.is-active {
  opacity: 1;
  text-decoration: none;
}
.tabs__content .h3, .tabs__content .peopleHead__content p, .peopleHead__content .tabs__content p, .tabs__content .homeAction__content p, .homeAction__content .tabs__content p, .tabs__content .editor blockquote, .editor .tabs__content blockquote, .tabs__content .awardsHead__content p, .awardsHead__content .tabs__content p {
  margin-bottom: 23px;
}
.page-template-page--services-landing .serviceAction,
.page-template-page--contact .serviceAction {
  padding-top: 77px;
  padding-bottom: 77px;
}
@media (max-width: 736px) {
  .page-template-page--services-landing .serviceAction p.h3, .page-template-page--services-landing .serviceAction .peopleHead__content p, .peopleHead__content .page-template-page--services-landing .serviceAction p, .page-template-page--services-landing .serviceAction .homeAction__content p, .homeAction__content .page-template-page--services-landing .serviceAction p, .page-template-page--services-landing .serviceAction .awardsHead__content p, .awardsHead__content .page-template-page--services-landing .serviceAction p,
  .page-template-page--contact .serviceAction p.h3,
  .page-template-page--contact .serviceAction .peopleHead__content p,
  .peopleHead__content .page-template-page--contact .serviceAction p,
  .page-template-page--contact .serviceAction .homeAction__content p,
  .homeAction__content .page-template-page--contact .serviceAction p,
  .page-template-page--contact .serviceAction .awardsHead__content p,
  .awardsHead__content .page-template-page--contact .serviceAction p {
    font-family: "Graphik Medium Web", sans-serif;
    font-size: 18px;
    line-height: 1.56;
    font-weight: 400;
  }
}
.contact__form {
  position: relative;
  z-index: 2;
}
.contact__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact__form p {
  margin-bottom: 23px;
  max-width: 100% !important;
  display: block;
}
.sidebar-block .contact__form p {
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}
.contact__form [type=text],
.contact__form [type=email],
.contact__form [type=tel],
.contact__form select,
.contact__form textarea {
  background-color: #fff;
  border-color: #fff;
}
.bg--white .contact__form [type=text],
.bg--white .contact__form [type=email],
.bg--white .contact__form [type=tel],
.bg--white .contact__form select,
.bg--white .contact__form textarea {
  border-color: #cfcfcf;
}
.sidebar-block .contact__form [type=text],
.sidebar-block .contact__form [type=email],
.sidebar-block .contact__form [type=tel],
.sidebar-block .contact__form select,
.sidebar-block .contact__form textarea {
  border-bottom: 1px solid #ccc;
}
.contact__form [type=text]:hover, .contact__form [type=text]:focus,
.contact__form [type=email]:hover,
.contact__form [type=email]:focus,
.contact__form [type=tel]:hover,
.contact__form [type=tel]:focus,
.contact__form select:hover,
.contact__form select:focus,
.contact__form textarea:hover,
.contact__form textarea:focus {
  border-color: #0c0c0e;
}
.contact__form textarea {
  height: 202px;
}
.contact__form select {
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 22px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
.contact__form [type=submit] {
  float: left;
  width: 216px;
  margin-top: 24px;
}
@media (max-width: 736px) {
  .contact__form [type=submit] {
    width: 162px;
    float: left;
  }
}
.sidebar-block .contact__form [type=submit] {
  float: none;
  margin-bottom: 0;
}
.page-template-page--contact .footer__bg {
  margin-bottom: -225px;
}
.page-template-page--contact .footer {
  padding-top: 280px;
}
.errorHead {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 736px) {
  .errorHead {
    padding-top: 79px;
    padding-bottom: 79px;
  }
}
.errorHead h1 {
  margin-bottom: 96px;
}
@media (max-width: 736px) {
  .errorHead h1 {
    margin-bottom: 35px;
  }
}
.errorHead .btn:hover, .errorHead .serviceAction__form [type=submit]:hover, .serviceAction__form .errorHead [type=submit]:hover, .errorHead .wpcf7-form button:hover, .wpcf7-form .errorHead button:hover,
.errorHead .wpcf7-form [type=submit]:hover,
.wpcf7-form .errorHead [type=submit]:hover, .errorHead [data-form-block-id] form button:hover, [data-form-block-id] form .errorHead button:hover, .errorHead .newsletter__form [type=submit]:hover, .newsletter__form .errorHead [type=submit]:hover, .errorHead .slideout-form [type=submit]:hover, .slideout-form .errorHead [type=submit]:hover, .errorHead .popup-form [type=submit]:hover, .popup-form .errorHead [type=submit]:hover, .errorHead .aboutAction__form [type=submit]:hover, .aboutAction__form .errorHead [type=submit]:hover, .errorHead .contact__form [type=submit]:hover, .contact__form .errorHead [type=submit]:hover {
  background-color: #303030;
  border-color: #303030;
  color: #fff;
}
.events-archive-list-item {
  grid-column: 1/-1;
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  margin: -1px 0 0;
}
.events-archive-list-item .detail {
  padding: 20px 0;
}
@media (min-width: 600px) {
  .events-archive-list-item .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.events-archive-list-item h2 {
  font-size: 16px;
  color: #3a3a3a;
}
@media (min-width: 600px) {
  .events-archive-list-item h2 {
    width: calc(55% - 100px);
  }
}
.events-archive-list-item time {
  font-size: 16px;
  color: #3a3a3a;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238e8e99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-calendar'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  display: block;
  padding: 0 0 0 25px;
  margin: 10px 0;
}
@media (min-width: 600px) {
  .events-archive-list-item time {
    width: calc(45% - 100px);
    margin: 0;
  }
}
.events-archive-list-item .btn.enabled:hover, .events-archive-list-item .serviceAction__form .enabled[type=submit]:hover, .serviceAction__form .events-archive-list-item .enabled[type=submit]:hover, .events-archive-list-item .wpcf7-form button.enabled:hover, .wpcf7-form .events-archive-list-item button.enabled:hover,
.events-archive-list-item .wpcf7-form .enabled[type=submit]:hover,
.wpcf7-form .events-archive-list-item .enabled[type=submit]:hover, .events-archive-list-item [data-form-block-id] form button.enabled:hover, [data-form-block-id] form .events-archive-list-item button.enabled:hover, .events-archive-list-item .newsletter__form .enabled[type=submit]:hover, .newsletter__form .events-archive-list-item .enabled[type=submit]:hover, .events-archive-list-item .slideout-form .enabled[type=submit]:hover, .slideout-form .events-archive-list-item .enabled[type=submit]:hover, .events-archive-list-item .popup-form .enabled[type=submit]:hover, .popup-form .events-archive-list-item .enabled[type=submit]:hover, .events-archive-list-item .aboutAction__form .enabled[type=submit]:hover, .aboutAction__form .events-archive-list-item .enabled[type=submit]:hover, .events-archive-list-item .contact__form .enabled[type=submit]:hover, .contact__form .events-archive-list-item .enabled[type=submit]:hover {
  border-color: #cfb054;
}
.events-archive-list-item .btn.disabled, .events-archive-list-item .serviceAction__form .disabled[type=submit], .serviceAction__form .events-archive-list-item .disabled[type=submit], .events-archive-list-item .wpcf7-form button.disabled, .wpcf7-form .events-archive-list-item button.disabled,
.events-archive-list-item .wpcf7-form .disabled[type=submit],
.wpcf7-form .events-archive-list-item .disabled[type=submit], .events-archive-list-item [data-form-block-id] form button.disabled, [data-form-block-id] form .events-archive-list-item button.disabled, .events-archive-list-item .newsletter__form .disabled[type=submit], .newsletter__form .events-archive-list-item .disabled[type=submit], .events-archive-list-item .slideout-form .disabled[type=submit], .slideout-form .events-archive-list-item .disabled[type=submit], .events-archive-list-item .popup-form .disabled[type=submit], .popup-form .events-archive-list-item .disabled[type=submit], .events-archive-list-item .aboutAction__form .disabled[type=submit], .aboutAction__form .events-archive-list-item .disabled[type=submit], .events-archive-list-item .contact__form .disabled[type=submit], .contact__form .events-archive-list-item .disabled[type=submit] {
  background: #8e8e99;
  color: #3a3a3a;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  border-color: #8e8e99;
}
.events-archive-tile-item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 0 90px;
}
.events-archive-tile-item.has-no-date {
  order: -1;
}
.events-archive-tile-item:hover .description {
  opacity: 1;
}
.events-archive-tile-item .inner {
  display: flex;
  flex-direction: column;
}
.events-archive-tile-item .image {
  position: relative;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 10px;
}
.events-archive-tile-item .image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 3px 8px rgba(58, 58, 58, 0.2);
}
.events-archive-tile-item .sold-out-tag {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 175px;
  height: 28px;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
  background: #cfb054;
  text-transform: uppercase;
  font-weight: bold;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 3;
}
.events-archive-tile-item .description {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 20px 20px 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 16px;
  overflow: hidden;
  background: rgba(58, 58, 58, 0.85);
  transition: opacity 0.3s;
}
@media (min-width: 782px) {
  .events-archive-tile-item .description {
    padding: 40px 40px 0;
  }
}
.events-archive-tile-item .description p {
  font-size: 16px;
}
@media (min-width: 782px) {
  .events-archive-tile-item .description p {
    font-size: 18px;
  }
}
.events-archive-tile-item .sold-out-tag + .description {
  text-indent: 25px;
  padding: 70px 20px 0;
}
@media (min-width: 782px) {
  .events-archive-tile-item .sold-out-tag + .description {
    text-indent: 30px;
    padding: 40px 40px 0;
  }
}
.events-archive-tile-item .sold-out-tag + .description:before {
  content: " ";
  display: block;
  width: 25px;
  height: 25px;
  float: left;
}
@media (min-width: 782px) {
  .events-archive-tile-item .sold-out-tag + .description:before {
    width: 30px;
    height: 30px;
  }
}
.events-archive-tile-item .image + .meta {
  margin: 0 0 10px;
}
.events-archive-tile-item .meta {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  margin: 10px 0 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.events-archive-tile-item .meta.meta-bottom {
  margin-top: -7px;
}
.events-archive-tile-item .meta .meta-item {
  color: #8e8e99;
  font-size: 14px;
}
.events-archive-tile-item .meta .meta-item a {
  color: #8e8e99;
}
.events-archive-tile-item .meta .meta-item a:hover {
  text-decoration: underline;
}
.events-archive-tile-item h2 {
  font-size: 32px;
}
.events-archive-tile-item .lower-description {
  color: #8e8e99;
  margin: 10px 0;
}
.events-archive-tile-item .lower-description p {
  margin: 0;
  font-size: 14px;
  color: #3a3a3a;
}
@media (min-width: 782px) {
  .events-archive-tile-item .lower-description p {
    font-size: 16px;
  }
}
.events-archive-tile-item .buttons {
  display: flex;
  margin: 10px 0 0;
}
.events-archive-tile-item .buttons .btn, .events-archive-tile-item .buttons .serviceAction__form [type=submit], .serviceAction__form .events-archive-tile-item .buttons [type=submit], .events-archive-tile-item .buttons .wpcf7-form button, .wpcf7-form .events-archive-tile-item .buttons button,
.events-archive-tile-item .buttons .wpcf7-form [type=submit],
.wpcf7-form .events-archive-tile-item .buttons [type=submit], .events-archive-tile-item .buttons [data-form-block-id] form button, [data-form-block-id] form .events-archive-tile-item .buttons button, .events-archive-tile-item .buttons .newsletter__form [type=submit], .newsletter__form .events-archive-tile-item .buttons [type=submit], .events-archive-tile-item .buttons .slideout-form [type=submit], .slideout-form .events-archive-tile-item .buttons [type=submit], .events-archive-tile-item .buttons .popup-form [type=submit], .popup-form .events-archive-tile-item .buttons [type=submit], .events-archive-tile-item .buttons .aboutAction__form [type=submit], .aboutAction__form .events-archive-tile-item .buttons [type=submit], .events-archive-tile-item .buttons .contact__form [type=submit], .contact__form .events-archive-tile-item .buttons [type=submit] {
  margin: 0 5px 0 0;
}
.events-archive-tile-item .buttons .btn.btn.btn--small.btn--outline:hover, .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form button.btn.btn--small.btn--outline:hover, .events-archive-tile-item .buttons .wpcf7-form .serviceAction__form button.btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .events-archive-tile-item .buttons button.btn.btn--small.btn--outline:hover, .wpcf7-form .events-archive-tile-item .buttons .serviceAction__form button.btn--small.btn--outline[type=submit]:hover, .serviceAction__form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .btn.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .serviceAction__form .btn--small.btn--outline[type=submit]:hover,
.serviceAction__form .events-archive-tile-item .buttons .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover,
.serviceAction__form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form button.btn.btn--small.btn--outline:hover, .events-archive-tile-item .buttons [data-form-block-id] form .serviceAction__form button.btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .events-archive-tile-item .buttons button.btn.btn--small.btn--outline:hover, [data-form-block-id] form .events-archive-tile-item .buttons .serviceAction__form button.btn--small.btn--outline[type=submit]:hover, .serviceAction__form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .newsletter__form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .newsletter__form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .slideout-form .btn--small.btn--outline[type=submit]:hover, .slideout-form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .slideout-form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .popup-form .btn--small.btn--outline[type=submit]:hover, .popup-form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .popup-form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .aboutAction__form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .contact__form .btn--small.btn--outline[type=submit]:hover, .contact__form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .contact__form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form button.btn.btn--small.btn--outline:hover, .events-archive-tile-item .buttons .wpcf7-form .serviceAction__form button.btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .events-archive-tile-item .buttons button.btn.btn--small.btn--outline:hover, .wpcf7-form .events-archive-tile-item .buttons .serviceAction__form button.btn--small.btn--outline[type=submit]:hover, .serviceAction__form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form button.btn--small.btn--outline:hover, .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline:hover,
.events-archive-tile-item .buttons .wpcf7-form button.btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .wpcf7-form button.btn--small.btn--outline:hover, [data-form-block-id] form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline:hover, .events-archive-tile-item .buttons .wpcf7-form [data-form-block-id] form button.btn--small.btn--outline:hover, .wpcf7-form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline:hover, .events-archive-tile-item .buttons .newsletter__form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .newsletter__form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .newsletter__form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .newsletter__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .slideout-form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .slideout-form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .slideout-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .popup-form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .popup-form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .popup-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .aboutAction__form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .aboutAction__form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .aboutAction__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .contact__form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .contact__form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .contact__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .btn.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .serviceAction__form .btn--small.btn--outline[type=submit]:hover,
.serviceAction__form .events-archive-tile-item .buttons .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover,
.serviceAction__form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form button.btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons [data-form-block-id] form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover,
[data-form-block-id] form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover,
.wpcf7-form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .newsletter__form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.newsletter__form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .newsletter__form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .slideout-form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.slideout-form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .slideout-form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .popup-form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.popup-form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .popup-form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .aboutAction__form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.aboutAction__form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .aboutAction__form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .contact__form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.contact__form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .contact__form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form button.btn.btn--small.btn--outline:hover, .events-archive-tile-item .buttons [data-form-block-id] form .serviceAction__form button.btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .events-archive-tile-item .buttons button.btn.btn--small.btn--outline:hover, [data-form-block-id] form .events-archive-tile-item .buttons .serviceAction__form button.btn--small.btn--outline[type=submit]:hover, .serviceAction__form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form [data-form-block-id] form button.btn--small.btn--outline:hover, .wpcf7-form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline:hover, .events-archive-tile-item .buttons [data-form-block-id] form .wpcf7-form button.btn--small.btn--outline:hover, [data-form-block-id] form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline:hover,
.events-archive-tile-item .buttons .wpcf7-form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover,
.wpcf7-form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons [data-form-block-id] form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover,
[data-form-block-id] form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form button.btn--small.btn--outline:hover, [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline:hover, .events-archive-tile-item .buttons .newsletter__form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .newsletter__form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .newsletter__form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .newsletter__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .slideout-form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .slideout-form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .slideout-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .popup-form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .popup-form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .popup-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .aboutAction__form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .aboutAction__form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .aboutAction__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .contact__form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .contact__form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .contact__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .newsletter__form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .newsletter__form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .newsletter__form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .newsletter__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .newsletter__form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .newsletter__form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .newsletter__form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.newsletter__form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .newsletter__form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .newsletter__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .newsletter__form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .newsletter__form .btn--small.btn--outline[type=submit]:hover, .slideout-form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .slideout-form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .newsletter__form .btn--small.btn--outline[type=submit]:hover, .popup-form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .popup-form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .newsletter__form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .newsletter__form .btn--small.btn--outline[type=submit]:hover, .contact__form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .contact__form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .slideout-form .btn--small.btn--outline[type=submit]:hover, .slideout-form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .slideout-form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .slideout-form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .slideout-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .slideout-form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .slideout-form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .slideout-form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.slideout-form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .slideout-form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .slideout-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .slideout-form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .slideout-form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .newsletter__form .btn--small.btn--outline[type=submit]:hover, .slideout-form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .btn--small.btn--outline[type=submit]:hover, .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .slideout-form .btn--small.btn--outline[type=submit]:hover, .popup-form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .popup-form .btn--small.btn--outline[type=submit]:hover, .slideout-form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .slideout-form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .slideout-form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .slideout-form .btn--small.btn--outline[type=submit]:hover, .contact__form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .contact__form .btn--small.btn--outline[type=submit]:hover, .slideout-form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .popup-form .btn--small.btn--outline[type=submit]:hover, .popup-form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .popup-form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .popup-form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .popup-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .popup-form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .popup-form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .popup-form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.popup-form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .popup-form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .popup-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .popup-form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .popup-form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .newsletter__form .btn--small.btn--outline[type=submit]:hover, .popup-form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .popup-form .btn--small.btn--outline[type=submit]:hover, .slideout-form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .slideout-form .btn--small.btn--outline[type=submit]:hover, .popup-form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .btn--small.btn--outline[type=submit]:hover, .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .popup-form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .popup-form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .popup-form .btn--small.btn--outline[type=submit]:hover, .contact__form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .contact__form .btn--small.btn--outline[type=submit]:hover, .popup-form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .aboutAction__form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .aboutAction__form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .aboutAction__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .aboutAction__form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .aboutAction__form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .aboutAction__form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.aboutAction__form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .aboutAction__form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .aboutAction__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .aboutAction__form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .newsletter__form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .slideout-form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .slideout-form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .popup-form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .popup-form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .contact__form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .contact__form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .btn.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons .contact__form .btn--small.btn--outline[type=submit]:hover, .contact__form .events-archive-tile-item .buttons .btn.btn--small.btn--outline[type=submit]:hover, .contact__form .events-archive-tile-item .buttons .serviceAction__form .btn--small.btn--outline[type=submit]:hover, .serviceAction__form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form .contact__form button.btn--small.btn--outline[type=submit]:hover, .wpcf7-form .contact__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .wpcf7-form button.btn--small.btn--outline[type=submit]:hover, .contact__form .wpcf7-form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .wpcf7-form .contact__form .btn--small.btn--outline[type=submit]:hover,
.wpcf7-form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover,
.events-archive-tile-item .buttons .contact__form .wpcf7-form .btn--small.btn--outline[type=submit]:hover,
.contact__form .wpcf7-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form .contact__form button.btn--small.btn--outline[type=submit]:hover, [data-form-block-id] form .contact__form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form [data-form-block-id] form button.btn--small.btn--outline[type=submit]:hover, .contact__form [data-form-block-id] form .events-archive-tile-item .buttons button.btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .newsletter__form .contact__form .btn--small.btn--outline[type=submit]:hover, .newsletter__form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .newsletter__form .btn--small.btn--outline[type=submit]:hover, .contact__form .newsletter__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .contact__form .btn--small.btn--outline[type=submit]:hover, .slideout-form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .slideout-form .btn--small.btn--outline[type=submit]:hover, .contact__form .slideout-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .contact__form .btn--small.btn--outline[type=submit]:hover, .popup-form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .popup-form .btn--small.btn--outline[type=submit]:hover, .contact__form .popup-form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form .contact__form .btn--small.btn--outline[type=submit]:hover, .aboutAction__form .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .aboutAction__form .btn--small.btn--outline[type=submit]:hover, .contact__form .aboutAction__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover, .events-archive-tile-item .buttons .contact__form .btn--small.btn--outline[type=submit]:hover, .contact__form .events-archive-tile-item .buttons .btn--small.btn--outline[type=submit]:hover {
  background: #3a3a3a;
  color: #ffffff;
}
.events-archive-tile-item .buttons .btn.btn--black:hover, .events-archive-tile-item .buttons .serviceAction__form [type=submit]:hover, .serviceAction__form .events-archive-tile-item .buttons [type=submit]:hover, .events-archive-tile-item .buttons .wpcf7-form button.btn--black:hover, .wpcf7-form .events-archive-tile-item .buttons button.btn--black:hover,
.events-archive-tile-item .buttons .wpcf7-form .btn--black[type=submit]:hover,
.wpcf7-form .events-archive-tile-item .buttons .btn--black[type=submit]:hover, .events-archive-tile-item .buttons .slideout-form .btn--black[type=submit]:hover, .slideout-form .events-archive-tile-item .buttons .btn--black[type=submit]:hover, .events-archive-tile-item .buttons .popup-form .btn--black[type=submit]:hover, .popup-form .events-archive-tile-item .buttons .btn--black[type=submit]:hover, .events-archive-tile-item .buttons [data-form-block-id] form button:hover, [data-form-block-id] form .events-archive-tile-item .buttons button:hover, .events-archive-tile-item .buttons .newsletter__form [type=submit]:hover, .newsletter__form .events-archive-tile-item .buttons [type=submit]:hover, .events-archive-tile-item .buttons .aboutAction__form [type=submit]:hover, .aboutAction__form .events-archive-tile-item .buttons [type=submit]:hover, .events-archive-tile-item .buttons .contact__form [type=submit]:hover, .contact__form .events-archive-tile-item .buttons [type=submit]:hover {
  border-color: #cfb054;
}
.single-events .events-archive {
  margin: 100px 0 0;
}
.events-archive .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
}
@media (max-width: 782px) {
  .events-archive .inner {
    width: calc(100% - 40px);
  }
}
.events-archive .upper {
  margin: 0 0 30px;
}
@media (min-width: 782px) {
  .events-archive .upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.events-archive .upper h2 {
  font-size: 36px;
  color: #0c0c0e;
}
@media (max-width: 782px) {
  .events-archive .upper .btn, .events-archive .upper .serviceAction__form [type=submit], .serviceAction__form .events-archive .upper [type=submit], .events-archive .upper .wpcf7-form button, .wpcf7-form .events-archive .upper button,
  .events-archive .upper .wpcf7-form [type=submit],
  .wpcf7-form .events-archive .upper [type=submit], .events-archive .upper [data-form-block-id] form button, [data-form-block-id] form .events-archive .upper button, .events-archive .upper .newsletter__form [type=submit], .newsletter__form .events-archive .upper [type=submit], .events-archive .upper .slideout-form [type=submit], .slideout-form .events-archive .upper [type=submit], .events-archive .upper .popup-form [type=submit], .popup-form .events-archive .upper [type=submit], .events-archive .upper .aboutAction__form [type=submit], .aboutAction__form .events-archive .upper [type=submit], .events-archive .upper .contact__form [type=submit], .contact__form .events-archive .upper [type=submit] {
    margin: 20px 0 0;
  }
}
.events-archive .events-archive-items {
  display: grid;
  grid-gap: 0 15px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  .events-archive .events-archive-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 782px) {
  .events-archive .events-archive-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .events-archive .events-archive-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1400px) {
  .events-archive .events-archive-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.single-events .events-archive .events-archive-items {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  .single-events .events-archive .events-archive-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .single-events .events-archive .events-archive-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
.events-archive [data-event-status=ondemand] {
  display: none;
}
.events-book-now {
  position: relative;
  margin: 100px 0 0;
}
.events-book-now #book-now {
  width: 0;
  height: 0;
  position: absolute;
  top: -33vh;
  left: 0;
}
.events-book-now .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1080px;
  text-align: center;
  background: #cfb054;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(58, 58, 58, 0.2);
}
@media (max-width: 782px) {
  .events-book-now .inner {
    width: calc(100% - 40px);
  }
}
.events-book-now .inner p {
  color: #ffffff;
  max-width: 750px;
  margin: 18px auto;
}
.events-calendar {
  background: #ffffff;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(58, 58, 58, 0.2);
}
@media (max-width: 1000px) {
  .events-calendar {
    margin: 0 0 30px;
  }
}
@media (max-width: 1000px) {
  .events-calendar {
    display: none;
  }
}
.events-calendar .prompt {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #3a3a3a;
  margin: 0 0 15px;
}
.events-calendar select {
  margin: 0 0 18px;
  border: 0;
  height: 34px;
  font-size: 16px;
  width: 100%;
  padding: 0 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  color: #3a3a3a;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  background-position: right 8px center;
  background-size: 16px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238e8e99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-calendar'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}
.events-calendar .months {
  position: relative;
  width: 100%;
}
.events-calendar .months[data-availablility-toggle] {
  position: relative;
}
.events-calendar .months[data-availablility-toggle] .day span.linked:not(.available) {
  background: #e6e6e6;
  color: #3a3a3a;
}
.events-calendar .month {
  width: 100%;
  text-align: center;
}
.events-calendar .navigate {
  color: #3a3a3a;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.events-calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 3px;
}
.events-calendar .day {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.events-calendar .day.start-tuesday {
  grid-column-start: 2;
}
.events-calendar .day.start-wednesday {
  grid-column-start: 3;
}
.events-calendar .day.start-thursday {
  grid-column-start: 4;
}
.events-calendar .day.start-friday {
  grid-column-start: 5;
}
.events-calendar .day.start-saturday {
  grid-column-start: 6;
}
.events-calendar .day.start-sunday {
  grid-column-start: 7;
}
.events-calendar .day span {
  font-size: 11px;
  color: #3a3a3a;
  display: block;
  text-align: center;
  line-height: 26px;
  height: 26px;
  width: 26px;
}
.events-calendar .day span.linked {
  background: #cfb054;
  color: #ffffff;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.events-calendar .day span.linked:hover {
  background: rgb(187.397260274, 153.4246575342, 52.602739726);
}
.events-calendar .flickity-prev-prev-button {
  top: -15px;
  width: 20px;
  left: 4px;
  transform: none;
}
.events-calendar .flickity-prev-next-button {
  top: -15px;
  right: 4px;
  width: 20px;
  transform: none;
}
.events-calendar .available-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.events-calendar .available-toggle input {
  padding: 0;
  margin: 0 6px 0 0;
}
.events-calendar .available-toggle label {
  color: #3a3a3a;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
}
.events-featured-banner {
  background-color: grey;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.events-featured-banner .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 782px) {
  .events-featured-banner .inner {
    width: calc(100% - 40px);
  }
}
@media (min-width: 782px) {
  .events-featured-banner .inner {
    min-height: 680px;
  }
}
.events-featured-banner .content {
  padding: 100px 0;
}
.events-featured-banner .content .kicker,
.events-featured-banner .content h1 {
  color: #3a3a3a;
}
.events-featured-banner .content.text-white .kicker,
.events-featured-banner .content.text-white h1 {
  color: #ffffff;
}
.events-featured-banner .kicker {
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  margin: 0 0 15px;
}
.events-featured-banner h1 {
  color: #ffffff;
  font-size: 58px;
}
.events-featured-banner .btn, .events-featured-banner .serviceAction__form [type=submit], .serviceAction__form .events-featured-banner [type=submit], .events-featured-banner .wpcf7-form button, .wpcf7-form .events-featured-banner button,
.events-featured-banner .wpcf7-form [type=submit],
.wpcf7-form .events-featured-banner [type=submit], .events-featured-banner [data-form-block-id] form button, [data-form-block-id] form .events-featured-banner button, .events-featured-banner .newsletter__form [type=submit], .newsletter__form .events-featured-banner [type=submit], .events-featured-banner .slideout-form [type=submit], .slideout-form .events-featured-banner [type=submit], .events-featured-banner .popup-form [type=submit], .popup-form .events-featured-banner [type=submit], .events-featured-banner .aboutAction__form [type=submit], .aboutAction__form .events-featured-banner [type=submit], .events-featured-banner .contact__form [type=submit], .contact__form .events-featured-banner [type=submit] {
  margin: 45px 0 0;
}
.events-featured-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.events-filter {
  margin: 0 0 20px;
}
@media (min-width: 600px) {
  .events-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 50px;
  }
}
.events-filter .time-periods {
  display: flex;
}
@media (max-width: 600px) {
  .events-filter .time-periods {
    margin: 0 0 20px;
  }
}
.events-filter .item {
  margin: 0 4px 0 0;
}
.events-filter .item:first-child {
  display: none;
}
.events-filter input[type=radio] {
  display: none;
}
.events-filter input[type=radio]:checked + label {
  background: #3a3a3a;
  color: #ffffff;
}
.events-filter label {
  background: transparent;
  border: 1px solid #3a3a3a;
  color: #3a3a3a;
  transition: 0.15s linear;
  line-height: 1;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  padding: 9px 18px 8px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: bold;
  outline: 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.events-filter select {
  background-position: right center;
  font-size: 12px;
  font-weight: bold;
  width: 150px;
  color: #3a3a3a;
  height: 33px;
  border: 0;
  padding: 0;
}
@media (min-width: 600px) {
  .events-filter select {
    margin-left: auto;
  }
}
.events-map {
  margin: 100px 0 125px;
}
.events-map .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
}
@media (max-width: 782px) {
  .events-map .inner {
    width: calc(100% - 40px);
  }
}
.events-map h2 {
  font-size: 36px;
  margin: 0 0 25px;
}
@media (min-width: 782px) {
  .events-map .columns {
    display: flex;
    justify-content: space-between;
  }
}
.events-map .address {
  font-weight: bold;
  color: #0c0c0e;
  line-height: 1.6;
  margin: 0 0 30px;
}
@media (min-width: 782px) {
  .events-map .address {
    width: 200px;
    margin: 0;
  }
}
.events-map .address .map-link {
  display: inline-block;
  margin: 20px 0 0;
  text-decoration: underline;
  font-weight: bold;
}
@media (min-width: 782px) {
  .events-map .map {
    width: calc(100% - 240px);
  }
}
.events-map iframe {
  width: 100%;
  height: 565px;
  display: block;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(58, 58, 58, 0.2);
}
.events-meta-bar {
  background: #ffffff;
  position: relative;
  z-index: 5;
}
@media (max-width: 782px) {
  .events-meta-bar {
    padding: 20px 0;
  }
}
.events-meta-bar .inner {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
}
@media (max-width: 782px) {
  .events-meta-bar .inner {
    width: calc(100% - 40px);
  }
}
@media (min-width: 782px) {
  .events-meta-bar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.events-meta-bar .terms {
  font-size: 18px;
  display: block;
  display: none;
  margin: 5px 0 0;
}
@media (min-width: 782px) {
  .events-meta-bar .terms {
    position: absolute;
    top: calc(100% + 30px);
    right: 0;
    margin: 0;
  }
}
.events-meta-bar .terms a {
  font-size: 16px;
}
.events-meta-bar .quicklinks {
  display: flex;
}
.events-meta-bar .quicklinks .quicklink {
  color: #0c0c0e;
  font-size: 16px;
  white-space: nowrap;
}
.events-meta-bar .quicklinks .quicklink:nth-child(n+2) {
  margin: 0 0 0 20px;
}
.events-meta-bar .event-share {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 782px) {
  .events-meta-bar .event-share {
    margin: 5px 0 0;
  }
}
.events-meta-bar .event-share span {
  color: #0c0c0e;
  display: block;
  font-size: 16px;
  margin: 0 10px 0 0;
}
.events-meta-bar .event-share .share__button:last-child {
  display: none;
}
.events-meta-bar .event-share svg {
  height: 20px;
  width: auto;
  display: block;
}
.events-meta-bar .event-share svg path {
  fill: #3a3a3a;
  transition: fill 0.4 ease;
}
.events-section {
  padding: 20px 0 100px;
}
@media (min-width: 782px) {
  .events-section {
    padding: 100px 0;
  }
}
.events-section .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
}
@media (max-width: 782px) {
  .events-section .inner {
    width: calc(100% - 40px);
  }
}
@media (min-width: 1000px) {
  .events-section .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1000px) {
  .events-section .main-column {
    width: calc(100% - 330px);
  }
}
@media (min-width: 1000px) {
  .events-section .sidebar {
    width: 280px;
  }
}
.events-share-bar {
  margin: 100px 0 0;
}
.events-share-bar .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 782px) {
  .events-share-bar .inner {
    width: calc(100% - 40px);
  }
}
.events-share-bar span {
  font-weight: bold;
  color: #0c0c0e;
  display: block;
  font-size: 20px;
  margin: 0 20px 0 0;
}
.events-share-bar .share {
  justify-content: center;
}
.events-share-bar .share__button:last-child {
  display: none;
}
.events-share-bar svg {
  height: 20px;
  width: auto;
  display: block;
}
.events-share-bar svg path {
  fill: #3a3a3a;
  transition: fill 0.4 ease;
}
.events-single-banner {
  background: grey;
  position: relative;
}
.events-single-banner .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 400px;
}
@media (max-width: 782px) {
  .events-single-banner .inner {
    width: calc(100% - 40px);
  }
}
@media (min-width: 782px) {
  .events-single-banner .inner {
    min-height: 680px;
  }
}
.events-single-banner .content {
  color: #ffffff;
  padding: 100px 0;
}
.events-single-banner .content.text-white {
  color: #ffffff;
}
.events-single-banner .content.text-white h1 {
  color: #ffffff;
}
.events-single-banner .content.text-black {
  color: #3a3a3a;
}
.events-single-banner .content.text-black h1 {
  color: #3a3a3a;
}
.events-single-banner h1 {
  font-size: 58px;
  margin: 0 0 20px;
  color: #ffffff;
}
@media (min-width: 782px) {
  .events-single-banner .event-details-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.events-single-banner .event-details-list li {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
}
.events-single-banner .event-details-list li.address {
  width: 100%;
  margin: 10px 0 0;
}
.events-single-banner .event-details-list li:nth-child(2) {
  margin: 10px 0 0;
}
@media (min-width: 782px) {
  .events-single-banner .event-details-list li:nth-child(2) {
    margin: 0 0 0 20px;
  }
}
.events-single-banner .event-details-list li:nth-child(3) {
  margin: 10px 0 0;
}
.events-single-banner .event-details-list svg {
  width: 15px;
  margin-right: 10px;
}
.events-single-banner .event-details-list svg path {
  fill: currentColor;
}
.events-single-banner .btn, .events-single-banner .serviceAction__form [type=submit], .serviceAction__form .events-single-banner [type=submit], .events-single-banner .wpcf7-form button, .wpcf7-form .events-single-banner button,
.events-single-banner .wpcf7-form [type=submit],
.wpcf7-form .events-single-banner [type=submit], .events-single-banner [data-form-block-id] form button, [data-form-block-id] form .events-single-banner button, .events-single-banner .newsletter__form [type=submit], .newsletter__form .events-single-banner [type=submit], .events-single-banner .slideout-form [type=submit], .slideout-form .events-single-banner [type=submit], .events-single-banner .popup-form [type=submit], .popup-form .events-single-banner [type=submit], .events-single-banner .aboutAction__form [type=submit], .aboutAction__form .events-single-banner [type=submit], .events-single-banner .contact__form [type=submit], .contact__form .events-single-banner [type=submit] {
  margin: 45px 0 0;
}
.events-single-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.events-single-content {
  position: relative;
}
.events-single-content .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  padding: 90px 0;
}
@media (max-width: 782px) {
  .events-single-content .inner {
    width: calc(100% - 40px);
  }
}
.events-single-content h2 {
  color: #cfb054;
  font-size: 36px;
  margin: 30px 0;
}
.events-single-content p {
  color: #0c0c0e;
  margin: 18px auto;
  max-width: 600px;
}
.events-single-content ul,
.events-single-content ol {
  margin: 18px auto;
  max-width: 600px;
}
.events-single-content li {
  font-size: 18px;
  color: #0c0c0e;
  line-height: 28px;
  background-position: left 4px;
  background-image: url("data:image/svg+xml,%3Csvg id='Fill_4' data-name='Fill 4' xmlns='http://www.w3.org/2000/svg' width='15.457' height='17.964' viewBox='0 0 15.457 17.964'%3E%3Cpath id='Fill_1' data-name='Fill 1' d='M7.729,17.964h0L4.3,15.971l1.425-.828,3.429,1.993-1.424.828Zm2-1.166h0L6.3,14.806l1.425-.828,3.43,1.992L9.734,16.8Zm2.294-1.332h0V13.81l3.429-1.993v1.656l-3.429,1.993Zm-.579,0h0L8.019,13.473V11.817l3.429,1.992v1.655Zm-7.44,0h0V11.48l1.425-.828v3.985l-1.424.828Zm-.579,0h0L2,14.638V10.652l1.425.828v3.985ZM6.014,14.3h0V10.316l1.425-.828v3.985L6.015,14.3Zm-4.589,0h0L0,13.473V9.488l1.425.828V14.3Zm10.6-1.165h0V11.48l3.429-1.993v1.656l-3.429,1.993Zm-.579,0h0L8.019,11.143V9.487l3.429,1.993v1.655Zm.29-2.161h0l-1.425-.828,3.429-1.993,1.426.828-3.43,1.993Zm-8.019,0h0l-1.425-.828L5.724,8.154l1.425.828L3.719,10.975Zm-2-1.164h0L.29,8.982,3.719,6.988l1.425.829L1.715,9.81Zm8.019,0h0L8.309,8.982l3.429-1.993,1.425.829L9.734,9.809Zm5.724-1.333h0l-1.424-.828V3.663l1.424.828V8.476Zm-7.438,0h0V4.491l1.424-.828V7.648L8.02,8.476Zm-.581,0h0L4.008,6.483V4.828L7.439,6.82V8.476ZM0,8.476H0V6.82L3.429,4.828V6.484L0,8.476ZM13.453,7.311h0l-1.425-.828V2.5l1.425.828V7.31Zm-3.43,0h0V3.326L11.448,2.5V6.483l-1.424.828ZM7.439,6.147h0L4.008,4.154V2.5l3.43,1.993V6.146ZM0,6.147H0V4.491L3.429,2.5V4.154L0,6.146ZM7.729,3.985h0L4.3,1.992l1.425-.828L9.153,3.158l-1.424.828Zm2-1.165h0L6.3.828,7.729,0l3.43,1.992L9.734,2.82Z' transform='translate(0 0)' fill='%23cfb054'/%3E%3C/svg%3E%0A");
  background-size: 16px auto;
  background-repeat: no-repeat;
  padding: 0 0 0 25px;
}
.events-speakers h2 {
  font-size: 36px;
  color: #0c0c0e;
  text-align: center;
  margin: 0 0 25px;
}
.events-speakers .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
}
@media (max-width: 782px) {
  .events-speakers .inner {
    width: calc(100% - 40px);
  }
}
.single-speaker .event-speaker {
  background: #ffffff;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
}
@media (min-width: 782px) {
  .single-speaker .event-speaker {
    display: flex;
  }
}
@media (min-width: 782px) {
  .single-speaker .image {
    width: 50%;
  }
}
.single-speaker .detail {
  padding: 60px 20px;
}
@media (min-width: 600px) {
  .single-speaker .detail {
    padding: 60px;
  }
}
@media (min-width: 782px) {
  .single-speaker .detail {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.multiple-speakers {
  display: grid;
  grid-gap: 15px;
}
.multiple-speakers[data-speaker-count="2"] {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  .multiple-speakers[data-speaker-count="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
.multiple-speakers[data-speaker-count="3"] {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  .multiple-speakers[data-speaker-count="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
}
.multiple-speakers[data-speaker-count="4"] {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  .multiple-speakers[data-speaker-count="4"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 782px) {
  .multiple-speakers[data-speaker-count="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
}
.multiple-speakers .image {
  margin: 0 0 20px;
}
.multiple-speakers .image img {
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(58, 58, 58, 0.2);
}
.event-speaker .image {
  position: relative;
  border-radius: 10px;
}
.event-speaker .image:after {
  content: " ";
  display: block;
  padding: 0 0 66.6%;
}
.event-speaker .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.event-speaker .name {
  font-size: 22px;
  color: #0c0c0e;
}
.event-speaker .position {
  font-size: 16px;
  font-weight: bold;
  color: #0c0c0e;
  display: block;
  margin: 5px 0 0;
}
.event-speaker .description {
  font-size: 16px;
  font-weight: bold;
  color: #8e8e99;
  line-height: 1.4;
  display: block;
  margin: 20px 0 0;
}
.factsheet-container {
  margin-bottom: 40px;
}
.factsheet-container + .factsheet-container {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .factsheet-container {
    margin-bottom: 0;
  }
}
.factsheet-container .period-title {
  margin: 0 0 30px;
  border-bottom: 2px solid #CCC;
  padding: 0 0 4px;
}
.factsheet-group {
  position: relative;
  display: table;
  width: 100%;
}
@media (max-width: 768px) {
  .factsheet-group {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media (max-width: 736px) {
  .factsheet-group {
    padding-bottom: 30px;
  }
}
.factsheet-group .accordion {
  padding: 10px 0;
}
.factsheet-group .accordion::before {
  top: 9px;
}
.factsheet-group .panel ul {
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  margin: 20px 0 0;
}
.factsheet-group h2 {
  font-size: 33px;
  line-height: 36px;
}
@media (max-width: 768px) {
  .factsheet-group h2 {
    margin-bottom: 0;
  }
}
@media (max-width: 736px) {
  .factsheet-group h2 {
    font-size: 22px;
    line-height: 26px;
  }
}
.factsheet-group .inner {
  margin-bottom: 20px;
}
.factsheet-group .inner .factsheet-item {
  width: 33%;
  display: inline-table;
  padding: 10px 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .factsheet-group .inner .factsheet-item {
    width: 50%;
  }
}
@media (max-width: 736px) {
  .factsheet-group .inner .factsheet-item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.factsheet-group .inner .factsheet-item h3 {
  font-size: 27px;
}
.factsheet-group .inner .factsheet-item a {
  color: #303030;
  display: block;
  margin: 10px 0 0;
}
.factsheet-group .show-more-container ul li {
  width: 30%;
  min-height: 158px;
}
.factsheet-group .show-more-container ul li:nth-child(1n+7) {
  max-height: 0;
  display: none;
  transition: 0.1s ease-in;
}
.page-template-page--gated-content .hero-carousel,
.single-library .hero-carousel {
  height: 395px;
  margin-bottom: 60px;
}
.page-template-page--gated-content .hero-carousel__content,
.single-library .hero-carousel__content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  padding-bottom: 0;
}
.page-template-page--gated-content .hero-carousel__content h1,
.single-library .hero-carousel__content h1 {
  max-width: 790px;
  width: 100%;
  color: #fff;
  margin-bottom: 30px;
  font-size: 63px;
}
@media (max-width: 736px) {
  .page-template-page--gated-content .hero-carousel__content h1,
  .single-library .hero-carousel__content h1 {
    font-size: 38px;
  }
}
@media (max-width: 736px) {
  .page-template-page--gated-content .hero-carousel img,
  .single-library .hero-carousel img {
    height: 100%;
  }
}
.page-template-page--gated-content .tabs__btn,
.page-template-page--gated-content .split,
.single-library .tabs__btn,
.single-library .split {
  color: #303030;
}
.page-template-page--gated-content .center-btn,
.single-library .center-btn {
  margin-bottom: 60px;
}
.page-template-page--gated-content .factsheet-bar,
.single-library .factsheet-bar {
  background-color: #9f1a65;
  background-image: none;
}
@media (max-width: 736px) {
  .page-template-page--gated-content .factsheet-bar,
  .single-library .factsheet-bar {
    margin: 20px;
  }
}
.page-template-page--gated-content .factsheet-bar .btn, .page-template-page--gated-content .factsheet-bar .serviceAction__form [type=submit], .serviceAction__form .page-template-page--gated-content .factsheet-bar [type=submit], .page-template-page--gated-content .factsheet-bar .wpcf7-form button, .wpcf7-form .page-template-page--gated-content .factsheet-bar button,
.page-template-page--gated-content .factsheet-bar .wpcf7-form [type=submit],
.wpcf7-form .page-template-page--gated-content .factsheet-bar [type=submit], .page-template-page--gated-content .factsheet-bar [data-form-block-id] form button, [data-form-block-id] form .page-template-page--gated-content .factsheet-bar button, .page-template-page--gated-content .factsheet-bar .newsletter__form [type=submit], .newsletter__form .page-template-page--gated-content .factsheet-bar [type=submit], .page-template-page--gated-content .factsheet-bar .slideout-form [type=submit], .slideout-form .page-template-page--gated-content .factsheet-bar [type=submit], .page-template-page--gated-content .factsheet-bar .popup-form [type=submit], .popup-form .page-template-page--gated-content .factsheet-bar [type=submit], .page-template-page--gated-content .factsheet-bar .aboutAction__form [type=submit], .aboutAction__form .page-template-page--gated-content .factsheet-bar [type=submit], .page-template-page--gated-content .factsheet-bar .contact__form [type=submit], .contact__form .page-template-page--gated-content .factsheet-bar [type=submit],
.single-library .factsheet-bar .btn,
.single-library .factsheet-bar .serviceAction__form [type=submit],
.serviceAction__form .single-library .factsheet-bar [type=submit],
.single-library .factsheet-bar .wpcf7-form button,
.wpcf7-form .single-library .factsheet-bar button,
.single-library .factsheet-bar .wpcf7-form [type=submit],
.wpcf7-form .single-library .factsheet-bar [type=submit],
.single-library .factsheet-bar [data-form-block-id] form button,
[data-form-block-id] form .single-library .factsheet-bar button,
.single-library .factsheet-bar .newsletter__form [type=submit],
.newsletter__form .single-library .factsheet-bar [type=submit],
.single-library .factsheet-bar .slideout-form [type=submit],
.slideout-form .single-library .factsheet-bar [type=submit],
.single-library .factsheet-bar .popup-form [type=submit],
.popup-form .single-library .factsheet-bar [type=submit],
.single-library .factsheet-bar .aboutAction__form [type=submit],
.aboutAction__form .single-library .factsheet-bar [type=submit],
.single-library .factsheet-bar .contact__form [type=submit],
.contact__form .single-library .factsheet-bar [type=submit] {
  color: #9f1a65;
}
.page-template-page--gated-content .factsheet-bar .btn:hover, .page-template-page--gated-content .factsheet-bar .serviceAction__form [type=submit]:hover, .serviceAction__form .page-template-page--gated-content .factsheet-bar [type=submit]:hover, .page-template-page--gated-content .factsheet-bar .wpcf7-form button:hover, .wpcf7-form .page-template-page--gated-content .factsheet-bar button:hover,
.page-template-page--gated-content .factsheet-bar .wpcf7-form [type=submit]:hover,
.wpcf7-form .page-template-page--gated-content .factsheet-bar [type=submit]:hover, .page-template-page--gated-content .factsheet-bar [data-form-block-id] form button:hover, [data-form-block-id] form .page-template-page--gated-content .factsheet-bar button:hover, .page-template-page--gated-content .factsheet-bar .newsletter__form [type=submit]:hover, .newsletter__form .page-template-page--gated-content .factsheet-bar [type=submit]:hover, .page-template-page--gated-content .factsheet-bar .slideout-form [type=submit]:hover, .slideout-form .page-template-page--gated-content .factsheet-bar [type=submit]:hover, .page-template-page--gated-content .factsheet-bar .popup-form [type=submit]:hover, .popup-form .page-template-page--gated-content .factsheet-bar [type=submit]:hover, .page-template-page--gated-content .factsheet-bar .aboutAction__form [type=submit]:hover, .aboutAction__form .page-template-page--gated-content .factsheet-bar [type=submit]:hover, .page-template-page--gated-content .factsheet-bar .contact__form [type=submit]:hover, .contact__form .page-template-page--gated-content .factsheet-bar [type=submit]:hover,
.single-library .factsheet-bar .btn:hover,
.single-library .factsheet-bar .serviceAction__form [type=submit]:hover,
.serviceAction__form .single-library .factsheet-bar [type=submit]:hover,
.single-library .factsheet-bar .wpcf7-form button:hover,
.wpcf7-form .single-library .factsheet-bar button:hover,
.single-library .factsheet-bar .wpcf7-form [type=submit]:hover,
.wpcf7-form .single-library .factsheet-bar [type=submit]:hover,
.single-library .factsheet-bar [data-form-block-id] form button:hover,
[data-form-block-id] form .single-library .factsheet-bar button:hover,
.single-library .factsheet-bar .newsletter__form [type=submit]:hover,
.newsletter__form .single-library .factsheet-bar [type=submit]:hover,
.single-library .factsheet-bar .slideout-form [type=submit]:hover,
.slideout-form .single-library .factsheet-bar [type=submit]:hover,
.single-library .factsheet-bar .popup-form [type=submit]:hover,
.popup-form .single-library .factsheet-bar [type=submit]:hover,
.single-library .factsheet-bar .aboutAction__form [type=submit]:hover,
.aboutAction__form .single-library .factsheet-bar [type=submit]:hover,
.single-library .factsheet-bar .contact__form [type=submit]:hover,
.contact__form .single-library .factsheet-bar [type=submit]:hover {
  color: #fff;
  border-color: #fff;
}
@media (max-width: 1024px) {
  .page-template-page--gated-content .image-block,
  .single-library .image-block {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 736px) {
  .page-template-page--gated-content .g30,
  .single-library .g30 {
    display: inline-block;
  }
}
.single-library .gated-content__gated-inner .g70 {
  width: 100%;
}
.gc-block {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 94px 100px;
}
@media (max-width: 736px) {
  .gc-block {
    padding: 40px 20px;
  }
}
.gc-block.sml {
  padding: 20px;
}
.gc-block.sml h2 {
  margin-bottom: 20px;
}
.gc-block__heading p {
  font-size: 30px;
  line-height: 38px;
  color: #303030;
}
@media (max-width: 736px) {
  .gc-block__heading p {
    font-size: 18px;
    line-height: 1.56;
  }
}
.gc-block .wpcf7-list-item.first,
.gc-block .wpcf7-list-item.last {
  display: inline-block;
  vertical-align: top;
}
.gc-block .wpcf7-list-item-label {
  margin-right: 10px;
}
.gc-block .wpcf7-form-control-wrap.friend-name {
  margin-bottom: 20px;
}
.gc-block .action__form .wpcf7-list-item label {
  color: #8e8e9a !important;
}
.gc-block .action__form [type=checkbox], .gc-block .action__form .action__form [type=radio] {
  border-color: #8e8e9a;
  background-color: transparent;
}
.gc-block .action__form [type=checkbox]:checked, .gc-block .action__form [type=radio]:checked {
  box-shadow: inset 0 0 0 3px #8e8e9a;
}
.gc-block .action__form textarea {
  height: 120px;
}
.gc-block .action__form [type=submit]:hover {
  background-color: #cfb054;
}
#gated-content__public {
  margin-bottom: 400px;
}
@media (max-width: 1024px) {
  #gated-content__public {
    margin-bottom: 180px;
  }
}
@media (max-width: 736px) {
  #gated-content__public {
    margin-bottom: 100px;
  }
}
.gated-content__gated-inner {
  width: 100%;
  display: none;
}
.gated-content__gated-inner video {
  width: 100%;
  margin-bottom: 93px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gated-content__gated-inner .vimeo {
  overflow: hidden;
  padding: 56.25% 0 0 0;
  position: relative;
  margin-bottom: 93px;
}
.gated-content__gated-inner .vimeo iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.gated-content__gated-inner .iframe-block {
  width: 100%;
  padding: 280px 0;
  margin-bottom: 40px;
}
@media (max-width: 736px) {
  .gated-content__gated-inner .iframe-block {
    padding: 230px 0;
  }
}
.gated-content__gated-inner .h3, .gated-content__gated-inner .peopleHead__content p, .peopleHead__content .gated-content__gated-inner p, .gated-content__gated-inner .homeAction__content p, .homeAction__content .gated-content__gated-inner p, .gated-content__gated-inner .editor blockquote, .editor .gated-content__gated-inner blockquote, .gated-content__gated-inner .awardsHead__content p, .awardsHead__content .gated-content__gated-inner p {
  margin-bottom: 20px;
}
@media (max-width: 736px) {
  .gated-content__gated-inner .g__col, .gated-content__gated-inner .newsletter__form p > span, .newsletter__form .gated-content__gated-inner p > span {
    width: 100%;
  }
}
.public-hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.text-carousel {
  color: #006aa6;
  padding: 20px 0;
}
.text-carousel .slide {
  width: 100%;
}
.text-carousel span,
.text-carousel strong {
  display: block;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.text-carousel .flickity-page-dots {
  text-align: left;
  bottom: 0;
}
.text-carousel .dot {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/dot-dark.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 13px;
  height: 15px;
  margin: 0 6px;
  opacity: 1;
}
.text-carousel .dot.is-selected, .text-carousel .dot:hover {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/dot-dark-active.svg);
}
.public-img {
  border-radius: 50%;
  overflow: hidden;
  height: 296px;
  width: 296px;
  margin: 0 auto 40px;
}
@media (max-width: 1024px) {
  .public-img {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 736px) {
  .public-img {
    margin-top: 40px;
  }
}
.public-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.equiniox-img {
  width: 200px;
  margin: 0 auto 40px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 736px) {
  .equiniox-img {
    margin-top: 40px;
  }
}
.equiniox-img img {
  width: 100%;
  height: auto;
}
.grant-details .grant-details-banner {
  background-color: grey;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.grant-details .grant-details-banner .overlay {
  background-color: rgba(0, 0, 0, 0.4);
}
.grant-details .grant-details-banner .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  align-items: center;
  display: flex;
  min-height: 400px;
  max-width: 1280px;
  width: calc(100% - 54px);
  position: relative;
  z-index: 2;
}
@media (max-width: 782px) {
  .grant-details .grant-details-banner .inner {
    width: calc(100% - 40px);
  }
}
@media (min-width: 782px) {
  .grant-details .grant-details-banner .inner {
    min-height: 680px;
  }
}
.grant-details .grant-details-banner .header-content h1 {
  color: #3a3a3a;
  font-size: 54px;
}
.grant-details .grant-details-banner .header-content .btn--white {
  color: #3a3a3a;
  margin-top: 45px;
}
.grant-details .grant-details-banner .header-content .btn--white:hover {
  color: #ffffff;
}
.grant-details .grant-details-banner.text-white .header-content h1 {
  color: #ffffff;
}
.grant-details .grant-details-nav {
  background-color: #ffffff;
  padding: 20px 0;
}
.grant-details .grant-details-nav .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  max-width: 1280px;
  width: calc(100% - 54px);
  position: relative;
}
@media (max-width: 782px) {
  .grant-details .grant-details-nav .inner {
    width: calc(100% - 40px);
  }
}
.grant-details .grant-details-nav ul {
  align-items: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (min-width: 860px) {
  .grant-details .grant-details-nav ul {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.grant-details .grant-details-nav ul li {
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  font-size: 16px;
  width: 30%;
  text-align: center;
}
@media (min-width: 860px) {
  .grant-details .grant-details-nav ul li {
    flex-wrap: nowrap;
    text-align: left;
    width: auto;
  }
}
.grant-details .grant-details-nav ul li a {
  color: #0c0c0e;
}
.grant-details .grant-details-nav ul li a:hover {
  color: #00817C;
}
.grant-details .grant-details-content .grant-row {
  padding: 70px 0;
}
.grant-details .grant-details-content .grant-row .inner {
  margin: 0 auto;
  width: calc(100% - 200px);
  max-width: 1200px;
  max-width: 1280px;
  width: calc(100% - 54px);
  position: relative;
}
@media (max-width: 782px) {
  .grant-details .grant-details-content .grant-row .inner {
    width: calc(100% - 40px);
  }
}
.grant-details .grant-details-content .grant-row .row-title {
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.grant-details .grant-details-content .row-background .content-wrap {
  align-items: flex-start;
  justify-content: space-between;
}
.grant-details .grant-details-content .row-background .content-wrap .row-title {
  text-align: left;
}
.grant-details .grant-details-content .row-background .content-wrap .content {
  margin-bottom: 40px;
  color: #0c0c0e;
}
.grant-details .grant-details-content .row-background .content-wrap .media {
  border-radius: 10px;
  overflow: hidden;
}
.grant-details .grant-details-content .row-background .content-wrap .media img {
  display: block;
  height: auto;
  width: 100%;
}
@media (min-width: 782px) {
  .grant-details .grant-details-content .row-background .content-wrap {
    display: flex;
  }
  .grant-details .grant-details-content .row-background .content-wrap > div {
    width: 47%;
  }
  .grant-details .grant-details-content .row-background .content-wrap .content {
    margin-bottom: 0;
  }
}
.grant-details .grant-details-content .row-criteria {
  background-color: #303030;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/bg--diamonds-dark.png);
  background-size: 52px 46px;
  background-repeat: repeat;
  background-attachment: fixed;
  color: #ffffff;
}
.grant-details .grant-details-content .row-criteria .row-title {
  color: #ffffff;
}
.grant-details .grant-details-content .row-criteria .introduction {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}
.grant-details .grant-details-content .row-criteria .criteria {
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 782px) {
  .grant-details .grant-details-content .row-criteria .criteria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grant-details .grant-details-content .row-criteria .criteria li {
  color: #ffffff;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  padding-left: 30px;
  position: relative;
}
.grant-details .grant-details-content .row-criteria .criteria li .bullet {
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: auto;
}
.grant-details .grant-details-content .row-apply .apply-wrap {
  background-color: #303030;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/bg--diamonds-dark.png);
  background-size: 52px 46px;
  background-repeat: repeat;
  background-attachment: fixed;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.grant-details .grant-details-content .row-apply .row-title {
  color: #ffffff;
  font-family: "Graphik Bold Web", sans-serif;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 40px;
}
.grant-details .grant-details-content .row-apply .introduction {
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}
.grant-details .grant-details-content .row-success-stories .row-title {
  margin-bottom: 40px;
}
.grant-details .grant-details-content .row-success-stories .stories-container {
  position: relative;
}
.grant-details .grant-details-content .row-success-stories .stories-container .swiper-slide {
  height: auto;
  width: 80%;
}
.grant-details .grant-details-content .row-success-stories .story {
  background-color: #303030;
  border-radius: 5px;
  color: #ffffff;
  gap: 30px;
  padding: 20px;
  opacity: 0.85;
  transition: opacity 0.2s linear;
}
.grant-details .grant-details-content .row-success-stories .story.swiper-slide-active {
  opacity: 1;
  transition: opacity 0.2s linear;
}
@media (min-width: 762px) {
  .grant-details .grant-details-content .row-success-stories .story {
    display: flex;
  }
}
.grant-details .grant-details-content .row-success-stories .story .image {
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
.grant-details .grant-details-content .row-success-stories .story .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 762px) {
  .grant-details .grant-details-content .row-success-stories .story .image {
    margin-bottom: 0;
    width: 30%;
  }
}
@media (min-width: 762px) {
  .grant-details .grant-details-content .row-success-stories .story .content {
    width: 70%;
  }
}
.grant-details .grant-details-content .row-success-stories .story .content .title {
  color: #ffffff;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 20px;
}
.grant-details .grant-details-content .row-success-stories .story .content .awarded {
  font-size: 16px;
  margin-bottom: 20px;
}
.grant-details .grant-details-content .row-success-stories .story .content .description {
  font-size: 16px;
  margin-bottom: 0;
}
.grant-details .grant-details-content .row-meet-the-panel .row-title {
  margin-bottom: 40px;
}
.grant-details .grant-details-content .row-meet-the-panel .panel-container {
  position: relative;
}
.grant-details .grant-details-content .row-meet-the-panel .panel-container .swiper-slide {
  height: auto;
  width: 80%;
}
@media (min-width: 782px) {
  .grant-details .grant-details-content .row-meet-the-panel .panel-container .swiper-slide {
    width: 45%;
  }
}
.grant-details .grant-details-content .row-meet-the-panel .person {
  border-right: 1px solid #303030;
  padding-right: 20px;
  margin-right: 20px;
  gap: 20px;
}
.grant-details .grant-details-content .row-meet-the-panel .person:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
@media (min-width: 600px) {
  .grant-details .grant-details-content .row-meet-the-panel .person {
    display: flex;
  }
}
.grant-details .grant-details-content .row-meet-the-panel .person .image {
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  height: 200px;
}
.grant-details .grant-details-content .row-meet-the-panel .person .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 600px) {
  .grant-details .grant-details-content .row-meet-the-panel .person .image {
    margin-bottom: 0;
    height: auto;
    width: 40%;
  }
}
@media (min-width: 600px) {
  .grant-details .grant-details-content .row-meet-the-panel .person .content {
    width: 60%;
  }
}
.grant-details .grant-details-content .row-meet-the-panel .person .content .name {
  color: #303030;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 10px;
}
.grant-details .grant-details-content .row-meet-the-panel .person .content .position {
  color: #8E8E9A;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 20px;
}
.grant-details .grant-details-content .row-meet-the-panel .person .content .description {
  color: #8E8E9A;
  font-size: 16px;
  margin-bottom: 0;
}
.grant-details .grant-details-content .row-contact .inner {
  max-width: 1080px;
}
.grant-details .grant-details-content .row-contact .contact-wrap {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 80px 100px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .grant-details .grant-details-content .row-contact .contact-wrap {
    padding: 32px;
  }
}
.grant-details .grant-details-content .row-contact .row-title {
  color: #0c0c0e;
  font-family: "Graphik Bold Web", sans-serif;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: left;
}
.grant-details .grant-details-content .row-contact .introduction {
  color: #8e8e9a;
  font-size: 25px;
  max-width: 760px;
  margin: 0 0 40px;
}
.grant-details .grant-details-content .row-contact .newsletter__form [type=submit] {
  border-color: #0c0c0e;
  background-color: #0c0c0e;
  color: #fff;
}
.grant-details .grant-details-content .row-contact .newsletter__form [type=submit]:hover {
  border-color: #00817C;
  background-color: #00817C;
}
.grant-details .grant-details-content .row-timeline {
  padding-bottom: 30px;
}
.grant-details .grant-details-content .row-timeline .row-title {
  margin-bottom: 60px;
}
.grant-details .grant-details-content .row-timeline .timeline-container {
  border-bottom: 2px solid #303030;
  margin-bottom: 40px;
  padding: 0 20px;
  position: relative;
}
@media (min-width: 600px) {
  .grant-details .grant-details-content .row-timeline .timeline-container {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .grant-details .grant-details-content .row-timeline .timeline-container {
    padding: 0 60px;
  }
}
@media (min-width: 1200px) {
  .grant-details .grant-details-content .row-timeline .timeline-container {
    padding: 0 80px;
  }
}
.grant-details .grant-details-content .row-timeline .timeline-container .swiper-slide {
  height: auto;
}
.grant-details .grant-details-content .row-timeline .timeline-static {
  padding: 0 20px;
}
@media (min-width: 600px) {
  .grant-details .grant-details-content .row-timeline .timeline-static {
    padding: 0 40px 10px;
  }
}
@media (min-width: 1024px) {
  .grant-details .grant-details-content .row-timeline .timeline-static {
    border-bottom: 2px solid #303030;
    margin-bottom: 40px;
    padding: 0 60px 10px;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .grant-details .grant-details-content .row-timeline .timeline-static {
    padding: 0 80px 10px;
  }
}
@media (max-width: 1024px) {
  .grant-details .grant-details-content .row-timeline .timeline-static .item:nth-child(n+2) {
    margin: 20px 0 0;
  }
  .grant-details .grant-details-content .row-timeline .timeline-static .item:last-child .text {
    padding: 0;
    background: none;
  }
}
.grant-details .grant-details-content .row-timeline .stage {
  text-align: center;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
}
.grant-details .grant-details-content .row-timeline .stage .date {
  color: #0c0c0e;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.grant-details .grant-details-content .row-timeline .stage .text {
  color: #303030;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  font-size: 17px;
  margin: 0;
  padding-bottom: 75px;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/timeline-future.svg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: auto 55px;
  flex-grow: 1;
}
.grant-details .grant-details-content .row-timeline .stage.past .date,
.grant-details .grant-details-content .row-timeline .stage.past .text {
  color: #909090;
}
.grant-details .grant-details-content .row-timeline .stage.past .text {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/timeline-past.svg);
}
.grant-details .grant-details-content .row-timeline .stage.present .date,
.grant-details .grant-details-content .row-timeline .stage.present .text {
  color: #00817C;
}
.grant-details .grant-details-content .row-timeline .stage.present .text {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/timeline-present.svg);
}
.grant-details .grant-details-content .row-timeline .button-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
@media (min-width: 600px) {
  .grant-details .grant-details-content .row-timeline .button-wrapper {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .grant-details .grant-details-content .row-timeline .button-wrapper {
    padding: 0 60px;
  }
}
@media (min-width: 1200px) {
  .grant-details .grant-details-content .row-timeline .button-wrapper {
    padding: 0 80px;
  }
}
.grant-details .grant-details-content .row-timeline .button-wrapper .timeline-button-prev,
.grant-details .grant-details-content .row-timeline .button-wrapper .timeline-button-next {
  background-color: #E6E6E6;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border-radius: 9999px;
  cursor: pointer;
  height: 40px;
  transition: all 0.2s linear;
  width: 40px;
  z-index: 100;
}
.grant-details .grant-details-content .row-timeline .button-wrapper .timeline-button-prev:hover,
.grant-details .grant-details-content .row-timeline .button-wrapper .timeline-button-next:hover {
  transition: all 0.2s linear;
  background-color: #303030;
}
.grant-details .grant-details-content .row-timeline .button-wrapper .timeline-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.grant-details .grant-details-content .row-timeline .button-wrapper .timeline-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.grant-details .grant-details-content .row-timeline .button-wrapper .timeline-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
.grant-details .grant-details-content .row-timeline .button-wrapper .timeline-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
.grant-details .grant-details-content .row-meet-the-panel .swiper-button-prev,
.grant-details .grant-details-content .row-meet-the-panel .swiper-button-next,
.grant-details .grant-details-content .row-success-stories .swiper-button-prev,
.grant-details .grant-details-content .row-success-stories .swiper-button-next {
  position: absolute;
  border-radius: 9999px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #E6E6E6;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.2s linear;
}
.grant-details .grant-details-content .row-meet-the-panel .swiper-button-prev:hover,
.grant-details .grant-details-content .row-meet-the-panel .swiper-button-next:hover,
.grant-details .grant-details-content .row-success-stories .swiper-button-prev:hover,
.grant-details .grant-details-content .row-success-stories .swiper-button-next:hover {
  transition: all 0.2s linear;
  background-color: #303030;
}
.grant-details .grant-details-content .row-meet-the-panel .swiper-button-prev,
.grant-details .grant-details-content .row-success-stories .swiper-button-prev {
  left: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.grant-details .grant-details-content .row-meet-the-panel .swiper-button-prev:hover,
.grant-details .grant-details-content .row-success-stories .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.grant-details .grant-details-content .row-meet-the-panel .swiper-button-next,
.grant-details .grant-details-content .row-success-stories .swiper-button-next {
  right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303030' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
.grant-details .grant-details-content .row-meet-the-panel .swiper-button-next:hover,
.grant-details .grant-details-content .row-success-stories .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='1' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
@media (max-width: 736px) {
  .page-template-front-page .features .g__col, .page-template-front-page .features .newsletter__form p > span, .newsletter__form .page-template-front-page .features p > span,
  .page-template-page--home .features .g__col,
  .page-template-page--home .features .newsletter__form p > span,
  .newsletter__form .page-template-page--home .features p > span,
  .page-template-page--charity .features .g__col,
  .page-template-page--charity .features .newsletter__form p > span,
  .newsletter__form .page-template-page--charity .features p > span {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.page-template-front-page .vennBox,
.page-template-page--home .vennBox,
.page-template-page--charity .vennBox {
  margin-top: 0;
}
.page-template-front-page .hero-carousel img {
  -o-object-position: top;
     object-position: top;
}
.homeAwards {
  padding-bottom: 116px;
}
@media (max-width: 736px) {
  .homeAwards {
    padding-bottom: 120px;
  }
}
@media (min-width: 769px) {
  .homeAwards .center-btn {
    display: none;
  }
}
.homeAwards-tile {
  position: relative;
  border-radius: 8px;
  background-color: #8e8e9a;
  height: 394px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .homeAwards-tile {
    margin: 20px 0;
  }
}
@media (max-width: 736px) {
  .homeAwards-tile {
    height: 188px;
  }
}
.homeAwards-tile .homeAwards-tile--overlay {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 300ms ease;
}
.homeAwards-tile .homeAwards-tile--overlay strong {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  font-size: 45px;
  line-height: 1;
  color: #fff;
  transition: all 300ms ease;
}
@media (max-width: 768px) {
  .homeAwards-tile .homeAwards-tile--overlay strong {
    font-size: 28px;
  }
}
.homeAwards-tile .homeAwards-tile--overlay strong span {
  display: block;
}
.homeAwards-tile .homeAwards-tile--awards {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  background-color: #9f1a65;
  transform: translateY(100%);
  transition: 700ms;
  transition-timing-function: ease-out;
}
.homeAwards-tile .homeAwards-tile--awards .inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  overflow: auto;
}
.homeAwards-tile .homeAwards-tile--awards .inner .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeAwards-tile .homeAwards-tile--awards .inner .icon {
  margin: 0 15px;
  opacity: 0;
  transition: 700ms;
  transition-timing-function: ease-out;
  transition-delay: 200ms;
}
@media (max-width: 768px) {
  .homeAwards-tile .homeAwards-tile--awards .inner .icon {
    margin: 0;
    padding: 0 10px;
    float: left;
    width: 33.33333333%;
  }
}
.homeAwards-tile .homeAwards-tile--awards .inner .btn, .homeAwards-tile .homeAwards-tile--awards .inner .serviceAction__form [type=submit], .serviceAction__form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .wpcf7-form button, .wpcf7-form .homeAwards-tile .homeAwards-tile--awards .inner button,
.homeAwards-tile .homeAwards-tile--awards .inner .wpcf7-form [type=submit],
.wpcf7-form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner [data-form-block-id] form button, [data-form-block-id] form .homeAwards-tile .homeAwards-tile--awards .inner button, .homeAwards-tile .homeAwards-tile--awards .inner .newsletter__form [type=submit], .newsletter__form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .slideout-form [type=submit], .slideout-form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .popup-form [type=submit], .popup-form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .aboutAction__form [type=submit], .aboutAction__form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .contact__form [type=submit], .contact__form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit] {
  margin-top: 30px;
  opacity: 0;
  transition: 700ms;
  transition-timing-function: ease-out;
  transition-delay: 350ms;
}
@media (max-width: 768px) {
  .homeAwards-tile .homeAwards-tile--awards .inner .btn, .homeAwards-tile .homeAwards-tile--awards .inner .serviceAction__form [type=submit], .serviceAction__form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .wpcf7-form button, .wpcf7-form .homeAwards-tile .homeAwards-tile--awards .inner button,
  .homeAwards-tile .homeAwards-tile--awards .inner .wpcf7-form [type=submit],
  .wpcf7-form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner [data-form-block-id] form button, [data-form-block-id] form .homeAwards-tile .homeAwards-tile--awards .inner button, .homeAwards-tile .homeAwards-tile--awards .inner .newsletter__form [type=submit], .newsletter__form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .slideout-form [type=submit], .slideout-form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .popup-form [type=submit], .popup-form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .aboutAction__form [type=submit], .aboutAction__form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit], .homeAwards-tile .homeAwards-tile--awards .inner .contact__form [type=submit], .contact__form .homeAwards-tile .homeAwards-tile--awards .inner [type=submit] {
    display: none;
  }
}
.homeAwards-tile:hover .homeAwards-tile--overlay {
  transform: scale(1.05);
}
.homeAwards-tile:hover .homeAwards-tile--overlay strong {
  opacity: 0;
  visibility: hidden;
  top: 30%;
}
.homeAwards-tile:hover .homeAwards-tile--awards {
  transform: translateY(0%);
}
.homeAwards-tile:hover .homeAwards-tile--awards .icon,
.homeAwards-tile:hover .homeAwards-tile--awards .btn,
.homeAwards-tile:hover .homeAwards-tile--awards .serviceAction__form [type=submit],
.serviceAction__form .homeAwards-tile:hover .homeAwards-tile--awards [type=submit],
.homeAwards-tile:hover .homeAwards-tile--awards .wpcf7-form button,
.wpcf7-form .homeAwards-tile:hover .homeAwards-tile--awards button,
.homeAwards-tile:hover .homeAwards-tile--awards .wpcf7-form [type=submit],
.wpcf7-form .homeAwards-tile:hover .homeAwards-tile--awards [type=submit],
.homeAwards-tile:hover .homeAwards-tile--awards [data-form-block-id] form button,
[data-form-block-id] form .homeAwards-tile:hover .homeAwards-tile--awards button,
.homeAwards-tile:hover .homeAwards-tile--awards .newsletter__form [type=submit],
.newsletter__form .homeAwards-tile:hover .homeAwards-tile--awards [type=submit],
.homeAwards-tile:hover .homeAwards-tile--awards .slideout-form [type=submit],
.slideout-form .homeAwards-tile:hover .homeAwards-tile--awards [type=submit],
.homeAwards-tile:hover .homeAwards-tile--awards .popup-form [type=submit],
.popup-form .homeAwards-tile:hover .homeAwards-tile--awards [type=submit],
.homeAwards-tile:hover .homeAwards-tile--awards .aboutAction__form [type=submit],
.aboutAction__form .homeAwards-tile:hover .homeAwards-tile--awards [type=submit],
.homeAwards-tile:hover .homeAwards-tile--awards .contact__form [type=submit],
.contact__form .homeAwards-tile:hover .homeAwards-tile--awards [type=submit] {
  opacity: 1;
}
.homeAwards__content {
  max-width: 827px;
  margin: 0 auto 22px;
}
.homeAwards__content h2 {
  margin-bottom: 38px;
}
.homeAwards__content p {
  max-width: 704px;
  margin: 0 auto 17px;
}
@media (max-width: 768px) {
  .homeAwards__content a {
    display: none;
  }
}
.homeAwards__logos div {
  flex: 1;
  min-height: 220px;
}
.homeAwards__logos :nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width: 736px) {
  .homeAwards__logos :nth-child(2) {
    border: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.homeAction {
  padding: 45px 0;
}
@media (max-width: 768px) {
  .homeAction {
    text-align: center;
  }
  .homeAction .g__col, .homeAction .newsletter__form p > span, .newsletter__form .homeAction p > span {
    width: 100%;
  }
}
.homeAction .relative {
  text-align: center;
}
.homeAction__img {
  width: 20vw;
}
@media (max-width: 768px) {
  .homeAction__img {
    width: 40vw;
  }
}
@media (max-width: 736px) {
  .homeAction__img {
    width: 50vw;
  }
}
@media (max-width: 768px) {
  .homeAction__content {
    text-align: center;
    padding: 42px 60px 0 60px;
  }
}
@media (max-width: 736px) {
  .homeAction__content {
    padding: 42px 20px 0 20px;
  }
}
.homeAction__content img {
  margin-bottom: 47px;
}
.homeAction__content h2 {
  margin-bottom: 40px;
}
.homeAction__content p {
  margin-bottom: 40px;
}
.homeAction__form .wpcf7 [type=checkbox],
.homeAction__form .wpcf7 [type=text],
.homeAction__form .wpcf7 [type=email],
.homeAction__form .wpcf7 label {
  color: #fff;
  border-color: #fff;
}
@media (max-width: 768px) {
  .homeAction__form .wpcf7 p {
    display: block;
  }
}
.homeAction__form .wpcf7 [type=checkbox]:checked {
  background-color: #006aa6;
}
.homeAction__form .wpcf7 [type=text],
.homeAction__form .wpcf7 [type=email] {
  background-color: #fff;
  color: #006aa6;
}
.homeAction__form .wpcf7 [type=text]::-webkit-input-placeholder,
.homeAction__form .wpcf7 [type=email]::-webkit-input-placeholder {
  color: #006aa6;
}
.homeAction__form .wpcf7 [type=text]:-moz-placeholder,
.homeAction__form .wpcf7 [type=email]:-moz-placeholder {
  color: #006aa6;
}
.homeAction__form .wpcf7 [type=text]::-moz-placeholder,
.homeAction__form .wpcf7 [type=email]::-moz-placeholder {
  color: #006aa6;
}
.homeAction__form .wpcf7 [type=text]:-ms-input-placeholder,
.homeAction__form .wpcf7 [type=email]:-ms-input-placeholder {
  color: #006aa6;
}
.homeAction__form .wpcf7 [type=submit] {
  margin-left: 30px;
  padding: 17px 24px;
  font-size: 18px;
  border-radius: 26px;
}
@media (max-width: 736px) {
  .homeAction__form .wpcf7 [type=submit] {
    margin-left: 0;
  }
}
.how-it-works h2 {
  font-size: 45px;
}
@media (max-width: 736px) {
  .how-it-works h2 {
    font-size: 35px;
  }
}
.how-it-works .accordion {
  background-color: #9f1a65;
  color: #fff;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  border-radius: 10px;
  font-size: 30px;
}
@media (max-width: 736px) {
  .how-it-works .accordion {
    position: relative;
    font-size: 18px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.how-it-works .accordion.lite {
  background-color: #fff;
  color: #303030;
  padding: 10px;
  font-size: 18px;
  border-radius: 0;
}
.how-it-works .accordion.lite::after {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/chevron-dwn-sml.svg);
  height: 8px;
  top: 9px;
}
@media (max-width: 736px) {
  .how-it-works .accordion.lite::after {
    left: auto;
    right: 10px;
    height: 14px;
    transform: rotate(0deg);
  }
}
@media (max-width: 736px) {
  .how-it-works .accordion.lite.active::after {
    transform: rotate(180deg);
    background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/chevron-dwn-sml.svg);
    height: 14px;
    width: 20px;
  }
}
.how-it-works .accordion.lite h3 {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  display: inline-block;
}
.how-it-works .accordion::before {
  display: none;
}
.how-it-works .accordion::after {
  position: relative;
  content: "";
  top: 2px;
  color: #303030;
  font-weight: bold;
  float: right;
  width: 11px;
  height: 22px;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--right-wht.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 736px) {
  .how-it-works .accordion::after {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 6px;
    margin: auto;
    transform: rotate(90deg);
    width: 20px;
    height: 34px;
  }
}
.how-it-works .accordion.active::after {
  top: 6px;
  width: 22px;
  height: 13px;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--down-wht.svg);
}
@media (max-width: 736px) {
  .how-it-works .accordion.active::after {
    transform: rotate(180deg);
    width: 34px;
    height: 20px;
    top: auto;
    bottom: 12px;
  }
}
.how-it-works .panel {
  padding: 0 20px;
  margin-bottom: 20px;
}
@media (max-width: 736px) {
  .how-it-works .panel {
    margin-bottom: 0;
    overflow-y: scroll;
  }
}
.how-it-works .panel.lite {
  background-color: #fff;
}
.how-it-works .panel.planning, .how-it-works .panel.implementation, .how-it-works .panel.advice {
  background-color: #f2e4ea;
}
.how-it-works .phase-wrap {
  position: relative;
  width: 100%;
  display: inline-block;
}
.how-it-works .phase-wrap:last-of-type {
  padding-bottom: 40px;
}
.how-it-works .phase-wrap .steps {
  padding: 0;
  display: inline-block;
  width: 20%;
  text-align: center;
}
@media (max-width: 736px) {
  .how-it-works .phase-wrap .steps {
    width: 100%;
  }
}
.how-it-works .phase-wrap .steps .no-bg li {
  padding: 5px 0 5px 20px;
}
.how-it-works .phase-wrap .steps .no-bg li:before {
  top: 10px;
}
.how-it-works .phase-wrap .steps li {
  padding: 30px 0;
  background-color: #8e8e9a;
  text-align: center;
}
@media (max-width: 736px) {
  .how-it-works .phase-wrap .steps li {
    padding: 15px 0;
  }
}
.how-it-works .phase-wrap .steps li:last-of-type {
  margin: 0;
}
.how-it-works .phase-wrap .steps li.dark {
  background-color: #303030;
}
.how-it-works .phase-wrap .steps li.white {
  background-color: #fff;
}
.how-it-works .phase-wrap .steps li.white span {
  color: #303030;
}
.how-it-works .phase-wrap .steps li.purple {
  background-color: #F4DDEA;
}
.how-it-works .phase-wrap .steps li.xl {
  padding: 165px 0;
}
.how-it-works .phase-wrap .steps li span {
  color: #fff;
  font-weight: bold;
  font-size: 27px;
}
@media (max-width: 768px) {
  .how-it-works .phase-wrap .steps li span {
    font-size: 18px;
  }
}
@media (max-width: 736px) {
  .how-it-works .phase-wrap .steps li span br {
    display: none;
  }
}
.how-it-works .phase-wrap .content-wrap {
  width: 75%;
  float: right;
  vertical-align: top;
}
@media (max-width: 736px) {
  .how-it-works .phase-wrap .content-wrap {
    width: 100%;
    float: none;
  }
}
.how-it-works .phase-wrap .content-wrap .content {
  padding: 30px 20px;
  border-radius: 20px;
}
.how-it-works .phase-wrap .content-wrap .content.fluid {
  position: absolute;
  top: 85px;
  bottom: 0;
  right: 0;
  width: 75%;
}
.how-it-works .phase-wrap .content-wrap .content.fluid .inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.how-it-works .phase-wrap .content-wrap .content.editor p:first-of-type {
  font-size: 18px;
}
.how-it-works .phase-wrap .content-wrap .content.editor ul li {
  margin: 15px 0;
}
.how-it-works .phase-wrap .content-wrap .content.msg .msg-icon {
  display: inline-block;
  margin-right: 20px;
}
.how-it-works .phase-wrap .content-wrap .content.msg .inner {
  display: inline-block;
}
.how-it-works .phase-wrap .content-wrap .content.msg .inner h3 {
  font-family: "Graphik Regular Web", sans-serif;
  font-size: 18px;
  color: #9f1a65;
  margin-bottom: 10px;
}
.how-it-works .phase-wrap .content-wrap .content.msg .inner p {
  color: #303030;
}
.how-it-works .phase-wrap .content-wrap .content svg {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 85%;
}
.how-it-works .phase-wrap .content-wrap .content p, .how-it-works .phase-wrap .content-wrap .content li {
  color: #303030;
}
.how-it-works .phase-wrap .content-wrap .cta {
  position: relative;
  vertical-align: top;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  color: #9f1a65;
}
@media (max-width: 768px) {
  .how-it-works .phase-wrap .content-wrap .cta {
    padding-left: 70px;
  }
}
@media (max-width: 736px) {
  .how-it-works .phase-wrap .content-wrap .cta {
    text-align: left;
    color: #303030;
    padding: 20px;
    background-color: #F4DDEA;
  }
}
.how-it-works .phase-wrap .content-wrap .cta .long-icon {
  display: inline-block;
  margin-right: 20px;
  width: 78px;
  height: 50px;
}
.how-it-works .phase-wrap .content-wrap .cta .long-icon img {
  width: 78px;
  height: auto;
  display: block;
}
.how-it-works .phase-wrap .content-wrap .cta .msg-icon {
  display: inline-block;
  margin-right: 20px;
}
.how-it-works .phase-wrap .content-wrap .cta .inner {
  display: inline-block;
  width: calc(100% - 210px);
}
@media (max-width: 736px) {
  .how-it-works .phase-wrap .content-wrap .cta .inner {
    width: 60%;
  }
}
.how-it-works .phase-wrap .content-wrap .cta .inner h3,
.how-it-works .phase-wrap .content-wrap .cta .inner span,
.how-it-works .phase-wrap .content-wrap .cta .inner a {
  color: inherit;
}
.how-it-works .phase-wrap .content-wrap .cta .inner h3 {
  margin-bottom: 5px;
}
@media (max-width: 736px) {
  .how-it-works .phase-wrap .content-wrap .cta .inner h3 {
    margin-bottom: 15px;
  }
}
.how-it-works .phase-wrap .content-wrap .cta .inner a {
  font-weight: bold;
  text-decoration: underline;
}
.p-top {
  padding-top: 87px !important;
}
.p-btm {
  padding-bottom: 30px;
}
.m-top {
  margin-top: 45px;
}
.negative-icon {
  margin-left: -70px;
}
.arrow-malto {
  width: 9px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.move-up-alto {
  margin: -375px 0 0;
}
.move-up-delto {
  margin: -380px 0 0;
  height: 200px;
}
.no-bg {
  text-align: left;
  padding: 0 !important;
  margin: 0;
}
.no-bg li {
  background-color: transparent !important;
  text-align: left !important;
  color: #303030 !important;
}
.no-bg li ul {
  margin: 0 !important;
}
.bg--planning::after {
  position: absolute;
  content: "";
  top: 20px;
  right: 20px;
  width: 28vw;
  height: 28vw;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/bg--planning.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.bg--portfolio::after {
  position: absolute;
  content: "";
  top: 20px;
  right: 20px;
  width: 23vw;
  height: 25vw;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/bg--portfolio.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.bg--reviews {
  position: relative;
}
.bg--reviews::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 20px;
  width: 23vw;
  height: 30vw;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/bg--reviews.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.how-it-works--cta {
  padding-top: 80px;
  padding-bottom: 0;
}
@media (max-width: 736px) {
  .how-it-works--cta {
    padding-bottom: 0;
  }
}
.how-it-works--cta .cta-item {
  position: relative;
  background-color: #F4DDEA;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  border: 2px solid #9f1a65;
  padding: 43px;
  text-align: center;
  color: #9f1a65;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 393px;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item {
    margin: 60px 0;
    height: auto !important;
    background-image: none !important;
  }
}
.how-it-works--cta .cta-item .inner {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%);
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item .inner {
    position: relative;
    top: 0%;
    transform: translateY(0%);
    left: auto;
    right: auto;
  }
}
.how-it-works--cta .cta-item h3 {
  color: #9f1a65;
  margin-bottom: 20px;
}
.how-it-works--cta .cta-item p {
  margin-bottom: 20px;
}
.how-it-works--cta .cta-item .shield {
  position: absolute;
  z-index: 2;
  top: -55px;
  right: 30px;
}
.how-it-works--cta .cta-item.testimonial {
  text-align: left;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item.testimonial {
    background-color: #9f1a65;
    padding: 20px;
  }
}
.how-it-works--cta .cta-item.testimonial .inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 326px;
  width: 100%;
  float: right;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item.testimonial .inner {
    position: relative;
    top: 0%;
    transform: translateY(0%);
    left: auto;
    right: auto;
    max-width: none;
  }
}
.how-it-works--cta .cta-item.testimonial .inner .icon-quote {
  position: relative;
  top: 0;
  left: -43px;
  mix-blend-mode: soft-light;
  display: inline-block;
  opacity: 0.4;
  width: 70px;
  height: 70px;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item.testimonial .inner .icon-quote {
    top: 20px;
    left: -10px;
    width: 40px;
    height: 40px;
  }
}
.how-it-works--cta .cta-item.testimonial .inner .icon-quote svg {
  width: 100%;
  height: 100%;
}
.how-it-works--cta .cta-item.testimonial .inner .icon-quote svg path {
  stroke: #9f1a65;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item.testimonial .inner .icon-quote svg path {
    stroke: #fff;
  }
}
.how-it-works--cta .cta-item.testimonial .inner .icon-quote--reverse {
  position: absolute;
  bottom: 40px;
  right: 0;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item.testimonial .inner .icon-quote--reverse {
    width: 40px;
    height: 40px;
  }
}
.how-it-works--cta .cta-item.testimonial .inner .icon-quote--reverse svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item.testimonial .inner .icon-quote--reverse svg path {
    stroke: #fff;
  }
}
.how-it-works--cta .cta-item.testimonial .quote {
  display: block;
  font-size: 18px;
  color: #9f1a65;
  max-width: 705px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item.testimonial .quote {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
  }
}
.how-it-works--cta .cta-item.testimonial .author {
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #9f1a65;
  margin-bottom: 20px;
}
@media (max-width: 736px) {
  .how-it-works--cta .cta-item.testimonial .author {
    font-size: 22px;
    line-height: 1;
    color: #fff;
  }
}
.process--bg {
  padding-top: 90px;
  padding-bottom: 40px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=0 ); /* IE6-9 */
}
.next-arrow {
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
.next-arrow img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.page-template-page-landing-signup .btn--play {
  margin-top: 20px;
}
.page-template-page-landing-signup .action__form select {
  display: block !important;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
}
.page-template-page-landing-signup .header .header-inner {
  background-color: transparent;
  padding-left: 47px;
}
@media (max-width: 768px) {
  .page-template-page-landing-signup .header .header-inner {
    padding-left: 20px;
  }
}
.page-template-page-landing-signup .slideout-form {
  display: none;
}
.page-template-page-landing-signup div.wpcf7-mail-sent-ok {
  color: #fff;
}
.page-template-page-landing-signup .newsletter div.wpcf7-mail-sent-ok {
  color: #cfb054;
}
.page-template-page-landing-signup .header-spacer {
  height: 0 !important;
}
.page-template-page-landing-signup .header__logo,
.page-template-page-landing-signup .event-share {
  opacity: 0;
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .header .event-share {
    text-align: right;
  }
}
.page-template-page-landing-signup .header .event-share span {
  margin-right: 15px;
  color: #fff;
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .header .event-share span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 320px) {
  .page-template-page-landing-signup .header .event-share span {
    display: none;
  }
}
.page-template-page-landing-signup .header .share {
  display: inline-block;
}
.page-template-page-landing-signup .header .share a {
  display: inline-block;
  height: 14px;
  padding: 0;
  margin: 0;
}
.page-template-page-landing-signup .header .share a svg {
  height: 100%;
}
.page-template-page-landing-signup .header .share a svg path {
  fill: #fff;
  transition: fill 0.4 ease;
}
.page-template-page-landing-signup .header .share a:hover svg path {
  fill: #303030;
}
.page-template-page-landing-signup .footer__bg {
  display: none;
}
.page-template-page-landing-signup .footer {
  padding-top: 95px;
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .heroCarousel__content {
    position: absolute;
    background-color: transparent;
    bottom: 40px;
    left: 0;
    right: 0;
    padding: 0 20px;
  }
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .heroIntro__content h2 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 320px) {
  .page-template-page-landing-signup .heroIntro__content h2 {
    font-size: 28px;
    line-height: 35px;
  }
}
.page-template-page-landing-signup .heroIntro__content p {
  font-size: 24px;
  line-height: 32px;
  margin: 20px;
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .heroIntro__content p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .heroCarousel__slide {
    height: auto;
  }
  .page-template-page-landing-signup .heroCarousel__content-wrap {
    position: relative;
  }
}
.page-template-page-landing-signup .header-socket,
.page-template-page-landing-signup .header__actions,
.page-template-page-landing-signup .mainNav,
.page-template-page-landing-signup .hamburger {
  display: none;
}
.page-template-page-landing-signup .newsletter {
  z-index: 1;
  position: relative;
  margin-top: -100px;
}
@media (max-width: 768px) {
  .page-template-page-landing-signup .newsletter {
    margin-top: -130px;
  }
}
.page-template-page-landing-signup .footer__bg {
  position: absolute;
  z-index: 2;
  background-color: transparent;
}
.page-template-page-landing-signup .people {
  margin-top: 80px;
}
.page-template-page-landing-signup .people h2 {
  text-align: center;
  margin-bottom: 79px;
}
@media (max-width: 320px) {
  .page-template-page-landing-signup .people h2 {
    margin-bottom: 20px;
  }
}
.page-template-page-landing-signup .people .people-item strong {
  font-family: "Graphik Bold Web", sans-serif;
  font-size: 18px;
  line-height: 23px;
  margin: 0;
}
.page-template-page-landing-signup .people .people-item span {
  font-size: 18px;
  line-height: 28px;
  margin-top: 14px;
}
.page-template-page-landing-signup .people .people-item:hover {
  transform: scale(1);
}
.page-template-page-landing-signup .people-listing .people-item .people-item--content {
  padding: 20px 14px;
}
.page-template-page-landing-signup .people-listing {
  margin-bottom: 60px;
}
.page-template-page-landing-signup .testimonial-carousel {
  background: none !important;
}
.page-template-page-landing-signup .testimonial-carousel .flickity-viewport {
  height: auto;
}
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--slide {
  height: auto;
}
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--slide .icon-quote {
  left: -60px;
}
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--slide .icon-quote,
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--slide .icon-quote--reverse {
  position: absolute;
  top: 0;
  right: -70px;
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--slide .icon-quote,
  .page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--slide .icon-quote--reverse {
    right: 0;
  }
}
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--slide .icon-quote svg,
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--slide .icon-quote--reverse svg {
  width: auto;
}
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--content {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  max-width: 750px;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--content {
    max-width: 550px;
  }
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--content {
    background-color: transparent;
  }
}
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--content .quote {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--content .quote {
    display: block;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--content .quote {
    font-size: 18px;
    line-height: 30px;
  }
}
.page-template-page-landing-signup .testimonial-carousel .testimonial-carousel--content .author {
  margin-top: 40px;
}
.page-template-page-landing-signup .testimonial-carousel .flickity-page-dots {
  bottom: -15px;
  text-align: center;
}
.page-template-page-landing-signup .testimonial-carousel .dot.is-selected,
.page-template-page-landing-signup .testimonial-carousel .dot:hover {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/dot-dark-active.svg);
}
.page-template-page-landing-signup .testimonial-carousel .dot {
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/dot-dark.svg);
}
.page-template-page-landing-signup .heroCarousel .flickity-prev-next-button,
.page-template-page-landing-signup .heroCarousel .flickity-page-dots {
  display: none;
}
@media (max-width: 1024px) {
  .page-template-page-landing-signup .col-offset--10 {
    margin: 0;
  }
}
@media (max-width: 736px) {
  .page-template-page-landing-signup .map-wrap {
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .page-template-page-landing-signup .testimonials .g__col, .page-template-page-landing-signup .testimonials .newsletter__form p > span, .newsletter__form .page-template-page-landing-signup .testimonials p > span {
    width: 100%;
  }
}
.action {
  position: relative;
  padding-top: 130px;
  padding-bottom: 60px;
  color: #fff;
}
@media (max-width: 768px) {
  .action.alt_bg {
    padding-top: 53px;
  }
}
.action h1 {
  color: inherit;
  font-size: 72px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .action h1 {
    font-size: 55px;
  }
}
@media (max-width: 736px) {
  .action h1 {
    font-size: 38px;
    line-height: 42px;
  }
}
@media (max-width: 320px) {
  .action h1 {
    font-size: 28px;
    line-height: 35px;
  }
}
.action__content p {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 40px;
}
@media (max-width: 736px) {
  .action__content p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
.action__content p strong {
  opacity: 1;
}
.action__content p a {
  text-decoration: underline;
}
.action__content p a:hover {
  text-decoration: none;
}
.action__content p.complete {
  margin-bottom: 130px;
}
.action__form [type=text],
.action__form [type=email],
.action__form [type=tel],
.action__form [type=number],
.action__form [type=date],
.action__form select,
.action__form textarea {
  border-color: #8e8e9a;
  background-color: #fff;
}
.action__form [type=checkbox],
.action__form [type=radio] {
  border-color: #fff;
  background-color: transparent;
}
.action__form .wpcf7-form .wpcf7-list-item label {
  color: #fff;
  font-size: 16px;
}
.action__form [type=submit] {
  background-color: #303030;
  border-color: #303030;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 736px) {
  .action__form [type=submit] {
    padding: 15px 35px;
  }
}
.action__form [type=submit]:hover {
  background-color: #fff;
  border-color: #fff;
  color: #303030 !important;
}
.action__form .wpcf7-form p {
  display: block;
}
.action .event-details-list {
  display: inline-block;
  width: 100%;
  padding-bottom: 40px;
}
.action .event-details-list li {
  display: block;
  font-size: 20px;
  line-height: 20px;
  padding: 8px 0;
}
.action .event-details-list li svg {
  width: 15px;
  margin-right: 10px;
}
.action .event-details-list li svg path {
  fill: #fff;
}
.action .event-details-cta {
  margin-top: 40px;
}
.action .event-details-cta .btn, .action .event-details-cta .serviceAction__form [type=submit], .serviceAction__form .action .event-details-cta [type=submit], .action .event-details-cta .wpcf7-form button, .wpcf7-form .action .event-details-cta button,
.action .event-details-cta .wpcf7-form [type=submit],
.wpcf7-form .action .event-details-cta [type=submit], .action .event-details-cta [data-form-block-id] form button, [data-form-block-id] form .action .event-details-cta button, .action .event-details-cta .newsletter__form [type=submit], .newsletter__form .action .event-details-cta [type=submit], .action .event-details-cta .slideout-form [type=submit], .slideout-form .action .event-details-cta [type=submit], .action .event-details-cta .popup-form [type=submit], .popup-form .action .event-details-cta [type=submit], .action .event-details-cta .aboutAction__form [type=submit], .aboutAction__form .action .event-details-cta [type=submit], .action .event-details-cta .contact__form [type=submit], .contact__form .action .event-details-cta [type=submit] {
  padding: 15px 35px;
}
.float-container {
  position: relative;
  max-width: 1130px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 27px;
  margin-bottom: 80px;
}
.float-container .floating-img {
  position: absolute;
  width: 296px;
  height: 296px;
  overflow: hidden;
  border-radius: 50%;
  margin-top: -385px;
}
@media (max-width: 1024px) {
  .float-container .floating-img {
    position: relative;
    margin-top: -550px;
  }
}
@media (max-width: 768px) {
  .float-container .floating-img {
    margin-left: 55%;
    margin-top: -260px;
  }
}
@media (max-width: 736px) {
  .float-container .floating-img {
    width: 218px;
    height: 218px;
    margin-left: auto;
    margin-right: 20px;
    left: 0;
    right: 0;
    margin-bottom: 100px;
  }
}
.float-container .floating-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.float-container .floating-img.half-float {
  margin-top: -250px;
}
.static-img {
  position: relative;
  width: 367px;
  height: 367px;
  overflow: hidden;
  border-radius: 50%;
  margin-top: 60px;
}
.static-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.countdown-wrapper {
  position: relative;
}
.countdown-wrapper.loaded .loading-spinner {
  display: none;
}
.countdown-wrapper.is-loading .countdown,
.countdown-wrapper.is-loading .event-details-list,
.countdown-wrapper.is-loading .action h1,
.countdown-wrapper.is-loading .action__form,
.countdown-wrapper.is-loading .action__content {
  opacity: 0;
}
.action__form.hide-form {
  opacity: 0 !important;
}
.action__form span {
  font-weight: bold !important;
}
.loading-spinner {
  display: inline;
  position: relative;
  z-index: 999999;
  left: 0;
  right: 0;
  position: absolute;
}
.loading-spinner .spin-icon {
  margin: auto;
  width: 80px;
  height: 80px;
  border: solid 3px transparent;
  border-top-color: #fff;
  border-left-color: #fff;
  border-radius: 80px;
  animation: loading-spinner 500ms linear infinite;
}
@keyframes loading-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.countdown-col {
  width: 50%;
  padding-right: 10%;
}
@media screen and (max-width: 1096px) {
  .countdown-col {
    padding-left: 20px;
  }
}
.countdown-col__reverse {
  width: 50%;
  padding-right: 10%;
}
@media screen and (max-width: 1096px) {
  .countdown-col__reverse {
    padding-right: 20px;
  }
}
.countdown {
  margin-bottom: 40px;
}
.countdown ul {
  padding: 0;
  margin: 0;
}
.countdown ul li {
  display: inline-block;
  font-size: 18px;
  list-style-type: none;
  text-transform: uppercase;
  color: #8e8e9a;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 0 4px;
  padding: 18px 10px;
  width: 93px;
  height: 120px;
}
@media (max-width: 1024px) {
  .countdown ul li {
    width: 82px;
    padding: 25px 0;
  }
}
@media (max-width: 768px) {
  .countdown ul li {
    padding: 11px 0;
  }
}
@media screen and (max-width: 834px) {
  .countdown ul li {
    width: 65px;
    height: 86px;
    font-size: 15px;
    padding: 5px 0;
  }
}
@media (max-width: 320px) {
  .countdown ul li {
    width: 56px;
    font-size: 12px;
    padding: 10px 0;
  }
}
.countdown ul li.msg {
  padding: 15px;
}
.countdown ul li.msg span {
  font-size: 18px;
  margin: 0;
}
.countdown ul li span {
  display: block;
  font-weight: bold;
  color: #303030;
  margin-bottom: 10px;
  font-size: 45px;
}
@media (max-width: 1024px) {
  .countdown ul li span {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .countdown ul li span {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .countdown ul li span {
    font-size: 32px;
  }
}
.attend-list {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 20px;
  background-image: url("/wp-content/themes/equilibrium/_src/images/reasonBg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.attend-list.on-events-single {
  background-color: #212125;
  margin: 0 0 120px;
  padding: 60px 0 40px;
}
.attend-list__content {
  text-align: center;
}
.attend-list__content h2 {
  color: inherit;
  margin-bottom: 37px;
}
@media (max-width: 320px) {
  .attend-list__content h2 {
    font-size: 28px;
    line-height: 35px;
  }
}
.attend-list__content p {
  margin: 0;
}
.attend-list ul {
  width: 100%;
  margin: 0 auto;
  list-style: none;
  padding-left: 40px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 60px;
       column-gap: 60px;
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.56;
  font-weight: 400;
  margin-bottom: 1.5em;
}
@media (max-width: 736px) {
  .attend-list ul {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.attend-list ul li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 8px;
}
.attend-list ul li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--bullet.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 12px;
  height: 15px;
}
.directions {
  padding-top: 70px;
  padding-bottom: 80px;
}
.directions h2 {
  margin-bottom: 10px;
}
@media (max-width: 736px) {
  .directions h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 320px) {
  .directions h2 {
    font-size: 28px;
    line-height: 35px;
  }
}
.directions ul {
  margin-bottom: 40px;
}
.directions ul li {
  font-size: 18px;
}
.directions ul li svg {
  margin-right: 10px;
}
.directions p {
  margin-bottom: 40px;
}
.testimonials {
  padding-top: 63px;
  padding-bottom: 63px;
}
.testimonials h2 {
  text-align: center;
  font-size: 45px;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .testimonials h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 736px) {
  .testimonials h2 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 320px) {
  .testimonials h2 {
    font-size: 28px;
    line-height: 35px;
  }
}
.people-carousel {
  width: 100%;
}
.people-carousel:after {
  content: "";
}
@media (max-width: 768px) {
  .people-carousel:after {
    content: "flickity";
    display: none;
  }
}
.people-carousel .carousel-cell {
  width: 50%;
  border-radius: 20px;
  padding: 0 10px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .people-carousel .carousel-cell {
    width: 100%;
  }
}
.new-cal .add-to-calendar-label,
.new-cal-d .add-to-calendar-label,
.new-cal-d2 .add-to-calendar-label,
.new-cal-m .add-to-calendar-label {
  cursor: pointer;
  display: inline-block;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  transition: 0.15s linear;
  line-height: 1;
  font-family: "Graphik Medium Web", sans-serif;
  font-weight: 500;
  padding: 17px 64px !important;
  border-radius: 26px;
  font-size: 18px;
  outline: 0;
}
.new-cal .add-to-calendar-label:hover,
.new-cal-d .add-to-calendar-label:hover,
.new-cal-d2 .add-to-calendar-label:hover,
.new-cal-m .add-to-calendar-label:hover {
  color: #303030;
  background-color: #fff;
  border-color: #fff;
}
@media (max-width: 736px) {
  .new-cal .add-to-calendar-label,
  .new-cal-d .add-to-calendar-label,
  .new-cal-d2 .add-to-calendar-label,
  .new-cal-m .add-to-calendar-label {
    font-size: 14px;
    padding: 19px 26px;
  }
}
.new-cal .add-to-calendar-dropdown,
.new-cal-d .add-to-calendar-dropdown,
.new-cal-d2 .add-to-calendar-dropdown,
.new-cal-m .add-to-calendar-dropdown {
  top: 54px;
  border-radius: 20px;
  max-width: 266px;
  width: 100%;
}
@media (max-width: 736px) {
  .new-cal .add-to-calendar-dropdown,
  .new-cal-d .add-to-calendar-dropdown,
  .new-cal-d2 .add-to-calendar-dropdown,
  .new-cal-m .add-to-calendar-dropdown {
    top: 50px;
    max-width: 236px;
  }
}
.new-cal .add-to-calendar-dropdown a,
.new-cal-d .add-to-calendar-dropdown a,
.new-cal-d2 .add-to-calendar-dropdown a,
.new-cal-m .add-to-calendar-dropdown a {
  color: #303030;
  cursor: pointer;
}
@media (max-width: 736px) {
  .new-cal-d2,
  .new-cal,
  .new-cal-d {
    margin-bottom: 20px;
  }
}
.new-cal-d2 .add-to-calendar-dropdown,
.new-cal .add-to-calendar-dropdown,
.new-cal-d .add-to-calendar-dropdown {
  top: -147px;
}
.lower-section.action .event-details-list {
  padding-bottom: 0;
}
.clickdform.mainDiv {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.clickdform span {
  color: #ffffff !important;
  margin-bottom: 4px !important;
}
.clickdform .requiredStar {
  color: #ffffff !important;
}
.clickdform input[type=text],
.clickdform textarea,
.clickdform select {
  font-family: "Verdana" !important;
  font-size: 18px !important;
  padding: 16px 15px 13px !important;
  border-top: 1px solid #8e8e9a !important;
  border-left: 1px solid #8e8e9a !important;
  border-right: 1px solid #8e8e9a !important;
  border-bottom: 1px solid #8e8e9a !important;
  margin-bottom: 10px !important;
}
.clickdform select {
  height: auto !important;
}
.responsiveCellSize1 {
  width: 100% !important;
  min-width: 100% !important;
}
.clickdform .responsiveCell div.alignTop {
  display: block !important;
}
.clickdform .minSize1 {
  width: 100% !important;
  min-width: 100% !important;
}
.clickdform .maxSize1 {
  max-width: 100% !important;
}
.buttonContainer {
  margin-right: 0 !important;
}
#btnSubmit {
  cursor: pointer !important;
  display: inline-block !important;
  background: #303030 !important;
  border: 1px solid #303030 !important;
  color: #ffffff !important;
  transition: 0.15s linear !important;
  line-height: 1 !important;
  font-family: "Graphik Medium Web", sans-serif !important;
  font-weight: 500 !important;
  padding: 17px 64px !important;
  border-radius: 26px !important;
  font-size: 18px !important;
  outline: 0 !important;
}
#btnSubmit:hover {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #303030 !important;
}
.page-template-page--latest-info .hero-carousel__content h1 {
  color: #fff;
  max-width: 550px;
  width: 100%;
  margin-bottom: 40px;
}
.page-template-page--latest-info .hero-carousel__content .subtitle {
  max-width: 550px;
  width: 100%;
}
.page-template-page--latest-info .factsheet-bar {
  background-image: none;
  background-color: #9f1a65;
}
.page-template-page--latest-info .factsheet-bar .btn, .page-template-page--latest-info .factsheet-bar .serviceAction__form [type=submit], .serviceAction__form .page-template-page--latest-info .factsheet-bar [type=submit], .page-template-page--latest-info .factsheet-bar .wpcf7-form button, .wpcf7-form .page-template-page--latest-info .factsheet-bar button,
.page-template-page--latest-info .factsheet-bar .wpcf7-form [type=submit],
.wpcf7-form .page-template-page--latest-info .factsheet-bar [type=submit], .page-template-page--latest-info .factsheet-bar [data-form-block-id] form button, [data-form-block-id] form .page-template-page--latest-info .factsheet-bar button, .page-template-page--latest-info .factsheet-bar .newsletter__form [type=submit], .newsletter__form .page-template-page--latest-info .factsheet-bar [type=submit], .page-template-page--latest-info .factsheet-bar .slideout-form [type=submit], .slideout-form .page-template-page--latest-info .factsheet-bar [type=submit], .page-template-page--latest-info .factsheet-bar .popup-form [type=submit], .popup-form .page-template-page--latest-info .factsheet-bar [type=submit], .page-template-page--latest-info .factsheet-bar .aboutAction__form [type=submit], .aboutAction__form .page-template-page--latest-info .factsheet-bar [type=submit], .page-template-page--latest-info .factsheet-bar .contact__form [type=submit], .contact__form .page-template-page--latest-info .factsheet-bar [type=submit] {
  color: #9f1a65;
}
.page-template-page--latest-info .factsheet-bar .btn:hover, .page-template-page--latest-info .factsheet-bar .serviceAction__form [type=submit]:hover, .serviceAction__form .page-template-page--latest-info .factsheet-bar [type=submit]:hover, .page-template-page--latest-info .factsheet-bar .wpcf7-form button:hover, .wpcf7-form .page-template-page--latest-info .factsheet-bar button:hover,
.page-template-page--latest-info .factsheet-bar .wpcf7-form [type=submit]:hover,
.wpcf7-form .page-template-page--latest-info .factsheet-bar [type=submit]:hover, .page-template-page--latest-info .factsheet-bar [data-form-block-id] form button:hover, [data-form-block-id] form .page-template-page--latest-info .factsheet-bar button:hover, .page-template-page--latest-info .factsheet-bar .newsletter__form [type=submit]:hover, .newsletter__form .page-template-page--latest-info .factsheet-bar [type=submit]:hover, .page-template-page--latest-info .factsheet-bar .slideout-form [type=submit]:hover, .slideout-form .page-template-page--latest-info .factsheet-bar [type=submit]:hover, .page-template-page--latest-info .factsheet-bar .popup-form [type=submit]:hover, .popup-form .page-template-page--latest-info .factsheet-bar [type=submit]:hover, .page-template-page--latest-info .factsheet-bar .aboutAction__form [type=submit]:hover, .aboutAction__form .page-template-page--latest-info .factsheet-bar [type=submit]:hover, .page-template-page--latest-info .factsheet-bar .contact__form [type=submit]:hover, .contact__form .page-template-page--latest-info .factsheet-bar [type=submit]:hover {
  color: #fff;
}
@media (max-width: 736px) {
  .page-template-page--latest-info .g30 {
    display: block;
  }
}
.latest-information {
  padding-top: 92px;
  padding-bottom: 0;
}
.latest-information .postPreview {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  margin-bottom: 20px;
}
.latest-information .postPreview .img-mask {
  border-radius: 20px 20px 0 0;
}
.latest-information .postPreview .postPreview__content {
  padding: 0 20px 20px 20px;
}
.latest-information .postPreview .postPreview__content h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.latest-information .postPreview .postPreview__content span {
  display: block;
  font-family: "Graphik Regular Web", sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
}
.latest-information .post-list .postPreview {
  margin: 20px 0;
}
.latest-information .content-block {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 40px 40px;
}
.latest-information .content-block h2 {
  font-family: "Graphik Regular Web", sans-serif;
  font-size: 30px;
  margin-bottom: 20px;
}
.latest-information .content-block p {
  font-size: 16px;
}
.latest-information .content-block ul li {
  padding-bottom: 15px;
}
.latest-information .content-block ul li:last-of-type {
  padding-bottom: 0;
}
.latest-information .content-block ul li a:hover {
  color: #303030;
}
.latest-information .content-block__aside {
  position: sticky;
  top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 736px) {
  .latest-information .content-block__aside {
    margin-top: 20px;
  }
}
.latestHead {
  padding-top: 93px;
  margin-bottom: 92px;
  position: relative;
  z-index: 15;
}
@media (max-width: 736px) {
  .latestHead {
    padding-top: 79px;
    margin-bottom: 40px;
  }
}
.latestHead__content {
  max-width: 864px;
}
@media (max-width: 768px) {
  .latestHead__content {
    max-width: 504px;
  }
}
.latestHead__content h1 {
  margin-bottom: 36px;
}
@media (max-width: 736px) {
  .latestHead__content h1 {
    margin-bottom: 30px;
  }
}
.search .latestHead__content h1 {
  font-weight: 400;
}
.latestHead__content a {
  text-decoration: underline;
}
.latestHead__content a:hover {
  text-decoration: none;
}
.latestHead__content a.btn, .latestHead__content .serviceAction__form a[type=submit], .serviceAction__form .latestHead__content a[type=submit],
.latestHead__content .wpcf7-form a[type=submit],
.wpcf7-form .latestHead__content a[type=submit], .latestHead__content .newsletter__form a[type=submit], .newsletter__form .latestHead__content a[type=submit], .latestHead__content .slideout-form a[type=submit], .slideout-form .latestHead__content a[type=submit], .latestHead__content .popup-form a[type=submit], .popup-form .latestHead__content a[type=submit], .latestHead__content .aboutAction__form a[type=submit], .aboutAction__form .latestHead__content a[type=submit], .latestHead__content .contact__form a[type=submit], .contact__form .latestHead__content a[type=submit] {
  text-decoration: none;
  margin-bottom: 86px;
}
.latestHead__content em {
  font-style: normal;
  font-weight: 900;
}
.latestHead__content p {
  line-height: 25px;
  margin-bottom: 86px;
  color: #0c0c0e;
  font-size: 21px;
}
@media (max-width: 736px) {
  .latestHead__content p {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .latestHead__content p {
    font-size: 18px;
  }
}
.latestHead__content strong {
  color: #0c0c0e;
  font-weight: 500;
}
@media (max-width: 736px) {
  .latestHead__filters {
    display: block;
  }
}
.latestHead__filters .dropdown {
  margin-right: 30px;
  max-width: 120px;
}
@media (max-width: 736px) {
  .latestHead__filters .dropdown {
    margin-right: 20px;
    margin-bottom: 15px;
    width: 47%;
    max-width: none;
    float: left;
  }
  .latestHead__filters .dropdown ~ .dropdown {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .latestHead__filters .dropdown {
    width: 46%;
  }
}
.latestHead__filters .dropdown .dropdown__title {
  text-transform: uppercase;
  font-size: 12px;
  color: #303030;
  font-weight: 500;
  border-bottom: 0;
}
.latestHead__filters .reset {
  text-transform: uppercase;
  font-size: 12px;
}
.latest__search {
  margin-left: auto;
  border-bottom: 0;
  padding: 7px 0;
  max-width: 100px;
}
.latest__search input {
  background-color: transparent;
  box-shadow: none;
  border: 0;
  color: #303030;
  font-size: 12px;
  font-weight: 500;
  outline: 0;
  padding: 0;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .latest__search input {
    font-size: 14px;
  }
}
.latest__search input::-webkit-input-placeholder {
  font-size: inherit;
  font-weight: 500;
}
@media (max-width: 736px) {
  .latest__search input::-webkit-input-placeholder {
    font-family: "Graphik Medium Web", sans-serif;
  }
}
.latest__search input:-moz-placeholder {
  font-size: inherit;
  font-weight: 500;
}
@media (max-width: 736px) {
  .latest__search input:-moz-placeholder {
    font-family: "Graphik Medium Web", sans-serif;
  }
}
.latest__search input::-moz-placeholder {
  font-size: inherit;
  font-weight: 500;
}
@media (max-width: 736px) {
  .latest__search input::-moz-placeholder {
    font-family: "Graphik Medium Web", sans-serif;
  }
}
.latest__search input:-ms-input-placeholder {
  font-size: inherit;
  font-weight: 500;
}
@media (max-width: 736px) {
  .latest__search input:-ms-input-placeholder {
    font-family: "Graphik Medium Web", sans-serif;
  }
}
.latest__search button {
  transition: 0.15s linear;
}
.latest__search button:hover {
  color: #303030;
}
@media (max-width: 736px) {
  .latest__search button {
    position: absolute;
    top: 10px;
    right: 0;
  }
}
.latest__search [stroke] {
  stroke-width: 2;
}
@media (max-width: 736px) {
  .latest__search {
    position: relative;
    display: inline-block;
    width: 100%;
  }
}
.latestFeat {
  padding-bottom: 93px;
}
@media (max-width: 736px) {
  .latestFeat {
    padding-bottom: 63px;
  }
}
.latestFeat .g40 {
  padding-left: 40px;
}
.latestFeat h2 {
  margin-bottom: 23px;
  font-size: 54px;
}
.latestFeat p {
  font-size: 16px;
  line-height: 1.56;
  margin-bottom: 30px;
}
.latestPosts {
  padding-bottom: 86px;
  position: relative;
}
.latestPosts .latest-posts-heading-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 0 30px;
}
@media (max-width: 782px) {
  .latestPosts .latest-posts-heading-strip {
    display: block;
  }
}
.latestPosts .latest-posts-heading-strip h2 {
  font-size: 36px;
}
@media (max-width: 782px) {
  .latestPosts .latest-posts-heading-strip h2 {
    margin: 0 0 10px;
  }
}
.latestPosts .g__col, .latestPosts .newsletter__form p > span, .newsletter__form .latestPosts p > span {
  margin-bottom: 88px;
}
@media (max-width: 736px) {
  .latestPosts .g__col, .latestPosts .newsletter__form p > span, .newsletter__form .latestPosts p > span {
    margin-bottom: 63px;
  }
  .page-events .latestPosts .g__col, .page-events .latestPosts .newsletter__form p > span, .newsletter__form .page-events .latestPosts p > span {
    margin-bottom: 0;
  }
  .page-events .latestPosts .g__col:nth-child(n+2), .page-events .latestPosts .newsletter__form p > span:nth-child(n+2), .newsletter__form .page-events .latestPosts p > span:nth-child(n+2) {
    display: none;
  }
}
.latestPosts h3 {
  font-family: "Graphik Medium Web", sans-serif;
}
@media (max-width: 736px) {
  .latestPosts h3, .latestPosts h3 + div {
    height: auto !important;
  }
}
.latestPosts__pager {
  padding-top: 93px;
  text-align: center;
  font-size: 18px;
  color: #303030;
  position: relative;
  width: 100%;
}
@media (max-width: 736px) {
  .latestPosts__pager {
    display: block;
    margin-top: 0;
    padding-top: 30px;
  }
  .latestPosts__pager span {
    display: none;
  }
}
.latestPosts__pager a {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}
.latestPosts__pager a:hover {
  text-decoration: underline;
}
.latestPosts__pager a:first-child {
  margin-left: 0;
  margin-right: auto;
}
.latestPosts__pager a:last-child {
  margin-right: 0;
  margin-left: auto;
}
.latestPosts__pager span {
  font-family: "Graphik Medium Web", sans-serif;
  font-size: 15px;
  position: absolute;
}
@media (max-width: 736px) {
  .latestPosts__pager span {
    position: relative;
    bottom: 0;
    padding: 0 10px;
  }
}
.latestPosts__empty {
  padding-top: 93px;
  padding-bottom: 322px;
  position: relative;
}
.latestPosts__empty h2 {
  margin-bottom: 40px;
}
.latestPosts__empty a {
  text-decoration: underline;
}
.latestPosts__empty a:hover {
  text-decoration: none;
  color: #303030;
}
.post-pagination {
  position: absolute;
}
.post-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.post-pagination ul li {
  font-family: "Graphik Medium Web", sans-serif;
  color: #8e8e9a;
  font-weight: 500;
}
.post-pagination ul li.font-bold {
  color: #303030;
  font-family: "Graphik Bold Web", sans-serif;
  font-weight: 900;
}
.single-library .heroCarousel .heroCarousel__slide {
  height: 68vh;
}
@media (max-width: 768px) {
  .single-library .heroCarousel .heroCarousel__slide {
    height: 45vh;
    padding: 0;
  }
}
@media (max-width: 736px) {
  .single-library .heroCarousel .heroCarousel__slide {
    height: 33vh;
  }
}
.single-library .heroCarousel .heroCarousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
.single-library .heroIntro {
  padding-bottom: 0;
}
@media (max-width: 736px) {
  .single-library .heroIntro {
    padding-bottom: 0;
  }
}
.single-library .heroIntro .heroIntro__content {
  max-width: 705px;
  margin: 0;
}
@media (max-width: 736px) {
  .single-library .heroIntro .heroIntro__content h1 {
    margin-bottom: 10px;
  }
}
.single-library .heroIntro .heroIntro__content p {
  color: #303030;
}
@media (max-width: 736px) {
  .single-library .heroIntro .heroIntro__content a {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.single-library .offset {
  margin-top: -16vh;
}
@media (max-width: 768px) {
  .single-library .offset {
    margin-top: -10vh;
  }
}
@media (max-width: 736px) {
  .single-library .offset {
    margin-top: 0;
  }
}
.single-library .post {
  padding-top: 42px;
}
@media (max-width: 736px) {
  .single-library .post {
    padding-top: 30px;
  }
}
.single-library .post__head p {
  color: #8e8e9a;
}
@media (max-width: 736px) {
  .single-library .post__head p {
    font-size: 18px;
    line-height: 1.56;
  }
}
.single-library .editor p:first-of-type {
  font-size: 18px;
  line-height: 1.56;
}
.single-library .post__body {
  max-width: 705px;
  margin: 0 auto;
}
.single-library .post__body blockquote {
  margin-left: -123px;
  margin-right: -123px;
}
.single-library .post__body blockquote p,
.single-library .post__body blockquote p:first-of-type {
  color: #8e8e9a;
  font-size: 27px;
}
@media (max-width: 1024px) {
  .single-library .post__body blockquote {
    margin-left: 0;
    margin-right: 0;
  }
}
.image-block {
  position: relative;
  margin-top: 80px;
  margin-left: -123px;
  margin-right: -123px;
  margin-bottom: 80px;
}
.image-block .img-caption {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.56;
}
.iframe-block {
  position: relative;
  width: 100%;
  padding: 230px 0;
  margin-bottom: 40px;
}
@media (max-width: 736px) {
  .iframe-block {
    padding: 100px 0;
  }
}
.iframe-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .post-type-archive .latestPosts.section .g50 {
    width: 50%;
  }
}
@media (max-width: 736px) {
  .post-type-archive .latestPosts.section .g50 {
    width: 100%;
  }
}
.post-type-archive-library .latestPosts__empty {
  padding-bottom: 0;
}
.single-library #gated-content__public {
  margin-bottom: 0;
}
.single-library .gc-block {
  margin-top: 60px;
}
.text-img-block {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.text-img-block .content {
  width: 50%;
}
@media (max-width: 736px) {
  .text-img-block .content {
    width: 100%;
    margin-bottom: 40px;
  }
}
.text-img-block .image {
  width: 50%;
  padding-left: 40px;
}
@media (max-width: 736px) {
  .text-img-block .image {
    width: 100%;
    padding-left: 0;
  }
}
.library-share-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(100% - 40px);
  margin: 60px auto;
}
.peopleHead {
  padding-top: 80px;
  margin-bottom: 92px;
}
@media (max-width: 736px) {
  .peopleHead {
    padding-top: 79px;
    margin-bottom: 49px;
  }
}
.peopleHead p {
  color: #8e8e9a;
}
@media (max-width: 736px) {
  .peopleHead.single {
    padding-bottom: 0;
  }
}
.peopleHead.single h1 {
  margin-bottom: 20px;
}
.peopleHead.single span {
  font-size: 18px;
}
.peopleHead.single .editor p:first-of-type {
  font-size: 18px;
  line-height: 1.56;
}
.peopleHead.single .editor blockquote {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: visible;
  background-color: #303030;
  padding: 38px 40px 40px;
}
@media (max-width: 736px) {
  .peopleHead.single .editor blockquote {
    margin-right: 0;
  }
}
.peopleHead.single .editor blockquote:before {
  position: absolute;
  content: " ";
  top: calc(100% - 2px);
  left: 34px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 34px 0 0;
  border-color: #303030 transparent transparent transparent;
}
.peopleHead.single .editor blockquote::after {
  display: none;
  content: "";
  border-left: 0;
  position: absolute;
  z-index: -1;
  bottom: -34px;
  left: 40px;
  background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/quote-point.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 41px;
  height: 41px;
}
@media (max-width: 736px) {
  .peopleHead.single .editor blockquote::after {
    left: 20px;
  }
}
.peopleHead.single .editor blockquote p,
.peopleHead.single .editor blockquote p span {
  font-family: "Graphik Bold Web", sans-serif !important;
  font-size: 32px !important;
  line-height: 1.27;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 736px) {
  .peopleHead.single .editor blockquote p,
  .peopleHead.single .editor blockquote p span {
    font-size: 22px !important;
  }
}
@media (max-width: 736px) {
  .peopleHead.single img {
    margin-top: 46px;
  }
}
.peopleHead__content {
  max-width: 704px;
}
.peopleHead__content h1 {
  margin-bottom: 36px;
}
.search .peopleHead__content h1 {
  font-weight: 400;
}
.peopleHead__content em {
  font-style: normal;
  font-weight: 900;
}
.peopleHead__content p {
  margin-bottom: 86px;
}
@media (max-width: 736px) {
  .peopleHead__content p {
    margin-bottom: 0;
  }
}
.peopleHead__content strong {
  color: #0c0c0e;
  font-weight: 500;
}
.page-template-page--people .people-listing {
  margin-top: 80px;
}
.accreditation {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 30px 30px;
  margin-bottom: 30px;
  max-width: 338px;
  width: 100%;
}
.accreditation .logo {
  width: 100%;
  height: auto;
  margin: 0 !important;
}
.person-social {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 60px;
  max-width: 338px;
  width: 100%;
}
.person-social p, .person-social h2 {
  color: #303030;
  margin-bottom: 20px;
}
.person-social ul li {
  padding: 8px 0;
}
.person-social ul li a:hover {
  color: #303030;
}
.post-item {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  margin-top: 30px;
  overflow: hidden;
}
.post-item .img-mask {
  border-radius: 0;
}
.post-item .img-mask img {
  width: 100%;
}
.post-item .post-item--content {
  padding: 20px;
}
.post-item .post-item--content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.post-item .post-item--content span {
  display: block;
}
.person-social-posts {
  display: block !important;
}
.person-social-posts i {
  width: 13px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.person-social-posts i svg {
  width: 100%;
  height: 100%;
}
.person-social-posts .post-item .img-mask img {
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 736px) {
  .person-social-posts .g__col, .person-social-posts .newsletter__form p > span, .newsletter__form .person-social-posts p > span {
    width: 100%;
  }
}
.post {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 736px) {
  .post {
    padding-bottom: 20px;
  }
}
.post__aside {
  position: sticky;
  top: 40px;
  text-align: center;
  width: 95px;
  margin-right: 27px;
}
.post__aside span {
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 736px) {
  .post__aside {
    display: none;
  }
}
.post__share .share {
  flex-direction: column;
}
.post__print {
  padding-top: 24px;
}
.post__print [data-pdf] {
  cursor: pointer;
}
.post__print [data-pdf] svg path {
  transition: fill 0.1s linear;
  fill: #303030;
}
.post__print [data-pdf]:hover svg path {
  fill: #cfb054;
}
.post__print a {
  display: inline-block;
  margin: 16px auto;
  color: #303030;
}
.post__print a:hover {
  color: #cfb054;
}
.post__print a img {
  width: 28px;
  float: none !important;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0%;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 736px) {
  .post__print a img {
    width: 15px;
    height: auto;
  }
}
.post__content {
  max-width: 950px;
  width: 100%;
  margin-left: 0;
  margin: auto;
}
@media (max-width: 1024px) {
  .postPreview__meta {
    display: block;
  }
  .postPreview__meta span {
    padding-right: 10px;
  }
}
@media (max-width: 1200px) {
  .post__image {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
  }
}
.post__head {
  max-width: 705px;
  margin: 0 auto;
}
.post__head span {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
.post__head h1 {
  margin-bottom: 38px;
}
.post__head p {
  margin-bottom: 41px;
}
@media (max-width: 736px) {
  .post__head p {
    font-size: 22px;
    line-height: 26px;
  }
}
.post__image {
  margin-bottom: 48px;
}
.post__image img {
  display: block;
  width: 100%;
}
.post__meta {
  max-width: 705px;
  margin: 0 auto 46px;
}
@media (max-width: 736px) {
  .post__meta {
    align-items: end;
  }
}
.post__meta img {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 29px;
}
.post__meta span {
  display: block;
  font-size: 16px;
}
.post__meta .share-print {
  display: none;
}
@media (max-width: 736px) {
  .post__meta .share-print {
    width: 100%;
    display: inline-block;
    float: left;
    margin-top: 20px;
  }
  .post__meta .share-print span {
    font-size: 12px;
  }
  .post__meta .share-print .post__share {
    width: 50%;
    float: left;
  }
  .post__meta .share-print .post__share .share {
    display: block;
  }
  .post__meta .share-print .post__share .share a {
    margin: 8px 4px;
    display: inline-block;
    height: 15px;
    width: 15px;
  }
  .post__meta .share-print .post__share .share a svg {
    width: 100%;
    height: 100%;
  }
  .post__meta .share-print .post__print {
    width: 50%;
    float: left;
    padding: 0;
    display: block;
  }
  .post__meta .share-print .post__print a {
    margin: 8px 4px;
    display: inline-block;
    height: 15px;
    width: 15px;
  }
  .post__meta .share-print .post__print a svg {
    width: 100%;
    height: 100%;
  }
}
.post__body {
  max-width: 705px;
  margin: 0 auto;
}
.post__body blockquote {
  margin-left: -123px;
  margin-right: -123px;
}
@media (max-width: 1024px) {
  .post__body blockquote {
    margin-left: 0;
    margin-right: 0;
  }
}
.postRelated {
  padding-top: 94px;
  padding-bottom: 180px;
  border-top: 1px solid #fff;
}
@media (max-width: 736px) {
  .postRelated {
    padding-top: 76px;
    padding-bottom: 0;
  }
  .postRelated .g__col, .postRelated .newsletter__form p > span, .newsletter__form .postRelated p > span {
    width: 100%;
    margin-bottom: 42px;
  }
}
.postRelated h2 {
  text-align: center;
  margin-bottom: 38px;
}
[data-key=sameHeightsExcerpt] {
  margin-bottom: 17px;
}
.search-results .search-meta span {
  font-size: 14px;
  color: #8e8e9a;
  margin-bottom: 4px;
}
.small-blog-notice {
  background: #e9e0c6;
  padding: 20px 25px;
  width: calc(100% + 50px);
  margin: 0 0 30px -25px;
  border-radius: 6px;
}
.small-blog-notice.blue {
  background: #c6deec;
}
.small-blog-notice.blue p {
  color: #006aa5;
}
.small-blog-notice.blue p a {
  color: #006aa5;
}
.small-blog-notice p {
  font-size: 16px !important;
  color: #90836e;
  margin: 0;
}
.small-blog-notice p:nth-child(n+2) {
  margin: 15px 0 0;
}
.small-blog-notice p a {
  color: #90836e;
  font-weight: bold;
  text-decoration: none;
}
/*
.event-detail-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  padding: 40px 0;
  display: flex;
  align-items: center;
  @media (max-width: 812px) {
    padding: 20px 0;
    min-height: 0;
  }
  .inner {
  }
  h1 {
    font-size: 44px;
    color: $c--white;
    max-width: 800px;
    @media (max-width: 812px) {
      font-size: 32px;
    }
  }
  ul {
    margin: 30px 0;
    @media (max-width: 812px) {
      margin: 20px 0;
    }
    li {
      font-size: 22px;
      color: $c--white;
      margin: 10px 0 0;
      @media (max-width: 812px) {
        font-size: 16px;
        margin: 5px 0 0;
      }
      &:first-child {
        margin: 0;
      }
      svg {
        width: 20px;
        height: 20px;
        margin: 0 15px 0 0;
        @media (max-width: 812px) {
          margin: 0 10px 0 0;
          transform: translateY(3px);
        }
      }
      path {
        fill: $c--white;
      }
    }
  }
  .btn {
    color: $c--black;
    &:hover {
      color: $c--white;
    }
  }
  &.black {
    h1 {
      color: $c--black;
    }
    ul {
      li {
        color: $c--black;
        path {
          fill: $c--black;
        }
      }
    }
    .btn {
      border-color: $c--black;
      background-color: $c--black;
      color: $c--white;
      &:hover {
        color: $c--black;
        background-color: transparent;
      }
    }
  }
  .btn--white {
    @media (max-width: 812px) {
      background: $c--brand;
      border-color: $c--brand;
      color: $c--white;
    }
  }
}
*/
/*
.single-events {
  .btn--play {
    margin-top: 20px;
  }
  .g__col {
    @include md {
      width: 100%;
    }
    @include smw {
      width: 100%;
    }
  }
  // Global overrides 
  div.wpcf7-mail-sent-ok {
    color: $c--white; 
  }
  .footer__bg {
    display: none;
  }
  .footer {
    padding-top: 95px;
  }
  // People overrides
  .people {
    margin-top: 80px;
    h2 {
      text-align: center;
      margin-bottom: 30px;
      @include xs {
        margin-bottom: 20px;
      }
    }
    .people-item {
      strong {
        font-family: $f--heading;
        font-size: 18px;
        line-height: 23px;
        margin: 0;
      }
      span {
        font-size: 18px;
        line-height: 28px;
        margin-top: 14px;
      }
      &:hover {
        transform: scale(1);
      }
    }
  }
  .people-listing .people-item .people-item--content {
    padding: 20px 14px;
  }
  .people-listing {
    margin-bottom: 60px;
  }
  // Testimonial overrides 
  // .testimonial-carousel {
  //   // border: 1px solid red;
  //   .flickity-viewport {
  //     height: auto;
  //   }
  // }
  // .testimonial-carousel--slide {
  //   height: 100%;
  //   padding: 100px 0;
  //   @include md {
  //     height: 200px;
  //     padding: 0;
  //   }
  //   .icon-quote ,
  //   .icon-quote--reverse {
  //     position: absolute;
  //     top: 0;
  //     right: -50px;
  //     @include smw {
  //       right: 0;
  //     }
  //   }
  // }
  // .testimonial-carousel {
  //   background: none;
  //   @include mdw {
  //     .quote {
  //       display: block;
  //       font-size: 30px;
  //       line-height: 38px;
  //       margin-bottom: 20px;
  //     }
  //   }
  // }
  // .testimonial-carousel .flickity-page-dots {
  //   bottom: -15px;
  // }
  // .testimonial-carousel--content {
  //   position: relative;
  //   left: 0;
  //   right: 0;
  //   margin: auto;
  //   text-align: center;
  //   @include mdw {
  //     max-width: 550px;
  //   }
  //   @include smw {
  //     background-color: transparent;
  //   }
  //   .quote {
  //     margin: 0 auto;
  //   }
  //   .author {
  //     margin-top: 40px;
  //   }
  // }
  // .testimonial-carousel .flickity-page-dots {
  //   text-align: center;
  // }
  // .testimonial-carousel .dot.is-selected,
  //  .testimonial-carousel .dot:hover {
  //   background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/dot-dark-active.svg);
  // }   
  // .testimonial-carousel .dot {
  //   background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/dot-dark.svg);
  // }
  .testimonial-carousel {
    // border: 1px solid red;
    background: none!important;
    .flickity-viewport {
      height: auto;
    }
    .testimonial-carousel--slide {
      // border: 1px solid green;
      height: auto;
      .icon-quote {
        left: -60px;
      }
      .icon-quote ,
      .icon-quote--reverse {
        position: absolute;
        top: 0;
        right: -60px;
        @include smw {
          right: 0;
        }
      }
    }
    .testimonial-carousel--content {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      margin: auto;
      text-align: center;
      max-width: 750px;
      @include mdw {
        max-width: 550px;
      }
      @include smw {
        background-color: transparent;
      }
      .quote {
        margin: 0 auto;
        @include md {
          display: block;
          font-size: 22px; // 30px;
          line-height: 32px; // 38px;
          margin-bottom: 20px;
        }
        @include smw {
          font-size: 18px;
          line-height: 30px;
        }
      }
      .author {
        margin-top: 40px;
      }
    }
  }
  .testimonial-carousel .flickity-page-dots {
    bottom: -15px;
    text-align: center;
  }
  .testimonial-carousel .dot.is-selected,
  .testimonial-carousel .dot:hover {
    background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/dot-dark-active.svg);
  }   
  .testimonial-carousel .dot {
    background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/images/dot-dark.svg);
  }
  .heroCarousel {
    .flickity-prev-next-button,
    .flickity-page-dots {
      display: none;
    }
  }
}
*/
/*
// =========== Events Details
.event-details {
  display: flex;
  // align-items: flex-end;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  @include smw {
    display: block;
  }
  li {
    float: left;
    flex-grow: 1;
    padding: 5px;
    vertical-align: top;
    list-style-type: none;
    font-family: $f--body-med;
    &:nth-child(1) {
      padding-left: 2px;
    }
    &:nth-child(3) {
      // text-align: right;
      span {
        float: right;
      }
    }
    @include smw {
      flex: 100%;
      float: none;
      &:nth-child(1) {
        margin-bottom: 10px;
        span {
          display: inline-block;
        }
        span ~ span {
          float: right;
        }
      }
      &:nth-child(3) {
        display: none;
      }
    }
  }
  .event-icon {
    position: relative;
    padding-left: 20px;
    display: block;
    &::before {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      background-repeat: no-repeat;
      background-size: 100%;
    }
  }
  .date {
    &::before {
      background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--date.svg);
      width: 13px;
      height: 15px;
    }
  }
  .time {
    &::before {
      background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--time.svg);
      width: 13px;
      height: 14px;
    }
  }
  .address {
    &::before {
      background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--location.svg);
      width: 9px;
      height: 13px;
    }
  }
}
// =========== Events Listing
.post-type-archive-events,
.tax-category_event {
  .heroCarousel {
    z-index: 1;
    .heroCarousel__slide {
      // height: 68vh; // 80vh;
      // height: 620px;
      // height: auto;
      @include md {
        // height: 45vh;
        padding: 0;
      }
      @include smw {
        // height: 33vh;
      }
      img {
        // position: relative;
        // width: 100%;
        // height: auto;
        // height: 100%;
        // object-fit: cover;
        // -o-object-position: bottom;
        // object-position: bottom;
      }
    }
  }
  // .offset {
  //   margin-top: -20vh; // -36vh;
  //   @media (min-width: 1441px) {
  //     margin-top: -25vh;
  //   }
  //   @include md {
  //     margin-top: -15vh;
  //   }
  //   @include smw {
  //     margin-top: -10vh;
  //   }
  // }
  .g__col {
    @include smw {
      width: 100%;
    }
  }
}
// =========== Events Callback
.callback {
  position: relative;
  padding: 93px 0;
  width: 100%; 
  // width: 100vw;
  // margin-left: calc(50% - 50vw); // calc(50% - 50vw);
  // margin-right: calc(50% - 50vw);
  margin-bottom: 88px;
  @include md {
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 0;
    padding-top: 45px;
    width: auto;
    text-align: left;
    .g40,
    .g60 {
      width: 100%;
    }
  }
  h2,
  .h3 {
    color: $c--white;
  }
  .g__col {
    margin-bottom: 0 !important;
  }
  .form-wrap {
    margin-top: 40px;
  }
  .wpcf7-form {
    float: right;
    @include md {
      float: none;
      margin-top: 20px;
    }
    p {
      display: flex;
      flex-wrap: wrap;
      @include md {
        display: block;
      }
    }
    span {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      margin-left: 17px;
    }
    [type="tel"],
    [type="text"]{
      border-color: $c--white;
      @include md {
        margin: 10px 0;
        display: block;
      }
      @include placeholder {
        color: $c--white;
      }
    }
    [type="submit"] {
      position: absolute;
      right: 10px;
      background-color: $c--white;
      color: $c--purple !important;
      border-color: $c--purple !important;
      // float: right; // right;
      margin-bottom: 0;
      // margin-left: 40px;
      margin-top: 20px;
      @include md {
        position: relative;
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
      }
    }
  }
}
// =========== Event cats
.event-cats {
  padding: 7px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px 8px;
  margin: 0 20px 0 0;
  @include smw {
    margin: 0;
    flex-direction: column;
  }
  li {
    @include smw {
      width: calc(50% - 9px);
      width: 100%;
      // padding: 0 10px;
    }
    &:nth-child(1) {
      a {
        margin-left: 0;
        background: transparent;
        color: $c--brand;
        border-color: $c--brand;
        &:hover {
          background: $c--brand;
          border-color: $c--brand;
          color: $c--white;
        }
      }
    }
    // &:nth-child(2) {
    //   &[data-active] {
    //     a {
    //       background: $c--dark;
    //       color: $c--white;
    //     }
    //   }
    //   a {
    //     background: transparent; // $c--dark;
    //     border-color: $c--dark; 
    //     color: $c--dark;
    //     &:hover {
    //       background: $c--dark;
    //       color: $c--white;
    //     }
    //   }
    // }
    // &:nth-child(3),
    // &:nth-child(6) {
    //   &[data-active] {
    //     a {
    //       background: $c--mid;
    //       border-color: $c--mid;
    //       color: $c--white;
    //     }
    //   }
    //   a {
    //     background: transparent;
    //     border-color: $c--mid; 
    //     color: $c--mid;
    //     &:hover {
    //       background: $c--mid;
    //       border-color: $c--mid; 
    //       color: $c--white;
    //     }
    //   }
    // }
    // &:nth-child(4) {
    //   &[data-active] {
    //     a {
    //       background: $c--blue;
    //       border-color: $c--blue;
    //       color: $c--white;
    //     }
    //   }
    //   a {
    //     background: transparent; 
    //     border-color: $c--blue;
    //     color: $c--blue;
    //     &:hover {
    //       background: $c--blue;
    //       border-color: $c--blue;
    //       color: $c--white;
    //     } 
    //   }
    // }
    // &:nth-child(5) {
    //   &[data-active] {
    //     a {
    //       background: $c--purple;
    //       border-color: $c--purple;
    //       color: $c--white;
    //     }
    //   }
    //   a {
    //     background: transparent; // $c--purple;
    //     border-color: $c--purple; 
    //     color: $c--purple; 
    //     &:hover {
    //       background: $c--purple;
    //       border-color: $c--purple; 
    //       color: $c--white;
    //     }
    //   }
    // }
    // &:nth-last-of-type(1) {
    //   a {
    //     background: transparent;
    //     border-color: $c--mid; 
    //     color: $c--mid; 
    //   }
    // }
    a {
      // margin: 10px 10px;
      cursor: pointer;
      display: inline-block;
      background: transparent; // $c--brand;
      border: 1px solid $c--black;
      color: $c--black;
      transition: 0.15s linear;
      line-height: 1;
      font-family: $f--body-med;
      font-weight: $fw--med;
      padding: 10px 30px;
      border-radius: 26px;
      font-size: 18px;
      outline: 0;
      &:hover {
        color: $c--white;
        background: $c--black;
        border-color: $c--black; 
      }
      @include smw {
        // margin: 10px 0;
        // padding: 10px;
        font-size: 14px;
        width: 100%;
        text-align: center;
      }
    }
    &[data-active] {
      a {
        background-color: $c--black;
        color: $c--white;
        border-color: $c--black;
      }
    }
    &:hover {
      a {
        position: relative;
        color: $c--white;
        // &::after {
        //   position: absolute;
        //   content: "";
        //   height: 2px;
        //   left: 0;
        //   // right: 0;
        //   width: 100%;
        //   bottom: -8px;
        //   background: $c--dark;
        // }
      }
    }
  }
  @include smw {
    // display: none;
    margin-top: 30px;
  }
}
.post-type-archive-event_topic,
.tax-category_event {
  .latestHead {
    margin-bottom: 40px;
  }
}
// Events cat 'all' active
.post-type-archive-event_topic,
.post-type-archive-events {
  .event-cats {
    li:nth-child(1) a {
      position: relative;
      color: $c--white;
      background: $c--brand;
    }
  }
  .latestHead__content p {
    @include smw {
      margin-bottom: 30px;
    }
  }
  .fullVideo {
    margin-bottom: 93px;
  }
}
.event-flag {
  position: relative;
  overflow: hidden;
  padding-left: 13.5px;
  margin-right: 13.5px;
  &::before {
    position: absolute;
    z-index: 1;
    content: "Client only";
    top: 5px;
    right: -40px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 44px;
    background-color: $c--purple;
    color: $c--white;
    transform: rotate(40deg);
    width: 125px;
    margin-top: 25px;
  }
}
.latestHead__filters.events {
  .dropdown {
    @media (min-width: 737px) {
      display: none;
    }
    width: 100%;
    margin-top: 10px;
    margin-bottom: 85px;
    .dropdown__title {
      color: $c--mid;
    }
  }
}
// Showreel Bar 
.showreel-bar {
  color: $c--white;
  text-align: center;
  @include borderAndShadow_ui();
  padding: 30px;
  margin: 80px auto;
  // background-image: url('/wp-content/themes/equilibrium/_src/images/equinox_live.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  h2 {
    color: inherit;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  p {
    margin-bottom: 26px;
    max-width: 461px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tax-category_event,
.post-type-archive-event_topic {
  .latestPosts {
    padding-bottom: 0;
  }
  .heroCarousel {
    @include smw {
      .container--slim {
        padding: 0;
      }
      .testimonial-carousel--content {
        background-color: $c--dark;
      }
    }
  }
  .latestPosts .g__col {
    margin-bottom: 0;
  }
}
// Past Events
.page-template-past-events {
  .event-topic {
    p {
      max-width: 595px;
      width: 100%;
    }
    table {
      tr {
        display: flex;
        align-items: center;
        @include smw {
          display: block;
        }
        td {
          flex: 1;
          width: auto;
          display: flex;
          @include smw {
            display: block;
          }
          &:nth-child(1) {
            display: flex;
            flex: 1 10%;
            margin-right: 20px;
          }
          &:nth-child(2) {
            width: auto; // 33%;
            @include smw {
              padding-top: 0;
            }
          }
        }
      }
      strong,
      span {
        color: $c--dark;
      }
      .btn {
        padding: 14px 50px;
        font-size: 14px;
        margin: 0 0 0 auto;
      }
    }
  }
  .latestPosts {
    padding-bottom: 0; // 30px;
    @include smw {
      padding-bottom: 0;
    }
  }
  .event-cats li:nth-last-of-type(1) a {
    border-color: $c--dark;
    color: $c--dark;
    &:hover {
      color: $c--white;
    }
  }
}
*/
/*
// =========== Events Details
.event-details {
  display: flex;
  // align-items: flex-end;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  @include smw {
    display: block;
  }
  li {
    float: left;
    flex-grow: 1;
    padding: 5px;
    vertical-align: top;
    list-style-type: none;
    font-family: $f--body-med;
    &:nth-child(1) {
      padding-left: 2px;
    }
    &:nth-child(3) {
      // text-align: right;
      span {
        float: right;
      }
    }
    @include smw {
      flex: 100%;
      float: none;
      &:nth-child(1) {
        margin-bottom: 10px;
        span {
          display: inline-block;
        }
        span ~ span {
          float: right;
        }
      }
      &:nth-child(3) {
        display: none;
      }
    }
  }
  .event-icon {
    position: relative;
    padding-left: 20px;
    display: block;
    &::before {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      background-repeat: no-repeat;
      background-size: 100%;
    }
  }
  .date {
    &::before {
      background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--date.svg);
      width: 13px;
      height: 15px;
    }
  }
  .time {
    &::before {
      background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--time.svg);
      width: 13px;
      height: 14px;
    }
  }
  .address {
    &::before {
      background-image: url(//equilibrium.bgn.agency/wp-content/themes/equilibrium/dist/../_src/images/icon--location.svg);
      width: 9px;
      height: 13px;
    }
  }
}
// =========== Events Listing
.post-type-archive-events,
.tax-category_event {
  .heroCarousel {
    z-index: 1;
    .heroCarousel__slide {
      // height: 68vh; // 80vh;
      // height: 620px;
      // height: auto;
      @include md {
        // height: 45vh;
        padding: 0;
      }
      @include smw {
        // height: 33vh;
      }
      img {
        // position: relative;
        // width: 100%;
        // height: auto;
        // height: 100%;
        // object-fit: cover;
        // -o-object-position: bottom;
        // object-position: bottom;
      }
    }
  }
  // .offset {
  //   margin-top: -20vh; // -36vh;
  //   @media (min-width: 1441px) {
  //     margin-top: -25vh;
  //   }
  //   @include md {
  //     margin-top: -15vh;
  //   }
  //   @include smw {
  //     margin-top: -10vh;
  //   }
  // }
  .g__col {
    @include smw {
      width: 100%;
    }
  }
}
// =========== Events Callback
.callback {
  position: relative;
  padding: 93px 0;
  width: 100%; 
  // width: 100vw;
  // margin-left: calc(50% - 50vw); // calc(50% - 50vw);
  // margin-right: calc(50% - 50vw);
  margin-bottom: 88px;
  @include md {
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 0;
    padding-top: 45px;
    width: auto;
    text-align: left;
    .g40,
    .g60 {
      width: 100%;
    }
  }
  h2,
  .h3 {
    color: $c--white;
  }
  .g__col {
    margin-bottom: 0 !important;
  }
  .form-wrap {
    margin-top: 40px;
  }
  .wpcf7-form {
    float: right;
    @include md {
      float: none;
      margin-top: 20px;
    }
    p {
      display: flex;
      flex-wrap: wrap;
      @include md {
        display: block;
      }
    }
    span {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      margin-left: 17px;
    }
    [type="tel"],
    [type="text"]{
      border-color: $c--white;
      @include md {
        margin: 10px 0;
        display: block;
      }
      @include placeholder {
        color: $c--white;
      }
    }
    [type="submit"] {
      position: absolute;
      right: 10px;
      background-color: $c--white;
      color: $c--purple !important;
      border-color: $c--purple !important;
      // float: right; // right;
      margin-bottom: 0;
      // margin-left: 40px;
      margin-top: 20px;
      @include md {
        position: relative;
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
      }
    }
  }
}
// =========== Event cats
.event-cats {
  padding: 7px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px 8px;
  margin: 0 20px 0 0;
  @include smw {
    margin: 0;
    flex-direction: column;
  }
  li {
    @include smw {
      width: calc(50% - 9px);
      width: 100%;
      // padding: 0 10px;
    }
    &:nth-child(1) {
      a {
        margin-left: 0;
        background: transparent;
        color: $c--brand;
        border-color: $c--brand;
        &:hover {
          background: $c--brand;
          border-color: $c--brand;
          color: $c--white;
        }
      }
    }
    // &:nth-child(2) {
    //   &[data-active] {
    //     a {
    //       background: $c--dark;
    //       color: $c--white;
    //     }
    //   }
    //   a {
    //     background: transparent; // $c--dark;
    //     border-color: $c--dark; 
    //     color: $c--dark;
    //     &:hover {
    //       background: $c--dark;
    //       color: $c--white;
    //     }
    //   }
    // }
    // &:nth-child(3),
    // &:nth-child(6) {
    //   &[data-active] {
    //     a {
    //       background: $c--mid;
    //       border-color: $c--mid;
    //       color: $c--white;
    //     }
    //   }
    //   a {
    //     background: transparent;
    //     border-color: $c--mid; 
    //     color: $c--mid;
    //     &:hover {
    //       background: $c--mid;
    //       border-color: $c--mid; 
    //       color: $c--white;
    //     }
    //   }
    // }
    // &:nth-child(4) {
    //   &[data-active] {
    //     a {
    //       background: $c--blue;
    //       border-color: $c--blue;
    //       color: $c--white;
    //     }
    //   }
    //   a {
    //     background: transparent; 
    //     border-color: $c--blue;
    //     color: $c--blue;
    //     &:hover {
    //       background: $c--blue;
    //       border-color: $c--blue;
    //       color: $c--white;
    //     } 
    //   }
    // }
    // &:nth-child(5) {
    //   &[data-active] {
    //     a {
    //       background: $c--purple;
    //       border-color: $c--purple;
    //       color: $c--white;
    //     }
    //   }
    //   a {
    //     background: transparent; // $c--purple;
    //     border-color: $c--purple; 
    //     color: $c--purple; 
    //     &:hover {
    //       background: $c--purple;
    //       border-color: $c--purple; 
    //       color: $c--white;
    //     }
    //   }
    // }
    // &:nth-last-of-type(1) {
    //   a {
    //     background: transparent;
    //     border-color: $c--mid; 
    //     color: $c--mid; 
    //   }
    // }
    a {
      // margin: 10px 10px;
      cursor: pointer;
      display: inline-block;
      background: transparent; // $c--brand;
      border: 1px solid $c--black;
      color: $c--black;
      transition: 0.15s linear;
      line-height: 1;
      font-family: $f--body-med;
      font-weight: $fw--med;
      padding: 10px 30px;
      border-radius: 26px;
      font-size: 18px;
      outline: 0;
      &:hover {
        color: $c--white;
        background: $c--black;
        border-color: $c--black; 
      }
      @include smw {
        // margin: 10px 0;
        // padding: 10px;
        font-size: 14px;
        width: 100%;
        text-align: center;
      }
    }
    &[data-active] {
      a {
        background-color: $c--black;
        color: $c--white;
        border-color: $c--black;
      }
    }
    &:hover {
      a {
        position: relative;
        color: $c--white;
        // &::after {
        //   position: absolute;
        //   content: "";
        //   height: 2px;
        //   left: 0;
        //   // right: 0;
        //   width: 100%;
        //   bottom: -8px;
        //   background: $c--dark;
        // }
      }
    }
  }
  @include smw {
    // display: none;
    margin-top: 30px;
  }
}
.post-type-archive-event_topic,
.tax-category_event {
  .latestHead {
    margin-bottom: 40px;
  }
}
// Events cat 'all' active
.post-type-archive-event_topic,
.post-type-archive-events {
  .event-cats {
    li:nth-child(1) a {
      position: relative;
      color: $c--white;
      background: $c--brand;
    }
  }
  .latestHead__content p {
    @include smw {
      margin-bottom: 30px;
    }
  }
  .fullVideo {
    margin-bottom: 93px;
  }
}
.event-flag {
  position: relative;
  overflow: hidden;
  padding-left: 13.5px;
  margin-right: 13.5px;
  &::before {
    position: absolute;
    z-index: 1;
    content: "Client only";
    top: 5px;
    right: -40px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 44px;
    background-color: $c--purple;
    color: $c--white;
    transform: rotate(40deg);
    width: 125px;
    margin-top: 25px;
  }
}
.latestHead__filters.events {
  .dropdown {
    @media (min-width: 737px) {
      display: none;
    }
    width: 100%;
    margin-top: 10px;
    margin-bottom: 85px;
    .dropdown__title {
      color: $c--mid;
    }
  }
}
// Showreel Bar 
.showreel-bar {
  color: $c--white;
  text-align: center;
  @include borderAndShadow_ui();
  padding: 30px;
  margin: 80px auto;
  // background-image: url('/wp-content/themes/equilibrium/_src/images/equinox_live.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  h2 {
    color: inherit;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 30px;
  }
  p {
    margin-bottom: 26px;
    max-width: 461px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tax-category_event,
.post-type-archive-event_topic {
  .latestPosts {
    padding-bottom: 0;
  }
  .heroCarousel {
    @include smw {
      .container--slim {
        padding: 0;
      }
      .testimonial-carousel--content {
        background-color: $c--dark;
      }
    }
  }
  .latestPosts .g__col {
    margin-bottom: 0;
  }
}
// Past Events
.page-template-past-events {
  .event-topic {
    p {
      max-width: 595px;
      width: 100%;
    }
    table {
      tr {
        display: flex;
        align-items: center;
        @include smw {
          display: block;
        }
        td {
          flex: 1;
          width: auto;
          display: flex;
          @include smw {
            display: block;
          }
          &:nth-child(1) {
            display: flex;
            flex: 1 10%;
            margin-right: 20px;
          }
          &:nth-child(2) {
            width: auto; // 33%;
            @include smw {
              padding-top: 0;
            }
          }
        }
      }
      strong,
      span {
        color: $c--dark;
      }
      .btn {
        padding: 14px 50px;
        font-size: 14px;
        margin: 0 0 0 auto;
      }
    }
  }
  .latestPosts {
    padding-bottom: 0; // 30px;
    @include smw {
      padding-bottom: 0;
    }
  }
  .event-cats li:nth-last-of-type(1) a {
    border-color: $c--dark;
    color: $c--dark;
    &:hover {
      color: $c--white;
    }
  }
}
*/
.search-results-container {
  padding-bottom: 300px;
}
#search-results-form {
  position: relative;
  padding-top: 93px;
  margin-bottom: 120px;
}
@media (max-width: 736px) {
  #search-results-form {
    padding-top: 79px;
    margin-bottom: 92px;
  }
}
#search-results-form [type=text] {
  font-size: 81px;
  line-height: 1;
  color: #303030;
  font-family: "Graphik Bold Web", sans-serif;
  font-weight: 900;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 0;
}
@media (max-width: 736px) {
  #search-results-form [type=text] {
    font-size: 38px;
    line-height: 38px;
  }
}
#search-results-form button {
  position: absolute;
  right: 0;
  bottom: 20px;
}
.current-results {
  display: block;
  margin-bottom: 50px;
}
@media (max-width: 736px) {
  .current-results {
    margin-bottom: 11px;
  }
}
.search-result {
  padding: 20px 0;
}
.search-result h2 {
  font-size: 33px;
  margin-bottom: 10px;
}
@media (max-width: 736px) {
  .search-result h2 {
    font-size: 27px;
    line-height: 28px;
  }
}
.search-result span {
  font-size: 18px;
  color: #303030;
}
.search-results span {
  font-size: 18px;
  color: #303030;
}
.search-no-results .no-results-msg {
  padding-top: 93px;
}
.search-no-results #search-results-form {
  padding-top: 30px;
}
.service-flexible-content {
  padding: 1px 0;
}
.service-flexible-content-text {
  margin: 80px 0;
}
.service-flexible-content-text h1, .service-flexible-content-text h2, .service-flexible-content-text h3, .service-flexible-content-text h4 {
  font-size: 46px;
  color: #0c0c0e;
}
.service-flexible-content-text p {
  font-size: 22px;
}
.service-flexible-content-text p a {
  color: #cfb054;
}
.service-flexible-content-text p a:hover {
  text-decoration: underline;
}
.service-flexible-content-text ol,
.service-flexible-content-text ul {
  list-style-type: outside;
  margin: 32px 0 32px 25px;
}
.service-flexible-content-text ol {
  list-style-type: decimal;
}
.service-flexible-content-text ul {
  list-style-type: disc;
}
.service-flexible-content-text li {
  font-size: 22px;
}
.service-flexible-content-text strong {
  color: #0c0c0e;
}
.service-flexible-content-text.column p,
.service-flexible-content-text.column li {
  font-size: 18px;
}
.service-flexible-content-image {
  margin: 80px 0;
}
.service-flexible-content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(12, 12, 14, 0.4);
}
.service-flexible-content-split {
  margin: 80px 0;
}
.service-flexible-content-split .columns {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .service-flexible-content-split .columns {
    flex-direction: column;
  }
}
.service-flexible-content-split .columns.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service-flexible-content-split .columns.reverse {
    flex-direction: column-reverse;
  }
}
.service-flexible-content-split .column {
  width: calc(50% - 25px);
  margin: 0;
}
@media (max-width: 768px) {
  .service-flexible-content-split .column {
    width: 100%;
  }
  .service-flexible-content-split .column:first-child {
    margin: 0 0 60px;
  }
}
.service-flexible-content-row {
  margin: 80px 0;
}
.service-accordion-rows .accordion-row {
  margin: 0 0 10px;
}
.service-accordion-rows .accordion-row:last-child {
  margin: 0;
}
.service-accordion-rows .accordion-row.expanded .accordion-tab {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 49.3 49.3' style='enable-background:new 0 0 49.3 49.3;' xml:space='preserve'%3E%3Cpath fill='%23FFFFFF' d='M24.6,49.3c13.6,0,24.6-11.1,24.6-24.6C49.3,11,38.2,0,24.6,0C11.1,0,0,11,0,24.6C0,38.2,11.1,49.3,24.6,49.3z M24.6,4C36,4,45.3,13.3,45.3,24.6c0,11.4-9.3,20.6-20.6,20.6C13.3,45.3,4,36,4,24.6C4,13.3,13.3,4,24.6,4z'/%3E%3Cpolygon fill='%23FFFFFF' points='12.4,27.7 22.6,17.4 22.6,35.4 26.6,35.4 26.6,17.4 36.9,27.7 39.7,24.9 24.6,9.8 9.5,24.9 '/%3E%3C/svg%3E%0A");
}
.service-accordion-rows .accordion-row.expanded .accordion-content {
  display: block;
}
.service-accordion-rows .accordion-tab {
  cursor: pointer;
  padding: 26px 30px 26px 75px;
  background-color: #cfb054;
  background-size: 26px 26px;
  background-position: 28px center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 49.3 49.3' style='enable-background:new 0 0 49.3 49.3;' xml:space='preserve'%3E%3Cpath fill='%23FFFFFF' d='M24.6,0C11.1,0,0,11.1,0,24.6c0,13.6,11.1,24.6,24.6,24.6c13.6,0,24.6-11,24.6-24.6C49.3,11.1,38.2,0,24.6,0z M24.6,45.3C13.3,45.3,4,36,4,24.6C4,13.3,13.3,4,24.6,4C36,4,45.3,13.3,45.3,24.6C45.3,36,36,45.3,24.6,45.3z' /%3E%3Cpolygon fill='%23FFFFFF' points='36.9,21.6 26.6,31.8 26.6,13.9 22.6,13.9 22.6,31.8 12.4,21.6 9.5,24.4 24.6,39.5 39.7,24.4' /%3E%3C/svg%3E%0A");
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 49.3 49.3' style='enable-background:new 0 0 49.3 49.3;' xml:space='preserve'%3E%3Cpath fill='%23FFFFFF' d='M24.6,0C11.1,0,0,11.1,0,24.6c0,13.6,11.1,24.6,24.6,24.6c13.6,0,24.6-11,24.6-24.6C49.3,11.1,38.2,0,24.6,0z M24.6,45.3C13.3,45.3,4,36,4,24.6C4,13.3,13.3,4,24.6,4C36,4,45.3,13.3,45.3,24.6C45.3,36,36,45.3,24.6,45.3z' /%3E%3Cpolygon fill='%23FFFFFF' points='36.9,21.6 26.6,31.8 26.6,13.9 22.6,13.9 22.6,31.8 12.4,21.6 9.5,24.4 24.6,39.5 39.7,24.4' /%3E%3C/svg%3E%0A");
  transition: background 0.2s;
}
.service-accordion-rows .accordion-tab:hover {
  background-color: rgb(187.397260274, 153.4246575342, 52.602739726);
}
.service-accordion-rows .accordion-tab .title {
  font-size: 24px;
  color: #fff;
}
.service-accordion-rows .accordion-content {
  display: none;
  background: #fff;
  padding: 35px 30px;
  border-bottom: 1px solid #cfb054;
  border-left: 1px solid #cfb054;
  border-right: 1px solid #cfb054;
}
.service-accordion-rows .accordion-content .description.lower {
  margin: 40px 0 0;
}
.service-accordion-rows .accordion-content .description ol,
.service-accordion-rows .accordion-content .description ul {
  list-style-type: outside;
  margin: 32px 0 32px 25px;
}
.service-accordion-rows .accordion-content .description ol {
  list-style-type: decimal;
}
.service-accordion-rows .accordion-content .description ul {
  list-style-type: disc;
}
.service-accordion-rows .accordion-content .description li {
  font-size: 22px;
}
.service-accordion-rows .accordion-content .description p {
  font-size: 22px;
  margin-bottom: 1em;
}
.service-accordion-rows .accordion-content .description strong {
  color: #0c0c0e;
}
.service-accordion-rows .accordion-content table {
  width: 100%;
}
.service-accordion-rows .accordion-content table th {
  font-size: 20px;
  background: #cfb054;
  color: #fff;
  padding: 10px 20px;
  border-color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .service-accordion-rows .accordion-content table th {
    font-size: 12px;
    padding: 10px 5px;
  }
}
.service-accordion-rows .accordion-content table th:first-child {
  text-align: left;
}
.service-accordion-rows .accordion-content table tr {
  background: #EEEEEE;
}
.service-accordion-rows .accordion-content table tr:nth-child(2n-1) {
  background: #DDDDDD;
}
.service-accordion-rows .accordion-content table td {
  font-size: 20px;
  padding: 10px 20px;
  border-color: #fff;
  color: #0c0c0e;
  text-align: center;
}
@media (max-width: 768px) {
  .service-accordion-rows .accordion-content table td {
    font-size: 12px;
    padding: 10px 5px;
  }
}
.service-accordion-rows .accordion-content table td:first-child {
  text-align: left;
}
.service-tabs {
  margin: 60px 0 0;
}
.service-tabs .introduction h1, .service-tabs .introduction h2, .service-tabs .introduction h3, .service-tabs .introduction h4 {
  font-size: 46px;
  color: #0c0c0e;
  margin: 0 0 0.5em;
}
.service-tabs .introduction p {
  font-size: 30px;
  font-weight: 600;
}
.service-tabs .introduction strong {
  color: #0c0c0e;
}
.service-tabs .tabs-wrapper {
  margin: 60px 0 100px;
}
.service-tabs .tabs-wrapper[data-active="1"] .service-tab:nth-child(1), .service-tabs .tabs-wrapper[data-active="2"] .service-tab:nth-child(2), .service-tabs .tabs-wrapper[data-active="3"] .service-tab:nth-child(3), .service-tabs .tabs-wrapper[data-active="4"] .service-tab:nth-child(4) {
  background: #cfb054;
  color: #fff;
}
.service-tabs .tabs-wrapper[data-active="1"] .service-tab:nth-child(1):hover, .service-tabs .tabs-wrapper[data-active="2"] .service-tab:nth-child(2):hover, .service-tabs .tabs-wrapper[data-active="3"] .service-tab:nth-child(3):hover, .service-tabs .tabs-wrapper[data-active="4"] .service-tab:nth-child(4):hover {
  background: #cfb054;
}
.service-tabs .tabs-wrapper[data-active="1"] .tab-panel:nth-child(1), .service-tabs .tabs-wrapper[data-active="2"] .tab-panel:nth-child(2), .service-tabs .tabs-wrapper[data-active="3"] .tab-panel:nth-child(3), .service-tabs .tabs-wrapper[data-active="4"] .tab-panel:nth-child(4) {
  display: flex;
}
.service-tabs .tabs {
  display: flex;
  justify-content: space-between;
  background: #e6e6e6;
  border-radius: 28px;
}
@media (max-width: 768px) {
  .service-tabs .tabs {
    flex-direction: column;
  }
}
.service-tabs .service-tab {
  width: calc(25% - 5px);
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  border-radius: 28px;
  padding: 16px 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
@media (max-width: 768px) {
  .service-tabs .service-tab {
    width: 100%;
  }
}
.service-tabs .service-tab:hover {
  background: #DDDDDD;
}
.service-tabs .tab-panels {
  margin: 60px 0 0;
}
.service-tabs .tab-panel {
  display: none;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .service-tabs .tab-panel {
    flex-direction: column-reverse;
  }
}
.service-tabs .tab-panel .text {
  width: calc(50% - 25px);
}
@media (max-width: 768px) {
  .service-tabs .tab-panel .text {
    width: 100%;
    margin: 80px 0 0;
  }
}
.service-tabs .tab-panel .text h1, .service-tabs .tab-panel .text h2, .service-tabs .tab-panel .text h3, .service-tabs .tab-panel .text h4 {
  font-size: 46px;
  color: #0c0c0e;
}
.service-tabs .tab-panel .text p {
  font-size: 20px;
}
.service-tabs .tab-panel .text strong {
  color: #0c0c0e;
}
.service-tabs .tab-panel .image {
  width: calc(50% - 25px);
}
@media (max-width: 768px) {
  .service-tabs .tab-panel .image {
    width: 100%;
  }
}
.service-tabs .tab-panel .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(12, 12, 14, 0.4);
}
.service-icon-panels {
  position: relative;
}
.service-icon-panels .upper h2 {
  font-size: 36px;
  color: #0c0c0e;
}
.service-icon-panels .upper p {
  font-size: 18px;
  color: #0c0c0e;
  margin: 12px 0 0;
}
.service-icon-panels .items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 36px 0 0;
}
.service-icon-panels .item {
  background: #0c0c0e;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(25% - 15px);
  min-height: 400px;
}
@media (max-width: 1024px) {
  .service-icon-panels .item {
    height: auto;
    width: calc(50% - 10px);
  }
  .service-icon-panels .item:nth-child(n+3) {
    margin: 20px 0 0;
  }
}
@media (max-width: 768px) {
  .service-icon-panels .item {
    min-height: auto;
    display: block;
    width: 100%;
  }
  .service-icon-panels .item:nth-child(n+2) {
    margin: 20px 0 0;
  }
}
.service-icon-panels img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  display: block;
}
.service-icon-panels h3 {
  font-size: 36px;
  color: #ffffff;
  margin: 36px 0 0;
}
.service-video-approach {
  width: calc(100% - 200px);
  margin: 90px auto 0;
  max-width: 1280px;
}
@media (max-width: 768px) {
  .service-video-approach {
    width: calc(100% - 40px);
  }
}
.service-video-approach h2 {
  font-size: 36px;
  margin: 0 auto;
  max-width: 620px;
  text-align: center;
}
@media (max-width: 768px) {
  .service-video-approach h2 {
    width: calc(100% - 40px);
  }
}
.service-video-approach .embed {
  position: relative;
  margin: 40px 0 0;
}
.service-video-approach .embed:after {
  content: " ";
  display: block;
  padding: 0 0 56.25%;
}
.service-video-approach .embed iframe,
.service-video-approach .embed embed,
.service-video-approach .embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.service-video-approach .lower {
  top: 100%;
  left: 0;
  width: 100%;
  padding: 15px 20px 0;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.service-video-contact .tabs__btn,
.service-video-contact .split {
  color: #0c0c0e;
}
.service-video-contact .contact__form [type=text],
.service-video-contact .contact__form [type=email],
.service-video-contact .contact__form [type=tel],
.service-video-contact .contact__form textarea {
  border-color: #cfcfcf;
}
.service-video-contact .btn--black, .serviceAction__form .service-video-contact [type=submit], .service-video-contact [data-form-block-id] form button, [data-form-block-id] form .service-video-contact button, .newsletter__form .service-video-contact [type=submit], .aboutAction__form .service-video-contact [type=submit], .contact__form .service-video-contact [type=submit],
.service-video-contact .serviceAction__form [type=submit],
.service-video-contact .contact__form [type=submit],
.service-video-contact .aboutAction__form [type=submit],
.service-video-contact .newsletter__form [type=submit] {
  background: #cfb054;
  border-color: #cfb054;
}
.service-video-contact .btn--black:hover, .serviceAction__form .service-video-contact [type=submit]:hover, .service-video-contact [data-form-block-id] form button:hover, [data-form-block-id] form .service-video-contact button:hover, .newsletter__form .service-video-contact [type=submit]:hover, .aboutAction__form .service-video-contact [type=submit]:hover, .contact__form .service-video-contact [type=submit]:hover,
.service-video-contact .serviceAction__form [type=submit]:hover,
.service-video-contact .contact__form [type=submit]:hover,
.service-video-contact .aboutAction__form [type=submit]:hover,
.service-video-contact .newsletter__form [type=submit]:hover {
  background: #0c0c0e;
  border-color: #0c0c0e;
}
.service-video-download {
  background: #313131;
  padding: 100px 0;
  margin: 40px 0 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-video-download {
    padding: 100px 0;
  }
}
.service-video-download .image {
  position: absolute;
  width: 440px;
  height: auto;
  display: block;
}
.service-video-download .image.image-1 {
  right: calc(50% + 400px);
  bottom: -70px;
}
@media (max-width: 768px) {
  .service-video-download .image.image-1 {
    display: none;
  }
}
.service-video-download .image.image-2 {
  left: calc(50% + 400px);
  bottom: -270px;
}
@media (max-width: 768px) {
  .service-video-download .image.image-2 {
    display: none;
  }
}
.service-video-download .image.image-3 {
  left: calc(50% + 700px);
  top: -380px;
}
@media (max-width: 768px) {
  .service-video-download .image.image-3 {
    position: relative;
    top: auto;
    left: auto;
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
  }
}
.service-video-download .inner {
  width: calc(100% - 200px);
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
}
@media (max-width: 768px) {
  .service-video-download .inner {
    width: calc(100% - 40px);
  }
}
.service-video-download h2 {
  color: #cfb054;
}
.service-video-download p {
  color: #fff;
  margin: 20px 0;
}
.service-video-download .btn:hover, .service-video-download .serviceAction__form [type=submit]:hover, .serviceAction__form .service-video-download [type=submit]:hover, .service-video-download .wpcf7-form button:hover, .wpcf7-form .service-video-download button:hover,
.service-video-download .wpcf7-form [type=submit]:hover,
.wpcf7-form .service-video-download [type=submit]:hover, .service-video-download [data-form-block-id] form button:hover, [data-form-block-id] form .service-video-download button:hover, .service-video-download .newsletter__form [type=submit]:hover, .newsletter__form .service-video-download [type=submit]:hover, .service-video-download .slideout-form [type=submit]:hover, .slideout-form .service-video-download [type=submit]:hover, .service-video-download .popup-form [type=submit]:hover, .popup-form .service-video-download [type=submit]:hover, .service-video-download .aboutAction__form [type=submit]:hover, .aboutAction__form .service-video-download [type=submit]:hover, .service-video-download .contact__form [type=submit]:hover, .contact__form .service-video-download [type=submit]:hover {
  background: #0c0c0e;
  border-color: #0c0c0e;
}
.service-video-events {
  background: #0c0c0e;
  padding: 80px 0;
}
.service-video-events[data-current-events=upcoming] .events.upcoming, .service-video-events[data-current-events=past] .events.past {
  display: block;
}
.service-video-events .upper {
  width: calc(100% - 200px);
  margin: 0 auto;
  max-width: 1280px;
  text-align: center;
}
@media (max-width: 768px) {
  .service-video-events .upper {
    width: calc(100% - 40px);
  }
}
.service-video-events .upper p {
  margin: 20px 0 0;
}
.service-video-events .upper p a:hover {
  text-decoration: underline;
}
.service-video-events h2 {
  font-size: 34px;
  color: #fff;
}
.service-video-events .events {
  width: calc(100% - 200px);
  margin: 20px auto 0;
  max-width: 1280px;
  display: none;
}
@media (max-width: 768px) {
  .service-video-events .events {
    width: calc(100% - 40px);
  }
}
.service-video-events .event {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 0;
  border-bottom: 1px solid #5e5e5e;
}
.service-video-events .event:last-child {
  border: 0;
}
.service-video-events .items {
  display: flex;
  flex-wrap: wrap;
}
.service-video-events .column {
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .service-video-events .column {
    width: 100%;
  }
}
.service-video-events .column:nth-child(3n), .service-video-events .column:nth-child(4n) {
  margin: 20px 0 0;
}
.service-video-events h3 {
  font-size: 22px;
  color: #fff;
}
.service-video-events img {
  height: 210px;
  width: 100%;
  border-radius: 12px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-video-events .meta-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
}
.service-video-events .meta-item.time {
  white-space: nowrap;
}
.service-video-events .buttons {
  display: flex;
  justify-content: flex-end;
}
.service-video-events .btn, .service-video-events .serviceAction__form [type=submit], .serviceAction__form .service-video-events [type=submit], .service-video-events .wpcf7-form button, .wpcf7-form .service-video-events button,
.service-video-events .wpcf7-form [type=submit],
.wpcf7-form .service-video-events [type=submit], .service-video-events [data-form-block-id] form button, [data-form-block-id] form .service-video-events button, .service-video-events .newsletter__form [type=submit], .newsletter__form .service-video-events [type=submit], .service-video-events .slideout-form [type=submit], .slideout-form .service-video-events [type=submit], .service-video-events .popup-form [type=submit], .popup-form .service-video-events [type=submit], .service-video-events .aboutAction__form [type=submit], .aboutAction__form .service-video-events [type=submit], .service-video-events .contact__form [type=submit], .contact__form .service-video-events [type=submit] {
  margin: 0 0 0 10px;
  white-space: nowrap;
}
.service-video-explanations {
  width: calc(100% - 200px);
  margin: 60px auto;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.service-video-explanations.add-margin {
  margin-top: 100px;
}
.service-video-explanations.three-across .column {
  width: calc(33.33% - 13.33px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .service-video-explanations.three-across .column {
    width: calc(100% - 20px);
    margin: 40px auto 0;
  }
}
.service-video-explanations.three-across .column h2 {
  margin: 0 0 30px;
}
@media (max-width: 768px) {
  .service-video-explanations.three-across .column h2 {
    margin: 0;
  }
}
.service-video-explanations.three-across .column div {
  margin: auto 0 0;
}
.service-video-explanations + .service-video-explanations {
  margin: 140px auto 0;
}
@media (max-width: 768px) {
  .service-video-explanations {
    width: calc(100% - 20px);
    margin: 40px auto 0;
  }
}
.service-video-explanations > h2 {
  text-align: center;
  width: 100%;
  margin: 0 auto 36px;
}
.service-video-explanations .column {
  width: calc(50% - 10px);
  border: 1px solid #cfb054;
  padding: 30px 30px 10px;
  border-radius: 12px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .service-video-explanations .column:last-child {
    transform: none;
    margin: 20px 0 0;
  }
}
@media (max-width: 768px) {
  .service-video-explanations .column {
    width: 100%;
  }
}
.service-video-explanations h2 {
  font-size: 36px;
}
.service-video-explanations p {
  font-size: 15px;
  color: #0c0c0e;
  margin: 20px 0;
}
.service-video-explanations p a {
  text-decoration: underline;
  font-weight: bold;
}
.service-video-explanations li {
  font-size: 15px;
  color: #0c0c0e;
  margin: 10px 0;
  padding: 0 0 0 35px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 37 43' style='enable-background:new 0 0 37 43;' xml:space='preserve'%3E%3Cpath fill='%23CFB054' d='M15.1,2l8.2,4.8l3.4-2L18.5,0L15.1,2z M10.3,4.8l8.2,4.8l3.4-2l-8.2-4.8L10.3,4.8z M28.8,15.5 l3.4,2V8l-3.4-2L28.8,15.5L28.8,15.5z M24,8v9.5l3.4-2V6C27.4,6,24,8,24,8z M9.6,9.9l8.2,4.8v-4L9.6,6V9.9z M0,10.8v4l8.2-4.8V6 L0,10.8z M33.6,18.3l3.4,2v-9.5l-3.4-2V18.3z M19.2,10.8v9.5l3.4-2V8.8C22.6,8.8,19.2,10.8,19.2,10.8z M9.6,15.5l8.2,4.8v-4 l-8.2-4.8C9.6,11.6,9.6,15.5,9.6,15.5z M0,16.3v4l8.2-4.8v-4L0,16.3z M19.9,21.5l3.4,2l8.2-4.8l-3.4-2 C28.1,16.7,19.9,21.5,19.9,21.5z M0.7,21.5l3.4,2l8.2-4.8l-3.4-2C8.9,16.7,0.7,21.5,0.7,21.5z M24.7,24.3l3.4,2l8.2-4.8l-3.4-2 L24.7,24.3L24.7,24.3z M5.5,24.3l3.4,2l8.2-4.8l-3.4-2L5.5,24.3L5.5,24.3z M28.8,27.5v4l8.2-4.8v-4L28.8,27.5L28.8,27.5z M19.2,26.7 l8.2,4.8v-4l-8.2-4.8L19.2,26.7L19.2,26.7z M14.4,24.7v9.5l3.4-2v-9.5C17.8,22.7,14.4,24.7,14.4,24.7z M0,32.2l3.4,2v-9.5l-3.4-2 V32.2z M9.6,27.5V37l3.4-2v-9.5L9.6,27.5L9.6,27.5z M4.8,35l3.4,2v-9.5l-3.4-2C4.8,25.5,4.8,35,4.8,35z M28.8,33.1v4l8.2-4.8v-4 L28.8,33.1L28.8,33.1z M19.2,32.2l8.2,4.8v-4l-8.2-4.8L19.2,32.2L19.2,32.2z M15.1,35.4l8.2,4.8l3.4-2l-8.2-4.8L15.1,35.4z M10.3,38.2l8.2,4.8l3.4-2l-8.2-4.8L10.3,38.2z'/%3E%3C/svg%3E%0A");
  background-size: 20px 20px;
  background-position: top left;
  background-repeat: no-repeat;
}
.service-video-explanations li a {
  text-decoration: underline;
  font-weight: bold;
}
.service-video-further-detail {
  padding: 60px 0 0;
}
.service-video-explanations + .service-video-further-detail {
  padding: 140px 0 0;
}
.service-video-further-detail h2 {
  font-size: 36px;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}
@media (max-width: 768px) {
  .service-video-further-detail h2 {
    width: calc(100% - 40px);
  }
}
.service-video-further-detail .preamble {
  margin: 40px auto 0;
  max-width: 1280px;
}
.service-video-further-detail .preamble .inner {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .service-video-further-detail .preamble .inner {
    width: 100%;
  }
}
.service-video-further-detail .columns {
  margin: 40px auto 0;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .service-video-further-detail .columns {
    width: calc(100% - 40px);
  }
}
.service-video-further-detail .column {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .service-video-further-detail .column {
    width: 100%;
  }
}
.service-video-further-detail ul {
  font-size: 18px;
  list-style-type: disc;
  list-style-position: outside;
  margin: 0 0 1.5em 1.5em;
}
.service-video-further-detail ol {
  font-size: 18px;
  list-style-type: disc;
  list-style-position: outside;
  margin: 0 0 1.5em 1.5em;
}
.service-video-further-detail li {
  font-size: 18px;
  line-height: 1.56;
}
.service-video-further-detail iframe {
  max-width: 100%;
}
@media (max-width: 768px) {
  .service-video-further-detail iframe {
    width: 100%;
    height: calc((100vw - 40px) * 0.5625);
  }
}
.service-video-liability {
  margin: 40px auto 60px;
}
.service-video-liability .upper {
  max-width: 1280px;
  width: calc(100% - 200px);
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .service-video-liability .upper {
    width: calc(100% - 40px);
  }
}
.service-video-liability .upper h3 {
  font-size: 22px;
}
.service-video-liability .upper p {
  font-size: 18px;
  margin: 20px 0 0;
}
.service-video-liability .columns {
  margin: 20px auto 0;
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 200px);
}
@media (max-width: 768px) {
  .service-video-liability .columns {
    width: calc(100% - 40px);
  }
}
.service-video-liability .column {
  width: calc(50% - 20px);
  text-align: left;
  margin: 30px 0 0;
}
@media (max-width: 768px) {
  .service-video-liability .column {
    width: 100%;
  }
}
.service-video-liability .column h3 {
  font-size: 36px;
}
.service-video-liability .column img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
  margin: 20px 0 0;
}
.service-video-liability .column p {
  font-size: 18px;
  margin: 20px 0 0;
}
.service-video-liability .btn, .service-video-liability .serviceAction__form [type=submit], .serviceAction__form .service-video-liability [type=submit], .service-video-liability .wpcf7-form button, .wpcf7-form .service-video-liability button,
.service-video-liability .wpcf7-form [type=submit],
.wpcf7-form .service-video-liability [type=submit], .service-video-liability [data-form-block-id] form button, [data-form-block-id] form .service-video-liability button, .service-video-liability .newsletter__form [type=submit], .newsletter__form .service-video-liability [type=submit], .service-video-liability .slideout-form [type=submit], .slideout-form .service-video-liability [type=submit], .service-video-liability .popup-form [type=submit], .popup-form .service-video-liability [type=submit], .service-video-liability .aboutAction__form [type=submit], .aboutAction__form .service-video-liability [type=submit], .service-video-liability .contact__form [type=submit], .contact__form .service-video-liability [type=submit] {
  color: #0c0c0e;
  margin: 20px 0 0;
}
.service-video-liability .btn:hover, .service-video-liability .serviceAction__form [type=submit]:hover, .serviceAction__form .service-video-liability [type=submit]:hover, .service-video-liability .wpcf7-form button:hover, .wpcf7-form .service-video-liability button:hover,
.service-video-liability .wpcf7-form [type=submit]:hover,
.wpcf7-form .service-video-liability [type=submit]:hover, .service-video-liability [data-form-block-id] form button:hover, [data-form-block-id] form .service-video-liability button:hover, .service-video-liability .newsletter__form [type=submit]:hover, .newsletter__form .service-video-liability [type=submit]:hover, .service-video-liability .slideout-form [type=submit]:hover, .slideout-form .service-video-liability [type=submit]:hover, .service-video-liability .popup-form [type=submit]:hover, .popup-form .service-video-liability [type=submit]:hover, .service-video-liability .aboutAction__form [type=submit]:hover, .aboutAction__form .service-video-liability [type=submit]:hover, .service-video-liability .contact__form [type=submit]:hover, .contact__form .service-video-liability [type=submit]:hover {
  background: #0c0c0e;
  color: #fff;
  border-color: #0c0c0e;
}
.service-video-liability .repeater {
  max-width: 1280px;
  width: calc(100% - 200px);
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  .service-video-liability .repeater {
    width: calc(100% - 40px);
  }
}
.service-video-liability .repeater .item {
  border: 1px solid #cfb054;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 0 0;
}
.service-video-liability .repeater .item:first-child {
  margin: 0;
}
.service-video-liability .repeater .item[open] .title:before {
  transform: scaleY(-1);
}
.service-video-liability .repeater .title {
  font-size: 22px;
  background: #cfb054;
  color: #fff;
  padding: 20px 30px 20px 60px;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.service-video-liability .repeater .title:before {
  content: " ";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  background-size: 26px 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 29.3 29.3' style='enable-background:new 0 0 29.3 29.3;' xml:space='preserve'%3E%3Cpolygon fill='%23FFFFFF' points='14.7,6.1 5.7,15 7.3,16.6 13.6,10.3 13.6,21.7 15.8,21.7 15.8,10.3 22.1,16.6 23.6,15 '/%3E%3Cpath fill='%23FFFFFF' d='M14.7,0C6.6,0,0,6.6,0,14.7c0,8.1,6.6,14.7,14.7,14.7c8.1,0,14.7-6.6,14.7-14.7C29.3,6.6,22.7,0,14.7,0z M14.7,27.1c-6.9,0-12.5-5.6-12.5-12.5S7.8,2.2,14.7,2.2s12.5,5.6,12.5,12.5S21.5,27.1,14.7,27.1z'/%3E%3C/svg%3E%0A");
}
.service-video-liability .repeater .title::-webkit-details-marker {
  display: none;
}
.service-video-liability .repeater .content {
  background: #fff;
  padding: 30px;
}
.service-video-liability .repeater p {
  font-size: 18px;
}
.service-video-liability .repeater p strong {
  font-size: 20px;
}
.service-video-question {
  margin: 80px 0 0;
}
.service-video-question .inner {
  width: calc(100% - 200px);
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 25px 25px;
}
@media (max-width: 768px) {
  .service-video-question .inner {
    width: calc(100% - 40px);
  }
}
.service-video-question .text h2 {
  font-size: 28px;
  margin: 0 auto;
  max-width: 420px;
  color: #0c0c0e;
}
.service-video-question .text p {
  font-size: 15px;
  font-weight: bold;
  margin: 20px auto 0;
  max-width: 680px;
}
.service-video-question .contact-form {
  margin: 25px;
}
@media (max-width: 480px) {
  .service-video-question .contact-form {
    margin: 0;
  }
}
.service-video-question .contact-form form {
  position: relative;
  text-align: left;
}
.service-video-question .contact-form .message-field-wrapper {
  position: absolute;
  top: 0;
  right: 0;
}
.service-video-question .contact-form .message-field-wrapper .wpcf7-form-control-wrap {
  width: 100%;
}
@media (max-width: 768px) {
  .service-video-question .contact-form .message-field-wrapper {
    position: relative;
    top: auto;
    right: auto;
  }
}
.service-video-question .contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
.service-video-question .contact-form .wpcf7-form-control-wrap {
  width: calc(50% - 10px);
}
@media (max-width: 768px) {
  .service-video-question .contact-form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.service-video-question .contact-form textarea {
  height: 198px;
}
.service-video-question .contact-form .wpcf7-submit {
  margin: 0 auto;
}
.service-video-question .contact-form .wpcf7-submit:hover {
  background: #222222;
}
.service-video-question .contact-form .wpcf7-form .wpcf7-spinner {
  display: none;
}
.service-video-questionnaire {
  margin: 160px 0 0;
  padding: 80px 0 60px;
  background: #cfb054;
}
.service-video-questionnaire .inner {
  width: calc(100% - 200px);
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
@media (max-width: 768px) {
  .service-video-questionnaire .inner {
    width: calc(100% - 40px);
  }
}
.service-video-questionnaire .text h2 {
  font-size: 34px;
  margin: 0 auto;
  max-width: 420px;
  color: #0c0c0e;
}
.service-video-questionnaire .text p {
  font-size: 15px;
  font-weight: bold;
  margin: 20px auto 0;
  max-width: 680px;
  color: #fff;
}
.service-video-questionnaire .contact-form {
  margin: 25px;
}
.service-video-questionnaire .contact-form form {
  position: relative;
}
.service-video-questionnaire .contact-form ::-moz-placeholder {
  color: #fff;
}
.service-video-questionnaire .contact-form ::placeholder {
  color: #fff;
}
.service-video-questionnaire .contact-form .wpcf7-form-control-wrap {
  width: calc(50% - 10px);
}
@media (max-width: 768px) {
  .service-video-questionnaire .contact-form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.service-video-questionnaire .contact-form .wpcf7-form-control-wrap.your-message {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .service-video-questionnaire .contact-form .wpcf7-form-control-wrap.your-message {
    position: relative;
    top: auto;
    right: auto;
  }
}
.service-video-questionnaire .contact-form input {
  border-color: #fff;
  color: #fff;
}
.service-video-questionnaire .contact-form textarea {
  border-color: #fff;
  color: #fff;
  height: 198px;
}
.service-video-questionnaire .contact-form .wpcf7-submit {
  margin: 0 auto;
  background: #fff;
  color: #0c0c0e !important;
}
.service-video-questionnaire .contact-form .wpcf7-submit:hover {
  background: #222222;
  color: #fff !important;
}
.service-video-questionnaire .contact-form .wpcf7-spinner {
  display: none;
}
.service-video-selection {
  width: calc(100% - 200px);
  margin: 0 auto;
  max-width: 1280px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .service-video-selection {
    width: calc(100% - 40px);
    flex-direction: column-reverse;
  }
}
.service-video-selection .side {
  width: 35%;
}
@media (max-width: 768px) {
  .service-video-selection .side {
    width: 100%;
    margin: 80px 0 0;
  }
}
.service-video-selection .side h2 {
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-video-selection .side h2 .contents {
  font-size: 36px;
}
.service-video-selection .side h2 .expand {
  display: none;
}
@media (max-width: 768px) {
  .service-video-selection .side h2 .expand {
    width: 26px;
    height: 26px;
    display: block;
    background-size: 26px 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 29.3 29.3' style='enable-background:new 0 0 29.3 29.3;' xml:space='preserve'%3E%3Cpolygon fill='%230C0C0E' points='14.7,6.1 5.7,15 7.3,16.6 13.6,10.3 13.6,21.7 15.8,21.7 15.8,10.3 22.1,16.6 23.6,15 '/%3E%3Cpath fill='%230C0C0E' d='M14.7,0C6.6,0,0,6.6,0,14.7c0,8.1,6.6,14.7,14.7,14.7c8.1,0,14.7-6.6,14.7-14.7C29.3,6.6,22.7,0,14.7,0z M14.7,27.1c-6.9,0-12.5-5.6-12.5-12.5S7.8,2.2,14.7,2.2s12.5,5.6,12.5,12.5S21.5,27.1,14.7,27.1z'/%3E%3C/svg%3E%0A");
  }
}
.service-video-selection .side h2.expanded .expand {
  transform: scaleY(-1);
}
.service-video-selection .side h2.expanded + ul {
  display: block;
}
@media (max-width: 768px) {
  .service-video-selection .side ul {
    display: none;
  }
}
.service-video-selection .side li {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0;
  cursor: pointer;
}
.service-video-selection .side li:hover {
  color: #cfb054;
}
.service-video-selection .side li:first-child {
  margin: 0;
}
.service-video-selection .main {
  width: 65%;
}
@media (max-width: 768px) {
  .service-video-selection .main {
    width: 100%;
  }
}
.service-video-selection .main .image {
  display: block;
  position: relative;
  padding: 0 0 56.25%;
}
.service-video-selection .main .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
}
.service-video-selection .main .video {
  position: relative;
}
.service-video-selection .main .video iframe,
.service-video-selection .main .video embed,
.service-video-selection .main .video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.service-video-selection .main .lower {
  top: 100%;
  left: 0;
  width: 100%;
  padding: 10px 0 0;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.service-video-steps {
  margin: 60px 0 0;
  width: 100%;
  overflow: hidden;
}
.service-video-steps .step {
  background: #cfb054;
  width: 800px;
  padding: 30px;
  color: #fff;
  margin: 0 40px 0 0;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .service-video-steps .step {
    width: 400px;
    margin: 0 20px 0 0;
  }
}
.service-video-steps .parent {
  margin: 0 auto;
  max-width: 1280px;
  overflow: visible;
}
@media (max-width: 768px) {
  .service-video-steps .parent {
    width: calc(100% - 40px);
  }
}
.service-video-steps .flickity-viewport,
.service-video-steps .flickity-slider {
  overflow: visible !important;
}
.service-video-steps .how {
  font-size: 15px;
  display: block;
  color: rgba(255, 255, 255, 0.5);
}
.service-video-steps .count {
  font-size: 22px;
  display: block;
  margin: 3px 0 0;
}
.service-video-steps h3 {
  font-size: 36px;
  margin: 10px 0 0;
}
.service-video-steps p {
  margin: 30px 0 0;
}
.service-video-steps ul {
  list-style-type: disc;
  list-style-position: outside;
  margin: 30px 0 0 20px;
}
.service-video-steps ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin: 30px 0 0 20px;
}
.service-video-steps li {
  font-size: 18px;
}
.service-video-tips {
  margin: 60px auto 100px;
  max-width: 1280px;
  width: calc(100% - 200px);
}
@media (max-width: 768px) {
  .service-video-tips {
    width: calc(100% - 40px);
  }
}
.service-video-tips .flickity-viewport {
  overflow: visible;
}
.service-video-tips .flickity-page-dots {
  bottom: -40px;
}
.service-video-tips .flickity-prev-next-button.next {
  right: -20px;
}
.service-video-tips .flickity-prev-next-button.previous {
  left: -20px;
}
.service-video-tips .tip {
  width: calc(50% - 10px);
  padding: 30px;
  border: 1px solid #cfb054;
  border-radius: 12px;
  background: #fff;
  margin: 0 20px 0 0;
  /*
  &:nth-child(2n) {
    margin: 20px 0 0;
    transform: translateY(80px);
     @include md {
      transform: none;
    }
  }
  */
}
@media (max-width: 768px) {
  .service-video-tips .tip {
    width: 100%;
  }
}
.service-video-tips h3 {
  font-size: 22px;
}
.service-video-tips .video {
  padding: 0 0 56.25%;
  background: grey;
  position: relative;
  margin: 20px 0 0;
}
.service-video-tips .video embed,
.service-video-tips .video iframe,
.service-video-tips .video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}
.service-video-tips img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 210px;
  width: 100%;
  margin: 20px 0 0;
}
.service-video-tips blockquote {
  margin: 20px 0 0;
}
.service-video-tips blockquote p {
  margin: 15px 0 0;
}
.service-video-tips blockquote .author {
  display: block;
  margin: 6px 0 0;
  color: rgba(0, 0, 0, 0.4);
}
.service-video-tips .links {
  margin: 20px 0 0;
}
.service-video-tips .links .item {
  font-size: 15px;
  margin: 5px 0 0;
}
.service-video-tips .links .link {
  color: #cfb054;
  text-decoration: underline;
}
.service-video-tips .links .link:after {
  display: none;
}
.service-video-title {
  width: calc(100% - 200px);
  margin: 0 auto;
  max-width: 1280px;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .service-video-title {
    flex-direction: row-reverse;
    width: calc(100% - 40px);
  }
}
.service-video-title h1 {
  font-size: 52px;
}
.service-video-title .author {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
}
.service-video-title .author .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #cccccc;
  margin: 0 20px 0 0;
}
.service-video-title .author .author-image img {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  object-size: cover;
  -o-object-position: center;
     object-position: center;
}
.service-video-title .author .author-detail {
  display: block;
  font-weight: bold;
}
.service-video-title p {
  max-width: 900px;
  margin: 30px 0 0;
}
.service-flexible-content {
  width: calc(100% - 40px);
  max-width: 900px;
  margin: 80px auto;
}
.service-flexible-content p {
  font-size: 18px;
  margin: 25px 0 0;
}
.service-flexible-accordion {
  background: #e7e7e7;
  border-radius: 12px;
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 60px auto;
  padding: 45px 25px 1px;
}
@media (min-width: 768px) {
  .service-flexible-accordion {
    padding: 45px 50px 1px;
  }
}
.service-flexible-accordion .heading {
  font-size: 36px;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .service-flexible-accordion .heading {
    font-size: 28px;
  }
}
.page-template-page--services-landing .footer__bg {
  margin-bottom: -165px;
}
.page-template-page--services-landing .venn h1 {
  font-size: 45px;
  line-height: 1.17;
  margin-bottom: 36px;
}
@media (max-width: 736px) {
  .page-template-page--services-landing .venn h1 {
    font-size: 35px;
  }
}
.page-template-page--services-landing .venn .circle1:hover {
  background-color: rgba(0, 109, 141, 0.9);
}
.page-template-page--services-landing .venn .circle1:hover .circle-title {
  color: #fff;
}
@media (max-width: 736px) {
  .page-template-page--services-landing .venn .circle1:hover {
    background-color: transparent;
  }
  .page-template-page--services-landing .venn .circle1:hover .circle-title {
    color: #006aa6;
  }
}
.page-template-page--services-landing .venn .circle2:hover {
  background-color: rgba(159, 26, 101, 0.9);
}
.page-template-page--services-landing .venn .circle2:hover .circle-title {
  color: #fff;
}
@media (max-width: 736px) {
  .page-template-page--services-landing .venn .circle2:hover {
    background-color: transparent;
  }
  .page-template-page--services-landing .venn .circle2:hover .circle-title {
    color: #9f1a65;
  }
}
.page-template-page--services-landing .venn .circle3:hover {
  background-color: rgba(142, 142, 154, 0.9);
}
.page-template-page--services-landing .venn .circle3:hover .circle-title {
  color: #fff;
}
@media (max-width: 736px) {
  .page-template-page--services-landing .venn .circle3:hover {
    background-color: transparent;
  }
  .page-template-page--services-landing .venn .circle3:hover .circle-title {
    color: #8e8e9a;
  }
}
@media (max-width: 736px) {
  .page-template-page--services-landing .serviceBlocks {
    padding-bottom: 0;
  }
}
@media (max-width: 736px) {
  .page-template-page--services-landing .heroIntro {
    padding-bottom: 42px;
  }
}
.page-template-page--services-landing .serviceBlocks .center-btn {
  display: none;
}
.page-template-page--services-landing .serviceAction {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  color: #303030;
}
.page-template-page--services-landing .tabs__btn,
.page-template-page--services-landing .split {
  color: #303030;
}
.page-template-page--services-landing .tabs__content .h3, .page-template-page--services-landing .tabs__content .editor blockquote, .editor .page-template-page--services-landing .tabs__content blockquote, .page-template-page--services-landing .tabs__content .awardsHead__content p, .awardsHead__content .page-template-page--services-landing .tabs__content p, .page-template-page--services-landing .tabs__content .homeAction__content p, .homeAction__content .page-template-page--services-landing .tabs__content p, .page-template-page--services-landing .tabs__content .peopleHead__content p, .peopleHead__content .page-template-page--services-landing .tabs__content p {
  color: #303030;
}
.page-template-page--services-landing [type=text],
.page-template-page--services-landing [type=email],
.page-template-page--services-landing [type=tel],
.page-template-page--services-landing select,
.page-template-page--services-landing textarea {
  border-color: #D8D8D8;
}
.page-template-page--service h1 {
  font-size: 54px;
  line-height: 1.17;
}
@media (max-width: 736px) {
  .page-template-page--service h1 {
    font-size: 33px;
  }
}
.page-template-page--service .heroCarousel__slide {
  height: 68vh;
}
@media (max-width: 768px) {
  .page-template-page--service .heroCarousel__slide {
    height: 45vh;
    padding: 0;
  }
}
@media (max-width: 736px) {
  .page-template-page--service .heroCarousel__slide {
    height: 33vh;
  }
}
.page-template-page--service .heroCarousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.services-header {
  padding: 45px 0;
  margin-top: 65px;
}
@media screen and (max-width: 1200px) {
  .services-header {
    margin-top: 0;
  }
}
.services-content.offset {
  margin-top: -10vh;
}
@media (max-width: 768px) {
  .services-content.offset {
    margin-top: -10vh;
  }
}
@media (max-width: 736px) {
  .services-content.offset {
    margin-top: -5vh;
  }
}
.sidebar-block {
  top: 0;
  padding: 40px;
  margin-bottom: 40px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .sidebar-block.hide-at-mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .sidebar-block {
    margin-top: 60px;
  }
}
.sidebar-block img {
  margin-bottom: 20px;
}
.sidebar-block h2,
.sidebar-block .h3,
.sidebar-block .editor blockquote,
.editor .sidebar-block blockquote,
.sidebar-block .awardsHead__content p,
.awardsHead__content .sidebar-block p,
.sidebar-block .homeAction__content p,
.homeAction__content .sidebar-block p,
.sidebar-block .peopleHead__content p,
.peopleHead__content .sidebar-block p {
  margin-bottom: 17px;
}
.sidebar-block p {
  margin-bottom: 40px;
}
.sidebar-block .post-date {
  color: #303030;
}
.sidebar-block ul li {
  padding: 5px 0;
}
.sidebar-block ul li a {
  font-size: 16px;
  font-weight: 900;
  display: block;
}
.sidebar-block ul li a:hover {
  color: #303030;
}
.sidebar-block ul li:nth-child(n+2) .post-date {
  display: none !important;
}
.sidebar-block.factsheet.landscape {
  border-radius: 16px;
  margin: 40px 0;
}
.sidebar-block.factsheet.landscape ul {
  margin-top: 50px;
}
@media screen and (min-width: 782px) {
  .sidebar-block.factsheet.landscape ul {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .sidebar-block.factsheet.landscape ul li {
    width: 33.33%;
    padding: 0 15px 0 0;
    margin-bottom: 20px;
  }
  .sidebar-block.factsheet.landscape ul li .factsheet-item {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .sidebar-block.factsheet.landscape ul li a {
    margin: auto 0 0;
  }
  .sidebar-block.factsheet.landscape .post-date {
    white-space: nowrap;
    margin: -2.27em 0 1em;
  }
}
@media screen and (min-width: 1080px) {
  .sidebar-block.factsheet.landscape ul {
    margin-bottom: 15px;
  }
  .sidebar-block.factsheet.landscape ul li {
    width: 16.66%;
  }
}
.sidebar-block.factsheet ul {
  margin-bottom: 60px;
}
.sidebar-block.factsheet ul li {
  padding: 15px 0;
}
.sidebar-block.factsheet ul li .factsheet-item {
  padding-bottom: 20px;
}
.sidebar-block.factsheet ul li .factsheet-item p {
  margin-bottom: 15px;
}
.sidebar-block.factsheet ul li a {
  color: #303030;
  margin-top: 5px;
}
.serviceAction {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 94px 0;
}
.serviceAction h2 {
  margin-bottom: 38px;
  max-width: 700px;
}
.serviceAction p {
  max-width: 700px;
}
.serviceAction__form {
  position: relative;
  z-index: 2;
}
.serviceAction__form .wpcf7-form-control-wrap {
  display: block;
  width: 90%;
}
.serviceAction__form p {
  margin-bottom: 23px;
  max-width: 100%;
  display: block;
}
.serviceAction__form [type=text],
.serviceAction__form [type=email],
.serviceAction__form [type=tel],
.serviceAction__form select,
.serviceAction__form textarea {
  background-color: #fff;
  border-color: #fff;
}
.serviceAction__form [type=text]:hover, .serviceAction__form [type=text]:focus,
.serviceAction__form [type=email]:hover,
.serviceAction__form [type=email]:focus,
.serviceAction__form [type=tel]:hover,
.serviceAction__form [type=tel]:focus,
.serviceAction__form select:hover,
.serviceAction__form select:focus,
.serviceAction__form textarea:hover,
.serviceAction__form textarea:focus {
  border-color: #0c0c0e;
}
.serviceAction__form textarea {
  height: 202px;
}
.serviceAction__form [type=submit] {
  float: right;
  width: 216px;
  margin-top: 24px;
}
@media (max-width: 736px) {
  .serviceAction__form [type=submit] {
    width: 162px;
    float: left;
  }
}
.breadcrumbs {
  padding: 0;
  margin: 20px 0;
  display: inline-block;
  width: 100%;
}
@media (max-width: 736px) {
  .breadcrumbs {
    margin-bottom: 10px;
  }
}
.breadcrumbs li {
  float: left;
}
.breadcrumbs li a,
.breadcrumbs li strong {
  font-size: 12px;
}
.breadcrumbs li a {
  text-decoration: underline;
}
.breadcrumbs li .separator {
  position: relative;
}
.breadcrumbs li .separator::after {
  position: relative;
  content: "\203A";
  margin-left: 4px;
  margin-right: 4px;
}
.factsheet-bar {
  background-color: #006aa6;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 30px;
  margin: 80px auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.factsheet-bar h2 {
  color: inherit;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 30px;
}
.factsheet-bar p {
  margin-bottom: 26px;
  max-width: 461px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.contact-form-scroll-to {
  background: white;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  margin: 40px auto 80px;
  max-width: 900px;
  text-align: center;
  width: calc(100% - 40px);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 736px) {
  .contact-form-scroll-to {
    padding: 50px 20px;
  }
}
.contact-form-scroll-to h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
.flex--video-library {
  margin-bottom: 90px;
}
.flex--video-library .introduction {
  margin: 0 0 30px;
}
.flex--video-library .introduction p {
  margin: 5px 0 0;
  max-width: 66.6%;
}
@media (max-width: 736px) {
  .flex--video-library .introduction p {
    max-width: none;
  }
}
.flex--video-library .flickity-viewport {
  overflow: visible !important;
}
.flex--video-library .slide {
  background: #dadada;
  width: calc(50% - 10px);
  border-radius: 12px;
  overflow: hidden;
  height: auto;
  min-height: 100%;
}
@media (max-width: 736px) {
  .flex--video-library .slide {
    width: 100%;
    height: auto;
  }
}
.flex--video-library .slide:nth-child(n+2) {
  margin: 0 0 0 20px;
}
.flex--video-library .slide .video {
  background: #b5b5b5;
}
.flex--video-library .slide .detail {
  padding: 30px;
}
.flex--video-library .slide .detail p {
  margin: 5px 0 0;
}
.testimonialHead {
  padding-top: 93px;
  margin-bottom: 92px;
}
@media (max-width: 736px) {
  .testimonialHead {
    padding-top: 79px;
    margin-bottom: 40px;
  }
}
.testimonialHead__content {
  max-width: 704px;
}
.testimonialHead__content a {
  color: #303030;
}
.testimonialHead__content a:hover {
  color: #cfb054;
}
@media (max-width: 768px) {
  .testimonialHead__content {
    max-width: 504px;
  }
}
.testimonialHead__content h1 {
  margin-bottom: 36px;
}
@media (max-width: 736px) {
  .testimonialHead__content h1 {
    margin-bottom: 30px;
  }
}
.search .testimonialHead__content h1 {
  font-weight: 400;
}
.testimonialHead__content em {
  font-style: normal;
  font-weight: 900;
}
.testimonialHead__content p {
  line-height: 24px;
  margin-bottom: 86px;
  color: #8e8e9a;
}
@media (max-width: 736px) {
  .testimonialHead__content p {
    margin-bottom: 60px;
  }
}
.testimonialHead__content strong {
  color: #0c0c0e;
  font-weight: 500;
}
.testimonialReviewBar {
  border-radius: 20px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  padding-top: 93px;
  padding-bottom: 93px;
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 186px;
  background-color: #006aa6;
}
.testimonialReviewBar strong {
  color: #fff;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .testimonialReviewBar strong {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 736px) {
  .testimonialReviewBar strong {
    padding: 0;
  }
}
@media (max-width: 736px) {
  .testimonialReviewBar {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 92px;
  }
  .testimonialReviewBar a {
    margin-top: 20px;
    display: block;
  }
}
.testimonial {
  padding-top: 80px;
  padding-bottom: 80px;
}
.testimonial .testimonial__video {
  position: relative;
  padding: 270px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 0;
  cursor: pointer;
  background-color: #0c0c0e;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .testimonial .testimonial__video {
    padding: 125px 0;
  }
}
@media (max-width: 736px) {
  .testimonial .testimonial__video {
    padding: 25px 0;
    margin-bottom: 50px;
  }
}
.testimonial .testimonial__video.s--playing .container,
.testimonial .testimonial__video.s--playing img {
  pointer-events: none;
  opacity: 0;
  transition: 0.5s linear;
}
.testimonial .testimonial__video i {
  margin-bottom: 47px;
}
.testimonial .testimonial__video:hover i {
  background-color: #cfb054;
}
.testimonial .testimonial__video img,
.testimonial .testimonial__video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.testimonial .testimonial__video video {
  z-index: -2;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.testimonial__head {
  position: relative;
  margin-bottom: 38px;
}
.testimonial__head h1 {
  max-width: 705px;
  display: inline-block;
  margin-bottom: 0;
}
.testimonial__head a {
  position: absolute;
  bottom: 7px;
  right: 0;
}
@media (max-width: 736px) {
  .testimonial__head a {
    position: relative;
    margin-top: 15px;
  }
}
.testimonial__content {
  max-width: 704px;
  width: 100%;
  margin: 0 auto;
}
.single-testimonials .heroCarousel {
  margin-bottom: 80px;
}
.post-type-archive-testimonials .latestPosts {
  padding-bottom: 0;
}
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  width: 100%;
}
.embed-wrap video, .embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sort-buttons {
  display: none;
}
.search-results .sort-buttons {
  position: absolute;
  display: flex;
  top: calc(100% + 30px);
  left: 0;
  background: white;
  padding: 10px 30px;
  border-radius: 20px;
}
.search-results .sort-buttons .prompt {
  font-size: 16px;
  font-family: "Graphik Medium Web", sans-serif;
  color: #0c0c0e;
  opacity: 0.4;
  margin: 0 20px 0 0;
}
.search-results .sort-buttons .sort-button {
  display: flex;
  align-items: center;
  margin: 0 10px;
}
.search-results .sort-buttons .sort-button input[tyoe=radio] {
  padding: 0;
  margin: 0;
}
.search-results .sort-buttons .sort-button label {
  font-size: 16px;
  font-family: "Graphik Medium Web", sans-serif;
  color: #0c0c0e;
  white-space: nowrap;
  margin: 0 0 0 15px;
}
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiIvbWFpbi5jc3MiLCJzb3VyY2VSb290IjoiIn0=*/