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

.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;
  }
  .header .container {
    max-width: 1220px;
  }
  .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: #fff;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

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

body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "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;
}

h1 {
  font-size: 40px;
  line-height: 44px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: #000;
  margin-top: 0;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.2rem;
    line-height: 1.1;
  }
  h2 {
    font-size: 3rem;
    line-height: 1.1;
  }
}
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: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
  color: #6e6e6e;
}
p.larger {
  font-size: 22px !important;
  letter-spacing: 0;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

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: #fff;
}
a:visited {
  color: #f1f1f1;
}
a:hover, a:focus, a:active {
  color: #f1f1f1;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
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: #aaa #bbb #bbb;
}

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

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections
--------------------------------------------- */
/* Header / Floating Menu Styles */
/* Padding at all widths */
.header .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.header {
  width: 100%;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.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: 40px;
}

.nav {
  display: flex;
  align-items: center;
}
.nav .nav-main {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.nav .nav-main li {
  margin: 0;
  padding: 0;
}
.nav .nav-main li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}
.nav .nav-main li a:hover {
  color: #f7f8fc;
}
.nav .nav-main li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f7f8fc;
  transition: width 0.3s ease;
}
.nav .nav-main li a:hover::after {
  width: 100%;
}
.nav .nav-main .current-menu-item a {
  color: #989898;
}
.nav .nav-main .current-menu-item a::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .site-branding {
    flex-shrink: 0;
    line-height: 0;
  }
  .header-btn.btn {
    margin-right: 80px;
  }
  .nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .site-branding {
    flex-shrink: 0;
    line-height: 0;
  }
  .site-branding .logo {
    height: 50px;
    margin: 10px 0;
  }
  .header-btn.btn {
    margin-right: 80px;
    padding: 7px 9px;
    font-size: 13px;
    margin-right: 60px;
  }
  .nav {
    display: none;
  }
}
/* Mobile Navigation
@media (max-width: 1024px) {
    .header-wrapper {
        padding: 0 30px;
    }

    .nav-main {
        gap: 30px;

        a {
            font-size: 14px;
        }
    }
}

@media (max-width: 1024px) {
    .header-wrapper {
        padding: 0 20px;
    }

    .nav-main {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }

    .header-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .site-branding .logo {
        height: 40px;
    }
}
*/
/*
.site-main {
    margin-top:$mobile_header_height;
}

@media screen and (min-width:$mobile_breakpoint) {
    .site-main {
        margin-top:$desktop_header_height;
    }
}
*/
h1 span, h2 span, h3 span {
  color: #989898;
}

/* Footer Styles */
.footer-wrapper {
  color: white;
  padding: 60px 10px 0;
}

.footer-new {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1400px;
  background: black;
  margin: 0 auto;
  border-radius: 40px;
  padding: 35px;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

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

.footer-right {
  display: flex;
  flex-direction: column;
}

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

.footer-menu {
  padding: 15px 0 30px 0;
}

.footer-menu h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.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: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-menu .menu-list a:hover {
  color: white;
}

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

.footer-contact .footer-address,
.footer-contact .footer-phone,
.footer-contact .footer-email {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact .footer-phone,
.footer-contact .footer-email {
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-contact .footer-phone:hover,
.footer-contact .footer-email:hover {
  color: white;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: #000;
  transform: translateY(-3px);
}

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

.footer-social-icons a svg path {
  fill: white;
}

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

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 14px;
  color: #000;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-copyright a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright .nav-main {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.footer-copyright a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-new {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-contact {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .footer-wrapper {
    padding: 40px 15px 0;
  }
  .footer-new {
    gap: 30px;
    padding-bottom: 30px;
  }
  .footer-logo-wrapper img {
    max-height: 50px;
  }
  .footer-menus {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-menu:last-child {
    border-bottom: none;
  }
  .footer-menu h3 {
    padding: 10px 0;
    margin-bottom: 0;
    cursor: pointer;
  }
  .footer-menu {
    padding: 15px 0 0 0;
  }
  /*

  .footer-menu {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .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 .menu-list {
      height: 0;
      overflow: hidden;
      transition: height 0.3s ease;
  }


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

  .social-icons-mobile {
      display: block;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .social-icons-mobile h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 16px;
  }
  */
  .footer-copyright {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
  }
}
/* Template Parts
--------------------------------------------- */
/* Hero Section Styles */
.hero-new-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 95px);
  margin-top: 95px; /* Account for header + small gap */
  padding: 0;
  margin-bottom: 10px;
}

.hero-new {
  position: relative;
  width: 100%;
  height: calc(100vh - 85px);
  min-height: 650px;
  display: flex;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}

.hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.hero-content h1 {
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.hero-content p {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  font-weight: 300;
}

.hero-button-wrapper {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-button-wrapper .cta {
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.hero-button-wrapper .cta.red {
  background: #d32f2f;
  color: white;
  border: 2px solid #d32f2f;
}
.hero-button-wrapper .cta.red:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}
.hero-button-wrapper .cta.cta-white {
  background: white;
  color: #1a1a1a;
  border: 2px solid white;
}
.hero-button-wrapper .cta.cta-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.hero-button-wrapper .cta.video-cta svg {
  width: 12px;
  height: 12px;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto;
  max-width: calc(100% - 20px);
  left: 50%;
  transform: translateX(-50%);
}
.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-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-new-wrapper {
    min-height: calc(100vh - 95px);
    margin-top: 95px;
  }
  .hero-new {
    height: calc(100vh - 75px);
    min-height: 550px;
  }
  .hero-content-wrapper {
    padding: 100px 60px 60px;
  }
  .hero-image-wrapper {
    max-width: calc(100% - 20px);
    border-radius: 20px;
  }
}
@media (max-width: 1024px) {
  .hero-new-wrapper {
    min-height: auto;
    margin-top: 115px;
  }
  .hero-new {
    height: auto;
    min-height: 600px;
  }
  .hero-content-wrapper {
    padding: 125px 60px 60px;
    /* position: relative; */
  }
  .hero-content {
    justify-content: end;
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: clamp(36px, 6vw, 48px);
    margin-bottom: 16px;
  }
  .hero-content p {
    font-size: clamp(16px, 2.5vw, 20px);
  }
  .hero-image-wrapper {
    position: relative;
    max-width: calc(100% - 20px);
    height: 600px;
    transform: none;
    left: 0;
  }
  .hero-image-wrapper::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  }
  .hero-button-wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .hero-new-wrapper {
    min-height: auto;
    margin-top: 115px;
  }
  .hero-new {
    min-height: 550px;
  }
  .hero-content-wrapper {
    padding: 125px 60px 60px;
  }
  .hero-content h1 {
    font-size: clamp(32px, 8vw, 40px);
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-image-wrapper {
    height: 550px;
    max-width: calc(100% - 20px);
  }
  .hero-button-wrapper {
    gap: 12px;
    margin-top: 30px;
  }
  .hero-button-wrapper .btn {
    width: auto;
    justify-content: center;
    padding: 12px 24px;
  }
}
@media (max-width: 480px) {
  .hero-new-wrapper {
    height: calc(100vh - 100px);
    min-height: 500px;
    margin-top: 115px;
  }
  .hero-new {
    min-height: 500px;
  }
  .hero-content-wrapper {
    padding: 125px 30px 30px;
  }
  .hero-content {
    justify-content: end;
  }
  .hero-image-wrapper {
    height: calc(100vh - 100px);
    min-height: 500px;
    max-width: calc(100% - 20px);
  }
}
/* Trust Badges / Review Section Styles */
.trust-badges-wrapper {
  padding: 60px 0;
  background: #ffffff;
}

.trust-badges {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  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: 100px 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-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.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;
}
@media (max-width: 768px) {
  .text-block-column {
    padding: 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: cover;
}
.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, 42px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
  color: #1a1a1a;
}
.text-block-heading h3 {
  font-size: clamp(22px, 2.5vw, 32px);
}

.text-block-content {
  margin-bottom: 24px;
}
.text-block-content:last-child {
  margin-bottom: 0;
}
.text-block-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  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: #666;
}
.text-block-content ul li:last-child, .text-block-content ol li:last-child {
  margin-bottom: 0;
}
.text-block-content ul {
  list-style-type: disc;
}
.text-block-content ol {
  list-style-type: decimal;
}

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

.text-block-button,
.btn {
  padding: 10px 27px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}
.text-block-button.btn-primary,
.btn.btn-primary {
  background: #000;
  color: white;
  border-color: #000;
}
.text-block-button.btn-primary:hover,
.btn.btn-primary:hover {
  background: #0e0e0e;
  border-color: #0e0e0e;
  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: #000;
  border-color: #000;
}
.text-block-button.btn-secondary:hover,
.btn.btn-secondary:hover {
  background: #0e0e0e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(7, 35, 101, 0.2);
}
.text-block-button.btn-red,
.btn.btn-red {
  background: #d32f2f;
  color: white;
  border-color: #d32f2f;
}
.text-block-button.btn-red:hover,
.btn.btn-red:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* 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: #000;
  line-height: 1;
  margin-bottom: 16px;
}
.text-block-number p,
.number-highlight p {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 500;
  margin: 0;
}
.text-block-number p span,
.number-highlight p span {
  display: block;
  font-size: 16px;
  color: #666;
  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: #666;
  margin: 0;
}

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

.text-block-wrapper.bg-dark {
  background: #1a1a1a;
  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;
  }
}
/* 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: 50px;
  }
  .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-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;
  }
}
/* Services Grid Section Styles */
.services-grid-wrapper {
  padding: 100px 0;
  background: #ffffff;
  margin-bottom: 10px;
}
.services-grid-wrapper.bg-light {
  background: #f8f9fa;
}

.services-header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 40px;
}
.services-header.center {
  text-align: center;
}
.services-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}
.services-header h2 .highlight {
  font-weight: 300;
  color: #666;
  display: block;
}
.services-header .subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  line-height: 1.6;
  margin: 16px 0 0;
}
.services-header .subtitle.center {
  margin: 16px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.services-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.services-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.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 {
  bottom: 0px;
}
.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;
  bottom: -325px;
  transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-content h3 {
  font-size: clamp(20px, 3vw, 38px);
  max-width: 65%;
  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 {
  height: 300px;
  margin-top: 20px;
}

.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-bottom: 50px;
  }
  .services-grid {
    padding: 0 30px;
    gap: 24px;
  }
}
@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: 20px;
  }
  .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: 20px;
  }
  .service-card {
    min-width: 90%;
  }
  .service-content {
    padding: 24px;
  }
  .service-content h3 {
    font-size: 22px;
  }
  .service-content p {
    font-size: 14px;
  }
}
/* 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: 12px;
  overflow: hidden;
}

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

/* 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: #ffffff;
  color: #1a1a1a;
  padding: 100px 0;
}

.testimonials .heading {
  margin-bottom: 60px;
  text-align: center;
}
.testimonials .heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0;
}

.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 #d32f2f;
  flex-shrink: 0;
}

.slide-testimonial .message {
  font-size: 20px;
  line-height: 1.7;
  color: #1a1a1a;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}
.slide-testimonial .message::before {
  content: '"';
  font-size: 48px;
  color: #989898;
  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: #d32f2f;
  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 Styles */
.logo-ticker {
  padding: 60px 0;
  /* background: #f8f8f8; */
  overflow: hidden;
}

.logo-ticker .logoSlider {
  width: 100%;
}

.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: 60px;
  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: #1a1a1a;
}

.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: 80px 0;
}

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

.logo-ticker-title h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

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

/* 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: #000;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.1);
}

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

/* 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: #000;
}

.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: 0 0 24px 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

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

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

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

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

.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;
}
*/
/*--------------------------------------------------------------
# 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: 80px;
  height: auto;
  max-width: 100%;
  max-height: auto;
  width: calc(100% - 50px);
  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 25px;
}
.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: 20px;
  min-height: 14px;
}
.hc-nav-trigger span {
  width: 20px;
  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: white;
  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-offcanvas-nav .nav-container,
.hc-offcanvas-nav .nav-wrapper,
.hc-offcanvas-nav ul {
  width: 100%;
  background: transparent;
}
.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: 2em;
  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: 2.3em;
  padding: 15px 12px;
  text-transform: uppercase;
  color: black;
}
.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: 1.3em;
  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: rgba(7.65, 7.65, 7.65, 0);
}
.hc-offcanvas-nav .nav-custom-content {
  padding: 12px 15px;
  font-size: 1.3em;
}
.hc-offcanvas-nav .nav-highlight > .nav-item-wrapper .nav-item-link {
  border-radius: 5px;
  background: rgba(10.2, 10.2, 10.2, 0);
}
.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: rgba(0, 0, 0, 0);
}
.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 {
  font-size: 1.1em;
  border: 0;
  padding: 6px 12px;
}
.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;
  right: 15px;
}
.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: 1.3em;
  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: rgba(5.1, 5.1, 5.1, 0);
}
.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: black;
  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: #fff;
}
.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: #fff;
}
.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: #fff;
}
.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: black;
  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 {
  padding-bottom: 100px;
}
.hc-offcanvas-nav .nav-content {
  max-height: calc(100vh - 130px) !important;
}
.hc-offcanvas-nav .nav-content .nav-main {
  margin-top: -1px !important;
  background: white;
  border: 1px solid #000;
  border-radius: 10px;
  border-bottom: 1px solid #f7f8fc;
}
.hc-offcanvas-nav .nav-content .nav-main li {
  font-size: 0.8em;
}
.hc-offcanvas-nav .nav-content .nav-main li.tel {
  text-align: center;
}
.hc-offcanvas-nav .nav-content .nav-main li.tel a {
  padding-top: 12px;
}
.hc-offcanvas-nav .nav-content .nav-main li.tel a:before {
  background: url(images/icons.svg#tel) no-repeat;
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 5px;
  background-size: contain;
  display: inline-block;
  vertical-align: top;
}
.hc-offcanvas-nav .nav-content .nav-main li.button {
  text-align: center;
}
.hc-offcanvas-nav .nav-content .nav-main li.button a {
  border-radius: 16px;
  display: inline-block;
  margin: 10px 0;
  background: #000;
  color: #fff;
  padding: 5px 20px;
}
.hc-offcanvas-nav .nav-content .nav-main li .sub-menu {
  padding-top: 10px;
}
.hc-offcanvas-nav .nav-content .nav-main li .sub-menu li {
  font-size: 0.9rem;
}
.hc-offcanvas-nav .nav-content .nav-main li .sub-menu li.heading {
  font-weight: 700;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-back span {
  display: none;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-back {
  font-size: 1.1rem;
  position: relative;
  text-align: right;
  top: 10px;
  right: 10px;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-back .nav-back-button {
  font-size: 0.8em;
  display: inline-block;
  padding: 5px 10px 5px 6px;
  color: #666;
  line-height: 15px;
  text-decoration: none;
  border-radius: 3px;
  background: #e5e5e5;
  position: relative;
  border-left: none;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-back .nav-back-button:after, .hc-offcanvas-nav .nav-content .nav-main .nav-back .nav-back-button:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  margin-right: -1px;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-back .nav-back-button:after {
  top: 2px;
  border: 11px solid transparent;
  left: 100%;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-back .nav-back-button:before {
  top: 1px;
  border: 12px solid transparent;
  right: 100%;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-back .nav-back-button:before {
  border-right-color: #e5e5e5;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-item-wrapper .nav-next {
  font-size: 0.8em;
  display: inline-block;
  padding: 5px 10px 5px 6px;
  color: #666;
  line-height: 15px;
  text-decoration: none;
  border-radius: 3px;
  background: #e5e5e5;
  position: relative;
  border-left: none;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-item-wrapper .nav-next:after, .hc-offcanvas-nav .nav-content .nav-main .nav-item-wrapper .nav-next:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  margin-right: -1px;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-item-wrapper .nav-next:after {
  top: 2px;
  border: 11px solid transparent;
  left: 100%;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-item-wrapper .nav-next:before {
  top: 1px;
  border: 12px solid transparent;
  right: 100%;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-item-wrapper .nav-next {
  padding: 5px 8px 5px 8px;
  width: auto;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-item-wrapper .nav-next:after {
  display: none;
}
.hc-offcanvas-nav .nav-content .nav-main .nav-item-wrapper .nav-next {
  position: absolute;
  text-align: right;
  top: 10px;
  right: 20px;
  height: 25px;
}

@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: 120px;
    height: 120px;
  }
  .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;
  }
  .nav .nav-main li.tel a {
    color: #000;
    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: #000;
    transition: background-color 0.15s linear;
  }
  .nav .nav-main li.menu-item-has-children a {
    position: relative;
    padding-right: 20px;
  }
  .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 #000;
    border-right: 2px solid #000;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
    border-color: #000;
    top: 48%;
    right: 5px;
    border-color: #6e6e6e;
  }
  .nav .nav-main li.menu-item-has-children a:hover:after {
    border-color: #000;
  }
  .nav .nav-main li.menu-item-has-children a.active {
    color: #000;
  }
  .nav .nav-main li.menu-item-has-children a.active:after {
    border-color: #000;
  }
  .nav .nav-main li.menu-item-has-children .sub-menu {
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    padding: 20px 0;
    background: #fff;
    box-shadow: 0 0.15em 0.25em rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
    border-radius: 0 0 3px 3px;
  }
  .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: 10px 50px;
  }
  .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.active {
    display: block;
  }
  .nav .nav-main li.mega .mega-wrap {
    opacity: 0;
    visibility: hidden;
    background: #fff;
    width: 100%;
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    padding: 40px 0;
    box-shadow: 0 0.15em 0.25em rgba(0, 0, 0, 0.05);
  }
  .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: 30px 0 30px 15px;
    background: #989898;
    margin-bottom: 10px;
    text-align: left;
    width: 90%;
    background-size: cover !important;
    background-position: center;
    color: #000;
    font-size: 1.17em;
  }
  .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: 5px 3px;
    color: #929292;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children .sub-menu li a:hover {
    color: #000;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children.face .heading {
    background: url(images/face-small.jpg) no-repeat;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children.breast .heading {
    background: url(images/breast-small.jpg) no-repeat;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children.body .heading {
    background: url(images/body-small.jpg) no-repeat;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children.skin .heading {
    background: url(images/skin-small.jpg) no-repeat;
  }
  .nav .nav-main li.mega .mega-wrap .sub-menu .menu-item-has-children.non-surgical .heading {
    background: url(images/non-surgical-small.jpg) no-repeat;
  }
  .nav .nav-main li.mega .mega-wrap.active {
    opacity: 1;
    visibility: visible;
  }
}
/* 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: #000;
  border-radius: 10px;
  background: #000;
  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: #000;
  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: #000;
}

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

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 .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: #000;
  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 #000;
  border-right: 2px solid #000;
  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 #000;
  border-right: 2px solid #000;
  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 #000;
  border-right: 2px solid #000;
  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 #000;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.owl-carousel .owl-dots button.active {
  background: #000;
}

@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: #000 !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: #000 !important;
}

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

.answerPack.theme-bluey .tb-pointy-jobs {
  border-top-color: #000 !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: #000 !important; /* the bottom line */
}

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

.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: #000 !important;
}

body #answerPack .answerPack #VideosController div .flowplayer .fp-ui a:hover,
body #answerPack .answerPack.theme-bluey #result-list .tb-header-right a:hover {
  color: #000 !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: #000 !important;
}

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

.plyr--full-ui input[type=range] {
  color: #000 !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: #000;
}

.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: #000 !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: #000 !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 */
.site {
  margin-top: -85px; /* ?? */
}

.header-wrapper {
  margin: 15px auto;
  padding: 0 5px 0 5px;
  border-radius: 10px;
}
.header-wrapper .nav {
  line-height: 60px;
  height: inherit;
}

@media (max-width: 1024px) {
  .site {
    margin-top: -100px; /* ?? */
  }
  .header .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .header-wrapper {
    margin: 10px auto;
    padding: 0 5px 0 5px;
    border-radius: 10px;
  }
  .header-wrapper .nav {
    line-height: 60px;
    height: inherit;
  }
}
.hc-nav-trigger {
  right: 35px;
}

@media (max-width: 768px) {
  .site {
    margin-top: -100px;
  }
  .header .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .header .container .header-wrapper {
    margin: 10px auto;
  }
}
.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: #000;
  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: #000;
}

@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: #000;
  border-color: #000;
  background: #989898;
  line-height: 20px;
  border-width: 1px;
  padding-left: 20px;
  padding-right: 20px;
}
.boxes .box .cta:hover {
  background: #000;
  border-color: #000;
  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-size: 0.9em;
  background: #000;
  color: #fff;
  line-height: 1.5;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: background-color 0.15s linear;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #000;
}
.cta:visited {
  color: #fff;
}
.cta:hover {
  color: #000;
  background: transparent;
  border-color: #000;
}
.cta {
  margin: 0 20px 15px 0;
}
.cta.outline {
  font-size: 0.9em;
  background: #000;
  color: #fff;
  line-height: 1.5;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: background-color 0.15s linear;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #000;
}
.cta.outline:visited {
  color: #fff;
}
.cta.outline:hover {
  color: #000;
  background: transparent;
  border-color: #000;
}
.cta.outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.cta.outline:visited {
  color: #fff;
}
.cta.outline:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.cta.green {
  font-size: 0.9em;
  background: #000;
  color: #fff;
  line-height: 1.5;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: background-color 0.15s linear;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #000;
}
.cta.green:visited {
  color: #fff;
}
.cta.green:hover {
  color: #000;
  background: transparent;
  border-color: #000;
}
.cta.green {
  background: #17b3ab;
  color: #000;
  border-color: #17b3ab;
}
.cta.green:visited {
  color: #fff;
}
.cta.green:hover {
  border-color: #17b3ab;
  color: #17b3ab;
  background: transparent;
}
.cta.purple {
  font-size: 0.9em;
  background: #000;
  color: #fff;
  line-height: 1.5;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: background-color 0.15s linear;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #000;
}
.cta.purple:visited {
  color: #fff;
}
.cta.purple:hover {
  color: #000;
  background: transparent;
  border-color: #000;
}
.cta.purple {
  background: #9689e6;
}
.cta.purple:hover {
  border-color: #17b3ab;
}
.cta.red {
  font-size: 0.9em;
  background: #000;
  color: #fff;
  line-height: 1.5;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: background-color 0.15s linear;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #000;
}
.cta.red:visited {
  color: #fff;
}
.cta.red:hover {
  color: #000;
  background: transparent;
  border-color: #000;
}
.cta.red {
  background: #f74e6b;
  border-color: #f74e6b;
}
.cta.red:hover {
  background: #072365;
  border-color: #072365;
  color: #fff;
}

@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: #000;
}

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

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

.site {
  overflow: hidden;
}

.site-main {
  margin-top: -30px;
}
.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: #000;
}
.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: #000;
}
.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: #000;
}
.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: #000;
  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: #000;
  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: #000;
  padding-left: 0;
}
.summary-widget .container .row.summary .value a {
  color: #000;
  border-bottom: 1px dotted;
}

.cta-widget {
  margin-top: 20px;
  background: #000;
  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;
  }
}
