@charset "UTF-8";
/*!
Theme Name: TheTheme
Author: Deliver & DRS
Author URI: https://delivermedia.co.uk
Description: Mobile first WordPress theme
Version: 2.0.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

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments
## Layouts

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

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

.row {
  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 {
  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 {
    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 {
    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: 1190px;
  }
  .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 {
    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: 600px) and (max-width: 1024px) {
  .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! 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 {
  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 {
  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] {
  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;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
html {
  width: 100%;
  height: 100%;
}

body {
  background: white;
  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: "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: #1c1d1d;
  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: 1024px) {
  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: #6e6e6e;
}
p.larger {
  font-size: 24px !important;
  letter-spacing: 0;
}

/* Elements
--------------------------------------------- */
body {
  background: white;
}

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

/* Links
--------------------------------------------- */
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;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
button:visited,
input[type=button]:visited,
input[type=reset]:visited,
input[type=submit]:visited {
  color: #1c1d1d;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
button,
input[type=button],
input[type=reset],
input[type=submit] {
  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 {
  border-color: #7e00f5;
}

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: #1c1d1d;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
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%;
  box-sizing: border-box;
  transition: transform 0.4s ease;
}
.hc-offcanvas-nav .nav-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  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;
  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;
  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;
  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%;
  overscroll-behavior: none;
  visibility: hidden;
  opacity: 0;
  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;
  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;
  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;
  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;
  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;
  transition: visibility 0s ease 0.4s, 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;
  transform: translate3d(0, 0, 0);
  transition: 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;
  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;
  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;
  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;
  transform: translate3d(0, 100%, 0);
}
.hc-offcanvas-nav.nav-open[class*=hc-nav-] div.nav-container {
  transform: translate3d(0, 0, 0);
}
.hc-offcanvas-nav.rtl {
  text-align: right;
  direction: rtl;
}

.hc-nav-trigger {
  position: absolute;
  cursor: pointer;
  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%;
  transform: translateY(-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: #1c1d1d;
  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);
  transform: rotate(45deg);
}
.hc-nav-trigger.toggle-open span::before {
  transform: translate3d(0, 6px, 0);
}
.hc-nav-trigger.toggle-open span::after {
  transform: rotate(-90deg) translate3d(6px, 0, 0);
}
.hc-nav-trigger {
  display: none;
}
@media (max-width: 1024px) {
  .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;
  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;
  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;
  transform: rotate(135deg);
}
.hc-offcanvas-nav .nav-close-button span::after {
  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;
  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 {
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
}
.hc-offcanvas-nav.nav-position-right .nav-next span::before {
  margin-left: 2px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hc-offcanvas-nav.nav-position-right .nav-back span::before {
  margin-left: -2px;
  transform: translate(-50%, -50%) rotate(135deg);
}
.hc-offcanvas-nav {
  /* Top */
}
.hc-offcanvas-nav.nav-position-top.nav-open .nav-wrapper {
  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;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.hc-offcanvas-nav.nav-position-top .nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hc-offcanvas-nav {
  /* Bottom */
}
.hc-offcanvas-nav.nav-position-bottom.nav-open .nav-wrapper {
  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;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hc-offcanvas-nav.nav-position-bottom .nav-back span::before {
  margin-left: 0;
  margin-right: -2px;
  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;
  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%;
  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 {
  transform: translate3d(-100%, 0, 0);
}
.hc-offcanvas-nav.nav-position-right .nav-container {
  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: flex;
  flex-direction: column;
}
.hc-offcanvas-nav .nav-content .nav-title {
  display: flex !important;
  align-items: center;
  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: flex;
  align-items: 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 {
  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 {
  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: flex;
  align-items: 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 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hc-offcanvas-nav .nav-close-sublevel .nav-close-button span::after {
  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;
  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: flex;
  align-items: stretch;
}
.hc-offcanvas-nav li.nav-item .nav-item-link,
.hc-offcanvas-nav li.nav-item a {
  flex: 1;
  display: block;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  background: transparent;
  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: flex;
  align-items: 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%;
  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: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 54px;
}
.hc-offcanvas-nav .nav-back .nav-back-button {
  display: flex;
  align-items: 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%;
  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;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.hc-offcanvas-nav li.mobile-nav-cta .nav-item-link:visited,
.hc-offcanvas-nav li.mobile-nav-cta a:visited {
  color: #1c1d1d;
}
.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: #1c1d1d;
}
.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;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.hc-offcanvas-nav .nav-container > .mobile-nav-contact .contact-item {
  display: flex;
  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;
  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: 1024px) {
  .hc-offcanvas-nav,
  .hc-nav-trigger {
    display: none !important;
  }
  .nav {
    display: flex !important;
    align-items: flex-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: "DM Sans", sans-serif;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
  }
  .nav .nav-main li a:hover, .nav .nav-main li a:active, .nav .nav-main li a:focus {
    color: #1c1d1d;
  }
  .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: "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: "DM Sans", sans-serif;
  }
  .nav .nav-main li.button a:hover {
    background: #ffcc26;
    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;
    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;
    box-sizing: border-box;
    border-bottom: 2px solid #ffcc26;
    border-right: 2px solid #ffcc26;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 9999;
    border-color: #fff;
    top: 48%;
    right: 5px;
    border-color: #6e6e6e;
  }
  .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;
    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: flex;
    position: absolute;
    left: 0;
    right: 0;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    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: 1190px;
    flex: 0 0 100%;
    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: #1c1d1d;
    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 {
    animation: slideDown 0.3s ease-out forwards;
  }
  .nav.animate-slide .mega .mega-wrap.active {
    animation: slideDown 0.4s ease-out forwards;
  }
  .nav.animate-expand .menu-item-has-children .sub-menu.active {
    animation: expandOut 0.3s ease-out forwards;
  }
  .nav.animate-expand .mega .mega-wrap.active {
    animation: expandOut 0.4s ease-out forwards;
  }
  .nav.animate-fade .menu-item-has-children .sub-menu.active {
    animation: fadeIn 0.3s ease-out forwards;
  }
  .nav.animate-fade .mega .mega-wrap.active {
    animation: fadeIn 0.4s ease-out forwards;
  }
  .nav.animate-slide-up .menu-item-has-children .sub-menu.active {
    animation: slideUp 0.3s ease-out forwards;
  }
  .nav.animate-slide-up .mega .mega-wrap.active {
    animation: slideUp 0.4s ease-out forwards;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes expandOut {
    from {
      opacity: 0;
      transform: scaleY(0);
      transform-origin: top;
    }
    to {
      opacity: 1;
      transform: scaleY(1);
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* Posts and pages
--------------------------------------------- */
.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;
}

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

.bypostauthor {
  display: block;
}

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

/* Media
--------------------------------------------- */
.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;
}

/* Captions
--------------------------------------------- */
.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;
}

/* Galleries
--------------------------------------------- */
.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;
}

/* Forms
--------------------------------------------- */
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;
  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;
}

/* Plugins
--------------------------------------------- */
.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%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@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;
  box-sizing: border-box;
  border-bottom: 2px solid #ffcc26;
  border-right: 2px solid #ffcc26;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg);
}
.accordion-menu .accordion .heading h5.active:after {
  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;
  -khtml-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: grab;
}

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

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

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

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

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

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

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

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  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 {
  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;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-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;
  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: flex;
  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: "DM Sans", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: 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;
  box-sizing: border-box;
  border-bottom: 2px solid #ffcc26;
  border-right: 2px solid #ffcc26;
  transform-origin: center;
  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;
  box-sizing: border-box;
  border-bottom: 2px solid #ffcc26;
  border-right: 2px solid #ffcc26;
  transform-origin: center;
  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: 1024px) {
  .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;
}

/* ------------------------------------------------------- fonts */
/* 'Open Sans', Helvetica, Arial, Lucida, sans-serif */
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;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* 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;
  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;
}

/* Alignments
--------------------------------------------- */
.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: 1024px) {
  .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 {
  align-items: baseline;
}

@media (min-width: 1024px) {
  .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 {
    justify-content: center;
    text-align: left;
  }
  .center-xs .center-col {
    text-align: center;
  }
  .bottom-md .middle-xs {
    align-items: flex-end;
  }
  .top-xs .middle-xs {
    align-items: flex-start;
  }
}
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.no-sidebar .site {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "header" "main" "footer";
}

/* Styles
--------------------------------------------- */
/* Header / Footer — Theme Overrides (Mk III) */
.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: 1024px) {
  .site {
    padding-top: 80px;
  }
  .header .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.hc-nav-trigger {
  right: 20px;
}

@media (max-width: 600px) {
  .site {
    padding-top: 70px;
  }
  .header .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.post {
  margin: 20px 0 !important;
  text-align: left;
  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;
  transition: all 0.5s;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.post .image-wrapper .image:hover {
  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: 1024px) {
  .blog-posts {
    padding: 40px 0;
  }
  .blog-posts .blog-heading h1, .blog-posts .blog-heading h2 {
    font-size: 2.4em;
  }
}
.single .content h1 {
  font-size: 1.6em;
  line-height: 1.2;
}
.single .content .author {
  font-size: 0.9em;
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .single .content h1 {
    font-size: 2.6em;
  }
}
.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;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.cta:visited {
  color: #1c1d1d;
}
.cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.cta {
  margin: 0 20px 15px 0;
}
.cta.outline {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.cta.outline:visited {
  color: #1c1d1d;
}
.cta.outline:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.cta.outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.cta.outline:visited {
  color: #fff;
}
.cta.outline:hover {
  background: #fff;
  border-color: #fff;
  color: #1c1d1d;
}
.cta.green {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.cta.green:visited {
  color: #1c1d1d;
}
.cta.green:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.cta.purple {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.cta.purple:visited {
  color: #1c1d1d;
}
.cta.purple:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.cta.purple {
  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;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.cta.red:visited {
  color: #1c1d1d;
}
.cta.red:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.cta.red {
  background: #1c1d1d;
  color: #fafaff;
  border-color: #1c1d1d;
}
.cta.red:visited {
  color: #fafaff;
}
.cta.red:hover {
  background: rgb(53.0526315789, 54.9473684211, 54.9473684211);
  border-color: rgb(53.0526315789, 54.9473684211, 54.9473684211);
  color: #fafaff;
}

@media (min-width: 1024px) {
  .cta {
    line-height: 2.2;
  }
  .cta.outline, .cta.green, .cta.purple, .cta.red {
    line-height: 2;
  }
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 20px;
  font-size: 0.8em;
}
.wpcf7 .wpcf7-form-control-wrap input, .wpcf7 .wpcf7-form-control-wrap textarea {
  border-color: #d4e5e5;
}
.wpcf7 .wpcf7-submit {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 35px;
  padding-left: 50px;
  padding-right: 50px;
}
.wpcf7 .wpcf7-submit:hover {
  cursor: pointer;
  border-color: #ffcc26;
}

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

.bg-scheme-light {
  background: #989898;
}

.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: #6e6e6e;
  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: #6e6e6e;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
  font-family: "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: 1024px) {
  .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: 1024px) {
  .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;
  }
}
.blocks {
  padding: 0 !important;
}
.blocks .block-image {
  padding: 0;
}
.blocks .block-image p {
  margin: 0;
  line-height: 0;
}
.blocks .block-image p img {
  width: 100%;
}
.blocks .block-text {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  .blocks .block-text {
    display: flex;
    justify-content: center;
  }
  .blocks .block-text .content {
    max-width: 620px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.boxed .content {
  background: #fff;
}

.page-intro {
  padding-bottom: 20px;
}
.page-intro h1, .page-intro h2, .page-intro h3 {
  color: #ffcc26;
}
.page-intro h1 {
  font-size: 2em;
}
.page-intro p {
  font-size: 1.1em;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .page-intro h1 {
    font-size: 2.4em;
  }
  .page-intro p {
    font-size: 1.1em;
  }
}
.testimonial .content {
  padding: 30px 20px;
  background: #989898;
  margin-bottom: 30px;
}
.testimonial .content p {
  color: #ffcc26;
  font-family: "DM Sans", sans-serif;
}
.testimonial .content p.name {
  color: #6e6e6e;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9em;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .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;
  }
}
.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: #6e6e6e;
  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: 1024px) {
  .widgets {
    position: sticky;
    top: 135px;
  }
  .cta-widget .cta {
    padding: 12px 30px;
  }
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections
--------------------------------------------- */
/* Header (Mk III) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background: #fff;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header {
  width: 100%;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

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

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

.nav {
  display: flex;
  align-items: center;
}
.nav .nav-main {
  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: #1c1d1d;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2px;
  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 {
  border-radius: 0;
  background: #fff;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #ffcc26, #7e00f5) 1;
}
.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: #1c1d1d;
  font-size: 14px;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  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;
  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;
  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: flex;
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu > li {
  flex: 1;
}
.nav .nav-main > li.menu-item-has-children.mega-nav > .sub-menu > li > a {
  font-size: 1.1em;
  font-weight: 700;
  color: #1c1d1d;
  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: flex;
  flex-direction: column;
  position: initial;
  background: transparent;
  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: #6e6e6e;
  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;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.header-cta:visited {
  color: #1c1d1d;
}
.header-cta:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.header-cta {
  font-size: 16px;
  padding: 10px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 1024px) {
  .header-wrapper {
    padding: 15px 0;
  }
  .nav {
    display: none;
  }
  .header-cta {
    margin-right: 70px;
    font-size: 14px;
    padding: 8px 18px;
  }
}
@media (max-width: 600px) {
  .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;
  }
}
/*
.site-main {
    margin-top:$mobile_header_height;
}

@media screen and (min-width:$mobile_breakpoint) {
    .site-main {
        margin-top:$desktop_header_height;
    }
}
*/
.page-container {
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1024px) {
  .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;
}

/* Footer (Mk III) */
.footer-wrapper {
  color: #1c1d1d;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  max-width: 1190px;
  margin: 0 auto;
  padding: 60px 30px 0;
  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: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-right {
  display: flex;
  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: #1c1d1d;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-menu h3 span {
  color: #1c1d1d;
}

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

.footer-menu .menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-menu .menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

.footer-contact .footer-address-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

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

.footer-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-social-icons a:hover {
  background: #efefef;
}
.footer-social-icons a:hover svg path {
  fill: #1c1d1d;
}

.footer-social-icons a svg {
  width: 16px;
  height: 16px;
}

.footer-social-icons a svg path {
  fill: #1c1d1d;
  transition: fill 0.2s ease;
}

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

.footer-copyright {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
  color: #6e6e6e;
}

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

.footer-copyright .nav-main {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  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;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.footer-mailing-list input[type=submit]:visited {
  color: #1c1d1d;
}
.footer-mailing-list input[type=submit]:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.footer-mailing-list input[type=submit] {
  font-size: 14px;
  padding: 8px 20px;
}

/* Responsive */
@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: 768px) {
  .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;
    transition: transform 0.3s ease;
  }
  .footer-menu h3 .mob-footer-chevron svg path {
    stroke: #1c1d1d;
  }
  .footer-menu .menu-list {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  .social-icons-desktop {
    display: none;
  }
  .social-icons-mobile {
    display: block;
    padding: 15px 0;
  }
  .social-icons-mobile h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1c1d1d;
  }
  .footer-copyright {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
  }
}
/* Template Parts
--------------------------------------------- */
/* Hero Section (Mk III) */
.hero-new-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}

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

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1190px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
}

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

.hero-light .hero-new {
  height: calc(100vh - 90px);
  min-height: 600px;
  margin: 0 auto;
}
.hero-light .hero-content h1 {
  color: #1c1d1d;
}
.hero-light .hero-content p {
  color: #6e6e6e;
}
.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;
  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%;
  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%;
  object-fit: cover;
  object-position: center;
}
.hero-image .hero-button-wrapper .btn.btn-purple {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.hero-image .hero-button-wrapper .btn.btn-purple:visited {
  color: #1c1d1d;
}
.hero-image .hero-button-wrapper .btn.btn-purple:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.hero-image .hero-button-wrapper .btn.btn-purple {
  background: #7e00f5;
  color: #fafaff;
  border-color: #7e00f5;
}
.hero-image .hero-button-wrapper .btn.btn-purple:visited {
  color: #fafaff;
}
.hero-image .hero-button-wrapper .btn.btn-purple: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 {
  font-family: "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.hero-image .hero-button-wrapper .btn.btn-yellow:visited {
  color: #1c1d1d;
}
.hero-image .hero-button-wrapper .btn.btn-yellow:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.hero-image .hero-button-wrapper .btn.btn-yellow {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.hero-image .hero-button-wrapper .btn.btn-yellow:visited {
  color: #fff;
}
.hero-image .hero-button-wrapper .btn.btn-yellow:hover {
  background: #fff;
  border-color: #fff;
  color: #1c1d1d;
}

.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 {
  justify-content: flex-end;
}
.hero-new-wrapper.short.hero-image .hero-new {
  height: calc(50vh - 90px);
  min-height: 350px;
}

/* Responsive */
@media (max-width: 1024px) {
  .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: 600px) {
  .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 {
    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: #1a1a1a;
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 100px 40px;
  max-width: 1190px;
  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: #ffffff;
  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: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Posts Grid Styles */
.posts-wrapper {
  padding: 80px 0;
  background: #ffffff;
}

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

.post-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.post-card:hover .post-card-image img {
  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%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  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: #1a1a1a;
}
.post-card-title a {
  color: inherit;
  text-decoration: none;
  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;
  flex: 1;
}

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

/* Pagination Styles */
.posts-pagination {
  margin-top: 60px;
  text-align: center;
}
.posts-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.posts-pagination a, .posts-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.posts-pagination a {
  color: #1a1a1a;
  background: #f5f5f5;
}
.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 State */
.no-posts {
  text-align: center;
  padding: 80px 40px;
  max-width: 600px;
  margin: 0 auto;
}
.no-posts h2 {
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.no-posts p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

/* Responsive Styles */
@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: 768px) {
  .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 {
    flex-direction: column;
  }
  .page-hero-buttons .btn {
    width: 100%;
    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 / Review Section Styles */
.trust-badges-wrapper {
  padding: 60px 0;
  background: #ffffff;
}

.trust-badges {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-badge .badge-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.trust-badge .badge-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-badge .badge-content .stars {
  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: #1a1a1a;
}

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

/* Responsive */
@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: 768px) {
  .trust-badges-wrapper {
    padding: 40px 0;
  }
  .trust-badges {
    padding: 0 20px;
    justify-content: center;
    gap: 30px;
  }
  .trust-badges-divider {
    display: none;
  }
  .trust-badge {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .trust-badge .badge-content {
    align-items: center;
  }
}
/* Text Block Section Styles */
/* Flexible column widths with customizable left/right content */
.text-block-wrapper {
  padding: 80px 0;
  background: #ffffff;
}
.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 {
  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: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0;
}
.text-block-row.flipped {
  flex-direction: row-reverse;
}

/* Column Width Classes */
.text-block-column {
  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 {
  align-self: stretch;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  vertical-align: middle;
}
.text-block-column.bg-image .text-block-right-content {
  background: none;
}

/* Content Styles */
.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: #6e6e6e;
  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: #6e6e6e;
}
.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;
}

/* Button Styles */
.text-block-buttons {
  gap: 16px;
  margin-top: 28px;
}

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

/* Right Side Content */
.text-block-right-content {
  padding: 30px;
  border-radius: 16px;
  background: #f8f9fa;
}
.text-block-right-content.cta-block {
  align-items: end;
  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;
}

/* Number Highlight Style */
.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: #1c1d1d;
  font-weight: 500;
  margin: 0;
}
.text-block-number p span,
.number-highlight p span {
  display: block;
  font-size: 16px;
  color: #6e6e6e;
  font-weight: 400;
  margin-top: 8px;
}

/* Image in Right Column */
.text-block-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.text-block-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Text in Right Column */
.text-block-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #6e6e6e;
  margin: 0;
}

/* Background Color Variations */
.text-block-wrapper.bg-light {
  background: #f8f9fa;
}

.text-block-wrapper.bg-dark {
  background: #1c1d1d;
  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;
  }
}

/* Responsive Styles */
@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 {
    flex-direction: column;
    padding: 0 15px;
    gap: 40px;
  }
  .text-block-row.flipped {
    flex-direction: column-reverse;
  }
  .text-block-column {
    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: 768px) {
  .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 {
    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 Styles */
.contact-block-wrapper {
  background: #f5f5f5;
}
.contact-block-wrapper .text-block-column.column-left {
  padding: 0;
  background: transparent;
}
.contact-block-wrapper .text-block-column.column-right {
  padding: 60px 50px;
  background: #f5f5f5;
}
.contact-block-wrapper .text-block-right-content {
  background: transparent;
  padding: 0;
}

.contact-map-container {
  display: flex;
  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: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 30px 0 0;
}

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

/* Contact Block Responsive */
@media (max-width: 1024px) {
  .contact-block-wrapper .text-block-column.column-right {
    padding: 40px 30px;
  }
  .contact-details {
    gap: 15px 30px;
  }
}
@media (max-width: 768px) {
  .contact-block-wrapper .text-block-column.column-right {
    padding: 30px 20px;
  }
  .contact-map {
    aspect-ratio: 16/10;
  }
  .contact-details {
    flex-direction: column;
    gap: 15px;
  }
  .contact-item {
    font-size: 14px;
  }
  .contact-item.contact-address {
    flex-basis: auto;
  }
}
/* Services Grid Section Styles */
.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: 1190px;
  margin: 0 auto 30px;
  padding: 0 30px;
}
.services-header.center {
  text-align: center;
}
.services-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1c1d1d;
  margin-bottom: 16px;
  line-height: 56px;
}
.services-header h2 .highlight {
  color: #ffcc26;
}
.services-header .subtitle {
  font-size: 20px;
  color: #6e6e6e;
  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 {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  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: 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);
}
.services-grid {
  /*
  // Optional scrollbar styling
  &::-webkit-scrollbar {
      height: 8px;
  }
  &::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.1);
      border-radius: 4px;
  }
  &::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 4px;
  }
  */
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  min-height: 400px;
  max-height: 670px;
  aspect-ratio: 1/1.5;
}
.service-card:hover {
  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: 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%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  overflow: hidden;
  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;
  transition: 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;
  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: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.3s ease;
}
.service-link svg {
  transition: transform 0.3s ease;
}
.service-link:hover {
  gap: 12px;
}
.service-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Styles */
@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: flex;
    overflow: auto;
    flex-direction: row;
    padding: 0 15px;
    gap: 10px;
  }
  .service-card {
    min-width: 60%;
  }
}
@media (max-width: 768px) {
  .services-grid-wrapper {
    padding: 50px 0;
  }
  .services-grid {
    display: flex;
    overflow: auto;
    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 Section Styles
 * Horizontal scrollable/draggable grid with lightbox
 */
.elements-grid-wrapper {
  padding: 60px 0;
  background: #ffffff;
}

.elements-header {
  text-align: left;
  max-width: 1190px;
  margin: 0 auto 30px;
  padding: 0 30px;
}
.elements-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #1a1a1a;
  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: flex;
  gap: 20px;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 30px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.elements-grid::-webkit-scrollbar {
  display: none;
}
.elements-grid.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.element-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.element-card img {
  display: block;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.element-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.element-card:hover img {
  transform: scale(1.02);
}
.element-card:hover .element-overlay {
  opacity: 1;
}
.element-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px;
  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;
  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 Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  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;
  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;
  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%;
  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;
  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;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .elements-grid-wrapper {
    padding: 50px 0;
  }
  .elements-header {
    padding: 0 30px;
    margin-bottom: 25px;
  }
  .elements-grid {
    padding: 0 30px;
    gap: 15px;
  }
}
@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;
  }
  .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 with Image / 50-50 Section Styles */
.text-and-image-wrapper {
  padding: 80px 0;
}

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

/* Image on left variant */
.text-with-image.image-left {
  grid-template-columns: 1fr 1fr;
}

.text-with-image.image-left .hero-content-wrapper {
  order: 2;
}

.text-with-image.image-left .hero-image-wrapper {
  order: 1;
}

/* Image on right variant (default) */
.text-with-image.image-right .hero-content-wrapper {
  order: 1;
}

.text-with-image.image-right .hero-image-wrapper {
  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: #1a1a1a;
}

.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: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.text-with-image .hero-button-wrapper .cta {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  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;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

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

.text-with-image .hero-button-wrapper .cta.cta-white:hover {
  border-color: #1a1a1a;
  transform: translateY(-2px);
  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%;
  object-fit: cover;
  border-radius: 24px;
}

/* Contact Form Variant */
.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 #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 16px;
  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;
  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;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* Responsive */
@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 {
    order: initial;
  }
  .text-with-image .hero-image-wrapper {
    min-height: 350px;
  }
}
@media (max-width: 768px) {
  .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 {
    flex-direction: column;
  }
  .text-with-image .hero-button-wrapper .cta {
    width: 100%;
    justify-content: center;
  }
}
/* Testimonials Section Styles */
.wp-gr .grw-header-inner, .wp-gr .grw-review-inner {
  padding: 0px !important;
}

.section.testimonials {
  background: #fff;
  color: #1c1d1d;
  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: #1c1d1d;
  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;
}

/* Owl Carousel Slides */
.slide-testimonial .slide {
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  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;
  flex-shrink: 0;
}

.slide-testimonial .message {
  font-size: 20px;
  line-height: 1.7;
  color: #1c1d1d;
  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: flex;
  gap: 6px;
  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: #1a1a1a;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  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: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

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

/* Owl Carousel Dots */
.testimonials .owl-dots {
  display: flex;
  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%;
  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);
}

/* Dark variant for light backgrounds */
.section.testimonials.light-bg {
  background: #f8f8f8;
  color: #1a1a1a;
}

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

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

.testimonials.light-bg .owl-nav button {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #1a1a1a !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: #1a1a1a !important;
}

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

/* Responsive */
@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: 768px) {
  .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;
    transform: none;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
  }
  .testimonials .owl-nav button {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
/* Logo Ticker Section (Mk III) */
.logo-ticker {
  padding: 28px 0;
  overflow: hidden;
  background: white;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  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: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

/* Dark background variant */
.logo-ticker.dark-bg {
  background: #1c1d1d;
  border-color: rgba(255, 255, 255, 0.1);
}

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

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

/* With section title */
.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: #1c1d1d;
  margin-bottom: 0;
}

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

/* Responsive */
@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: 768px) {
  .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 Styles */
.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: #1a1a1a;
  margin-bottom: 0;
}

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

.q-and-a-con {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.q-and-a-con.centre {
  align-items: center;
}

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

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

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

.accordion:hover {
  background: #f8f8f8;
}

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

/* Plus/Minus Icon */
.accordion .after {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion .after span {
  position: absolute;
  background: #1a1a1a;
  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;
  transform: rotate(90deg);
}

/* Panel */
.panel {
  padding: 0 24px;
  background: white;
  max-height: 0;
  overflow: hidden;
  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;
}

/* Light background variant */
.faq-section.light-bg {
  background: #f8f8f8;
}

/* Dark background variant */
.faq-section.dark-bg {
  background: #1a1a1a;
  padding: 80px 0;
}

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

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

.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: #333;
}

.faq-section.dark-bg .accordion.active {
  background: #333;
  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);
}

/* Responsive */
@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: 768px) {
  .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;
  }
}
/* Template Parts Styles */
.t-hidden {
  display: none !important;
  visibility: hidden !important;
}

.t-float-right {
  float: right !important;
  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 {
  flex-direction: row-reverse;
}

/*
.flipped {
    margin-left: 0 !important;
    align-content: flex-start;
}
*/
/* Free Audit CTA Section */
.free-audit-cta {
  background: #fafaff;
  padding: 80px 0;
}
.free-audit-cta .free-audit-cta__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.free-audit-cta .free-audit-cta__content {
  flex: 1;
  min-width: 0;
}
.free-audit-cta .free-audit-cta__content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #1c1d1d;
  margin-bottom: 16px;
}
.free-audit-cta .free-audit-cta__subtitle {
  font-size: 20px;
  color: #6e6e6e;
  line-height: 1.6;
  margin-bottom: 40px;
}
.free-audit-cta .free-audit-cta__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.free-audit-cta .free-audit-cta__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.free-audit-cta .free-audit-cta__step-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: 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: #1c1d1d;
  line-height: 1.3;
  margin-bottom: 6px;
}
.free-audit-cta .free-audit-cta__step-text p {
  font-size: 16px;
  color: #6e6e6e;
  line-height: 1.6;
  margin: 0;
}
.free-audit-cta .free-audit-cta__form {
  flex-shrink: 0;
  width: 420px;
}
.free-audit-cta .free-audit-cta__card {
  background: #fff;
  border-radius: 20px;
  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: #1c1d1d;
  margin-bottom: 12px;
}
.free-audit-cta .free-audit-cta__card-subtitle {
  font-size: 15px;
  color: #6e6e6e;
  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: flex;
  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: #1c1d1d;
  outline: none;
  transition: 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 {
  box-shadow: 0 0 0 2px rgba(126, 0, 245, 0.3);
}
.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;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.free-audit-cta .free-audit-cta__fallback-form button[type=submit]:visited {
  color: #1c1d1d;
}
.free-audit-cta .free-audit-cta__fallback-form button[type=submit]:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.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: #1c1d1d;
}
.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 {
  box-shadow: 0 0 0 2px rgba(126, 0, 245, 0.3);
  outline: none;
}
.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;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.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: #1c1d1d;
}
.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: #1c1d1d;
}
.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: flex;
  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: 1024px) {
  .free-audit-cta {
    padding: 50px 0;
  }
  .free-audit-cta .free-audit-cta__inner {
    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: 600px) {
  .free-audit-cta {
    padding: 40px 0;
  }
  .free-audit-cta .free-audit-cta__step {
    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: 48px;
  font-weight: 700;
  color: #1c1d1d;
  margin-bottom: 12px;
}
.insights-grid .insights-grid__subtitle {
  font-size: 20px;
  color: #6e6e6e;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}
.insights-grid .insights-grid__scroll-area {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  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: grabbing;
  scroll-behavior: auto;
}
.insights-grid .insights-grid__cards {
  display: flex;
  gap: 24px;
  margin-left: 30px;
  padding-left: calc((100vw - 1190px) / 2);
  padding-right: 40px;
  padding-bottom: 8px;
}
@media (max-width: 1400px) {
  .insights-grid .insights-grid__cards {
    padding-left: 40px;
  }
}
@media (max-width: 1024px) {
  .insights-grid .insights-grid__cards {
    padding-left: 24px;
    padding-right: 24px;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .insights-grid .insights-grid__cards {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.insights-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  width: 450px;
  position: relative;
  background: #1c1d1d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insights-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.insights-card:hover .insights-card__image img {
  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%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.insights-card .insights-card__title {
  padding: 16px 0px 20px;
  display: flex;
  /* justify-content: flex-start; */
  height: 100%;
  width: 100%;
  position: absolute;
  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: flex;
  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;
  background: #ffcc26;
  color: #1c1d1d;
  line-height: 1.5;
  padding: 5px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 42px;
  transition: all 0.2s ease;
  text-transform: none;
  border: 2px solid transparent;
}
.insights-card .insights-card__link:visited {
  color: #1c1d1d;
}
.insights-card .insights-card__link:hover {
  background: rgb(252.2, 192.9271889401, 0);
  color: #1c1d1d;
}
.insights-card .insights-card__link {
  font-size: 14px;
  padding: 10px 28px;
}
@media (max-width: 1024px) {
  .insights-card {
    width: 320px;
  }
  .insights-card .insights-card__image {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 600px) {
  .insights-card {
    width: 280px;
  }
  .insights-card .insights-card__link {
    font-size: 13px;
    padding: 8px 22px;
  }
}

.text-over-images__header {
  margin-bottom: 2rem;
}
.text-over-images__header h2 {
  margin-bottom: 0.5rem;
}
.text-over-images__header p {
  color: #6e6e6e;
}
.text-over-images__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .text-over-images__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .text-over-images__grid {
    grid-template-columns: 1fr;
  }
}
.text-over-images__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.text-over-images__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.text-over-images__card:hover img {
  transform: scale(1.05);
}
.text-over-images__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}
.text-over-images__overlay h3 {
  color: #fff;
  margin-bottom: 0.25rem;
}
.text-over-images__overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.text-over-images__cta {
  margin-top: 2rem;
  text-align: center;
}

.process-steps__header {
  text-align: center;
  margin-bottom: 3rem;
}
.process-steps__header p {
  color: #6e6e6e;
  max-width: 600px;
  margin: 0.5rem auto 0;
}
.process-steps__list {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  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 {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #efefef;
  color: #1c1d1d;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step__content h3 {
  margin-bottom: 0.25rem;
}
.process-step__content p {
  color: #6e6e6e;
}

/* Design Process Section
   Interactive hover component: step list (left) + paired image panel (right)
--------------------------------------------- */
.design-process {
  background: #fafaff;
  min-height: 850px;
}

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

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

/* -----------------------------------------------
   Steps list
----------------------------------------------- */
.design-process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.design-process__step {
  padding: 1.75rem 1.5rem;
  border-left: 4px solid transparent;
  cursor: default;
  transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transform-origin: left center;
}
.design-process__step h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #1c1d1d;
  margin: 0 0 0.5rem;
  transition: font-size 0.3s ease, color 0.3s ease;
}
.design-process__step p {
  font-size: 15px;
  line-height: 1.7;
  color: #6e6e6e;
  margin: 0;
  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 {
  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 {
  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) {
  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;
  box-shadow: 0 8px 32px rgba(28, 29, 29, 0.12);
  opacity: 0;
  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%;
  object-fit: cover;
  display: block;
}

/* -----------------------------------------------
   Mobile — hide images, remove scaling effects
----------------------------------------------- */
@media (max-width: 1024px) {
  .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 {
    transform: none;
    opacity: 1;
  }
  .design-process__steps .design-process__step:hover {
    transform: none;
  }
  .design-process__steps .design-process__step:hover + .design-process__step,
  .design-process__steps .design-process__step:has(+ .design-process__step:hover) {
    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: 600px) {
  .design-process__header {
    margin-bottom: 2rem;
  }
  .design-process__step {
    padding: 1rem 0.75rem;
  }
  .design-process__step p {
    font-size: 14px;
  }
}
.project-hero {
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
}
.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .project-info__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.project-info__tags {
  display: flex;
  gap: 0.5rem;
  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: #6e6e6e;
}
.project-info__right h3 {
  margin-bottom: 1rem;
}
.project-info__list {
  color: #6e6e6e;
}
.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 {
  margin-bottom: 2rem;
}
.project-gallery__grid {
  display: grid;
  gap: 1rem;
}
.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: 1024px) {
  .project-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .project-gallery__grid {
    grid-template-columns: 1fr;
  }
}
.project-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.project-gallery__item.span-2 {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .project-gallery__item.span-2 {
    grid-column: span 1;
  }
}
.project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.project-gallery__item:hover img {
  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;
  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: 4rem 0;
  max-width: 600px;
  margin: 0 auto;
}
.start-project-cta__inner h2 {
  margin-bottom: 0.5rem;
}
.start-project-cta__inner p {
  color: #6e6e6e;
  margin-bottom: 1.5rem;
}
.start-project-cta__inline-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}
.start-project-cta__inline-form input[type=email] {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 1px solid #efefef;
  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: #7e00f5;
}
.start-project-cta__inline-form .btn {
  border-radius: 0 42px 42px 0;
}

.careers-listing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .careers-listing__grid {
    grid-template-columns: 1fr;
  }
}
.careers-listing__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.careers-listing__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffcc26;
  color: #1c1d1d;
  font-weight: 700;
  font-size: 0.9rem;
}
.careers-listing__resume-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #7e00f5;
  font-weight: 500;
}
.careers-listing__resume-link:hover {
  text-decoration: underline;
}

.careers-role {
  padding: 1.25rem 0;
  border-bottom: 1px solid #efefef;
}
.careers-role:first-child {
  padding-top: 0;
}
.careers-role h3 {
  margin-bottom: 0.25rem;
}
.careers-role__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}
.careers-role__sep {
  color: #efefef;
}

.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: #7e00f5;
}
.careers-form__field input[type=file] {
  font-size: 0.9rem;
}

.blog-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.blog-hero .featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.blog-hero .darken {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.65));
  z-index: 1;
}
.blog-hero .page-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.blog-hero .hero-flex {
  padding: 2rem 0;
  color: #fff;
}
.blog-hero .hero-flex h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.blog-hero .author-con {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.blog-hero .author-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-hero .author-name {
  font-weight: 500;
  margin: 0;
}
.blog-hero .author-date {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}
.blog-hero .hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-hero .category-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-hero .category-tags .cat a {
  background: #ffcc26;
  color: #1c1d1d;
  padding: 0.2rem 0.75rem;
  border-radius: 42px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-hero .category-tags .cat a:hover {
  background: rgb(252.2, 192.9271889401, 0);
}
.blog-hero .share-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 42px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.blog-hero .share-button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.blog-hero .share-button svg {
  width: 16px;
  height: 16px;
}

.blog-section {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  padding: 2rem 0 3rem;
}
@media (max-width: 1024px) {
  .blog-section {
    grid-template-columns: 1fr;
  }
}
.blog-section .blog-layout h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.blog-section .blog-layout h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.blog-section .blog-layout p {
  line-height: 1.7;
  margin-bottom: 1rem;
}
.blog-section .blog-layout img {
  border-radius: 8px;
  margin: 1rem 0;
}
.blog-section .blog-layout ul, .blog-section .blog-layout ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.blog-section .blog-layout ul li, .blog-section .blog-layout ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.blog-section aside {
  position: sticky;
  top: calc(80px + 2rem);
  align-self: start;
}
@media (max-width: 1024px) {
  .blog-section aside {
    display: none;
  }
}
.blog-section aside .table-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.blog-section aside .table-of-content ul {
  list-style: none;
  padding: 0;
}
.blog-section aside .table-of-content ul li {
  margin-bottom: 0.5rem;
}
.blog-section aside .table-of-content ul a {
  color: #6e6e6e;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-section aside .table-of-content ul a:hover {
  color: #7e00f5;
}

.backlink {
  padding: 1rem 0;
  font-size: 0.9rem;
}
.backlink a {
  color: #7e00f5;
  text-decoration: none;
}
.backlink a:hover {
  text-decoration: underline;
}
.backlink span {
  color: #666;
}

.blogs-footer {
  padding: 3rem 0;
}
.blogs-footer h2 {
  margin-bottom: 1.5rem;
}
.blogs-footer .more-blogs-con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .blogs-footer .more-blogs-con {
    grid-template-columns: 1fr;
  }
}
.blogs-footer .blog a {
  text-decoration: none;
  color: inherit;
}
.blogs-footer .blog img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.blogs-footer .blog .blog-content {
  padding: 1rem 0;
}
.blogs-footer .blog h3 {
  margin-bottom: 0.25rem;
}
.blogs-footer .blog .date {
  font-size: 0.85rem;
  color: #666;
}

/* 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;
  align-items: start;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 30px;
}

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

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

.sub-services__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub-services__btn {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  background: #efefef;
  color: #1c1d1d;
  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;
  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: #1c1d1d;
  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: #1c1d1d;
  margin: 24px 0 16px;
}
.sub-services__panel p {
  font-size: 20px;
  line-height: 26px;
  color: #6e6e6e;
  margin: 0 0 28px;
}

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

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

[data-transition=fade] .sub-services__panel {
  opacity: 0;
  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;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
[data-transition=slide] .sub-services__panel.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .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 {
    flex-direction: row;
    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: 600px) {
  .sub-services {
    padding: 50px 0;
  }
  .sub-services__layout {
    padding: 0 16px;
  }
  .sub-services__image {
    display: none;
  }
  .sub-services__panel h3 {
    margin-top: 0;
  }
}
