@charset "UTF-8";
/*!
 * Deliver Media child theme styles.
 *
 * This file compiles to ../style.compiled.css (see gulpfile.js).
 *
 * Load order:
 *   1. Child overrides — declared first so they win against the parent's
 *      !default declarations.
 *   2. Parent sass — imported from the parent theme's sass/ directory.
 *   3. Child-specific CSS that extends parent rules, added after the import.
 */
/*!
Theme Name: TheTheme
Author: Deliver & DRS
Author URI: https://delivermedia.co.uk
Description: Mobile first WordPress theme
Version: 2.10.0
License: GNU General Public License v2 or later
Text Domain: thetheme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/
.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  padding: 0 30px;
}

.container-fluid {
  padding-right: 1rem;
  padding-left: 1rem;
}

.row {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .row {
    margin-right: -0.3rem;
    margin-left: -0.3rem;
  }
  .container {
    width: 100%;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-20,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-20 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: 100%;
    max-width: clamp(1190px, 92vw, 1600px);
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 81em) {
  .container-fluid {
    max-width: 1600px;
  }
}
@media only screen and (max-width: 575px) {
  .hidden-xs {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 600px) {
  .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  background: #ffffff;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 28px;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

* {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  color: #1c1c1c;
  margin-top: 0;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
}

h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
}

h4 {
  font-size: 24px;
  line-height: 26.5px;
  font-weight: 700;
}

h5 {
  font-size: 22px;
  font-weight: 700;
}

h6 {
  font-size: 20px;
  font-weight: 700;
}

@media (min-width: 600px) {
  h1 {
    font-size: 96px;
    line-height: 108.5px;
  }
  h2 {
    font-size: 48px;
    line-height: 56px;
  }
  h3 {
    font-size: 36px;
    line-height: 47px;
  }
}
p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.bold, .strong, b, strong {
  font-weight: 700;
}

p {
  line-height: 26px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 400;
  color: #1c1c1c;
}
p.larger {
  font-size: 24px !important;
  letter-spacing: 0;
}

body {
  background: #ffffff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

a {
  color: #7e00f5;
}
a:visited {
  color: rgb(99.7714285714, 0, 194);
}
a:hover, a:focus, a:active {
  color: rgb(86.6571428571, 0, 168.5);
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #1c1c1c;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

.btn, .cta,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:visited, .cta:visited,
button:visited,
input[type=button]:visited,
input[type=reset]:visited,
input[type=submit]:visited {
  color: inherit;
}
.btn:focus, .cta:focus,
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: none;
}
.btn:focus-visible, .cta:focus-visible,
button:focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible,
input[type=submit]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.btn:active, .cta:active,
button:active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.btn[disabled], [disabled].cta, .btn.is-disabled, .is-disabled.cta,
button[disabled],
button.is-disabled,
input[type=button][disabled],
input[type=button].is-disabled,
input[type=reset][disabled],
input[type=reset].is-disabled,
input[type=submit][disabled],
input[type=submit].is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn.btn-outline, .btn-outline.cta, .cta.outline {
  background: transparent;
  border-color: currentColor;
}
.btn.btn-outline:hover, .btn-outline.cta:hover, .cta.outline:hover {
  background: currentColor;
  color: #fafaff;
}

.btn.btn-inverse-text, .btn-inverse-text.cta, .cta.cta-yellow-light, .cta.cta-white {
  color: #fafaff;
}
.btn.btn-inverse-text:visited, .btn-inverse-text.cta:visited, .cta.cta-yellow-light:visited, .cta.cta-white:visited {
  color: #fafaff;
}

.btn.btn-pill, .btn-pill.cta {
  padding: 20px 60px;
  border-radius: 2000px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .btn.btn-pill, .btn-pill.cta {
    padding: 16px 40px;
  }
}

.btn.btn-sm, .btn-sm.cta {
  padding: 4px 18px;
  font-size: 16px;
}

.btn.btn-lg, .btn-lg.cta {
  padding: 8px 32px;
  font-size: 24px;
}

.social-icons, .header-contact {
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.social-icons a svg, .header-contact a svg {
  height: 28px;
  width: 28px;
}
.social-icons a svg path, .header-contact a svg path {
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
}
.footer-social-icons {
  gap: 12px;
  margin-top: 24px;
}

html.hc-nav-yscroll {
  overflow-y: scroll;
}

body.hc-nav-open {
  overflow: visible;
  top: initial !important;
  /* position: fixed; */
  width: 100%;
  min-height: 100%;
}

.hc-offcanvas-nav {
  visibility: hidden;
  display: none;
  /* position: fixed; */
  top: 0;
  height: 100%;
  z-index: 9999;
  text-align: left;
}
.hc-offcanvas-nav.is-ios * {
  cursor: pointer !important;
}
.hc-offcanvas-nav .nav-container {
  position: fixed;
  z-index: 9998;
  top: 0;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.hc-offcanvas-nav .nav-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.hc-offcanvas-nav .nav-content {
  height: 100%;
}
.hc-offcanvas-nav .nav-wrapper-0 > .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hc-offcanvas-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hc-offcanvas-nav li {
  position: relative;
  display: block;
}
.hc-offcanvas-nav li.level-open > .nav-wrapper {
  visibility: visible;
}
.hc-offcanvas-nav li:not(.custom-content) a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.hc-offcanvas-nav li:not(.custom-content) a[disabled] {
  cursor: not-allowed;
}
.hc-offcanvas-nav li:not(.custom-content) a, .hc-offcanvas-nav li:not(.custom-content) a:hover {
  text-decoration: none;
}
.hc-offcanvas-nav input[type=checkbox] {
  display: none;
}
.hc-offcanvas-nav label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}
.hc-offcanvas-nav .nav-item-wrapper {
  position: relative;
}
.hc-offcanvas-nav .nav-item-link {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hc-offcanvas-nav:not(.user-is-tabbing) .nav-close-button:focus,
.hc-offcanvas-nav:not(.user-is-tabbing) .nav-item-wrapper a:focus {
  outline: none;
}
.hc-offcanvas-nav .nav-close:focus,
.hc-offcanvas-nav .nav-next:focus,
.hc-offcanvas-nav .nav-back:focus {
  z-index: 10;
}
.hc-offcanvas-nav.disable-body::after,
.hc-offcanvas-nav .nav-wrapper::after {
  content: "";
  z-index: 9990;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s ease 0.4s, opacity 0.4s ease;
  transition: visibility 0s ease 0.4s, opacity 0.4s ease;
}
.hc-offcanvas-nav.disable-body::after {
  position: fixed;
}
.hc-offcanvas-nav .nav-wrapper::after {
  position: absolute;
}
.hc-offcanvas-nav.disable-body.nav-open::after,
.hc-offcanvas-nav .sub-level-open::after {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.hc-offcanvas-nav:not(.nav-open)::after {
  pointer-events: none;
}
.hc-offcanvas-nav.nav-levels-expand .nav-wrapper::after {
  display: none;
}
.hc-offcanvas-nav.nav-levels-expand .nav-wrapper.nav-wrapper-0 {
  max-height: 100vh;
}
.hc-offcanvas-nav.nav-levels-expand .nav-wrapper.nav-wrapper-0 > .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 100vh;
}
.hc-offcanvas-nav.nav-levels-expand ul .nav-wrapper {
  min-width: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: height 0s ease 0.4s;
  transition: height 0s ease 0.4s;
}
.hc-offcanvas-nav.nav-levels-expand .level-open > .nav-wrapper {
  max-height: none;
  overflow: visible;
  visibility: visible;
}
.hc-offcanvas-nav.nav-levels-overlap .nav-content {
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 100vh;
}
.hc-offcanvas-nav.nav-levels-overlap .nav-wrapper {
  max-height: 100vh;
}
.hc-offcanvas-nav.nav-levels-overlap ul .nav-wrapper {
  position: absolute;
  z-index: 9999;
  top: 0;
  height: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s ease 0.4s, -webkit-transform 0.4s ease;
  transition: visibility 0s ease 0.4s, -webkit-transform 0.4s ease;
  transition: visibility 0s ease 0.4s, transform 0.4s ease;
  transition: visibility 0s ease 0.4s, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.hc-offcanvas-nav.nav-levels-overlap ul li.nav-parent {
  position: static;
}
.hc-offcanvas-nav.nav-levels-overlap ul li.level-open > .nav-wrapper {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.hc-offcanvas-nav.nav-position-left {
  left: 0;
}
.hc-offcanvas-nav.nav-position-left .nav-container {
  left: 0;
  padding: 0;
}
.hc-offcanvas-nav.nav-position-left.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.hc-offcanvas-nav.nav-position-right {
  right: 0;
}
.hc-offcanvas-nav.nav-position-right .nav-container {
  right: 0;
}
.hc-offcanvas-nav.nav-position-right.nav-levels-overlap li .nav-wrapper {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.hc-offcanvas-nav.nav-position-top {
  top: 0;
}
.hc-offcanvas-nav.nav-position-top .nav-container {
  top: 0;
  width: 100%;
}
.hc-offcanvas-nav.nav-position-top.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.hc-offcanvas-nav.nav-position-bottom {
  top: auto;
  bottom: 0;
}
.hc-offcanvas-nav.nav-position-bottom .nav-container {
  top: auto;
  bottom: 0;
  width: 100%;
}
.hc-offcanvas-nav.nav-position-bottom.nav-levels-overlap li .nav-wrapper {
  left: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.hc-offcanvas-nav.nav-open[class*=hc-nav-] div.nav-container {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.hc-offcanvas-nav.rtl {
  text-align: right;
  direction: rtl;
}

.hc-nav-trigger {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
  top: 6px;
  right: 20px;
  z-index: 9980;
  width: 30px;
  min-height: 14px;
}
.hc-nav-trigger span {
  width: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.hc-nav-trigger span, .hc-nav-trigger span::before, .hc-nav-trigger span::after {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  background: #1c1c1c;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 3px;
}
.hc-nav-trigger span::before, .hc-nav-trigger span::after {
  content: "";
  width: 100%;
}
.hc-nav-trigger span::before {
  top: -6px;
}
.hc-nav-trigger span::after {
  bottom: -6px;
}
.hc-nav-trigger.toggle-open span {
  background: rgba(0, 0, 0, 0);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hc-nav-trigger.toggle-open span::before {
  -webkit-transform: translate3d(0, 6px, 0);
  transform: translate3d(0, 6px, 0);
}
.hc-nav-trigger.toggle-open span::after {
  -webkit-transform: rotate(-90deg) translate3d(6px, 0, 0);
  transform: rotate(-90deg) translate3d(6px, 0, 0);
}
.hc-nav-trigger {
  display: none;
}
@media (max-width: 600px) {
  .hc-nav-trigger {
    display: block;
  }
}

.hc-offcanvas-nav .nav-container,
.hc-offcanvas-nav .nav-wrapper,
.hc-offcanvas-nav ul {
  width: 100%;
  background: #e8e8e8;
}
.hc-offcanvas-nav,
.hc-offcanvas-nav .nav-content {
  padding: 0;
}
.hc-offcanvas-nav > h2, .hc-offcanvas-nav > h3, .hc-offcanvas-nav > h4, .hc-offcanvas-nav > h5, .hc-offcanvas-nav > h6,
.hc-offcanvas-nav .nav-content > h2,
.hc-offcanvas-nav .nav-content > h3,
.hc-offcanvas-nav .nav-content > h4,
.hc-offcanvas-nav .nav-content > h5,
.hc-offcanvas-nav .nav-content > h6 {
  font-size: 1rem;
  font-weight: normal;
  padding: 25px 15px 30px;
  color: #000;
}
.hc-offcanvas-nav > h2:first-child, .hc-offcanvas-nav > h3:first-child, .hc-offcanvas-nav > h4:first-child, .hc-offcanvas-nav > h5:first-child, .hc-offcanvas-nav > h6:first-child,
.hc-offcanvas-nav .nav-content > h2:first-child,
.hc-offcanvas-nav .nav-content > h3:first-child,
.hc-offcanvas-nav .nav-content > h4:first-child,
.hc-offcanvas-nav .nav-content > h5:first-child,
.hc-offcanvas-nav .nav-content > h6:first-child {
  margin-top: 10px;
}
.hc-offcanvas-nav > h2:not(.nav-title):not(.level-title), .hc-offcanvas-nav > h3:not(.nav-title):not(.level-title), .hc-offcanvas-nav > h4:not(.nav-title):not(.level-title), .hc-offcanvas-nav > h5:not(.nav-title):not(.level-title), .hc-offcanvas-nav > h6:not(.nav-title):not(.level-title),
.hc-offcanvas-nav .nav-content > h2:not(.nav-title):not(.level-title),
.hc-offcanvas-nav .nav-content > h3:not(.nav-title):not(.level-title),
.hc-offcanvas-nav .nav-content > h4:not(.nav-title):not(.level-title),
.hc-offcanvas-nav .nav-content > h5:not(.nav-title):not(.level-title),
.hc-offcanvas-nav .nav-content > h6:not(.nav-title):not(.level-title) {
  font-size: 2rem;
  padding: 15px 12px;
  text-transform: uppercase;
  color: hsl(0, 0%, -30%);
}
.hc-offcanvas-nav .level-title,
.hc-offcanvas-nav .nav-content .level-title {
  display: none;
}
.hc-offcanvas-nav .nav-item-link,
.hc-offcanvas-nav li.nav-close a,
.hc-offcanvas-nav .nav-back a {
  padding: 10px 12px;
  font-size: 1rem;
  color: #000;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  border-radius: 5px;
  -webkit-transition: 0.05s background ease;
  transition: 0.05s background ease;
}
.hc-offcanvas-nav .nav-item-link:focus, .hc-offcanvas-nav .nav-item-link:focus-within,
.hc-offcanvas-nav li.nav-close a:focus,
.hc-offcanvas-nav li.nav-close a:focus-within,
.hc-offcanvas-nav .nav-back a:focus,
.hc-offcanvas-nav .nav-back a:focus-within {
  z-index: 10;
}
.hc-offcanvas-nav .nav-item-link[disabled],
.hc-offcanvas-nav li.nav-close a[disabled],
.hc-offcanvas-nav .nav-back a[disabled] {
  color: rgba(0, 0, 0, 0.5);
}
.hc-offcanvas-nav .nav-back {
  margin-top: 3px;
}
.hc-offcanvas-nav .nav-back a {
  padding: 12px 45px;
  margin-top: 0;
}
.hc-offcanvas-nav:not(.touch-device) li:not(.nav-item-custom) a:not([disabled]):hover {
  background: rgb(239.65, 239.65, 239.65);
}
.hc-offcanvas-nav .nav-custom-content {
  padding: 12px 15px;
  font-size: 1rem;
}
.hc-offcanvas-nav .nav-highlight > .nav-item-wrapper .nav-item-link {
  border-radius: 5px;
  background: rgb(242.2, 242.2, 242.2);
}
.hc-offcanvas-nav .nav-wrapper-0 > .nav-content > ul:first-child {
  margin-top: 5px;
}
.hc-offcanvas-nav .nav-wrapper-0 > .nav-content > ul:not(:last-child) {
  margin-bottom: 18px;
}
.hc-offcanvas-nav li {
  color: #000;
}
.hc-offcanvas-nav li.nav-close a:hover, .hc-offcanvas-nav li.nav-back a:hover {
  background: rgb(215.425, 215.425, 215.425);
}
.hc-offcanvas-nav li.nav-close:not(:first-child) a, .hc-offcanvas-nav li.nav-back:not(:first-child) a {
  margin-top: -1px;
}
.hc-offcanvas-nav li.nav-parent .nav-item-link:last-child {
  padding-right: 62px;
}
.hc-offcanvas-nav li.nav-parent .nav-item-link:not(:last-child) {
  margin-right: 52px;
}
.hc-offcanvas-nav .nav-close-button span,
.hc-offcanvas-nav .nav-parent .nav-next,
.hc-offcanvas-nav .nav-back span {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.hc-offcanvas-nav .nav-item .nav-item-link {
  border-bottom: 1px solid #F7F8FC;
}
.hc-offcanvas-nav .nav-item .sub-menu .nav-item .nav-item-link {
  border: 0;
}
.hc-offcanvas-nav .nav-item .sub-menu .nav-item.category .nav-item-link {
  font-size: 1.3em;
}
.hc-offcanvas-nav .nav-item:last-child .nav-item-link {
  border: 0;
}
.hc-offcanvas-nav .nav-item .nav-back-button {
  border-bottom: 1px solid #F7F8FC;
}
.hc-offcanvas-nav .nav-item.category .nav-item-link {
  font-weight: bold;
}
.hc-offcanvas-nav .nav-close-button {
  position: relative;
  display: block;
}
.hc-offcanvas-nav .nav-close-button span::before, .hc-offcanvas-nav .nav-close-button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}
.hc-offcanvas-nav .nav-close-button span::before {
  margin-left: -6px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.hc-offcanvas-nav .nav-close-button span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hc-offcanvas-nav .nav-content > .nav-close a {
  height: 44px;
  font-size: 1rem;
  color: #000;
  background: rgba(0, 0, 0, 0);
  border-radius: 5px;
  z-index: 1;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hc-offcanvas-nav .nav-content > .nav-close a.has-label {
  padding: 12px 15px;
}
.hc-offcanvas-nav .nav-content > .nav-close a:hover {
  background: rgb(237.1, 237.1, 237.1);
}
.hc-offcanvas-nav .nav-content > .nav-close:first-child {
  position: relative;
  min-height: 40px;
  margin-top: 15px;
}
.hc-offcanvas-nav .nav-content > .nav-close:first-child + ul {
  margin-top: 15px;
}
.hc-offcanvas-nav .nav-content > .nav-close:first-child a.has-label {
  margin-bottom: -15px;
}
.hc-offcanvas-nav .nav-content > .nav-close:first-child a:not(.has-label) {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 0;
  right: 0;
}
.hc-offcanvas-nav .nav-content > .nav-close:first-child a:not(.has-label) + ul {
  margin-top: 60px;
}
.hc-offcanvas-nav .nav-content > .nav-close:first-child a:not(.has-label) + h2, .hc-offcanvas-nav .nav-content > .nav-close:first-child a:not(.has-label) + h3, .hc-offcanvas-nav .nav-content > .nav-close:first-child a:not(.has-label) + h4, .hc-offcanvas-nav .nav-content > .nav-close:first-child a:not(.has-label) + h5, .hc-offcanvas-nav .nav-content > .nav-close:first-child a:not(.has-label) + h6 {
  margin-top: 55px;
}
.hc-offcanvas-nav .nav-title + .nav-close a:not(.has-label) {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 28px;
  right: 15px;
}
.hc-offcanvas-nav.nav-close-button-empty .nav-title {
  padding-right: 46px;
}
.hc-offcanvas-nav li.nav-close:first-child {
  padding-bottom: 15px;
}
.hc-offcanvas-nav li.nav-close .nav-close-button.has-label {
  margin-bottom: -15px;
}
.hc-offcanvas-nav li.nav-close .nav-close-button:not(.has-label) {
  width: 40px;
  height: 40px;
  line-height: 40px;
  float: right;
}
.hc-offcanvas-nav li.nav-close .nav-item-wrapper::after {
  content: "";
  display: table;
  clear: both;
}
.hc-offcanvas-nav a.nav-next {
  position: relative;
}
.hc-offcanvas-nav a.nav-next:before {
  display: none;
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
  left: -7px;
  top: 9px;
  background: hsl(0, 0%, -70%);
  border-radius: 2px;
}
.hc-offcanvas-nav .nav-next span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.hc-offcanvas-nav .nav-next span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  margin-left: -14px;
  margin-top: -4px;
  border-top: 2px solid;
  border-radius: 3px;
  border-color: #7e00f5;
}
.hc-offcanvas-nav .nav-next span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 20px;
  margin-left: -5px;
  margin-top: -12px;
  border-left: 2px solid;
  border-radius: 3px;
  border-color: #7e00f5;
}
.hc-offcanvas-nav .nav-back span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  margin-left: -14px;
  margin-top: -4px;
  border-top: 2px solid;
  border-radius: 3px;
  border-color: #7e00f5;
}
.hc-offcanvas-nav {
  /* Left */
  /*&.nav-position-left {

    &.nav-open.nav-levels-overlap {
      .nav-wrapper {
        box-shadow: 1px 0 2px rgba(0, 0, 0, .2);
      }
    }
  }*/
  /* Right */
}
.hc-offcanvas-nav.nav-position-right.nav-open.nav-levels-overlap .nav-wrapper {
  -webkit-box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
}
.hc-offcanvas-nav.nav-position-right .nav-next span::before {
  margin-left: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hc-offcanvas-nav.nav-position-right .nav-back span::before {
  margin-left: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}
.hc-offcanvas-nav {
  /* Top */
}
.hc-offcanvas-nav.nav-position-top.nav-open .nav-wrapper {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hc-offcanvas-nav.nav-position-top .nav-next span::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.hc-offcanvas-nav.nav-position-top .nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.hc-offcanvas-nav {
  /* Bottom */
}
.hc-offcanvas-nav.nav-position-bottom.nav-open .nav-wrapper {
  -webkit-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}
.hc-offcanvas-nav.nav-position-bottom .nav-next span::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.hc-offcanvas-nav.nav-position-bottom .nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.hc-offcanvas-nav {
  /* Overlap */
}
.hc-offcanvas-nav.nav-levels-overlap ul ul:first-child {
  margin-top: 15px;
}
.hc-offcanvas-nav {
  /* Expand & none */
}
.hc-offcanvas-nav.nav-levels-expand .nav-content .nav-content, .hc-offcanvas-nav.nav-levels-none .nav-content .nav-content {
  padding: 0;
}
.hc-offcanvas-nav.nav-levels-expand .nav-wrapper .nav-wrapper, .hc-offcanvas-nav.nav-levels-none .nav-wrapper .nav-wrapper {
  width: auto;
  position: relative;
  margin-left: 20px;
}
.hc-offcanvas-nav.nav-levels-expand li.level-open > .nav-item-wrapper > .nav-next span::before,
.hc-offcanvas-nav.nav-levels-expand li.level-open > .nav-item-wrapper > a > .nav-next span::before, .hc-offcanvas-nav.nav-levels-none li.level-open > .nav-item-wrapper > .nav-next span::before,
.hc-offcanvas-nav.nav-levels-none li.level-open > .nav-item-wrapper > a > .nav-next span::before {
  margin-top: -2px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.hc-offcanvas-nav.nav-levels-expand li.level-open > .nav-wrapper::before, .hc-offcanvas-nav.nav-levels-none li .nav-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  left: -7px;
  top: 5px;
  bottom: 5px;
  background: #ffcc26;
  border-radius: 2px;
}
.hc-offcanvas-nav {
  /* RTL */
}
.hc-offcanvas-nav.rtl .nav-wrapper .nav-wrapper {
  margin-left: 0;
  margin-right: 20px;
}
.hc-offcanvas-nav.rtl a.nav-next:before {
  left: auto;
  right: -7px;
}
.hc-offcanvas-nav.rtl .nav-title + .nav-close a:not(.has-label) {
  left: 15px;
  right: auto;
}
.hc-offcanvas-nav.rtl .nav-close-button span,
.hc-offcanvas-nav.rtl .nav-next,
.hc-offcanvas-nav.rtl .nav-back span {
  left: 0;
  right: auto;
}
.hc-offcanvas-nav.rtl li.nav-parent .nav-item-link:last-child {
  padding-left: 62px;
  padding-right: 12px;
}
.hc-offcanvas-nav.rtl li.nav-parent .nav-item-link:not(:last-child) {
  margin-left: 52px;
  margin-right: 0;
}
.hc-offcanvas-nav.rtl.nav-levels-expand li.level-open > .nav-wrapper::before, .hc-offcanvas-nav.rtl.nav-levels-none li .nav-wrapper::before {
  left: auto;
  right: -7px;
}

.hc-nav-trigger {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
}

.hc-offcanvas-nav.nav-position-left .nav-container, .hc-offcanvas-nav.nav-position-right .nav-container {
  top: 0px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh !important;
  max-height: 100vh !important;
  padding: 83px 0 0 0 !important;
  background: #E4E4E4;
}
.hc-offcanvas-nav.nav-position-left .nav-container {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.hc-offcanvas-nav.nav-position-right .nav-container {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.hc-offcanvas-nav .nav-wrapper {
  background: #E4E4E4 !important;
}
.hc-offcanvas-nav .nav-wrapper.nav-wrapper-0, .hc-offcanvas-nav .nav-wrapper.nav-wrapper-1, .hc-offcanvas-nav .nav-wrapper.nav-wrapper-2, .hc-offcanvas-nav .nav-wrapper.nav-wrapper-3 {
  background: #E4E4E4 !important;
}
.hc-offcanvas-nav .nav-content {
  background: white;
  padding: 0 !important;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hc-offcanvas-nav .nav-content .nav-title {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: #E4E4E4;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 20px;
  padding-right: 60px;
  margin: 0 !important;
  border-bottom: 1px solid #d0d0d0;
}
.hc-offcanvas-nav .nav-content .level-title {
  display: none !important;
}
.hc-offcanvas-nav li.nav-close,
.hc-offcanvas-nav .nav-close {
  position: absolute !important;
  top: 0;
  right: 0;
  padding: 0;
  z-index: 10;
  border: none !important;
  background: transparent !important;
}
.hc-offcanvas-nav li.nav-close .nav-item-wrapper,
.hc-offcanvas-nav .nav-close .nav-item-wrapper {
  padding: 0;
}
.hc-offcanvas-nav li.nav-close .nav-close-button,
.hc-offcanvas-nav .nav-close .nav-close-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hc-offcanvas-nav li.nav-close .nav-close-button span,
.hc-offcanvas-nav .nav-close .nav-close-button span {
  position: relative;
  width: 20px;
  height: 20px;
}
.hc-offcanvas-nav li.nav-close .nav-close-button span::before, .hc-offcanvas-nav li.nav-close .nav-close-button span::after,
.hc-offcanvas-nav .nav-close .nav-close-button span::before,
.hc-offcanvas-nav .nav-close .nav-close-button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #000;
  border: none !important;
}
.hc-offcanvas-nav li.nav-close .nav-close-button span::before,
.hc-offcanvas-nav .nav-close .nav-close-button span::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  margin: 0 !important;
}
.hc-offcanvas-nav li.nav-close .nav-close-button span::after,
.hc-offcanvas-nav .nav-close .nav-close-button span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  margin: 0 !important;
}
.hc-offcanvas-nav .nav-close-sublevel {
  position: absolute !important;
  top: 0;
  right: 0;
  z-index: 10;
}
.hc-offcanvas-nav .nav-close-sublevel .nav-close-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.hc-offcanvas-nav .nav-close-sublevel .nav-close-button span {
  position: relative;
  width: 20px;
  height: 20px;
}
.hc-offcanvas-nav .nav-close-sublevel .nav-close-button span::before, .hc-offcanvas-nav .nav-close-sublevel .nav-close-button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #000;
}
.hc-offcanvas-nav .nav-close-sublevel .nav-close-button span::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.hc-offcanvas-nav .nav-close-sublevel .nav-close-button span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hc-offcanvas-nav .nav-main,
.hc-offcanvas-nav ul[role=menu] {
  list-style: none;
  margin: 0;
  padding: 0;
  background: white;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hc-offcanvas-nav li.nav-item {
  border-bottom: 1px solid #d0d0d0;
  background: white;
}
.hc-offcanvas-nav li.nav-item:last-child {
  border-bottom: none;
}
.hc-offcanvas-nav li.nav-item .nav-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.hc-offcanvas-nav li.nav-item .nav-item-link,
.hc-offcanvas-nav li.nav-item a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  background: transparent;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.hc-offcanvas-nav li.nav-item .nav-item-link:hover, .hc-offcanvas-nav li.nav-item .nav-item-link:focus,
.hc-offcanvas-nav li.nav-item a:hover,
.hc-offcanvas-nav li.nav-item a:focus {
  background: rgba(0, 0, 0, 0.03);
}
.hc-offcanvas-nav li.nav-parent .nav-item-wrapper {
  position: relative;
}
.hc-offcanvas-nav li.nav-parent .nav-item-link {
  padding-right: 50px;
}
.hc-offcanvas-nav li.nav-parent .nav-item-link:not(:last-child) {
  margin-right: 50px !important;
}
.hc-offcanvas-nav li.nav-parent .nav-item-link:last-child {
  padding-right: 50px !important;
}
.hc-offcanvas-nav li.nav-parent .nav-next {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}
.hc-offcanvas-nav li.nav-parent .nav-next span {
  position: relative;
  width: 10px;
  height: 10px;
}
.hc-offcanvas-nav li.nav-parent .nav-next span::before {
  content: ">";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 300;
  color: #000;
  border: none !important;
  width: auto;
  height: auto;
  margin: 0 !important;
}
.hc-offcanvas-nav li.nav-parent .nav-next span::after {
  display: none !important;
}
.hc-offcanvas-nav li.nav-parent a.nav-next::before {
  display: none !important;
}
.hc-offcanvas-nav .nav-back {
  border-bottom: 1px solid #d0d0d0;
  background: #E4E4E4;
  position: relative;
  min-height: 54px;
  margin-top: 0px;
}
.hc-offcanvas-nav .nav-back .nav-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  min-height: 54px;
}
.hc-offcanvas-nav .nav-back .nav-back-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 15px 60px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  background: transparent;
  text-align: center;
}
.hc-offcanvas-nav .nav-back .nav-back-button::before {
  content: "<";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 300;
  color: #000;
}
.hc-offcanvas-nav .nav-back .nav-back-button span {
  display: none !important;
}
.hc-offcanvas-nav.nav-levels-overlap > .nav-container > .nav-wrapper > .nav-content ul .nav-wrapper {
  top: 100px !important;
  height: calc(100% - 100px) !important;
  background: #E4E4E4 !important;
}
.hc-offcanvas-nav.nav-levels-overlap > .nav-container > .nav-wrapper > .nav-content ul .nav-wrapper .nav-wrapper-2 {
  top: 0 !important;
  height: 100% !important;
  background: #E4E4E4 !important;
}
.hc-offcanvas-nav.nav-levels-overlap .nav-wrapper:not(.nav-wrapper-0) .nav-content .level-title {
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}
.hc-offcanvas-nav.nav-levels-overlap li.level-open > .nav-wrapper {
  background: #E4E4E4 !important;
}
.hc-offcanvas-nav.nav-levels-overlap li.level-open > .nav-wrapper::before, .hc-offcanvas-nav.nav-levels-none li .nav-wrapper::before {
  display: none !important;
}
.hc-offcanvas-nav li.mobile-nav-cta {
  border-bottom: 1px solid #d0d0d0;
  background: white;
  padding: 15px 20px;
}
.hc-offcanvas-nav li.mobile-nav-cta .nav-item-link,
.hc-offcanvas-nav li.mobile-nav-cta a {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.hc-offcanvas-nav li.mobile-nav-cta .nav-item-link:visited,
.hc-offcanvas-nav li.mobile-nav-cta a:visited {
  color: #1c1c1c;
}
.hc-offcanvas-nav li.mobile-nav-cta .nav-item-link:hover,
.hc-offcanvas-nav li.mobile-nav-cta a:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.hc-offcanvas-nav li.mobile-nav-cta .nav-item-link,
.hc-offcanvas-nav li.mobile-nav-cta a {
  display: block;
  text-align: center;
  padding: 14px 20px !important;
  font-size: 16px;
}
.hc-offcanvas-nav .nav-container > .mobile-nav-contact {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px;
  background: white;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.hc-offcanvas-nav .nav-container > .mobile-nav-contact .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}
.hc-offcanvas-nav .nav-container > .mobile-nav-contact .contact-item:last-child {
  margin-bottom: 0;
}
.hc-offcanvas-nav .nav-container > .mobile-nav-contact .contact-item .contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hc-offcanvas-nav .nav-container > .mobile-nav-contact .contact-item .contact-icon svg {
  width: 100%;
  height: 100%;
  fill: #000;
}
.hc-offcanvas-nav .nav-container > .mobile-nav-contact .contact-item a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  padding: 0;
}
.hc-offcanvas-nav .nav-container > .mobile-nav-contact .contact-item a:hover {
  text-decoration: underline;
}

body.hc-nav-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100%;
}

@media (min-width: 600px) {
  .hc-offcanvas-nav,
  .hc-nav-trigger {
    display: none !important;
  }
  .nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    line-height: 90px;
    height: 90px;
  }
  .nav .nav-main {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav .nav-main li {
    display: inline-block;
    z-index: 1;
  }
  .nav .nav-main li a {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    font-family: "Roc Grotesk", "DM Sans", sans-serif;
    position: relative;
    overflow: hidden;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .nav .nav-main li a:hover, .nav .nav-main li a:active, .nav .nav-main li a:focus {
    color: #1c1c1c;
  }
  .nav .nav-main li a {
    /*
    // Left-to-right background fill effect
    &:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: $white;
      z-index: -1;
      transition: width 0.4s ease;
    }

    &:hover {
      color: $text-main;

      &:before {
        width: 100%;
      }
    }
    */
  }
  .nav .nav-main li.tel a {
    color: #ffcc26;
    font-weight: bold;
    padding-left: 25px;
    font-family: "Roc Grotesk", "DM Sans", sans-serif;
  }
  .nav .nav-main li.tel a:before {
    background: url(images/icons.svg#tel) no-repeat;
    content: "";
    width: 20px;
    height: 21px;
    margin-right: 6px;
    background-size: contain;
    display: inline-block;
    vertical-align: sub;
  }
  .nav .nav-main li.button {
    line-height: initial;
    z-index: 3;
    padding: initial;
    margin: none;
  }
  .nav .nav-main li.button a {
    border-radius: 35px;
    display: inline-block;
    background: #f74e6b;
    color: #fff;
    line-height: 46px;
    font-size: 15px;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Roc Grotesk", "DM Sans", sans-serif;
  }
  .nav .nav-main li.button a:hover {
    background: #ffcc26;
    -webkit-transition: background-color 0.15s linear;
    transition: background-color 0.15s linear;
  }
  .nav .nav-main li.menu-item-has-children {
    position: relative;
  }
  .nav .nav-main li.menu-item-has-children a {
    position: relative;
    padding-right: 20px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
  }
  .nav .nav-main li.menu-item-has-children a:after {
    content: "";
    position: absolute;
    top: 45%;
    right: -5px;
    width: 7px;
    height: 7px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 2px solid #ffcc26;
    border-right: 2px solid #ffcc26;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 9999;
    border-color: #fff;
    top: 48%;
    right: 5px;
    border-color: #1c1c1c;
  }
  .nav .nav-main li.menu-item-has-children a:hover:after {
    border-color: #fff;
  }
  .nav .nav-main li.menu-item-has-children a.active :after {
    border-color: #fff;
  }
  .nav .nav-main li.menu-item-has-children .sub-menu {
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    padding: 0;
    background: white;
    -webkit-box-shadow: 0 0.15em 0.25em rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.15em 0.25em rgba(0, 0, 0, 0.25);
    border-radius: 0 0 3px 3px;
    z-index: 1000;
  }
  .nav .nav-main li.menu-item-has-children .sub-menu li {
    display: block;
    line-height: normal;
    position: relative;
  }
  .nav .nav-main li.menu-item-has-children .sub-menu li a {
    padding: 15px 25px;
  }
  .nav .nav-main li.menu-item-has-children .sub-menu li a:after {
    display: none;
  }
  .nav .nav-main li.menu-item-has-children .sub-menu li:hover {
    background: #fff;
  }
  .nav .nav-main li.menu-item-has-children .sub-menu li:hover a {
    color: #ffcc26;
  }
  .nav .nav-main li.menu-item-has-children .sub-menu.active {
    display: block;
  }
  .nav .nav-main li.mega {
    position: static;
  }
  .nav .nav-main li.mega .mega-wrap {
    opacity: 0;
    visibility: hidden;
    background: #fff;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    max-width: clamp(1190px, 92vw, 1600px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0 auto;
    padding: 0 20px;
    display: table;
    table-layout: fixed;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children {
    display: table-cell;
    max-width: 0px;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children .heading {
    padding: 5px 0;
    margin-bottom: 10px;
    text-align: left;
    width: 90%;
    background-size: cover !important;
    background-position: center;
    color: #1c1c1c;
    font-size: 1.17em;
    font-weight: bold;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children .sub-menu {
    padding: 0;
    display: block;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children .sub-menu li a {
    padding: 10px 0px;
    color: #929292;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children .sub-menu li a:after {
    content: "->";
    color: black;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children .sub-menu li a:hover {
    color: #ffcc26;
  }
  .nav .nav-main li.mega .mega-wrap.active {
    opacity: 1;
    visibility: visible;
  }
  .nav.animate-slide .menu-item-has-children .sub-menu.active {
    -webkit-animation: slideDown 0.3s ease-out forwards;
    animation: slideDown 0.3s ease-out forwards;
  }
  .nav.animate-slide .mega .mega-wrap.active {
    -webkit-animation: slideDown 0.4s ease-out forwards;
    animation: slideDown 0.4s ease-out forwards;
  }
  .nav.animate-expand .menu-item-has-children .sub-menu.active {
    -webkit-animation: expandOut 0.3s ease-out forwards;
    animation: expandOut 0.3s ease-out forwards;
  }
  .nav.animate-expand .mega .mega-wrap.active {
    -webkit-animation: expandOut 0.4s ease-out forwards;
    animation: expandOut 0.4s ease-out forwards;
  }
  .nav.animate-fade .menu-item-has-children .sub-menu.active {
    -webkit-animation: fadeIn 0.3s ease-out forwards;
    animation: fadeIn 0.3s ease-out forwards;
  }
  .nav.animate-fade .mega .mega-wrap.active {
    -webkit-animation: fadeIn 0.4s ease-out forwards;
    animation: fadeIn 0.4s ease-out forwards;
  }
  .nav.animate-slide-up .menu-item-has-children .sub-menu.active {
    -webkit-animation: slideUp 0.3s ease-out forwards;
    animation: slideUp 0.3s ease-out forwards;
  }
  .nav.animate-slide-up .mega .mega-wrap.active {
    -webkit-animation: slideUp 0.4s ease-out forwards;
    animation: slideUp 0.4s ease-out forwards;
  }
  @-webkit-keyframes slideDown {
    from {
      opacity: 0;
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @-webkit-keyframes expandOut {
    from {
      opacity: 0;
      -webkit-transform: scaleY(0);
      transform: scaleY(0);
      -webkit-transform-origin: top;
      transform-origin: top;
    }
    to {
      opacity: 1;
      -webkit-transform: scaleY(1);
      transform: scaleY(1);
    }
  }
  @keyframes expandOut {
    from {
      opacity: 0;
      -webkit-transform: scaleY(0);
      transform: scaleY(0);
      -webkit-transform-origin: top;
      transform-origin: top;
    }
    to {
      opacity: 1;
      -webkit-transform: scaleY(1);
      transform: scaleY(1);
    }
  }
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @-webkit-keyframes slideUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @keyframes slideUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
}
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 2px solid;
  border-color: #ffcc26;
  border-radius: 10px;
  background: #ffcc26;
  color: #fff;
  line-height: 40px;
  padding: 3px 20px;
  font-size: 1.1em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background: transparent;
  color: #ffcc26;
  cursor: pointer;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  background: #fff;
  color: #ffcc26;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  color: #666;
  border: 0;
  border-radius: 5px;
  padding: 3px 15px;
  line-height: 25px;
  font-size: 1.3em;
  border: 1px solid #82889E;
  max-width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  color: #ffcc26;
}

select {
  position: relative;
  width: 100%;
  height: 56px;
  border: 1px solid #82889E;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  max-height: 200px;
}

.wpcf7 .screen-reader-response {
  display: none;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 40px;
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7 .wpcf7-form-control-wrap.select {
  position: relative;
}
.wpcf7 .wpcf7-form-control-wrap.select:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 10px;
  width: 15px;
  height: 56px;
  background-image: url("/wp-content/themes/ovh/images/icons.svg#dropdown");
  background-repeat: no-repeat;
  pointer-events: none;
}
.wpcf7 .wpcf7-not-valid-tip {
  left: 2px;
  top: 40px;
  color: red;
  position: absolute;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7-form .hidden-fields-container {
  display: none;
  visibility: hidden;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232; /* Red */
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d; /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc; /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
  transform-origin: 8px 8px;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    -webkit-animation-name: blink;
    animation-name: blink;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  direction: ltr;
}

.accordion-menu {
  padding: 0;
  margin: 0;
  width: 100%;
  padding-bottom: 20px;
  margin-left: 0 !important;
}
.accordion-menu .accordion {
  margin: 0 10px;
  border-bottom: 1px solid #e2e0de;
}
.accordion-menu .accordion .heading {
  width: 100%;
  display: block;
  background: #fff;
  text-align: left;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  background: none;
  position: relative;
}
.accordion-menu .accordion .heading h5 {
  color: #ffcc26;
  margin: 0;
  padding: 10px 0 10px 0;
  font-size: 1.2em;
  line-height: 32px;
}
.accordion-menu .accordion .heading h5:hover {
  cursor: pointer;
}
.accordion-menu .accordion .heading h5:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 0;
  width: 13px;
  height: 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #ffcc26;
  border-right: 2px solid #ffcc26;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.accordion-menu .accordion .heading h5.active:after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 5px;
}
.accordion-menu .accordion .body {
  padding: 0 0 20px 0;
  display: none;
  text-align: left;
}
.accordion-menu .accordion .body p {
  font-size: 0.9em;
  margin: 0 0 15px 0;
  line-height: 28px;
}
.accordion-menu .accordion .body p:last-of-type {
  margin-bottom: 0;
}
.accordion-menu .accordion:first-of-type .body {
  display: block;
}

.accordion-content.expanded .accordion-menu .accordion {
  margin: 0;
  border-bottom: 0;
}
.accordion-content.expanded .accordion-menu .accordion .heading {
  pointer-events: none;
  border-top: 1px solid #eeeeed;
  border-radius: 0;
}
.accordion-content.expanded .accordion-menu .accordion .heading h5:after {
  display: none;
}
.accordion-content.expanded .accordion-menu .accordion .body {
  display: block;
}
.accordion-content.expanded .accordion-menu .accordion .body p, .accordion-content.expanded .accordion-menu .accordion .body ul li, .accordion-content.expanded .accordion-menu .accordion .body a {
  color: #929292;
}

@media screen and (min-width: 1200px) {
  .accordion-menu {
    margin-left: 5px !important;
  }
  .accordion-menu .accordion .heading h5 {
    padding: 20px 0 20px 0;
    font-size: 1.3em;
  }
  .accordion-menu .accordion .heading h5 .icon {
    width: 20px;
    height: 20px;
    float: right;
    margin-top: 5px;
    top: 0;
  }
  .accordion-menu .accordion .body {
    padding: 0 30px 20px 0;
  }
  .accordion-menu .accordion .body p {
    font-size: 1em;
  }
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-carousel .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.owl-carousel .owl-stage-outer .slide {
  padding: 0 40px 20px 40px;
}
.owl-carousel .owl-stage-outer .slide .photo {
  width: 60px;
  height: 60px;
  margin: 30px auto 10px auto;
  border-radius: 50%;
  background-size: contain !important;
  border: 1px solid #eee;
}
.owl-carousel .owl-stage-outer .slide p {
  margin-bottom: 0;
  font-size: 0.9em;
  font-weight: bold;
  font-size: 0.8em;
  line-height: 1.6;
}
.owl-carousel .owl-stage-outer .slide .message p {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.owl-carousel .owl-nav button {
  text-indent: -9999px;
}
.owl-carousel .owl-nav button.owl-prev:after {
  content: "";
  position: absolute;
  top: 45%;
  right: -5px;
  width: 7px;
  height: 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #ffcc26;
  border-right: 2px solid #ffcc26;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
  left: 20px;
  width: 20px;
  height: 20px;
  border-width: 1px;
}
.owl-carousel .owl-nav button.owl-next:after {
  content: "";
  position: absolute;
  top: 45%;
  right: -5px;
  width: 7px;
  height: 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #ffcc26;
  border-right: 2px solid #ffcc26;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  right: 0;
  width: 20px;
  height: 20px;
  border-width: 1px;
}
.owl-carousel .owl-dots {
  margin-bottom: 30px;
}
.owl-carousel .owl-dots button {
  background: transparent;
  border: 1px solid #ffcc26;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.owl-carousel .owl-dots button.active {
  background: #ffcc26;
}

@media screen and (min-width: 600px) {
  .owl-carousel .owl-stage-outer .slide {
    padding: 0 30px;
  }
  .owl-carousel .owl-stage-outer .slide .photo {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
  }
  .owl-carousel .owl-stage-outer .slide .message p {
    font-size: 1.4em;
  }
  .owl-carousel .owl-nav button.owl-prev:after {
    left: -50px;
  }
  .owl-carousel .owl-nav button.owl-next:after {
    right: -50px;
  }
  .owl-carousel .owl-dots {
    margin-top: 30px;
  }
}
body .answerPack .tb-dropdown-menu .tb-dropdown-C,
.leadtitle {
  display: none;
}

.answerPack.theme-bluey .ask-a-question {
  display: none;
}

.answerPack .tb-caret {
  border-top: 12px dashed !important;
  border-right: 7px solid transparent !important;
  border-left: 7px solid transparent !important;
  float: right;
  margin-top: 4px;
}

body .answerPack,
body .answerPack #result-list .result-item .item-source + a,
body .answerPack #result-list .result-item {
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}

body .answerPack .tb-container h1,
body .answerPack .tb-container h2,
body .answerPack .tb-container h3,
body .answerPack .tb-container h4,
body .answerPack .tb-container h5,
body .answerPack .tb-container h6,
body .answerPack h1.video-title-exp,
body .answerPack .tb-text-success,
body .answerPack .tb-container,
body .answerPack #result-list,
body .answerPack #leadformWrapper .leadtitle,
body .answerPack #contributor-list {
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}

body .answerPack #result-list .result-item .contributor-name-exp,
body .answerPack .textItalic,
body .answerPack #contributor-list .contributor-item .contributor-name,
body .answerPack #contributor-list .contributor-item .item-source + a {
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}

body .answerPack.theme-bluey #VideosController .tb-header-right,
body .answerPack.theme-bluey #VideosController .tb-header-right h3,
body .answerPack.theme-bluey #VideosController .tb-header-right p,
body .answerPack.theme-bluey #VideosController .tb-header-right a,
body .answerPack.theme-bluey #VideosController .tb-header-right label,
body .answerPack.theme-bluey #VideosController .tb-header-right span,
body .answerPack.theme-bluey #VideosController .tb-header-right .tb-list-label .item-source,
body .answerPack.theme-bluey #VideosController .tb-header-right .video-totalViews,
body .answerPack.theme-bluey #VideosController .tb-header-right .tb-list-label,
body .answerPack.theme-bluey #VideosController .tb-btn-primary,
body .answerPack.theme-bluey[max-width~="768px"] #result-summary,
body .answerPack.theme-bluey[max-width~="768px"] #result-summary h3,
body .answerPack.theme-bluey .tb-answerpack-head-xs > .tb-logo-bg {
  background-color: #ffcc26 !important;
  color: #fff !important;
}

body .answerPack.theme-bluey #VideosController .tb-header-right a:focus,
body .answerPack.theme-bluey #VideosController .tb-header-right button,
body .answerPack.theme-bluey #VideosController .tb-header-right .tb-btn-default,
body .answerPack.theme-bluey #VideosController .tb-header-right .tb-form-control,
body .answerPack.theme-bluey #VideosController .tb-header-right button:active,
body .answerPack.theme-bluey #VideosController .tb-header-right .tb-btn-default:active,
body .answerPack.theme-bluey #VideosController .tb-header-right .tb-form-control:active {
  border-color: #fff !important;
  color: #fff !important;
}

body .answerPack .tb-container h1,
body .answerPack .tb-container h2,
body .answerPack .tb-container h3,
body .answerPack .tb-container h4,
body .answerPack .tb-container h5,
body .answerPack .tb-container h6,
body .answerPack.theme-bluey .item-detail strong,
body .answerPack.theme-bluey #result-summary h3,
body .answerPack.theme-bluey[max-width~="768px"] #result-summary .btn-grey,
body .answerPack.theme-bluey #VideosController #result-list h1,
body .answerPack.theme-bluey #VideosController .tb-header-left h1,
body .answerPack.theme-bluey .textblue,
body .answerPack.theme-bluey a,
body .answerPack.theme-bluey a:visited {
  color: #ffcc26 !important;
}

body .answerPack.theme-bluey #VideosController a:hover {
  color: #ffcc26 !important;
}

.answerPack.theme-bluey .tb-pointy-jobs {
  border-top-color: #ffcc26 !important;
}

.answerPack.theme-bluey .tb-header-blue h3.welcome-title {
  font-size: 22px;
  margin-top: 30px;
}

.answerPack.theme-bluey .tb-header-blue .tb-header-right .blueSpacer {
  background-color: Transparent;
}

body .answerPack.theme-bluey #result-list .result-item .itemFullDetail {
  border-color: #ffcc26 !important; /* the bottom line */
}

.answerPack #VideosController div .flowplayer .fp-color {
  background-color: #ffcc26;
}

.answerPack #VideosController div .flowplayer .fp-ui,
.answerPack #VideosController div .flowplayer .fp-ui a,
.answerPack #VideosController div .flowplayer .fp-ui strong,
.answerPack #VideosController div .flowplayer .fp-ui .fp-cc:before {
  color: #ffcc26 !important;
}

body #answerPack .answerPack #VideosController div .flowplayer .fp-ui a:hover,
body #answerPack .answerPack.theme-bluey #result-list .tb-header-right a:hover {
  color: #ffcc26 !important;
}

.answerPack.theme-bluey .tb-header-right .social-icons ul li {
  margin-top: 0;
  display: inline-block;
}

.answerPack .search-container-bg .tb-header-left {
  display: none !important;
}

.answerPack .search-container-bg .tb-header-right {
  width: 100% !important;
}

.answerPack .search-container-bg.tb-video-count-1 .tb-header-left {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .answerPack .search-container-bg.tb-video-count-1 .tb-header-right {
    width: 50% !important;
  }
}
.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #ffcc26 !important;
}

.plyr__control--overlaid {
  background: #ffcc26 !important;
  opacity: 0.8;
}

.plyr--full-ui input[type=range] {
  color: #ffcc26 !important;
}

.videos-link .video .more-videos {
  height: 60px;
  text-align: right;
}
.videos-link .video .more-videos a {
  color: #fff;
  text-transform: uppercase;
  padding: 18px 60px 0 0;
  font-weight: 500;
  display: block;
  position: relative;
}
.videos-link .video .more-videos a:hover {
  color: #ffcc26;
}

.answerPack .btn-grey {
  background-color: #b3b3b3;
  color: #fff;
}

.answerPack .btn-grey span,
.answerPack .glyphicon {
  color: #fff;
}

body #answerPack .answerPack.theme-bluey #result-list .tb-header-right .item-closeBtn a:hover {
  color: #fff !important;
}

body #answerPack .answerPack.theme-bluey .icon-awp-timer {
  color: #ffcc26 !important;
}

.answerpack-video .video .plyr {
  border-radius: 0 !important;
}
.answerpack-video .video .plyr .plyr__control--overlaid,
.answerpack-video .video .plyr .plyr__controls > .plyr__control:first-child,
.answerpack-video .video .plyr .plyr__controls > .plyr__control:first-child + [data-plyr=pause] {
  background: #ffcc26 !important;
  opacity: 1 !important;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.p0 {
  padding: 0;
}

.m0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

@media (min-width: 600px) {
  .pt-md-0 {
    padding-top: 0;
  }
  .pt-md-100 {
    padding-top: 100px !important;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .pr-md-10 {
    padding-right: 10px;
  }
  .pr-md-20 {
    padding-right: 20px;
  }
  .pr-md-40 {
    padding-right: 40px;
  }
  .pr-md-60 {
    padding-right: 60px;
  }
  .pr-md-80 {
    padding-right: 80px;
  }
  .pr-md-100 {
    padding-right: 100px;
  }
  .pr-md-140 {
    padding-right: 140px;
  }
  .pl-md-10 {
    padding-left: 10px;
  }
  .pl-md-20 {
    padding-left: 20px;
  }
  .pl-md-40 {
    padding-left: 40px;
  }
  .pl-md-60 {
    padding-left: 660px;
  }
  .pl-md-80 {
    padding-left: 80px;
  }
  .pl-md-100 {
    padding-left: 100px;
  }
  .pl-md-140 {
    padding-left: 140px;
  }
}
.top-xs .middle-xs {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media (min-width: 600px) {
  .width-100 .container {
    max-width: 2000px;
  }
  .width-90 .container {
    max-width: 90%;
  }
  .width-80 .container {
    max-width: 80%;
  }
  .width-70 .container {
    max-width: 70%;
  }
  .center-col {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
  }
  .center-xs .center-col {
    text-align: center;
  }
  .bottom-md .middle-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .top-xs .middle-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.no-sidebar .site {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "header" "main" "footer";
}

.hc-offcanvas-nav li.nav-close, .hc-offcanvas-nav .nav-close {
  display: none;
}

.site {
  margin-top: 0;
  padding-top: 90px;
}

.header .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

@media (max-width: 600px) {
  .site {
    padding-top: 80px;
  }
  .header .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.hc-nav-trigger {
  right: 20px;
}

@media (max-width: 1024px) {
  .site {
    padding-top: 70px;
  }
  .header .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.post {
  margin: 20px 0 !important;
  text-align: left;
  -webkit-box-shadow: 0 0 28px rgba(136, 136, 136, 0.17);
  box-shadow: 0 0 28px rgba(136, 136, 136, 0.17);
  padding: 25px;
}
.post .image-wrapper {
  width: 100%;
  height: 220px;
  display: block;
  overflow: hidden;
}
.post .image-wrapper .image {
  width: 100%;
  min-height: 220px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.post .image-wrapper .image:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.post .entry-header .format {
  font-weight: bold;
  color: #ffcc26;
  margin-bottom: 10px;
}
.post .entry-header .title {
  font-size: 1.4em;
  line-height: 1.25;
}
.post .entry-footer .author {
  font-size: 0.8em;
}
.post .entry-footer .author .name {
  margin-right: 40px;
  text-transform: capitalize;
}
.post .entry-footer .author .date {
  float: right;
}

.blog-posts {
  padding: 30px 0;
}
.blog-posts .blog-heading h1, .blog-posts .blog-heading h2 {
  font-size: 1.4em;
  color: #ffcc26;
}

@media (min-width: 600px) {
  .blog-posts {
    padding: 40px 0;
  }
  .blog-posts .blog-heading h1, .blog-posts .blog-heading h2 {
    font-size: 2.4em;
  }
}
.loadmore {
  margin-top: 40px;
}

.boxes {
  padding-top: 40px;
}
.boxes .box {
  min-height: 270px;
  margin-bottom: 30px;
  background: #989898;
  background-size: cover !important;
  background-position: center;
  padding: 140px 0 0 30px;
}
.boxes .box.face {
  background: url(images/face.jpg) no-repeat;
}
.boxes .box.breast {
  background: url(images/breast.jpg) no-repeat;
}
.boxes .box.body {
  background: url(images/body.jpg) no-repeat;
}
.boxes .box.skin {
  background: url(images/skin.jpg) no-repeat;
}
.boxes .box.non-surgical {
  background: url(images/non-surgical.jpg) no-repeat;
}
.boxes .box h2 {
  font-size: 1.6em;
  margin-bottom: 10px;
}
.boxes .box .cta {
  color: #ffcc26;
  border-color: #ffcc26;
  background: #989898;
  line-height: 20px;
  border-width: 1px;
  padding-left: 20px;
  padding-right: 20px;
}
.boxes .box .cta:hover {
  background: #ffcc26;
  border-color: #ffcc26;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .boxes {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .boxes .box {
    min-height: 300px;
  }
  .boxes .box h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }
}
.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.cta:visited {
  color: #1c1c1c;
}
.cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.cta {
  margin: 0 20px 15px 0;
}
.cta.outline {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.cta.outline:visited {
  color: #fff;
}
.cta.outline:hover {
  background: #fff;
  border-color: #fff;
  color: #1c1c1c;
}
.cta.green {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.cta.green:visited {
  color: #1c1c1c;
}
.cta.green:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.cta.purple {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #7e00f5;
  color: #fafaff;
  border-color: #7e00f5;
}
.cta.purple:visited {
  color: #fafaff;
}
.cta.purple:hover {
  background: rgb(105.0171428571, 0, 204.2);
  border-color: rgb(105.0171428571, 0, 204.2);
  color: #fafaff;
}
.cta.red {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #1c1c1c;
  color: #fafaff;
  border-color: #1c1c1c;
}
.cta.red:visited {
  color: #fafaff;
}
.cta.red:hover {
  background: rgb(53.5, 53.5, 53.5);
  border-color: rgb(53.5, 53.5, 53.5);
  color: #fafaff;
}

@media (min-width: 600px) {
  .cta {
    line-height: 2.2;
  }
  .cta.outline, .cta.green, .cta.purple, .cta.red {
    line-height: 2;
  }
}
.summary-widget {
  margin-top: 20px;
}
.summary-widget .container {
  overflow: hidden;
}
.summary-widget .container .row {
  padding: 15px 0;
  background: #989898;
  margin-bottom: 5px;
}
.summary-widget .container .row.heading {
  background: #ffcc26;
  padding-left: 5px;
}
.summary-widget .container .row.heading h3 {
  color: #fff;
  margin: 0;
  font-size: 1.1em;
}
.summary-widget .container .row.summary {
  font-size: 1em;
  color: #1c1c1c;
  padding-left: 5px;
}
.summary-widget .container .row.summary .value {
  color: #ffcc26;
  padding-left: 0;
}
.summary-widget .container .row.summary .value a {
  color: #ffcc26;
  border-bottom: 1px dotted;
}

.cta-widget {
  margin-top: 20px;
  background: #ffcc26;
  background-size: cover;
  padding: 40px 15px 60px 15px;
}
.cta-widget p {
  text-align: left;
  color: #fff;
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.3;
}
.cta-widget .cta {
  margin-bottom: 5px;
  padding: 12px 20px;
  margin-right: 0;
}

@media (min-width: 600px) {
  .widgets {
    position: sticky;
    top: 135px;
  }
  .cta-widget .cta {
    padding: 12px 30px;
  }
}
input.wpcf7-form-control.wpcf7-text,
input.wpcf7-form-control.wpcf7-email,
input.wpcf7-form-control.wpcf7-tel,
input.wpcf7-form-control.wpcf7-number,
input.wpcf7-form-control.wpcf7-url,
select.wpcf7-form-control.wpcf7-select,
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid #A4A4A4;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  color: #efefef;
  outline: none;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
input.wpcf7-form-control.wpcf7-text::-webkit-input-placeholder, input.wpcf7-form-control.wpcf7-email::-webkit-input-placeholder, input.wpcf7-form-control.wpcf7-tel::-webkit-input-placeholder, input.wpcf7-form-control.wpcf7-number::-webkit-input-placeholder, input.wpcf7-form-control.wpcf7-url::-webkit-input-placeholder, select.wpcf7-form-control.wpcf7-select::-webkit-input-placeholder, textarea.wpcf7-form-control.wpcf7-textarea::-webkit-input-placeholder {
  color: #efefef;
  opacity: 0.7;
}
input.wpcf7-form-control.wpcf7-text::-moz-placeholder, input.wpcf7-form-control.wpcf7-email::-moz-placeholder, input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, input.wpcf7-form-control.wpcf7-number::-moz-placeholder, input.wpcf7-form-control.wpcf7-url::-moz-placeholder, select.wpcf7-form-control.wpcf7-select::-moz-placeholder, textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
  color: #efefef;
  opacity: 0.7;
}
input.wpcf7-form-control.wpcf7-text:-ms-input-placeholder, input.wpcf7-form-control.wpcf7-email:-ms-input-placeholder, input.wpcf7-form-control.wpcf7-tel:-ms-input-placeholder, input.wpcf7-form-control.wpcf7-number:-ms-input-placeholder, input.wpcf7-form-control.wpcf7-url:-ms-input-placeholder, select.wpcf7-form-control.wpcf7-select:-ms-input-placeholder, textarea.wpcf7-form-control.wpcf7-textarea:-ms-input-placeholder {
  color: #efefef;
  opacity: 0.7;
}
input.wpcf7-form-control.wpcf7-text::-ms-input-placeholder, input.wpcf7-form-control.wpcf7-email::-ms-input-placeholder, input.wpcf7-form-control.wpcf7-tel::-ms-input-placeholder, input.wpcf7-form-control.wpcf7-number::-ms-input-placeholder, input.wpcf7-form-control.wpcf7-url::-ms-input-placeholder, select.wpcf7-form-control.wpcf7-select::-ms-input-placeholder, textarea.wpcf7-form-control.wpcf7-textarea::-ms-input-placeholder {
  color: #efefef;
  opacity: 0.7;
}
input.wpcf7-form-control.wpcf7-text::placeholder,
input.wpcf7-form-control.wpcf7-email::placeholder,
input.wpcf7-form-control.wpcf7-tel::placeholder,
input.wpcf7-form-control.wpcf7-number::placeholder,
input.wpcf7-form-control.wpcf7-url::placeholder,
select.wpcf7-form-control.wpcf7-select::placeholder,
textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #efefef;
  opacity: 0.7;
}
input.wpcf7-form-control.wpcf7-text:focus,
input.wpcf7-form-control.wpcf7-email:focus,
input.wpcf7-form-control.wpcf7-tel:focus,
input.wpcf7-form-control.wpcf7-number:focus,
input.wpcf7-form-control.wpcf7-url:focus,
select.wpcf7-form-control.wpcf7-select:focus,
textarea.wpcf7-form-control.wpcf7-textarea:focus {
  border-color: #ffcc26;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 204, 38, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 204, 38, 0.15);
}

textarea.wpcf7-form-control.wpcf7-textarea {
  min-height: 120px;
  border-radius: 24px;
  resize: vertical;
}

select.wpcf7-form-control.wpcf7-select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6' fill='none'%3E%3Cpath d='M1 1 6 5 11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 12px 6px;
}

.wpcf7-form > p,
.wpcf7-form-control-wrap {
  margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.wpcf7-acceptance label,
.wpcf7-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}
.wpcf7-acceptance input[type=checkbox],
.wpcf7-checkbox input[type=checkbox] {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 2px 0 0;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #A4A4A4;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.wpcf7-acceptance input[type=checkbox]:checked,
.wpcf7-checkbox input[type=checkbox]:checked {
  background-color: #ffcc26;
  border-color: #ffcc26;
}
.wpcf7-acceptance input[type=checkbox]:checked::after,
.wpcf7-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4 4 7 9 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 6px;
}
.wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 10px;
  line-height: 16px;
  font-weight: 600;
  color: #efefef;
}
.wpcf7-acceptance .wpcf7-list-item-label a,
.wpcf7-checkbox .wpcf7-list-item-label a {
  color: #efefef;
  text-decoration: underline;
}
.wpcf7-acceptance .wpcf7-list-item-label a:hover, .wpcf7-acceptance .wpcf7-list-item-label a:focus,
.wpcf7-checkbox .wpcf7-list-item-label a:hover,
.wpcf7-checkbox .wpcf7-list-item-label a:focus {
  color: #ffcc26;
}

input.wpcf7-submit,
button.wpcf7-submit,
.wpcf7-submit {
  padding: 20px 40px;
  border: 0;
  border-radius: 999px;
  background: #ffcc26;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
input.wpcf7-submit:hover, input.wpcf7-submit:focus,
button.wpcf7-submit:hover,
button.wpcf7-submit:focus,
.wpcf7-submit:hover,
.wpcf7-submit:focus {
  background: rgb(252.2, 192.9271889401, 0);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 16px rgba(255, 204, 38, 0.3);
  box-shadow: 0 6px 16px rgba(255, 204, 38, 0.3);
}
input.wpcf7-submit:disabled,
button.wpcf7-submit:disabled,
.wpcf7-submit:disabled {
  background: #cbcbcb;
  cursor: not-allowed;
  -webkit-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.wpcf7-spinner {
  display: inline-block;
  margin: 0 0 0 12px;
  vertical-align: middle;
}

.wpcf7-not-valid-tip {
  display: block;
  margin: 6px 20px 0;
  color: #d32f2f;
  font-size: 12px;
  line-height: 16px;
}

.wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 13px;
  line-height: 16px;
}

@media (max-width: 600px) {
  input.wpcf7-submit,
  button.wpcf7-submit,
  .wpcf7-submit {
    width: 100%;
    padding: 18px 24px;
  }
}
.tt-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.tt-form .wpcf7-form,
.tt-form > form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}
.tt-form .wpcf7-form > p.wide {
  grid-column: 1/-1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tt-form input.wpcf7-submit,
.tt-form button.wpcf7-submit,
.tt-form .wpcf7-submit {
  justify-self: end;
}

@media (max-width: 600px) {
  .tt-form .wpcf7-form,
  .tt-form > form {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tt-form input.wpcf7-submit,
  .tt-form button.wpcf7-submit,
  .tt-form .wpcf7-submit {
    justify-self: stretch;
  }
  .tt-form .wpcf7-form > p.wide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header {
  width: 100%;
}

.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.header-gradient-line {
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#ffcc26), to(#7e00f5));
  background: linear-gradient(90deg, #ffcc26 0%, #7e00f5 100%);
}

.site-branding {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 0;
}
.site-branding .logo {
  height: 45px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.scrolled .site-branding .logo {
  height: 38px;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav .nav-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}
.nav .nav-main > li {
  margin: 0;
  padding: 0;
}
.nav .nav-main > li > a {
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  position: relative;
  padding: 3px 0;
}
.nav .nav-main > li > a:hover {
  color: #7e00f5;
}
.nav .nav-main > li.menu-item-has-children > .sub-menu {
  background: #fff;
  border-top: 0;
  -o-border-image: none;
  border-image: none;
  min-width: 240px;
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  margin-top: -3px;
  left: 100%;
  padding: 20px 24px;
  right: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.nav .nav-main > li.menu-item-has-children > .sub-menu li:hover {
  background: none;
}
.nav .nav-main > li.menu-item-has-children > .sub-menu li a {
  color: #1c1c1c;
  font-size: 14px;
  padding: 6px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.nav .nav-main > li.menu-item-has-children > .sub-menu li a:hover {
  color: #7e00f5;
  text-decoration: none;
}
.nav .nav-main > li.menu-item-has-children > .sub-menu li a::after {
  content: "→";
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.nav .nav-main > li.menu-item-has-children > .sub-menu li a:hover::after {
  opacity: 1;
}
.nav .nav-main > li.menu-item-has-children.mega-nav {
  position: static;
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  padding: 25px 30px 35px;
  background: #fff;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu > li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu > li > a {
  font-size: 1.1em;
  font-weight: 700;
  color: #1c1c1c;
  padding: 10px 0 8px;
  display: block;
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu > li > a::after {
  display: none;
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu > li.menu-item-has-children > .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: initial;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu > li.menu-item-has-children > .sub-menu > li > a {
  color: #1c1c1c;
  padding: 6px 0;
  font-size: 14px;
}
.nav .nav-main .current-menu-item > a {
  font-weight: 700;
}

.header-cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.header-cta:visited {
  color: #1c1c1c;
}
.header-cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.header-cta {
  font-size: 16px;
  padding: 10px 24px;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hc-nav-trigger {
  background: none;
  border: none;
}

@media (max-width: 600px) {
  .header-wrapper {
    padding: 15px 0;
  }
  .nav {
    display: none;
  }
  .header-cta {
    margin-right: 70px;
    font-size: 14px;
    padding: 8px 18px;
  }
}
@media (max-width: 1024px) {
  .site-branding .logo {
    height: 40px;
    margin: 5px 0;
  }
  .header-cta {
    display: none;
    margin-right: 55px;
    font-size: 13px;
    padding: 7px 14px;
  }
}
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
.page-container {
  max-width: clamp(1190px, 92vw, 1600px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 600px) {
  .page-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

h1 span, h2 span, h3 span {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  color: #989898;
}
h1 span.highlight, h2 span.highlight, h3 span.highlight {
  color: #ffcc26;
}

.site {
  overflow: hidden;
}

.site-main .section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.site-main .section.page-main {
  padding-bottom: 0;
}
.site-main .section.page-main ul {
  padding: 0;
  margin: 0 0 0 20px;
}
.site-main .section.page-main ul li {
  line-height: 1.6;
  color: #1c1c1c;
  margin-bottom: 10px;
}
.site-main .section.page-nav {
  background: #989898;
  padding: 0;
}
.site-main .section.page-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-main .section.page-nav ul li {
  display: inline-block;
  padding: 0;
}
.site-main .section.page-nav ul li a {
  padding: 40px 20px;
  text-transform: uppercase;
  color: #1c1c1c;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
}
.site-main .section.page-nav ul li a:hover {
  color: #ffcc26;
}
.site-main .section.page-nav ul li a:hover::after {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  content: "";
  position: absolute;
  left: 30%;
  bottom: 0%;
}
.site-main .section.page-nav ul li a.current {
  color: #ffcc26;
}
.site-main .section.page-nav ul li a.current::after {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  content: "";
  position: absolute;
  left: 30%;
  bottom: 0%;
}
.site-main .section.page-nav ul li:first-of-type a {
  padding-left: 0;
}
.site-main .hero {
  padding-top: 0;
  padding-bottom: 0;
  background: #e7f2f7;
}
.site-main .hero .block-text {
  padding-top: 30px;
  padding-bottom: 50px;
}
.site-main .hero .block-text h1 {
  font-size: 2em;
  line-height: 1.2;
}
.site-main .hero .block-text p:last-of-type {
  margin-bottom: 0;
}
.site-main .hero .block-image p {
  margin-bottom: 0 !important;
  line-height: 0;
}
.site-main .hero .block-image p img {
  line-height: 0;
}

@media (max-width: 600px) {
  .site-main .section.page-nav .container .row {
    overflow: auto;
    white-space: nowrap;
  }
  .site-main .section.page-nav ul li a {
    padding: 20px 20px;
  }
}
@media (min-width: 600px) {
  .site {
    overflow: visible;
  }
  .site-main .hero {
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-main .hero .block-text {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .site-main .hero .block-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
  }
  .site-main .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .site-main .section.page-main {
    padding: 40px 0;
  }
  .site-main .section.testimonials {
    padding: 10px 30px 40px 30px;
  }
}
.footer-wrapper {
  color: #1c1c1c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  padding: 60px 30px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-new {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #efefef;
}

.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-wrapper img {
  max-height: 60px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 75%;
  justify-self: end;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-menu {
  padding: 0;
}

.footer-menu h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-menu h3 span {
  color: #1c1c1c;
}

.footer-menu h3 .mob-footer-chevron {
  display: none;
  cursor: pointer;
}

.footer-menu .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.footer-menu .menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.footer-menu .menu-list li {
  margin: 0;
}

.footer-menu .menu-list a {
  color: #1c1c1c;
  text-decoration: none;
  font-size: 15px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-menu .menu-list a:hover {
  color: #7e00f5;
}

.footer-contact .footer-address-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.footer-contact .footer-address,
.footer-contact .footer-phone,
.footer-contact .footer-email {
  color: #1c1c1c;
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact .footer-phone,
.footer-contact .footer-email {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  cursor: pointer;
}
.footer-contact .footer-phone:hover,
.footer-contact .footer-email:hover {
  color: #7e00f5;
}

.footer-social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icons-mobile {
  display: none;
}

.footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
  color: #1c1c1c;
}

.footer-copyright a {
  color: #1c1c1c;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer-copyright a:hover {
  color: #7e00f5;
}

.footer-copyright .nav-main {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 15px;
}
.footer-copyright .nav-main .sub-menu {
  display: none;
}

.footer-mailing-list input[type=submit] {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.footer-mailing-list input[type=submit]:visited {
  color: #1c1c1c;
}
.footer-mailing-list input[type=submit]:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.footer-mailing-list input[type=submit] {
  font-size: 14px;
  padding: 8px 20px;
}

@media (max-width: 1024px) {
  .footer-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-menus {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .footer-wrapper {
    padding: 40px 15px 0;
  }
  .footer-new {
    gap: 30px;
    padding-bottom: 30px;
  }
  .footer-logo-wrapper img {
    max-height: 45px;
  }
  .footer-menus {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-menu {
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
  }
  .footer-menu:last-child {
    border-bottom: none;
  }
  .footer-menu h3 {
    padding: 8px 0;
    margin-bottom: 0;
    cursor: pointer;
  }
  .footer-menu h3 .mob-footer-chevron {
    display: block;
  }
  .footer-menu h3 .mob-footer-chevron svg {
    width: 16px;
    height: 16px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .footer-menu h3 .mob-footer-chevron svg path {
    stroke: #1c1c1c;
  }
  .footer-menu .menu-list {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }
  .social-icons-desktop {
    display: none !important;
  }
  .social-icons-mobile {
    display: block;
    padding: 15px 0;
  }
  .social-icons-mobile h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1c1c1c;
  }
  .footer-copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
  }
}
.hero-new-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}

.hero-new {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.hero-content h1 {
  font-size: 96px;
  font-weight: 700;
  line-height: 108.5px;
  margin-bottom: 0;
  letter-spacing: -1px;
}
.hero-content h1 span {
  color: #ffcc26;
}
.hero-content p {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0;
}

.hero-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hero-button-wrapper .btn, .hero-button-wrapper .cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.hero-button-wrapper .btn:visited, .hero-button-wrapper .cta:visited {
  color: #1c1c1c;
}
.hero-button-wrapper .btn:hover, .hero-button-wrapper .cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.hero-button-wrapper .btn, .hero-button-wrapper .cta {
  font-size: 20px;
}
.hero-button-wrapper .btn.btn-purple, .hero-button-wrapper .btn-purple.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #7e00f5;
  color: #fafaff;
  border-color: #7e00f5;
}
.hero-button-wrapper .btn.btn-purple:visited, .hero-button-wrapper .btn-purple.cta:visited {
  color: #fafaff;
}
.hero-button-wrapper .btn.btn-purple:hover, .hero-button-wrapper .btn-purple.cta:hover {
  background: rgb(105.0171428571, 0, 204.2);
  border-color: rgb(105.0171428571, 0, 204.2);
  color: #fafaff;
}
.hero-button-wrapper .btn.btn-yellow, .hero-button-wrapper .btn-yellow.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.hero-button-wrapper .btn.btn-yellow:visited, .hero-button-wrapper .btn-yellow.cta:visited {
  color: #1c1c1c;
}
.hero-button-wrapper .btn.btn-yellow:hover, .hero-button-wrapper .btn-yellow.cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.hero-button-wrapper .btn.btn-dark, .hero-button-wrapper .btn-dark.cta, .hero-button-wrapper .cta.red,
.hero-button-wrapper .cta.cta-red, .hero-button-wrapper .cta.cta-dark {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #1c1c1c;
  color: #fafaff;
  border-color: #1c1c1c;
}
.hero-button-wrapper .btn.btn-dark:visited, .hero-button-wrapper .btn-dark.cta:visited, .hero-button-wrapper .cta.red:visited,
.hero-button-wrapper .cta.cta-red:visited, .hero-button-wrapper .cta.cta-dark:visited {
  color: #fafaff;
}
.hero-button-wrapper .btn.btn-dark:hover, .hero-button-wrapper .btn-dark.cta:hover, .hero-button-wrapper .cta.red:hover,
.hero-button-wrapper .cta.cta-red:hover, .hero-button-wrapper .cta.cta-dark:hover {
  background: rgb(53.5, 53.5, 53.5);
  border-color: rgb(53.5, 53.5, 53.5);
  color: #fafaff;
}
.hero-button-wrapper .btn.btn-outline, .hero-button-wrapper .btn-outline.cta, .hero-button-wrapper .cta.outline {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.hero-button-wrapper .btn.btn-outline:visited, .hero-button-wrapper .btn-outline.cta:visited, .hero-button-wrapper .cta.outline:visited {
  color: #fff;
}
.hero-button-wrapper .btn.btn-outline:hover, .hero-button-wrapper .btn-outline.cta:hover, .hero-button-wrapper .cta.outline:hover {
  background: #fff;
  border-color: #fff;
  color: #1c1c1c;
}

.hero-light .hero-new {
  height: calc(100vh - 90px);
  min-height: 600px;
  margin: 0 auto;
}
.hero-light .hero-content h1 {
  color: #1c1c1c;
}
.hero-light .hero-content p {
  color: #1c1c1c;
}
.hero-light .hero-image-wrapper {
  display: none;
}

.hero-image .hero-new {
  height: calc(100vh - 90px);
  min-height: 600px;
}
.hero-image .hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px 60px 60px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.hero-image .hero-content h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.2;
}
.hero-image .hero-content p {
  color: rgba(255, 255, 255, 0.95);
}
.hero-image .hero-content .highlight {
  color: #ffcc26;
}
.hero-image .hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  max-width: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hero-image .hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}
.hero-image .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.hero-image .hero-button-wrapper .btn.btn-purple, .hero-image .hero-button-wrapper .btn-purple.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #7e00f5;
  color: #fafaff;
  border-color: #7e00f5;
}
.hero-image .hero-button-wrapper .btn.btn-purple:visited, .hero-image .hero-button-wrapper .btn-purple.cta:visited {
  color: #fafaff;
}
.hero-image .hero-button-wrapper .btn.btn-purple:hover, .hero-image .hero-button-wrapper .btn-purple.cta:hover {
  background: rgb(105.0171428571, 0, 204.2);
  border-color: rgb(105.0171428571, 0, 204.2);
  color: #fafaff;
}
.hero-image .hero-button-wrapper .btn.btn-yellow, .hero-image .hero-button-wrapper .btn-yellow.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.hero-image .hero-button-wrapper .btn.btn-yellow:visited, .hero-image .hero-button-wrapper .btn-yellow.cta:visited {
  color: #fff;
}
.hero-image .hero-button-wrapper .btn.btn-yellow:hover, .hero-image .hero-button-wrapper .btn-yellow.cta:hover {
  background: #fff;
  border-color: #fff;
  color: #1c1c1c;
}

.hero-new-wrapper.short .hero-new {
  height: auto;
  min-height: auto;
}
.hero-new-wrapper.short .hero-new .hero-content-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-new-wrapper.short .hero-new .hero-content-wrapper .hero-content {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.hero-new-wrapper.short.hero-image .hero-new {
  height: calc(50vh - 90px);
  min-height: 350px;
}

@media (max-width: 600px) {
  .hero-light .hero-new {
    padding: 60px 0 40px;
  }
  .hero-content h1 {
    font-size: 48px;
    line-height: 54px;
  }
  .hero-image .hero-new {
    height: auto;
    min-height: 550px;
  }
  .hero-image .hero-content-wrapper {
    padding: 100px 40px 40px;
  }
  .hero-image .hero-image-wrapper {
    max-width: calc(100% - 20px);
  }
}
@media (max-width: 1024px) {
  .hero-light .hero-new {
    padding: 40px 0 30px;
  }
  .hero-content h1 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.15;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-button-wrapper {
    gap: 12px;
  }
  .hero-button-wrapper .btn, .hero-button-wrapper .cta {
    font-size: 16px;
    padding: 10px 20px;
  }
  .hero-image .hero-new {
    min-height: 500px;
  }
  .hero-image .hero-content-wrapper {
    padding: 100px 20px 30px;
  }
}
/* Page Hero Styles - Used for Archive, 404, and other template pages */
.page-hero-wrapper {
  position: relative;
  max-width: 100%;
  margin-top: 85px;
  padding: 0;
  background: #1c1c1c;
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 100px 40px;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
}

.page-hero-content {
  max-width: 700px;
}
.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.5px;
}
.page-hero-content p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  font-weight: 300;
}

.page-hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page-hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.posts-wrapper {
  padding: 80px 0;
  background: #fff;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
}

.post-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.post-card:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.post-card:hover .post-card-image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.post-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.post-card-content {
  padding: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.post-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #ffcc26;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.post-card-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #1c1c1c;
}
.post-card-title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.post-card-title a:hover {
  color: #ffcc26;
}

.post-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.post-card-meta {
  font-size: 13px;
  color: #989898;
  padding-top: 16px;
  border-top: 1px solid #e2e2e1;
}

.posts-pagination {
  margin-top: 60px;
  text-align: center;
}
.posts-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.posts-pagination a, .posts-pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.posts-pagination a {
  color: #1c1c1c;
  background: #f8f8f8;
}
.posts-pagination a:hover {
  background: #ffcc26;
  color: #fff;
}
.posts-pagination .current {
  background: #ffcc26;
  color: #fff;
}
.posts-pagination .dots {
  background: transparent;
  min-width: auto;
  padding: 0 8px;
}
.posts-pagination .prev, .posts-pagination .next {
  padding: 0 20px;
}

.no-posts {
  text-align: center;
  padding: 80px 40px;
  max-width: 600px;
  margin: 0 auto;
}
.no-posts h2 {
  font-size: 28px;
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.no-posts p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .page-hero {
    padding: 50px 30px;
    min-height: 240px;
  }
  .posts-wrapper {
    padding: 60px 0;
  }
  .posts-grid {
    gap: 24px;
    padding: 0 30px;
  }
}
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 15px;
  }
}
@media (max-width: 600px) {
  .page-hero-wrapper {
    margin-top: 70px;
  }
  .page-hero {
    padding: 40px 20px;
    min-height: 200px;
  }
  .page-hero-content h1 {
    font-size: 32px;
  }
  .page-hero-content p {
    font-size: 16px;
  }
  .page-hero-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page-hero-buttons .btn, .page-hero-buttons .cta {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .posts-wrapper {
    padding: 50px 0;
  }
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .post-card-content {
    padding: 20px;
  }
  .post-card-title {
    font-size: 18px;
  }
  .posts-pagination {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 28px;
  }
  .page-hero-label {
    font-size: 12px;
  }
}
.trust-badges-wrapper {
  padding: 60px 0;
  background: #fff;
}

.trust-badges {
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.trust-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.trust-badge .badge-logo {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.trust-badge .badge-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.trust-badge .badge-content .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 14px;
  color: #ffa000;
}
.trust-badge .badge-content .stars::before {
  content: "★★★★★";
  letter-spacing: 4px;
}
.trust-badge .badge-content .rating-text {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  line-height: 1.3;
}
.trust-badge .badge-content .rating-text strong {
  font-weight: 600;
  color: #1c1c1c;
}

.trust-badges-divider {
  width: 1px;
  height: 40px;
  background: #e2e2e1;
}

@media (max-width: 1024px) {
  .trust-badges-wrapper {
    padding: 50px 0;
  }
  .trust-badges {
    padding: 0 30px;
    gap: 30px;
  }
  .trust-badge {
    gap: 12px;
  }
  .trust-badge .badge-logo {
    height: 35px;
  }
}
@media (max-width: 600px) {
  .trust-badges-wrapper {
    padding: 40px 0;
  }
  .trust-badges {
    padding: 0 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
  }
  .trust-badges-divider {
    display: none;
  }
  .trust-badge {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .trust-badge .badge-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.text-block-wrapper {
  padding: 80px 0;
  background: #fff;
}
.text-block-wrapper.t-padding.no-top {
  padding-top: 0;
}
.text-block-wrapper.t-padding.no-bottom {
  padding-bottom: 0;
}
.text-block-wrapper.t-padding.no-both {
  padding-top: 0;
  padding-bottom: 0;
}
.text-block-wrapper.t-padding.reduced {
  padding: 30px 0;
}
.text-block-wrapper.bg-image {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-size: cover;
}
.text-block-wrapper.bg-image .text-block-row {
  background: none;
}
.text-block-wrapper.bg-image .text-block-column h1, .text-block-wrapper.bg-image .text-block-column h2, .text-block-wrapper.bg-image .text-block-column h3, .text-block-wrapper.bg-image .text-block-column h4, .text-block-wrapper.bg-image .text-block-column h5, .text-block-wrapper.bg-image .text-block-column h6, .text-block-wrapper.bg-image .text-block-column p {
  color: white;
}

.text-block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  padding: 0;
}
.text-block-row.flipped {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.text-block-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  border-radius: 40px;
  padding: 60px 30px;
}
.text-block-column.column-full {
  /* flex: 0 0 100%; */
  max-width: 100%;
}
.text-block-column.column-75 {
  /* flex: 0 0 75%; */
  max-width: 75%;
}
.text-block-column.column-66 {
  /* flex: 0 0 66.666%; */
  max-width: 66.666%;
}
.text-block-column.column-50 {
  /* flex: 0 0 50%; */
  max-width: 50%;
}
.text-block-column.column-33 {
  /* flex: 0 0 33.333%; */
  max-width: 33.333%;
}
.text-block-column.column-25 {
  /* flex: 0 0 25%; */
  max-width: 25%;
}
.text-block-column.hidden {
  display: none;
}
.text-block-column.bg-image {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  vertical-align: middle;
}
.text-block-column.bg-image .text-block-right-content {
  background: none;
}

.text-block-heading {
  margin-bottom: 24px;
}
.text-block-heading h1, .text-block-heading h2, .text-block-heading h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  color: #ffcc26;
}
.text-block-heading h3 {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
}

.text-block-content {
  margin-bottom: 24px;
}
.text-block-content:last-child {
  margin-bottom: 0;
}
.text-block-content h1, .text-block-content h2, .text-block-content h3, .text-block-content h4, .text-block-content h5, .text-block-content h6 {
  color: #ffcc26;
}
.text-block-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.text-block-content p:last-child {
  margin-bottom: 0;
}
.text-block-content ul, .text-block-content ol {
  margin: 20px 0;
  padding-left: 24px;
}
.text-block-content ul li, .text-block-content ol li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #1c1c1c;
}
.text-block-content ul li:last-child, .text-block-content ol li:last-child {
  margin-bottom: 0;
}
.text-block-content ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.text-block-content ol {
  list-style-type: decimal;
}
.text-block-content a {
  color: #ffcc26;
  text-decoration: underline;
}

.text-block-buttons {
  gap: 16px;
  margin-top: 28px;
}

.text-block-button,
.btn,
.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.text-block-button:visited,
.btn:visited,
.cta:visited {
  color: #1c1c1c;
}
.text-block-button:hover,
.btn:hover,
.cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.text-block-button,
.btn,
.cta {
  font-size: 20px;
}
.text-block-button.btn-purple,
.btn.btn-purple,
.btn-purple.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #7e00f5;
  color: #fafaff;
  border-color: #7e00f5;
}
.text-block-button.btn-purple:visited,
.btn.btn-purple:visited,
.btn-purple.cta:visited {
  color: #fafaff;
}
.text-block-button.btn-purple:hover,
.btn.btn-purple:hover,
.btn-purple.cta:hover {
  background: rgb(105.0171428571, 0, 204.2);
  border-color: rgb(105.0171428571, 0, 204.2);
  color: #fafaff;
}
.text-block-button.btn-purple:hover,
.btn.btn-purple:hover,
.btn-purple.cta:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}
.text-block-button.btn-yellow,
.btn.btn-yellow,
.btn-yellow.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.text-block-button.btn-yellow:visited,
.btn.btn-yellow:visited,
.btn-yellow.cta:visited {
  color: #1c1c1c;
}
.text-block-button.btn-yellow:hover,
.btn.btn-yellow:hover,
.btn-yellow.cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.text-block-button.btn-dark,
.btn.btn-dark,
.btn-dark.cta,
.cta.red,
.cta.cta-red,
.cta.cta-dark {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #1c1c1c;
  color: #fafaff;
  border-color: #1c1c1c;
}
.text-block-button.btn-dark:visited,
.btn.btn-dark:visited,
.btn-dark.cta:visited,
.cta.red:visited,
.cta.cta-red:visited,
.cta.cta-dark:visited {
  color: #fafaff;
}
.text-block-button.btn-dark:hover,
.btn.btn-dark:hover,
.btn-dark.cta:hover,
.cta.red:hover,
.cta.cta-red:hover,
.cta.cta-dark:hover {
  background: rgb(53.5, 53.5, 53.5);
  border-color: rgb(53.5, 53.5, 53.5);
  color: #fafaff;
}
.text-block-button.btn-outline,
.btn.btn-outline,
.btn-outline.cta,
.cta.outline {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.text-block-button.btn-outline:visited,
.btn.btn-outline:visited,
.btn-outline.cta:visited,
.cta.outline:visited {
  color: #fff;
}
.text-block-button.btn-outline:hover,
.btn.btn-outline:hover,
.btn-outline.cta:hover,
.cta.outline:hover {
  background: #fff;
  border-color: #fff;
  color: #1c1c1c;
}
.text-block-button.btn-primary,
.btn.btn-primary,
.btn-primary.cta,
.cta.cta-green {
  background: #ffcc26;
  border-color: #ffcc26;
}
.text-block-button.btn-primary:hover,
.btn.btn-primary:hover,
.btn-primary.cta:hover,
.cta.cta-green:hover {
  background: rgb(252.2, 192.9271889401, 0);
  border-color: rgb(252.2, 192.9271889401, 0);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(7, 35, 101, 0.3);
  box-shadow: 0 4px 12px rgba(7, 35, 101, 0.3);
}
.text-block-button.btn-secondary,
.btn.btn-secondary,
.btn-secondary.cta,
.cta.cta-purple {
  background: white;
  color: #ffcc26;
  border-color: #ffcc26;
}
.text-block-button.btn-secondary:hover,
.btn.btn-secondary:hover,
.btn-secondary.cta:hover,
.cta.cta-purple:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: white;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(7, 35, 101, 0.2);
  box-shadow: 0 4px 12px rgba(7, 35, 101, 0.2);
}

.text-block-right-content {
  padding: 30px;
  border-radius: 16px;
  background: #f8f8f8;
}
.text-block-right-content.cta-block {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}
.text-block-right-content .cta-text {
  position: relative;
  bottom: -8%;
}
.text-block-right-content .cta-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.text-block-right-content .cta-text li {
  font-size: 1.25rem;
  position: relative;
  margin-bottom: 5px;
}
.text-block-right-content .cta-text li:before {
  content: " ";
  position: absolute;
  background-image: url("./img/tick.svg");
  left: -26px;
  top: 3px;
  height: 20px;
  width: 20px;
  background-size: cover;
}

.text-block-number,
.number-highlight {
  text-align: center;
  padding: 40px;
}
.text-block-number p.large,
.number-highlight p.large {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  color: #ffcc26;
  line-height: 1;
  margin-bottom: 16px;
}
.text-block-number p,
.number-highlight p {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 500;
  margin: 0;
}
.text-block-number p span,
.number-highlight p span {
  display: block;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 400;
  margin-top: 8px;
}

.text-block-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.text-block-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.text-block-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #1c1c1c;
  margin: 0;
}

.text-block-wrapper.bg-light {
  background: #f8f8f8;
}

.text-block-wrapper.bg-dark {
  background: #1c1c1c;
  color: white;
}
.text-block-wrapper.bg-dark .text-block-heading h1,
.text-block-wrapper.bg-dark .text-block-heading h2,
.text-block-wrapper.bg-dark .text-block-heading h3 {
  color: white;
}
.text-block-wrapper.bg-dark .text-block-content p,
.text-block-wrapper.bg-dark .text-block-text p {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .no_bg .text-block-column.column-right {
    padding: 20px 0px 0;
  }
  .no_bg .text-block-column.column-left {
    padding: 0px 0px 60px 0px;
  }
  .no_bg .text-block-right-content {
    padding: 0;
  }
}
.project-template-default .column-left {
  padding-left: 0;
}
@media (max-width: 1024px) {
  .project-template-default .text-block-column.column-left {
    padding: 30px 0px 20px 0px;
  }
}

@media (max-width: 1200px) {
  .text-block-wrapper {
    padding: 80px 0;
  }
  .text-block-wrapper.t-padding.reduced {
    padding: 50px 0;
  }
  .text-block-row {
    padding: 0 30px;
    gap: 40px;
  }
  .text-block-column.bg-image {
    aspect-ratio: 1.5/1;
    min-height: 500px;
  }
}
@media (max-width: 1024px) {
  .text-block-wrapper {
    padding: 60px 0;
  }
  .text-block-wrapper.t-padding.reduced {
    padding: 40px 0;
  }
  .text-block-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 15px;
    gap: 40px;
  }
  .text-block-row.flipped {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .text-block-column {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100%;
  }
  .text-block-column.hidden {
    display: block !important;
  }
  .text-block-heading h1, .text-block-heading h2 {
    font-size: clamp(24px, 4vw, 36px);
  }
}
@media (max-width: 600px) {
  .text-block-wrapper {
    padding: 50px 0;
  }
  .text-block-wrapper.t-padding.reduced {
    padding: 30px 0;
  }
  .text-block-column {
    padding: 15px;
  }
  .text-block-row {
    gap: 30px;
  }
  .text-block-buttons .text-block-button,
  .text-block-buttons .btn,
  .text-block-buttons .cta {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .text-block-right-content {
    padding: 20px;
  }
  .text-block-right-content.cta-block {
    min-height: 400px;
  }
  .text-block-number,
  .number-highlight {
    padding: 30px 20px;
  }
  .text-block-number p.large,
  .number-highlight p.large {
    font-size: clamp(36px, 10vw, 56px);
  }
}
@media (max-width: 480px) {
  .text-block-heading h1, .text-block-heading h2 {
    font-size: 28px;
  }
  .text-block-heading h3 {
    font-size: 22px;
  }
  .text-block-column.bg-image {
    aspect-ratio: 1/1.5;
  }
  .text-block-content p,
  .text-block-text p {
    font-size: 15px;
  }
}
.contact-block-wrapper {
  background: #f8f8f8;
}
.contact-block-wrapper .text-block-column.column-left {
  padding: 0;
  background: transparent;
}
.contact-block-wrapper .text-block-column.column-right {
  padding: 60px 50px;
  background: #f8f8f8;
}
.contact-block-wrapper .text-block-right-content {
  background: transparent;
  padding: 0;
}

.contact-map-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 0;
}

.contact-map {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 30px 0 0;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  color: #1c1c1c;
  font-size: 15px;
}
.contact-item svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
  color: #1c1c1c;
}
.contact-item a {
  color: #1c1c1c;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.contact-item a:hover {
  color: #ffcc26;
}
.contact-item span {
  line-height: 1.5;
}
.contact-item.contact-address {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

@media (max-width: 1024px) {
  .contact-block-wrapper .text-block-column.column-right {
    padding: 40px 30px;
  }
  .contact-details {
    gap: 15px 30px;
  }
}
@media (max-width: 600px) {
  .contact-block-wrapper .text-block-column.column-right {
    padding: 30px 20px;
  }
  .contact-map {
    aspect-ratio: 16/10;
  }
  .contact-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .contact-item {
    font-size: 14px;
  }
  .contact-item.contact-address {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.blog-posts-wrapper {
  padding: 80px 0;
  background: #fff;
}

.blog-posts {
  max-width: clamp(1190px, 92vw, 1600px);
}

.blog-posts__header {
  margin-bottom: 32px;
}

.blog-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-post-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-post-card__image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f8f8f8;
}
.blog-post-card__image img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-post-card__image:hover img, .blog-post-card__image:focus img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.blog-post-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-post-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.blog-post-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #666;
}
.blog-post-card__meta a {
  color: inherit;
  text-decoration: none;
}
.blog-post-card__meta a:hover, .blog-post-card__meta a:focus {
  color: #ffcc26;
}

.blog-post-card__title {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
}
.blog-post-card__title a {
  color: #1c1c1c;
  text-decoration: none;
}
.blog-post-card__title a:hover, .blog-post-card__title a:focus {
  color: #ffcc26;
}

.blog-post-card__excerpt {
  color: #1c1c1c;
  line-height: 1.6;
}
.blog-post-card__excerpt p {
  margin: 0;
}

.blog-post-card__button {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 900px) {
  .blog-posts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .blog-posts__grid {
    grid-template-columns: 1fr;
  }
}
.blog-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blog-pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.blog-pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #efefef;
  border-radius: 10000px;
  background: transparent;
  color: #efefef;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
}
.blog-pagination .page-numbers:hover, .blog-pagination .page-numbers:focus {
  background: #efefef;
  color: #fff;
  text-decoration: none;
}
.blog-pagination .page-numbers.current {
  background: #efefef;
  color: #fff;
  cursor: default;
}
.blog-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #efefef;
  cursor: default;
}
.blog-pagination .prev,
.blog-pagination .next {
  font-size: 16px;
}

@media (max-width: 600px) {
  .blog-pagination__list {
    gap: 6px;
  }
  .blog-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
  }
}
.services-grid-wrapper {
  padding: 80px 0;
  background: #fafaff;
  margin-bottom: 0;
}
.services-grid-wrapper.bg-white {
  background: #fff;
}
.services-grid-wrapper.bg-light {
  background: #fafaff;
}

.services-header {
  text-align: left;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto 30px;
  padding: 0 30px;
}
.services-header.center {
  text-align: center;
}
.services-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
  line-height: 56px;
}
.services-header h2 .highlight {
  color: #ffcc26;
}
.services-header .subtitle {
  font-size: 20px;
  color: #1c1c1c;
  max-width: 700px;
  line-height: 1.6;
  margin: 16px 0 0;
}
.services-header .subtitle.center {
  margin: 16px auto 0;
}

.services-grid {
  gap: 10px;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: unset;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 80px) / 3);
  overflow-x: auto;
  overflow-y: hidden;
}
.services-grid.grid-2 {
  grid-auto-columns: calc((100% - 40px) / 2);
}
.services-grid.grid-4 {
  grid-auto-columns: calc((100% - 120px) / 4);
}
.services-grid {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
}
.services-grid::-webkit-scrollbar {
  display: none; /* Older Safari and Chromium */
}
.services-grid.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  scroll-behavior: auto;
}
.services-grid.show-rows {
  grid-template-rows: repeat(2, auto);
}
.services-grid.grid-low-count {
  grid-template-rows: repeat(1, auto);
  grid-auto-columns: calc((100% - 20px) / 3);
}
.services-grid.grid-mid-count {
  grid-template-rows: repeat(1, auto);
  grid-auto-columns: calc((100% - 80px) / 3);
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  min-height: 400px;
  max-height: 670px;
  aspect-ratio: 1/1.5;
}
.service-card:hover {
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-card:hover .service-content .service-description {
  max-height: 300px;
  opacity: 1;
}
.service-card:hover .service-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: white;
  overflow: hidden;
  -webkit-transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-content h3 {
  font-size: clamp(20px, 3vw, 38px);
  max-width: 80%;
  font-weight: 400;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.service-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}
.service-content .service-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}
.service-content .service-description {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  -webkit-transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.65s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.65s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.service-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  margin-top: 16px;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}
.service-link svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.service-link:hover {
  gap: 12px;
}
.service-link:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .services-grid-wrapper {
    padding: 80px 0;
  }
  .services-header {
    padding: 0 30px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .services-grid {
    padding: 0 30px;
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .services-grid-wrapper {
    padding: 60px 0;
  }
  .services-header {
    padding: 0 15px;
    margin-bottom: 40px;
  }
  .services-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 15px;
    gap: 10px;
  }
  .service-card {
    min-width: 60%;
  }
}
@media (max-width: 600px) {
  .services-grid-wrapper {
    padding: 50px 0;
  }
  .services-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 15px;
    gap: 10px;
  }
  .service-card {
    min-width: 90%;
  }
  .service-content {
    padding: 24px;
  }
  .service-content h3 {
    font-size: 22px;
  }
  .service-content p {
    font-size: 14px;
  }
}
.elements-grid-wrapper {
  padding: 60px 0;
  background: #fff;
}

.elements-header {
  text-align: left;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto 30px;
  padding: 0 30px;
}
.elements-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom: 8px;
  line-height: 1.3;
}
.elements-header .subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  line-height: 1.6;
  margin: 0;
}

.elements-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  padding: 0 30px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.elements-grid::-webkit-scrollbar {
  display: none;
}
.elements-grid.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  scroll-behavior: auto;
}
.element-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  overflow: hidden;
  background: #f8f8f8;
  position: relative;
}
.element-card img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.element-card:hover img, .element-card:focus img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.element-card img {
  display: block;
  max-height: 280px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.element-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.element-card:hover .element-overlay {
  opacity: 1;
}
.element-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(60%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.element-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px 0;
  line-height: 1.3;
  color: #fff;
}

.element-description {
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-info {
  margin-top: 20px;
  text-align: center;
  max-width: 600px;
  padding: 0 20px;
}

.lightbox-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.lightbox-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.lightbox-link {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.lightbox-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.lightbox-caption {
  color: #fff;
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
  opacity: 0.8;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 10001;
  line-height: 1;
  padding: 0;
}
.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  padding: 20px 15px;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease, background 0.2s ease;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 10001;
  border-radius: 4px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 1400px) {
  .elements-grid-wrapper {
    padding: 50px 0;
  }
  .elements-header {
    padding: 0 30px;
    margin-bottom: 25px;
  }
  .elements-grid {
    padding: 0 30px;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .elements-grid-wrapper {
    padding: 40px 0;
  }
  .elements-header {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .elements-header h2 {
    font-size: 24px;
  }
  .elements-grid {
    padding: 0 20px;
    gap: 12px;
  }
  .element-card img {
    max-height: 200px;
  }
  .element-overlay {
    opacity: 1;
    padding: 15px 12px;
  }
  .element-title {
    font-size: 14px;
  }
  .element-description {
    font-size: 12px;
    -webkit-line-clamp: 1;
  }
  .lightbox-prev,
  .lightbox-next {
    padding: 15px 10px;
    font-size: 24px;
  }
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 32px;
  }
  .lightbox-image {
    max-height: 60vh;
  }
  .lightbox-info {
    margin-top: 15px;
    padding: 0 15px;
  }
  .lightbox-title {
    font-size: 18px;
  }
  .lightbox-description {
    font-size: 13px;
  }
}
.text-and-image-wrapper {
  padding: 80px 0;
}

.text-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-with-image.image-left {
  grid-template-columns: 1fr 1fr;
}

.text-with-image.image-left .hero-content-wrapper {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.text-with-image.image-left .hero-image-wrapper {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.text-with-image.image-right .hero-content-wrapper {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.text-with-image.image-right .hero-image-wrapper {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.text-with-image .hero-content-wrapper {
  padding: 20px 0;
}

.text-with-image .hero-content h1,
.text-with-image .hero-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.text-with-image .hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 28px;
}

.text-with-image .hero-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.text-with-image .hero-button-wrapper .cta {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.text-with-image .hero-button-wrapper .cta.red {
  background: #d32f2f;
  color: white;
  border: 2px solid #d32f2f;
}

.text-with-image .hero-button-wrapper .cta.red:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.text-with-image .hero-button-wrapper .cta.cta-white {
  background: white;
  color: #1c1c1c;
  border: 2px solid #e2e2e1;
}

.text-with-image .hero-button-wrapper .cta.cta-white:hover {
  border-color: #1c1c1c;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.text-with-image .hero-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
}

.text-with-image .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}

.text-with-image.with-form .hero-content {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
}

.text-with-image.with-form .contact-form {
  margin-top: 30px;
}

.text-with-image.with-form .contact-form input,
.text-with-image.with-form .contact-form textarea,
.text-with-image.with-form .contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e2e1;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 16px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.text-with-image.with-form .contact-form input:focus,
.text-with-image.with-form .contact-form textarea:focus,
.text-with-image.with-form .contact-form select:focus {
  outline: none;
  border-color: #d32f2f;
}

.text-with-image.with-form .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.text-with-image.with-form .contact-form button,
.text-with-image.with-form .contact-form input[type=submit] {
  background: #d32f2f;
  color: white;
  border: 2px solid #d32f2f;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.text-with-image.with-form .contact-form button:hover,
.text-with-image.with-form .contact-form input[type=submit]:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

@media (max-width: 1024px) {
  .text-and-image-wrapper {
    padding: 60px 0;
  }
  .text-with-image {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .text-with-image.image-left .hero-content-wrapper,
  .text-with-image.image-left .hero-image-wrapper {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
  .text-with-image .hero-image-wrapper {
    min-height: 350px;
  }
}
@media (max-width: 600px) {
  .text-and-image-wrapper {
    padding: 40px 0;
  }
  .text-with-image.with-form .hero-content {
    padding: 24px;
  }
  .text-with-image .hero-image-wrapper {
    min-height: 280px;
  }
  .text-with-image .hero-button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .text-with-image .hero-button-wrapper .cta {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.hover-overs-wrapper {
  padding: 80px 0;
  background: #fff;
}

.hover-overs {
  max-width: clamp(1190px, 92vw, 1600px);
}

.hover-overs__header {
  margin-bottom: 32px;
}

.hover-overs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hover-over-card {
  min-height: 320px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  outline: none;
}

.hover-over-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}

.hover-over-card:hover .hover-over-card__inner,
.hover-over-card:focus .hover-over-card__inner,
.hover-over-card:focus-within .hover-over-card__inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.hover-over-card__face {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  padding: 32px;
  border-radius: 24px;
  background: #f8f8f8;
  color: #1c1c1c;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-position: center;
  background-size: cover;
}

.hover-over-card__face--front:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.hover-over-card__face--front > * {
  position: relative;
  z-index: 1;
}

.hover-over-card__face--back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.hover-over-card__image {
  width: 90px;
  height: 90px;
}
.hover-over-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hover-over-card__title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}
.hover-over-card__title p {
  margin: 0;
}

.hover-over-card__reveal {
  max-width: 24rem;
  color: inherit;
  font-size: 17px;
  line-height: 1.65;
}
.hover-over-card__reveal p {
  margin: 0;
}

@media (max-width: 900px) {
  .hover-overs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .hover-overs__grid {
    grid-template-columns: 1fr;
  }
}
.wp-gr .grw-header-inner, .wp-gr .grw-review-inner {
  padding: 0px !important;
}

.section.testimonials {
  background: #fff;
  color: #1c1c1c;
  padding: 80px 0;
}

.testimonials .heading,
.testimonials .section-header {
  margin-bottom: 50px;
  text-align: center;
}
.testimonials .heading h2,
.testimonials .section-header h2 {
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  color: #1c1c1c;
  margin-bottom: 0;
  line-height: 56px;
}

.testimonial-text {
  margin-top: 30px;
  max-width: 70%;
  font-size: 3rem;
  weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}
.testimonial-text:before {
  content: '"';
}
.testimonial-text:after {
  content: '"';
}

.testimonials .content {
  position: relative;
}

.slide-testimonial .slide {
  padding: 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.slide-testimonial .photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover !important;
  background-position: center !important;
  border: 3px solid #ffcc26;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.slide-testimonial .message {
  font-size: 20px;
  line-height: 1.7;
  color: #1c1c1c;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}
.slide-testimonial .message::before {
  content: "“";
  font-size: 48px;
  color: #7e00f5;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.slide-testimonial .message p {
  margin-bottom: 0;
}

.slide-testimonial .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 16px;
}
.slide-testimonial .rating .star {
  color: #ffa000;
  font-size: 18px;
}

.slide-testimonial .slide > p,
.slide-testimonial .author {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 0;
}

.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  pointer-events: none;
}

.testimonials .owl-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonials .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: white !important;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.testimonials .owl-nav button.owl-prev {
  margin-left: -25px;
}

.testimonials .owl-nav button.owl-next {
  margin-right: -25px;
}

.testimonials .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonials .owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
}

.testimonials .owl-dot.active {
  background: #7e00f5;
  width: 30px;
  border-radius: 6px;
}

.testimonials .owl-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.section.testimonials.light-bg {
  background: #f8f8f8;
  color: #1c1c1c;
}

.testimonials.light-bg .heading h2 {
  color: #1c1c1c;
}

.testimonials.light-bg .message {
  color: #666;
}

.testimonials.light-bg .owl-nav button {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #1c1c1c !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.testimonials.light-bg .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  border-color: #1c1c1c !important;
}

.testimonials.light-bg .owl-dot {
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .section.testimonials {
    padding: 60px 0;
  }
  .slide-testimonial .slide {
    padding: 30px 20px;
  }
  .slide-testimonial .message {
    font-size: 16px;
  }
  .testimonials .owl-nav button.owl-prev,
  .testimonials .owl-nav button.owl-next {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .section.testimonials {
    padding: 40px 0;
  }
  .testimonials .heading {
    margin-bottom: 30px;
  }
  .slide-testimonial .photo {
    width: 60px;
    height: 60px;
  }
  .slide-testimonial .message {
    font-size: 15px;
  }
  .testimonials .owl-nav {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
  .testimonials .owl-nav button {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
.testimonial .content {
  padding: 30px 20px;
  background: #989898;
  margin-bottom: 30px;
}
.testimonial .content p {
  color: #ffcc26;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
}
.testimonial .content p.name {
  color: #1c1c1c;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 0.9em;
  margin-top: 20px;
}

@media (min-width: 600px) {
  .testimonial .content {
    padding: 30px 40px;
  }
  .testimonial .content p {
    font-size: 1.4em;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .testimonial .content p.name {
    font-size: 0.9em;
  }
}
.logo-ticker {
  padding: 28px 0;
  overflow: hidden;
  background: white;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo-intro {
  width: 30%;
  text-align: right;
  padding-right: 20px;
  margin-left: 0;
}

.logo-ticker .logoSlider {
  width: 70%;
  margin-right: 0;
}

.logo-ticker .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.logo-ticker .swiper-slide {
  width: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.logo-ticker .swiper-slide img {
  max-height: 45px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo-ticker .swiper-slide:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.logo-ticker.dark-bg {
  background: #1c1c1c;
  border-color: rgba(255, 255, 255, 0.1);
}

.logo-ticker.dark-bg .swiper-slide img {
  -webkit-filter: grayscale(100%) brightness(200%);
  filter: grayscale(100%) brightness(200%);
  opacity: 0.5;
}

.logo-ticker.dark-bg .swiper-slide:hover img {
  -webkit-filter: grayscale(0%) brightness(100%);
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
}

.logo-ticker.with-title {
  padding: 60px 0;
}

.logo-ticker-title {
  text-align: center;
  margin-bottom: 40px;
}

.logo-ticker-title h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 0;
}

.logo-ticker.dark-bg .logo-ticker-title h2 {
  color: #fff;
}

@media (max-width: 1024px) {
  .logo-ticker {
    padding: 40px 0;
  }
  .logo-ticker.with-title {
    padding: 60px 0;
  }
  .logo-ticker-title {
    margin-bottom: 40px;
  }
  .logo-ticker .swiper-slide img {
    max-height: 50px;
  }
}
@media (max-width: 600px) {
  .logo-ticker {
    padding: 30px 0;
  }
  .logo-ticker.with-title {
    padding: 40px 0;
  }
  .logo-ticker-title {
    margin-bottom: 30px;
  }
  .logo-ticker .swiper-slide img {
    max-height: 40px;
  }
}
.faq-section {
  padding: 80px 0;
}

.faq-title {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 0;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.q-and-a-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.q-and-a-con.centre {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.accordions {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e2e1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordions:hover {
  border-color: #ffcc26;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.accordion {
  width: 100%;
  background: white;
  color: #1c1c1c;
  cursor: pointer;
  padding: 24px 60px 24px 24px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.4;
}

.accordion:hover {
  background: #f8f8f8;
}

.accordion.active {
  background: #f8f8f8;
  color: #ffcc26;
}

.accordion .after {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.accordion .after span {
  position: absolute;
  background: #1c1c1c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion .after span:first-child {
  width: 16px;
  height: 2px;
}

.accordion .after span:last-child {
  width: 2px;
  height: 16px;
}

.accordion.active .after span {
  background: #ffcc26;
}

.accordion.active .after span:last-child {
  opacity: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.panel {
  padding: 0 24px;
  background: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.panel p {
  padding: 24px 0 24px 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.panel a {
  margin-bottom: 24px;
}

.panel ul,
.panel ol {
  padding: 0 0 24px 20px;
  margin: 0;
  color: #666;
}

.panel li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.faq-section.light-bg {
  background: #f8f8f8;
}

.faq-section.dark-bg {
  background: #1c1c1c;
  padding: 80px 0;
}

.faq-section.dark-bg .faq-title h2 {
  color: white;
}

.faq-section.dark-bg .accordions {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.faq-section.dark-bg .accordions:hover {
  border-color: #ffcc26;
}

.faq-section.dark-bg .accordion {
  background: #2a2a2a;
  color: white;
}

.faq-section.dark-bg .accordion:hover {
  background: #2a2a2a;
}

.faq-section.dark-bg .accordion.active {
  background: #2a2a2a;
  color: #ffcc26;
}

.faq-section.dark-bg .accordion .after span {
  background: white;
}

.faq-section.dark-bg .accordion.active .after span {
  background: #ffcc26;
}

.faq-section.dark-bg .panel {
  background: #2a2a2a;
}

.faq-section.dark-bg .panel p,
.faq-section.dark-bg .panel ul,
.faq-section.dark-bg .panel ol,
.faq-section.dark-bg .panel li {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-title {
    margin-bottom: 40px;
  }
  .accordion {
    font-size: 16px;
    padding: 20px 50px 20px 20px;
  }
  .accordion .after {
    right: 20px;
  }
}
@media (max-width: 600px) {
  .faq-section {
    padding: 40px 15px;
  }
  .faq-title {
    margin-bottom: 30px;
  }
  .accordion {
    font-size: 15px;
    padding: 16px 44px 16px 16px;
  }
  .accordion .after {
    right: 16px;
    width: 20px;
    height: 20px;
  }
  .accordion .after span:first-child {
    width: 14px;
  }
  .accordion .after span:last-child {
    height: 14px;
  }
  .panel {
    padding: 0 16px;
  }
  .panel p {
    padding: 10px 0 15px 0;
    font-size: 14px;
  }
}
.full-width-cta {
  padding: 80px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.full-width-cta--bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.full-width-cta .cta-content {
  width: 100%;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.full-width-cta__title {
  margin: 0;
  color: #1c1c1c;
}

.full-width-cta__text {
  margin: 0;
  color: #404040;
}
.full-width-cta__text p {
  margin: 0 0 12px;
}
.full-width-cta__text p:last-child {
  margin-bottom: 0;
}

.full-width-cta__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 1024px) {
  .full-width-cta {
    padding: 60px 20px;
  }
}
@media (max-width: 600px) {
  .full-width-cta {
    padding: 40px 16px;
  }
  .full-width-cta .cta-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .full-width-cta .cta {
    width: 100%;
  }
}
.t-hidden {
  display: none !important;
  visibility: hidden !important;
}

.t-float-right {
  float: right !important;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: auto !important;
}

.t-padding.slim {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.t-padding.no-bottom {
  padding-bottom: 0 !important;
}

.t-padding.no-top {
  padding-top: 0 !important;
}

.flipped {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.bg-scheme {
  background: #ffcc26;
}
.bg-scheme * {
  color: #fff;
}

.container {
  width: 100%;
  max-width: clamp(1190px, 92vw, 1600px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}
@media (min-width: 48em) {
  .container {
    width: 100%;
    max-width: clamp(1190px, 92vw, 1600px);
  }
}

body,
p,
ul,
ol,
li {
  color: #1c1c1c;
}

.bg-dark,
.bg-image,
.theme-dark {
  color: #fff;
}
.bg-dark p,
.bg-dark ul,
.bg-dark ol,
.bg-dark li,
.bg-image p,
.bg-image ul,
.bg-image ol,
.bg-image li,
.theme-dark p,
.theme-dark ul,
.theme-dark ol,
.theme-dark li {
  color: inherit;
}

.btn, .cta {
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
}
.btn:hover, .cta:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn.btn-primary, .btn-primary.cta, .cta.cta-green {
  background: #ffcc26;
  border-color: #ffcc26;
  color: #1c1c1c;
}
.btn.btn-primary:hover, .btn-primary.cta:hover, .cta.cta-green:hover {
  background: rgb(252.2, 192.9271889401, 0);
  border-color: rgb(252.2, 192.9271889401, 0);
}

.btn.btn-secondary, .btn-secondary.cta, .cta.cta-purple {
  background: #7e00f5;
  border-color: #7e00f5;
  color: #fff;
}
.btn.btn-secondary:hover, .btn-secondary.cta:hover, .cta.cta-purple:hover {
  background: rgb(105.0171428571, 0, 204.2);
  border-color: rgb(105.0171428571, 0, 204.2);
  color: #fff;
}

.btn.btn-dark, .btn-dark.cta, .cta.red,
.cta.cta-red, .cta.cta-dark {
  background: #1c1c1c;
  border-color: #1c1c1c;
  color: #fff;
}
.btn.btn-dark:hover, .btn-dark.cta:hover, .cta.red:hover,
.cta.cta-red:hover, .cta.cta-dark:hover {
  background: rgb(53.5, 53.5, 53.5);
  border-color: rgb(53.5, 53.5, 53.5);
  color: #fff;
}

.btn.btn-muted, .btn-muted.cta, .cta.cta-grey {
  background: #cbcbcb;
  border-color: #cbcbcb;
  color: #fff;
}
.btn.btn-muted:hover, .btn-muted.cta:hover, .cta.cta-grey:hover {
  background: rgb(177.5, 177.5, 177.5);
  border-color: rgb(177.5, 177.5, 177.5);
  color: #fff;
}

.cta,
.nav .nav-main li.button a {
  font-size: 16px !important;
  line-height: 16px !important;
  padding: 12px 18px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}
@media (min-width: 1024px) {
  .cta,
  .nav .nav-main li.button a {
    padding: 8px 18px !important;
  }
}

.cta {
  margin: 0;
}

.cta-white {
  background-color: white;
  border: 2px solid white;
  color: #7e00f5 !important;
}
.cta-white:hover {
  background-color: #7e00f5;
  color: white !important;
}
.cta-white:hover svg path {
  fill: white;
}

.video-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta {
    display: block;
    width: 100% !important;
    margin-top: 16px !important;
  }
}

.full-width-cta {
  padding: 40px 20px;
  margin-block: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.full-width-cta .cta-content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.full-width-cta .cta-content p {
  color: #7e00f5;
}
.full-width-cta .cta-content > * {
  margin-block: 0;
}
.full-width-cta .cta {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 768px) {
  .full-width-cta .cta {
    width: 100%;
  }
  .full-width-cta .cta-content {
    text-align: left;
  }
  .full-width-cta .cta-content h2 {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

.section-header-wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .section-header-wrapper {
    width: 65%;
  }
}

.section-header {
  width: 100%;
}
.section-header h2 {
  color: #1c1c1c;
}
.section-header p {
  color: #1c1c1c;
}

.theme-dark .section-header h2 {
  color: #fff;
}

.theme-dark .section-header p {
  color: rgba(255, 255, 255, 0.88);
}

.swiper-slide {
  max-width: 270px;
}

.padding-inline {
  width: 100%;
  padding-inline: 20px;
}

.padding-block {
  padding-block: 10px;
}

@media (min-width: 1024px) {
  .padding-block {
    padding-block: 20px;
  }
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.background-blue-dark {
  background-color: #1c1c1c;
}

.nav .nav-main > li.menu-item-has-children > .sub-menu {
  margin-top: 0;
  border-radius: 0 0 10px 10px;
}

.footer-wrapper {
  color: #1c1c1c;
  background: #fafaff;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 80px;
  padding-bottom: 24px;
  padding-inline: initial;
}
@media (max-width: 768px) {
  .footer-wrapper {
    padding-top: 48px;
    padding-bottom: 16px;
  }
}

.footer-new {
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #1c1c1c;
  gap: 32px;
  border: 0;
}
@media (min-width: 1024px) {
  .footer-new {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 64px;
  }
}
.footer-new p {
  line-height: 1.4;
  margin: 0;
  color: #1c1c1c;
}
.footer-new h3 {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.footer-new .footer-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer-new .footer-left .footer-logo-wrapper {
  width: 124px;
}
.footer-new .footer-left .footer-logo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .footer-new .footer-left {
    width: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.footer-new .footer-right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (min-width: 1024px) {
  .footer-new .footer-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.footer-new .footer-right .footer-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  width: 100%;
}
@media (min-width: 1024px) {
  .footer-new .footer-right .footer-menus {
    gap: 64px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .footer-new .footer-right .footer-menus {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 32px 24px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer-right .footer-menus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
}
@media (min-width: 1024px) {
  .footer-new .footer-right .footer-menus .footer-menu {
    width: auto;
    min-width: 140px;
    max-width: 30%;
  }
}
.footer-new .footer-right .footer-menus ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer-new .footer-right .footer-menus li {
  list-style: none;
}
.footer-new .footer-right .footer-menus li a {
  color: #1c1c1c;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.footer-new .footer-right .footer-menus li a:hover {
  opacity: 0.6;
}
.footer-new .footer-right .footer-contact .footer-address-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: #1c1c1c;
}
.footer-new .footer-right .footer-contact .footer-address,
.footer-new .footer-right .footer-contact .footer-phone,
.footer-new .footer-right .footer-contact .footer-email {
  color: #1c1c1c;
}
.footer-new .footer-social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.footer-new .footer-social-icons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.footer-new .footer-social-icons a:hover {
  opacity: 0.6;
}
.footer-new .footer-social-icons a svg path {
  fill: #1c1c1c;
}
@media (max-width: 768px) {
  .footer-new .footer-right .footer-menu h3,
  .footer-new .social-icons-mobile h3 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 12px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  }
  .footer-new .footer-right .footer-menu .menu-list {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
  }
  .footer-new .mob-footer-chevron svg path {
    stroke: #1c1c1c;
  }
}
@media (min-width: 769px) {
  .footer-new .social-icons-mobile,
  .footer-new .mob-footer-chevron {
    display: none;
  }
}

.footer-copyright {
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  width: 100%;
  padding-top: 24px;
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(28, 28, 28, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-copyright a {
  color: inherit;
  text-decoration: none;
}
.footer-copyright a:hover {
  color: #1c1c1c;
}
.footer-copyright ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer-copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 13px;
    font-weight: 400;
  }
}

@media (max-width: 768px) {
  .social-icons-desktop {
    display: none !important;
  }
}

.socila-icons-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.careers-listing {
  padding: 80px 0;
}
.careers-listing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 600px) {
  .careers-listing__grid {
    grid-template-columns: 1fr;
  }
}
.careers-listing__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.careers-listing__count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffcc26;
  color: #1c1c1c;
  font-weight: 700;
  font-size: 0.9rem;
}
.careers-listing__resume-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #1c1c1c;
  font-weight: 500;
  text-decoration: underline;
}
.careers-listing__resume-link:hover {
  text-decoration-thickness: 2px;
}

.careers-role {
  padding: 1.25rem 1.5rem;
  background: #fafaff;
  border-radius: 16px;
  margin-bottom: 16px;
}
.careers-role:first-child {
  padding-top: 1.25rem;
}
.careers-role:last-child {
  margin-bottom: 0;
}
.careers-role h3 {
  margin-bottom: 0.25rem;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
}
.careers-role__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  color: #1c1c1c;
  font-size: 0.9rem;
}
.careers-role__sep {
  color: #1c1c1c;
}

.careers-form__field {
  margin-bottom: 1.5rem;
}
.careers-form__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-size: 0.9rem;
}
.careers-form__field input[type=text],
.careers-form__field input[type=email],
.careers-form__field textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #efefef;
  border-radius: 6px;
  font-size: 1rem;
}
.careers-form__field input[type=text]:focus,
.careers-form__field input[type=email]:focus,
.careers-form__field textarea:focus {
  outline: none;
  border-color: #1c1c1c;
  -webkit-box-shadow: 0 0 0 2px rgba(28, 28, 28, 0.12);
  box-shadow: 0 0 0 2px rgba(28, 28, 28, 0.12);
}
.careers-form__field input[type=file] {
  font-size: 0.9rem;
}

/* Free Audit CTA Section */
.free-audit-cta {
  background: #fafaff;
  padding: 80px 0;
}
.free-audit-cta .free-audit-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}
.free-audit-cta .free-audit-cta__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
.free-audit-cta .free-audit-cta__content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.free-audit-cta .free-audit-cta__subtitle {
  font-size: 20px;
  color: #1c1c1c;
  line-height: 1.4;
  margin-bottom: 40px;
}
.free-audit-cta .free-audit-cta__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 36px;
}
.free-audit-cta .free-audit-cta__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.free-audit-cta .free-audit-cta__step-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.free-audit-cta .free-audit-cta__step-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.free-audit-cta .free-audit-cta__step-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.3;
  margin-bottom: 6px;
}
.free-audit-cta .free-audit-cta__step-text p {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 1.6;
  margin: 0;
}
.free-audit-cta .free-audit-cta__form {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 420px;
}
.free-audit-cta .free-audit-cta__card {
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 32px;
}
.free-audit-cta .free-audit-cta__card-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}
.free-audit-cta .free-audit-cta__card-subtitle {
  font-size: 15px;
  color: #1c1c1c;
  line-height: 1.55;
  margin-bottom: 28px;
}
.free-audit-cta .form-input p {
  margin-top: 0;
  margin-bottom: 15px;
}
.free-audit-cta .form-input p label {
  display: none;
}
.free-audit-cta .free-audit-cta__fallback-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}
.free-audit-cta .free-audit-cta__fallback-form input[type=text],
.free-audit-cta .free-audit-cta__fallback-form input[type=email],
.free-audit-cta .free-audit-cta__fallback-form input[type=url] {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 42px;
  font-size: 16px;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  background: #f0f0f0;
  color: #1c1c1c;
  outline: none;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.free-audit-cta .free-audit-cta__fallback-form input[type=text]:focus,
.free-audit-cta .free-audit-cta__fallback-form input[type=email]:focus,
.free-audit-cta .free-audit-cta__fallback-form input[type=url]:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(28, 28, 28, 0.18);
  box-shadow: 0 0 0 2px rgba(28, 28, 28, 0.18);
}
.free-audit-cta .free-audit-cta__fallback-form input[type=text]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__fallback-form input[type=email]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__fallback-form input[type=url]::-webkit-input-placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__fallback-form input[type=text]::-moz-placeholder, .free-audit-cta .free-audit-cta__fallback-form input[type=email]::-moz-placeholder, .free-audit-cta .free-audit-cta__fallback-form input[type=url]::-moz-placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__fallback-form input[type=text]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__fallback-form input[type=email]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__fallback-form input[type=url]:-ms-input-placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__fallback-form input[type=text]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__fallback-form input[type=email]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__fallback-form input[type=url]::-ms-input-placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__fallback-form input[type=text]::placeholder,
.free-audit-cta .free-audit-cta__fallback-form input[type=email]::placeholder,
.free-audit-cta .free-audit-cta__fallback-form input[type=url]::placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__fallback-form button[type=submit] {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.free-audit-cta .free-audit-cta__fallback-form button[type=submit]:visited {
  color: #1c1c1c;
}
.free-audit-cta .free-audit-cta__fallback-form button[type=submit]:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.free-audit-cta .free-audit-cta__fallback-form button[type=submit] {
  width: 100%;
  font-size: 16px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=email],
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=text],
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=url],
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=tel],
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=email],
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=text],
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=url],
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=tel] {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 42px;
  font-size: 16px;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  background: #f0f0f0;
  color: #1c1c1c;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=email]:focus,
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=text]:focus,
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=url]:focus,
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=tel]:focus,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=email]:focus,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=text]:focus,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=url]:focus,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=tel]:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(28, 28, 28, 0.18);
  box-shadow: 0 0 0 2px rgba(28, 28, 28, 0.18);
  outline: none;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=email]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=text]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=url]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=tel]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=email]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=text]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=url]::-webkit-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=tel]::-webkit-input-placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=email]::-moz-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=text]::-moz-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=url]::-moz-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=tel]::-moz-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=email]::-moz-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=text]::-moz-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=url]::-moz-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=tel]::-moz-placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=email]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=text]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=url]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=tel]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=email]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=text]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=url]:-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=tel]:-ms-input-placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=email]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=text]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=url]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .gform_wrapper input[type=tel]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=email]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=text]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=url]::-ms-input-placeholder, .free-audit-cta .free-audit-cta__card .wpcf7 input[type=tel]::-ms-input-placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=email]::placeholder,
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=text]::placeholder,
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=url]::placeholder,
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=tel]::placeholder,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=email]::placeholder,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=text]::placeholder,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=url]::placeholder,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=tel]::placeholder {
  color: #989898;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=submit],
.free-audit-cta .free-audit-cta__card .gform_wrapper button[type=submit],
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=submit],
.free-audit-cta .free-audit-cta__card .wpcf7 button[type=submit] {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=submit]:visited,
.free-audit-cta .free-audit-cta__card .gform_wrapper button[type=submit]:visited,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=submit]:visited,
.free-audit-cta .free-audit-cta__card .wpcf7 button[type=submit]:visited {
  color: #1c1c1c;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=submit]:hover,
.free-audit-cta .free-audit-cta__card .gform_wrapper button[type=submit]:hover,
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=submit]:hover,
.free-audit-cta .free-audit-cta__card .wpcf7 button[type=submit]:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper input[type=submit],
.free-audit-cta .free-audit-cta__card .gform_wrapper button[type=submit],
.free-audit-cta .free-audit-cta__card .wpcf7 input[type=submit],
.free-audit-cta .free-audit-cta__card .wpcf7 button[type=submit] {
  width: 100%;
  font-size: 16px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper .gform_body,
.free-audit-cta .free-audit-cta__card .gform_wrapper .wpcf7-form,
.free-audit-cta .free-audit-cta__card .wpcf7 .gform_body,
.free-audit-cta .free-audit-cta__card .wpcf7 .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}
.free-audit-cta .free-audit-cta__card .gform_wrapper .gfield,
.free-audit-cta .free-audit-cta__card .gform_wrapper .wpcf7-form-control-wrap,
.free-audit-cta .free-audit-cta__card .wpcf7 .gfield,
.free-audit-cta .free-audit-cta__card .wpcf7 .wpcf7-form-control-wrap {
  margin: 0;
}

@media (max-width: 1400px) {
  .free-audit-cta .free-audit-cta__form {
    width: 380px;
  }
  .free-audit-cta .free-audit-cta__content h2 {
    font-size: 36px;
    line-height: 47px;
  }
}
@media (max-width: 600px) {
  .free-audit-cta {
    padding: 50px 0;
  }
  .free-audit-cta .free-audit-cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
  .free-audit-cta .free-audit-cta__content h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .free-audit-cta .free-audit-cta__form {
    width: 100%;
  }
  .free-audit-cta .free-audit-cta__card {
    padding: 32px 24px;
  }
}
@media (max-width: 1024px) {
  .free-audit-cta {
    padding: 40px 0;
  }
  .free-audit-cta .free-audit-cta__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .free-audit-cta .free-audit-cta__step-icon {
    width: 40px;
    height: 40px;
  }
}
/* Insights Grid Section — Horizontal Scroll */
.insights-grid {
  padding: 80px 0;
  background: white;
}
.insights-grid .insights-grid__header {
  margin-bottom: 40px;
}
.insights-grid .insights-grid__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}
.insights-grid .insights-grid__subtitle {
  font-size: 20px;
  color: #1c1c1c;
  line-height: 1.4;
  max-width: 720px;
  margin: 0;
}
.insights-grid .insights-grid__scroll-area {
  overflow-x: auto;
  overflow-y: hidden;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.insights-grid .insights-grid__scroll-area::-webkit-scrollbar {
  display: none;
}
.insights-grid .insights-grid__scroll-area.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  scroll-behavior: auto;
}
.insights-grid .insights-grid__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-left: 30px;
  padding-left: max(30px, (100vw - clamp(1190px, 92vw, 1600px)) / 2);
  padding-right: 40px;
  padding-bottom: 8px;
}
@media (max-width: 1400px) {
  .insights-grid .insights-grid__cards {
    padding-left: 40px;
  }
}
@media (max-width: 600px) {
  .insights-grid .insights-grid__cards {
    padding-left: 24px;
    padding-right: 24px;
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .insights-grid .insights-grid__cards {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.insights-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 560px;
  position: relative;
  background: #1c1c1c;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.insights-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.insights-card:hover .insights-card__image img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.insights-card .insights-card__image {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4/3;
}
.insights-card .insights-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.insights-card .insights-card__title {
  padding: 16px 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.insights-card .insights-card__title h3 {
  color: white;
  padding: 5px 15px;
  width: 100%;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
}
.insights-card .insights-card__content {
  padding: 16px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: absolute;
  bottom: 0;
  right: 0;
}
.insights-card .insights-card__link {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.insights-card .insights-card__link:visited {
  color: #1c1c1c;
}
.insights-card .insights-card__link:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.insights-card .insights-card__link {
  font-size: 14px;
  padding: 10px 28px;
}
@media (max-width: 600px) {
  .insights-card {
    width: 320px;
  }
  .insights-card .insights-card__image {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 1024px) {
  .insights-card {
    width: 280px;
  }
  .insights-card .insights-card__link {
    font-size: 13px;
    padding: 8px 22px;
  }
}

.project-hero {
  width: 100%;
  aspect-ratio: 2.22/1;
  max-height: 720px;
  overflow: hidden;
  border-radius: 24px;
}
.project-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .project-hero {
    aspect-ratio: 16/10;
    border-radius: 16px;
  }
}

.project-info__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}
@media (max-width: 600px) {
  .project-info__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.project-info__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0.75rem 0 1.5rem;
}
.project-info__tags .tag {
  background: #efefef;
  padding: 0.25rem 0.75rem;
  border-radius: 42px;
  font-size: 0.85rem;
}
.project-info__desc {
  color: #1c1c1c;
}
.project-info__right h3 {
  margin-bottom: 1rem;
}
.project-info__list {
  color: #1c1c1c;
}
.project-info__list ul {
  list-style: none;
  padding: 0;
}
.project-info__list ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #efefef;
}
.project-info__list ul li:last-child {
  border-bottom: none;
}

.project-gallery__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 2rem;
}
.project-gallery__grid {
  display: grid;
  gap: 24px;
}
.project-gallery__grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.project-gallery__grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.project-gallery__grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 600px) {
  .project-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .project-gallery__grid {
    grid-template-columns: 1fr;
  }
}
.project-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.project-gallery__item.span-2 {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .project-gallery__item.span-2 {
    grid-column: span 1;
  }
}
.project-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.project-gallery__item:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.project-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.project-gallery__item:hover .project-gallery__caption {
  opacity: 1;
}

.start-project-cta {
  background: #fafaff;
}
.start-project-cta__inner {
  text-align: center;
  padding: 6rem 0;
  max-width: 720px;
  margin: 0 auto;
}
.start-project-cta__inner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.start-project-cta__inner p {
  font-size: 20px;
  color: #1c1c1c;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.start-project-cta__inline-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}
.start-project-cta__inline-form input[type=email] {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.95rem 1.5rem;
  border: 1px solid #efefef;
  background: #fff;
  border-radius: 42px 0 0 42px;
  border-right: none;
  font-size: 1rem;
}
.start-project-cta__inline-form input[type=email]:focus {
  outline: none;
  border-color: #1c1c1c;
}
.start-project-cta__inline-form .btn, .start-project-cta__inline-form .cta {
  border-radius: 0 42px 42px 0;
}
@media (max-width: 600px) {
  .start-project-cta__inline-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }
  .start-project-cta__inline-form input[type=email],
  .start-project-cta__inline-form .btn,
  .start-project-cta__inline-form .cta {
    border-radius: 42px;
    border-right: 1px solid #efefef;
  }
}

/* Sub-Services Section Styles
 * Two-column tabbed layout: pill nav left, image/content panel right
 */
.sub-services {
  background: #fafaff;
  padding: 100px 0;
}

.sub-services__layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 80px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  padding: 0 30px;
}

.sub-services__subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1c1c1c;
  margin: 0 0 14px;
}

.sub-services__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #1c1c1c;
  margin: 0 0 40px;
}

.sub-services__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.sub-services__btn {
  display: inline-block;
  width: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  background: #efefef;
  color: #1c1c1c;
  border: none;
  border-radius: 30px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  text-align: left;
  cursor: pointer;
  -webkit-transition: background 0.25s ease, color 0.25s ease, font-weight 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease, font-weight 0.25s ease;
  line-height: 1.3;
}
.sub-services__btn:hover {
  background: rgb(223.7, 223.7, 223.7);
}
.sub-services__btn.is-active {
  background: #ffcc26;
  color: #1c1c1c;
  font-weight: 700;
}

.sub-services__right {
  position: relative;
}

.sub-services__panel {
  display: none;
}
.sub-services__panel h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 47px;
  color: #1c1c1c;
  margin: 24px 0 16px;
}
.sub-services__panel p {
  font-size: 20px;
  line-height: 26px;
  color: #1c1c1c;
  margin: 0 0 28px;
}

.sub-services__image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}
.sub-services__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 420px;
}

.sub-services__cta {
  display: inline-block;
  background: #ffcc26;
  color: #1c1c1c;
  text-decoration: none;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.sub-services__cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
}

[data-transition=fade] .sub-services__panel {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
[data-transition=fade] .sub-services__panel.is-active {
  display: block;
  opacity: 1;
}

[data-transition=slide] .sub-services__right {
  overflow: hidden;
}
[data-transition=slide] .sub-services__panel {
  opacity: 0;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
[data-transition=slide] .sub-services__panel.is-active {
  display: block;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media (max-width: 600px) {
  .sub-services {
    padding: 70px 0;
  }
  .sub-services__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .sub-services__title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 28px;
  }
  .sub-services__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }
  .sub-services__btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  .sub-services__panel h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .sub-services__panel p {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {
  .sub-services {
    padding: 50px 0;
  }
  .sub-services__layout {
    padding: 0 16px;
  }
  .sub-services__image {
    display: none;
  }
  .sub-services__panel h3 {
    margin-top: 0;
  }
}
.process-steps.t-padding {
  padding: 80px 0;
}
.process-steps__header {
  text-align: center;
  margin-bottom: 3rem;
}
.process-steps__header p {
  color: #1c1c1c;
  max-width: 600px;
  margin: 0.5rem auto 0;
}
.process-steps__list {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #efefef;
}
.process-step:last-child {
  border-bottom: none;
}
.process-step__number {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #efefef;
  color: #1c1c1c;
  font-weight: 700;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.process-step__content h3 {
  margin-bottom: 0.25rem;
}
.process-step__content p {
  color: #1c1c1c;
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .elements-grid-wrapper {
    padding: 60px 0;
  }
  .elements-header {
    margin-bottom: 30px;
  }
  .elements-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .elements-grid-wrapper {
    padding: 40px 0;
  }
  .elements-header {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .elements-header h2 {
    font-size: 24px;
  }
  .elements-grid {
    padding: 0 20px;
    gap: 12px;
  }
  .element-card img {
    max-height: 200px;
  }
  .element-overlay {
    opacity: 1;
    padding: 15px 12px;
  }
  .element-title {
    font-size: 14px;
  }
  .element-description {
    font-size: 12px;
    -webkit-line-clamp: 1;
  }
  .lightbox-prev,
  .lightbox-next {
    padding: 15px 10px;
    font-size: 24px;
  }
}
.stats-row-wrapper .stats-row__header {
  text-align: center;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto 50px;
}
.stats-row-wrapper .stats-row__header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1c1c1c;
}
.stats-row-wrapper .stats-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.stats-row-wrapper .stats-row__image {
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #1c1c1c;
}
.stats-row-wrapper .stats-row__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.stats-row-wrapper .stats-row__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
.stats-row-wrapper .stats-row__value {
  font-size: clamp(48px, 7vw, 91px);
  font-weight: 500;
  line-height: 1;
  color: #1c1c1c;
}
.stats-row-wrapper .stats-row__caption {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

@media (max-width: 1400px) {
  .stats-row-wrapper .stats-row__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row-wrapper .stats-row__image {
    grid-column: 1/-1;
    aspect-ratio: 16/9;
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .stats-row-wrapper .stats-row__grid {
    grid-template-columns: 1fr;
  }
}
.service-grid-wrapper .service-grid__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.service-grid-wrapper .service-grid__header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.service-grid-wrapper .service-grid__header .subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.service-grid-wrapper .service-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
}
.service-grid-wrapper .service-grid__card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-grid-wrapper .service-grid__icon {
  margin-bottom: 24px;
}
.service-grid-wrapper .service-grid__icon img {
  height: 170px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.service-grid-wrapper .service-grid__card h3 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.service-grid-wrapper .service-grid__body {
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.6;
  color: #1c1c1c;
}
.service-grid-wrapper .service-grid__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .service-grid-wrapper .service-grid__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.featured-project-wrapper {
  position: relative;
  background-color: #1c1c1c;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
}
.featured-project-wrapper.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .featured-project-wrapper {
    padding: 60px 0;
  }
}

.featured-project {
  position: relative;
  z-index: 2;
  max-width: clamp(1190px, 92vw, 1600px);
  margin: 0 auto;
  padding: 0 30px;
}

.featured-project__card {
  max-width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.featured-project__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffcc26;
  margin: 0;
}

.featured-project__name {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.featured-project__description {
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
@media (max-width: 600px) {
  .featured-project__description {
    font-size: 16px;
    line-height: 1.5;
  }
}

.featured-project__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.featured-project__buttons .btn, .featured-project__buttons .cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.featured-project__buttons .btn:visited, .featured-project__buttons .cta:visited {
  color: #1c1c1c;
}
.featured-project__buttons .btn:hover, .featured-project__buttons .cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.featured-project__buttons .btn, .featured-project__buttons .cta {
  font-size: 20px;
}
.featured-project__buttons .btn.btn-yellow, .featured-project__buttons .btn-yellow.cta {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.featured-project__buttons .btn.btn-yellow:visited, .featured-project__buttons .btn-yellow.cta:visited {
  color: #1c1c1c;
}
.featured-project__buttons .btn.btn-yellow:hover, .featured-project__buttons .btn-yellow.cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.featured-project__buttons .btn.btn-outline, .featured-project__buttons .btn-outline.cta, .featured-project__buttons .cta.outline {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.featured-project__buttons .btn.btn-outline:visited, .featured-project__buttons .btn-outline.cta:visited, .featured-project__buttons .cta.outline:visited {
  color: #fff;
}
.featured-project__buttons .btn.btn-outline:hover, .featured-project__buttons .btn-outline.cta:hover, .featured-project__buttons .cta.outline:hover {
  background: #fff;
  border-color: #fff;
  color: #1c1c1c;
}
.featured-project__buttons .btn.btn-outline, .featured-project__buttons .btn-outline.cta, .featured-project__buttons .cta.outline {
  color: #fff;
  border-color: #fff;
}
@media (max-width: 600px) {
  .featured-project__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .featured-project__buttons .btn, .featured-project__buttons .cta {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.featured-project__btn-testimonial svg {
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.text-block-wrapper .text-block-heading h1,
.text-block-wrapper .text-block-heading h2,
.text-block-wrapper .text-block-heading h3 {
  color: #1c1c1c;
}

.text-block-wrapper.bg-image .text-block-heading h1,
.text-block-wrapper.bg-image .text-block-heading h2,
.text-block-wrapper.bg-image .text-block-heading h3,
.text-block-wrapper.bg-image .text-block-heading h4,
.text-block-wrapper.bg-image .text-block-heading p,
.text-block-wrapper.bg-image .text-block-content h1,
.text-block-wrapper.bg-image .text-block-content h2,
.text-block-wrapper.bg-image .text-block-content h3,
.text-block-wrapper.bg-image .text-block-content h4,
.text-block-wrapper.bg-image .text-block-content p,
.text-block-wrapper.bg-image .text-block-content ul,
.text-block-wrapper.bg-image .text-block-content ol,
.text-block-wrapper.bg-image .text-block-content li,
.text-block-wrapper.bg-image .text-block-content a,
.text-block-wrapper.bg-image .text-block-right-content,
.text-block-wrapper.bg-image .text-block-right-content h1,
.text-block-wrapper.bg-image .text-block-right-content h2,
.text-block-wrapper.bg-image .text-block-right-content h3,
.text-block-wrapper.bg-image .text-block-right-content p,
.text-block-wrapper.bg-image .text-block-right-content ul,
.text-block-wrapper.bg-image .text-block-right-content li,
.text-block-wrapper.bg-image .text-block-right-content a {
  color: #fff;
}

.text-block-wrapper.lead-copy .text-block-content p {
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .text-block-wrapper.lead-copy .text-block-content p {
    font-size: 17px;
  }
}

.text-block-wrapper.cta-band .text-block-column.column-full {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.text-block-wrapper.cta-band .text-block-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-block-wrapper .text-block-right-content li::before {
  content: none !important;
  background: none !important;
  background-image: none !important;
  display: none !important;
}

.text-block-wrapper .text-block-column.column-right .text-block-right-content:not([style*=background]),
.text-block-wrapper .text-block-row > .text-block-column:nth-child(2) .text-block-right-content:not([style*=background]) {
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.text-block-wrapper .text-block-column.column-right .text-block-right-content[style*=background],
.text-block-wrapper .text-block-row > .text-block-column:nth-child(2) .text-block-right-content[style*=background] {
  padding: 60px 30px;
  border-radius: 16px;
}

.text-block-wrapper .text-block-content ul {
  row-gap: 8px;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.text-block-wrapper .text-block-content ul li {
  font-size: 16px;
  line-height: 1.5;
  color: #1c1c1c;
  font-weight: 600;
}

.design-process {
  padding: 80px 0;
  background: #fff;
  min-height: 850px;
}

.design-process__header {
  margin-bottom: 3rem;
}
.design-process__header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
}

/* Two-column layout: ~45% steps / ~55% images */
.design-process__layout {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

/* -----------------------------------------------
   Steps list
----------------------------------------------- */
.design-process__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}

.design-process__step {
  padding: 1.75rem 1.5rem;
  border-left: 4px solid transparent;
  cursor: default;
  -webkit-transition: border-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.design-process__step h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 0.5rem;
  -webkit-transition: font-size 0.3s ease, color 0.3s ease;
  transition: font-size 0.3s ease, color 0.3s ease;
}
.design-process__step p {
  font-size: 15px;
  line-height: 1.7;
  color: #1c1c1c;
  margin: 0;
  -webkit-transition: font-size 0.3s ease, line-height 0.3s ease, opacity 0.3s ease;
  transition: font-size 0.3s ease, line-height 0.3s ease, opacity 0.3s ease;
}

/* Active step (JS-driven or first-child default) */
.design-process__step.is-active {
  border-left-color: #ffcc26;
}
.design-process__step.is-active h3 {
  font-size: clamp(20px, 2.2vw, 25px);
}

/* CSS hover scaling: when cursor enters the steps container,
   scale all steps down dramatically; scale the hovered step up */
.design-process__steps:hover .design-process__step {
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  opacity: 0.4;
}
.design-process__steps:hover .design-process__step h3 {
  font-size: clamp(13px, 1.2vw, 15px);
}
.design-process__steps:hover .design-process__step p {
  font-size: 12px;
  line-height: 1.4;
}

.design-process__steps .design-process__step:hover {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  opacity: 1;
  border-left-color: #ffcc26;
}
.design-process__steps .design-process__step:hover h3 {
  font-size: clamp(24px, 2.8vw, 32px);
}
.design-process__steps .design-process__step:hover p {
  font-size: 16px;
  line-height: 1.7;
}

/* Adjacent siblings get an intermediate scale */
.design-process__steps .design-process__step:hover + .design-process__step,
.design-process__steps .design-process__step:has(+ .design-process__step:hover) {
  -webkit-transform: scale(0.88);
  transform: scale(0.88);
  opacity: 0.6;
}
.design-process__steps .design-process__step:hover + .design-process__step h3,
.design-process__steps .design-process__step:has(+ .design-process__step:hover) h3 {
  font-size: clamp(15px, 1.6vw, 18px);
}
.design-process__steps .design-process__step:hover + .design-process__step p,
.design-process__steps .design-process__step:has(+ .design-process__step:hover) p {
  font-size: 13px;
}

/* -----------------------------------------------
   Image panel
----------------------------------------------- */
.design-process__images {
  position: sticky;
  top: 6rem;
  height: 520px;
}

.design-process__image {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(28, 28, 28, 0.12);
  box-shadow: 0 8px 32px rgba(28, 28, 28, 0.12);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.design-process__image.is-active {
  opacity: 1;
  pointer-events: auto;
}
.design-process__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* -----------------------------------------------
   Mobile — hide images, remove scaling effects
----------------------------------------------- */
@media (max-width: 600px) {
  .design-process__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .design-process__images {
    display: none;
  }
  /* Remove hover scaling on touch devices */
  .design-process__steps:hover .design-process__step {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  .design-process__steps .design-process__step:hover {
    -webkit-transform: none;
    transform: none;
  }
  .design-process__steps .design-process__step:hover + .design-process__step,
  .design-process__steps .design-process__step:has(+ .design-process__step:hover) {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  .design-process__step {
    padding: 1.25rem 1rem;
  }
  .design-process__step.is-active {
    border-left-color: #ffcc26;
  }
  .design-process__step h3 {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .design-process__header {
    margin-bottom: 2rem;
  }
  .design-process__step {
    padding: 1rem 0.75rem;
  }
  .design-process__step p {
    font-size: 14px;
  }
}
.logo-ticker {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo-ticker .logo-intro {
  width: 30%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: right;
  padding-right: 20px;
  -ms-flex-item-align: center;
  align-self: center;
}
.logo-ticker .logo-intro p {
  font-weight: 600;
  margin: 0;
}
.logo-ticker:has(.section-header-wrapper) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.logo-ticker .section-header-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.logo-ticker .section-header-wrapper .section-header h2 {
  margin: 0;
}

.logo-ticker.bg-offwhite {
  background: #fafaff;
  border-color: rgba(28, 28, 28, 0.08);
}

.logo-ticker__viewport {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}

.logo-ticker__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: logo-ticker-scroll 40s linear infinite;
  animation: logo-ticker-scroll 40s linear infinite;
  will-change: transform;
}
.logo-ticker__track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.logo-ticker__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
}

.logo-ticker__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 55px;
  width: auto;
}
.logo-ticker__slide img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
}

@-webkit-keyframes logo-ticker-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes logo-ticker-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-ticker__track {
    -webkit-animation: none;
    animation: none;
  }
}
@media (max-width: 1024px) {
  .logo-ticker__slide {
    height: 50px;
  }
}
@media (max-width: 600px) {
  .logo-ticker {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .logo-ticker .logo-intro {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 16px;
  }
  .logo-ticker .section-header-wrapper {
    margin-bottom: 28px;
  }
  .logo-ticker__slide {
    height: 40px;
  }
}
.full-width-cta.theme-dark .full-width-cta__title {
  color: #fff;
}
.full-width-cta.theme-dark .full-width-cta__text {
  color: rgba(255, 255, 255, 0.88);
}
.full-width-cta.theme-dark .full-width-cta__text p {
  color: inherit;
}

.full-width-cta__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
}
@media (max-width: 600px) {
  .full-width-cta__title {
    font-size: clamp(26px, 6vw, 32px);
  }
}

.full-width-cta__text {
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .full-width-cta__text {
    font-size: 17px;
    line-height: 1.5;
  }
}

@media (min-width: 1024px) {
  .tile-carousel-section .section-header-wrapper {
    width: 100%;
    max-width: clamp(1190px, 92vw, 1600px);
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
  }
}
.tile-carousel-section .section-header h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
}

.text-with-image .hero-video-wrapper {
  position: relative;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  background: #1c1c1c;
}
.text-with-image .hero-video-wrapper iframe,
.text-with-image .hero-video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.text-with-image.with-video .hero-image-wrapper {
  min-height: 0;
}

.post-hero {
  padding: 60px 0 24px;
}
.post-hero__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 30px;
}
.post-hero__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #1c1c1c;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
}
.post-hero__back svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.post-hero__back:hover {
  color: #ffcc26;
}
.post-hero__back:hover svg {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}
.post-hero__categories {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.post-hero__category {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1c1c1c;
  background: #ffcc26;
  padding: 4px 12px;
  border-radius: 42px;
}
.post-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #1c1c1c;
  margin: 0 0 24px;
}
.post-hero__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
  padding: 16px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
@media (max-width: 600px) {
  .post-hero__meta-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.post-hero__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.post-hero__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.post-hero__author-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}
.post-hero__author-name {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.2;
}
.post-hero__author-role {
  font-size: 13px;
  color: #1c1c1c;
  line-height: 1.2;
}
.post-hero__share {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: #ffcc26;
  color: #1c1c1c;
}
.post-hero__share:visited {
  color: #1c1c1c;
}
.post-hero__share:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1c1c;
}
.post-hero__share {
  font-size: 14px;
  padding: 10px 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1c1c1c;
  border: 1px solid #efefef;
  cursor: pointer;
}
.post-hero__share:hover {
  background: #ffcc26;
  border-color: #ffcc26;
}
.post-hero__share.is-copied {
  background: #ffcc26;
  border-color: #ffcc26;
}
.post-hero__share.is-copied span::after {
  content: " — copied!";
  font-weight: 500;
}
.post-hero__date {
  display: block;
  font-size: 14px;
  color: #1c1c1c;
  margin-bottom: 16px;
}
.post-hero__lede {
  font-size: 20px;
  line-height: 1.45;
  color: #1c1c1c;
  margin: 0;
}

.post-body-with-sidebar {
  padding: 40px 0 80px;
}
.post-body-with-sidebar__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 48px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 600px) {
  .post-body-with-sidebar__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.post-body-with-sidebar__main {
  min-width: 0;
}
.post-body-with-sidebar__media {
  margin-bottom: 32px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #1c1c1c;
}
.post-body-with-sidebar__media img,
.post-body-with-sidebar__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.post-body-with-sidebar__prose {
  font-size: 17px;
  line-height: 1.7;
  color: #1c1c1c;
}
.post-body-with-sidebar__prose h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: #1c1c1c;
  margin: 48px 0 16px;
  scroll-margin-top: 100px;
}
.post-body-with-sidebar__prose h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: #1c1c1c;
  margin: 32px 0 12px;
}
.post-body-with-sidebar__prose p {
  margin: 0 0 20px;
}
.post-body-with-sidebar__prose a {
  color: #1c1c1c;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-body-with-sidebar__prose a:hover {
  text-decoration-thickness: 2px;
}
.post-body-with-sidebar__prose ul,
.post-body-with-sidebar__prose ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.post-body-with-sidebar__prose ul li,
.post-body-with-sidebar__prose ol li {
  margin-bottom: 8px;
}
.post-body-with-sidebar__prose img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.post-body-with-sidebar__sidebar {
  position: sticky;
  top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -ms-flex-item-align: start;
  align-self: start;
}
@media (max-width: 600px) {
  .post-body-with-sidebar__sidebar {
    position: static;
    top: auto;
  }
}
.post-body-with-sidebar__toc {
  background: #fafaff;
  border-radius: 16px;
  padding: 24px;
}
.post-body-with-sidebar__toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1c1c1c;
  margin: 0 0 16px;
}
.post-body-with-sidebar__toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.post-body-with-sidebar__toc-list li {
  counter-increment: toc;
  position: relative;
  padding-left: 28px;
}
.post-body-with-sidebar__toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: 0.04em;
}
.post-body-with-sidebar__toc-list a {
  color: #1c1c1c;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  display: inline-block;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.post-body-with-sidebar__toc-list a:hover {
  color: #ffcc26;
}
.post-body-with-sidebar__toc-list a.is-active {
  font-weight: 700;
  color: #ffcc26;
}
.post-body-with-sidebar__toc-empty {
  font-size: 13px;
  color: #1c1c1c;
  padding-left: 0;
}
.post-body-with-sidebar__toc-empty::before {
  content: none;
}
.post-body-with-sidebar__cta {
  background: #1c1c1c;
  color: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.post-body-with-sidebar__cta-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
.post-body-with-sidebar__cta-button {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  text-align: center;
}

.hero-new .hero-content-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.hero-new-wrapper.short .hero-new .hero-content-wrapper {
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-new-wrapper.hero-image {
  border-radius: 0;
}
.hero-new-wrapper.hero-image .hero-image-wrapper {
  border-radius: 0;
}

.hero-new-wrapper.hero-heading-yellow .hero-content h1 {
  color: #ffcc26;
}

.tile-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .tile-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.tile-grid .tile {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tile-grid .tile {
    width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .tile-grid .tile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.tile-grid .tile:hover .cta {
  background: #7e00f5;
  border-color: #7e00f5;
  color: #fff;
}
.tile-grid .tile-image {
  width: 100%;
}
.tile-grid .tile-image img {
  width: 100%;
  height: 100%;
}
.tile-grid .tile-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 768px) {
  .tile-grid .tile-content {
    margin-top: -7%;
  }
}
.tile-grid .tile-content h3 {
  margin-bottom: 10px;
  line-height: 99%;
  font-size: 36px;
}
.tile-grid .tile-content .cta {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 768px) {
  .tile-grid .tile-content .desktop-cta {
    display: none;
  }
}
@media (min-width: 768px) {
  .tile-grid .mobile-cta {
    display: none;
  }
}

.tile-carousel-section {
  margin-left: 20px;
}
.tile-carousel-section .section-header-wrapper {
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .tile-carousel-section {
    margin-left: 8%;
  }
}
@media (min-width: 1600px) {
  .tile-carousel-section {
    margin-left: 16%;
  }
}

.tile-carousel-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow-x: scroll;
  overflow-y: hidden;
  min-width: 88vw;
}

.tile-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .tile-carousel {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .tile-carousel {
    padding-bottom: 0;
  }
}
.tile-carousel:last-child {
  margin-right: 20px;
}
.tile-carousel .tile {
  width: 70vw;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .tile-carousel .tile {
    width: 35vw;
  }
}
@media (max-width: 768px) {
  .tile-carousel .tile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .tile-carousel .tile .cta {
    position: static;
  }
}
.tile-carousel .tile:hover .cta {
  background: #7e00f5;
  border-color: #7e00f5;
  color: #fff;
}
.tile-carousel .cta {
  position: absolute;
  left: 20px;
  bottom: 10px;
}
.tile-carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.tile-carousel .video-tile {
  width: 420px;
  aspect-ratio: 16/9;
}

.image-and-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .image-and-reviews {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    gap: 4%;
  }
  .image-and-reviews .content-wrapper {
    width: 56%;
  }
  .image-and-reviews .reviews-wrapper {
    width: 40%;
  }
}
.image-and-reviews h2 {
  color: #000;
}
.image-and-reviews .reviews-cta {
  width: 100%;
}
@media (max-width: 768px) {
  .image-and-reviews h2 {
    text-align: center;
    margin-inline: auto;
  }
}

.reviews {
  height: 400px;
  overflow-y: scroll;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .reviews {
    height: 500px;
  }
}
.reviews::-webkit-scrollbar {
  width: 10px;
  border-radius: 50px;
}
.reviews::-webkit-scrollbar-track {
  border-radius: 50px;
  background: #f1f1f1;
}
.reviews::-webkit-scrollbar-thumb {
  background: #7e00f5;
  border-radius: 50px;
}

.wp-gr .wp-google-review {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  padding: 20px !important;
  font-family: "trebuchet ms", sans-serif !important;
}
.wp-gr .wp-google-left {
  display: none !important;
}
.wp-gr .wp-star svg path {
  fill: #7e00f5 !important;
}
.wp-gr .wp-google-reviews img {
  width: 120px !important;
  border-radius: 0 !important;
  margin-bottom: 10px !important;
}
.wp-gr.wpac a.wp-google-name {
  font-size: 24px !important;
  color: #7e00f5 !important;
  font-family: "Alice", sans-serif !important;
}
.wp-gr .wp-google-text {
  color: #7e00f5 !important;
}
.wp-gr.wpac .wp-google-review .wp-google-stars {
  margin-block: 5px !important;
}

.wp-google-feedback {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.wp-google-url {
  font-family: "trebuchet ms", sans-serif !important;
}

.about-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .about-us {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    gap: 6%;
  }
  .about-us .content-wrapper {
    width: 47%;
  }
  .about-us .right-content-wrapper {
    width: 47%;
  }
  .about-us p {
    line-height: 120%;
  }
  .about-us .image img {
    -webkit-box-shadow: 4px 4px 3px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 3px 0px rgba(0, 0, 0, 0.25);
  }
}
.about-us h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.about-us .right-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.about-us .about-people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.about-us .cta {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-inline: 40px !important;
  margin-block: 20px;
}
@media (max-width: 768px) {
  .about-us .cta {
    width: 100%;
  }
}

.about-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-person img {
  width: 20%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
}

.about-us .about-person-info {
  width: 78%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.about-us .about-person-info * {
  margin: 0;
  font-family: "Alice", sans-serif;
  color: #7e00f5;
  font-weight: 600;
}
.about-us .about-person-info .person-name {
  font-size: 24px;
}
.about-us .about-person-info .person-title {
  font-size: 14px;
}

.faq-section .faq-title {
  text-align: center;
  margin-bottom: 32px;
}
.faq-section .faq-title h2 {
  color: #ffcc26;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 0;
}
.faq-section .faq-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1c1c1c;
  margin: -16px auto 24px;
  max-width: 720px;
}
.faq-section .accordions {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #1c1c1c;
  overflow: visible;
  -webkit-transition: none;
  transition: none;
}
.faq-section .accordions:hover {
  border-color: #1c1c1c;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.faq-section .accordion {
  background: transparent;
  color: #1c1c1c;
  padding: 18px 48px 18px 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}
.faq-section .accordion:hover, .faq-section .accordion.active {
  background: transparent;
  color: #1c1c1c;
}
.faq-section .accordion .after {
  right: 0;
}
.faq-section .accordion .after span {
  background: #1c1c1c;
}
.faq-section .accordion .after span:first-child {
  width: 20px;
  height: 2px;
}
.faq-section .accordion .after span:last-child {
  width: 2px;
  height: 20px;
}
.faq-section .accordion.active .after span {
  background: #1c1c1c;
}
.faq-section .panel {
  background: transparent;
  padding: 0;
}
.faq-section .panel p {
  color: #1c1c1c;
}
.faq-section .faq-footer-cta-wrap {
  margin: 32px 0 0;
}
.faq-section .faq-footer-cta {
  display: inline-block;
  color: #1c1c1c;
  font-weight: 700;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.faq-section .faq-footer-cta:hover, .faq-section .faq-footer-cta:focus-visible {
  color: #ffcc26;
}

@media (max-width: 1024px) {
  .faq-section .faq-title h2 {
    font-size: 28px;
  }
  .faq-section .accordion {
    font-size: 18px;
    padding: 14px 40px 14px 0;
  }
}