/*
 * GLOBAL VARS
 */
/*1df2c4 - green-blue* ????? - #76ceff */
/* footer - #1f283a , bot footer - #162031 */
/*'argentumsans_bold', sans-serif; /*'Quicksand', sans-serif*/
/* mobile */
/* desktop */
/* screen size to toggle mob menu*/
/* screen size to toggle slider caption*/
/* Usage:
a {
    @include links(orange, blue, yellow, teal);
}
*/
/* Using the mixin
.foo {
  @include center(both); // vertical / horizontal / both
}
.foo-parent {
  position: relative;
}
*/
/*Usage
p {
  @include font-size(14px)
  }
Output
p {
  font-size: 14px; //For unsupported browsers
  font-size: 0.8rem;
}
*/
/* Usage:
$start-color, $end-color, $orientation - vertical/horizontal/radial
.foo {
  @include linear-gradient(left, red, black)
}
*/
/* Usage
@include font-face('gotham', '/fonts/gotham');
*/
/* usage
.menu li {
  @include relative;
}

.sub-menu {
  @include absolute(top 100% left 0);
}

.sticky-bar {
  @include fixed(top 0 left 0);
}
*/
/* Fluid Text size */
/*
https://css-tricks.com/snippets/css/fluid-typography/
Usage 

$min_width: 320px;
$max_width: 1200px;
$min_font: 16px;
$max_font: 24px;

html {
  @include fluid-type($min_width, $max_width, $min_font, $max_font);
}

*/
/* Screen size */
/* Using the mixin
.foo {
  @include screen(large) {
    width: 20%;
  }
  @include screen(med) {
    width: 40%;
  }
  @include screen(med-small) {
    width: 60%;
  }
  @include screen(small) {
    width: 80%;
  }
  @include screen(custom, max, 400) {
    width: 100%;
  }
}
*/
/* Using
@include delay-loop(200, 1, 4, 500);
*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

@-ms-viewport {
  width: device-width; }
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

*,
*::before,
*::after {
  box-sizing: inherit; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }
@media (min-width: 768px) {
  .container {
    max-width: 720px; } }
@media (min-width: 992px) {
  .container {
    max-width: 960px; } }
@media (min-width: 1200px) {
  .container {
    max-width: 1170px; } }
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .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,
.col-sm-auto, .col-md-1, .col-md-2, .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,
.col-md-auto, .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,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%; }

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%; }

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%; }

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%; }

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%; }

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%; }

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%; }

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%; }

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  -ms-flex-order: -1;
  order: -1; }

.order-1 {
  -ms-flex-order: 1;
  order: 1; }

.order-2 {
  -ms-flex-order: 2;
  order: 2; }

.order-3 {
  -ms-flex-order: 3;
  order: 3; }

.order-4 {
  -ms-flex-order: 4;
  order: 4; }

.order-5 {
  -ms-flex-order: 5;
  order: 5; }

.order-6 {
  -ms-flex-order: 6;
  order: 6; }

.order-7 {
  -ms-flex-order: 7;
  order: 7; }

.order-8 {
  -ms-flex-order: 8;
  order: 8; }

.order-9 {
  -ms-flex-order: 9;
  order: 9; }

.order-10 {
  -ms-flex-order: 10;
  order: 10; }

.order-11 {
  -ms-flex-order: 11;
  order: 11; }

.order-12 {
  -ms-flex-order: 12;
  order: 12; }

.offset-1 {
  margin-left: 8.333333%; }

.offset-2 {
  margin-left: 16.666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.333333%; }

.offset-5 {
  margin-left: 41.666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.333333%; }

.offset-8 {
  margin-left: 66.666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.333333%; }

.offset-11 {
  margin-left: 91.666667%; }

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }

  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }

  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }

  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }

  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }

  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }

  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }

  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }

  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }

  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }

  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }

  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }

  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .order-sm-first {
    -ms-flex-order: -1;
    order: -1; }

  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1; }

  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2; }

  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3; }

  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4; }

  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5; }

  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6; }

  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7; }

  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8; }

  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9; }

  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10; }

  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11; }

  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12; }

  .offset-sm-0 {
    margin-left: 0; }

  .offset-sm-1 {
    margin-left: 8.333333%; }

  .offset-sm-2 {
    margin-left: 16.666667%; }

  .offset-sm-3 {
    margin-left: 25%; }

  .offset-sm-4 {
    margin-left: 33.333333%; }

  .offset-sm-5 {
    margin-left: 41.666667%; }

  .offset-sm-6 {
    margin-left: 50%; }

  .offset-sm-7 {
    margin-left: 58.333333%; }

  .offset-sm-8 {
    margin-left: 66.666667%; }

  .offset-sm-9 {
    margin-left: 75%; }

  .offset-sm-10 {
    margin-left: 83.333333%; }

  .offset-sm-11 {
    margin-left: 91.666667%; } }
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }

  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }

  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }

  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }

  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }

  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }

  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }

  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }

  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }

  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }

  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }

  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }

  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .order-md-first {
    -ms-flex-order: -1;
    order: -1; }

  .order-md-1 {
    -ms-flex-order: 1;
    order: 1; }

  .order-md-2 {
    -ms-flex-order: 2;
    order: 2; }

  .order-md-3 {
    -ms-flex-order: 3;
    order: 3; }

  .order-md-4 {
    -ms-flex-order: 4;
    order: 4; }

  .order-md-5 {
    -ms-flex-order: 5;
    order: 5; }

  .order-md-6 {
    -ms-flex-order: 6;
    order: 6; }

  .order-md-7 {
    -ms-flex-order: 7;
    order: 7; }

  .order-md-8 {
    -ms-flex-order: 8;
    order: 8; }

  .order-md-9 {
    -ms-flex-order: 9;
    order: 9; }

  .order-md-10 {
    -ms-flex-order: 10;
    order: 10; }

  .order-md-11 {
    -ms-flex-order: 11;
    order: 11; }

  .order-md-12 {
    -ms-flex-order: 12;
    order: 12; }

  .offset-md-0 {
    margin-left: 0; }

  .offset-md-1 {
    margin-left: 8.333333%; }

  .offset-md-2 {
    margin-left: 16.666667%; }

  .offset-md-3 {
    margin-left: 25%; }

  .offset-md-4 {
    margin-left: 33.333333%; }

  .offset-md-5 {
    margin-left: 41.666667%; }

  .offset-md-6 {
    margin-left: 50%; }

  .offset-md-7 {
    margin-left: 58.333333%; }

  .offset-md-8 {
    margin-left: 66.666667%; }

  .offset-md-9 {
    margin-left: 75%; }

  .offset-md-10 {
    margin-left: 83.333333%; }

  .offset-md-11 {
    margin-left: 91.666667%; } }
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }

  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }

  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }

  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }

  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }

  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }

  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }

  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }

  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }

  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }

  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }

  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }

  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .order-lg-first {
    -ms-flex-order: -1;
    order: -1; }

  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1; }

  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2; }

  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3; }

  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4; }

  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5; }

  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6; }

  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7; }

  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8; }

  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9; }

  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10; }

  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11; }

  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12; }

  .offset-lg-0 {
    margin-left: 0; }

  .offset-lg-1 {
    margin-left: 8.333333%; }

  .offset-lg-2 {
    margin-left: 16.666667%; }

  .offset-lg-3 {
    margin-left: 25%; }

  .offset-lg-4 {
    margin-left: 33.333333%; }

  .offset-lg-5 {
    margin-left: 41.666667%; }

  .offset-lg-6 {
    margin-left: 50%; }

  .offset-lg-7 {
    margin-left: 58.333333%; }

  .offset-lg-8 {
    margin-left: 66.666667%; }

  .offset-lg-9 {
    margin-left: 75%; }

  .offset-lg-10 {
    margin-left: 83.333333%; }

  .offset-lg-11 {
    margin-left: 91.666667%; } }
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }

  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }

  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }

  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }

  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }

  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }

  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }

  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }

  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }

  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }

  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }

  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }

  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .order-xl-first {
    -ms-flex-order: -1;
    order: -1; }

  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1; }

  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2; }

  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3; }

  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4; }

  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5; }

  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6; }

  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7; }

  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8; }

  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9; }

  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10; }

  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11; }

  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12; }

  .offset-xl-0 {
    margin-left: 0; }

  .offset-xl-1 {
    margin-left: 8.333333%; }

  .offset-xl-2 {
    margin-left: 16.666667%; }

  .offset-xl-3 {
    margin-left: 25%; }

  .offset-xl-4 {
    margin-left: 33.333333%; }

  .offset-xl-5 {
    margin-left: 41.666667%; }

  .offset-xl-6 {
    margin-left: 50%; }

  .offset-xl-7 {
    margin-left: 58.333333%; }

  .offset-xl-8 {
    margin-left: 66.666667%; }

  .offset-xl-9 {
    margin-left: 75%; }

  .offset-xl-10 {
    margin-left: 83.333333%; }

  .offset-xl-11 {
    margin-left: 91.666667%; } }
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important; }

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important; }

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important; }

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important; }

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important; }

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important; }

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important; }

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important; }

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important; }

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important; }

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important; }

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important; }

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important; }

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important; }

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important; }

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important; }

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important; }

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important; }

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important; }

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important; }

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important; }

  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important; }

  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }

  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }

  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }

  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }

  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important; }

  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }

  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important; }

  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important; }

  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important; }

  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }

  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important; }

  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important; }

  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }

  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }

  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }

  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }

  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important; }

  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }

  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important; }

  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important; }

  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important; }

  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }

  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important; }

  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important; }

  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }

  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }

  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }

  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }

  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important; }

  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }

  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important; }

  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important; }

  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important; }

  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }

  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important; }

  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important; }

  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }

  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }

  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }

  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }

  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important; }

  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }

  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important; }

  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important; }

  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important; }

  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }

  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.animated.infinite {
  animation-iteration-count: infinite; }

.animated.hinge {
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }
.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  animation-name: flash; }

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }
.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }
.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }
.tada {
  animation-name: tada; }

@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }
.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }
.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }
.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }
.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }
.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }
.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }
.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }
.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }
.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }
.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  animation-name: hinge; }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }
.jackInTheBox {
  animation-name: jackInTheBox; }

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }
.rollIn {
  animation-name: rollIn; }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }
.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }
.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }
.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  animation-name: slideOutUp; }

@-webkit-keyframes blinking {
  from {
    opacity: 0; }
  50% {
    opacity: 1; }
  to {
    opacity: 0; } }
@-moz-keyframes blinking {
  from {
    opacity: 0; }
  50% {
    opacity: 1; }
  to {
    opacity: 0; } }
@-ms-keyframes blinking {
  from {
    opacity: 0; }
  50% {
    opacity: 1; }
  to {
    opacity: 0; } }
@-o-keyframes blinking {
  from {
    opacity: 0; }
  50% {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes blinking {
  from {
    opacity: 0; }
  50% {
    opacity: 1; }
  to {
    opacity: 0; } }
@-webkit-keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F18721; }
  to {
    color: #fff; } }
@-moz-keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F18721; }
  to {
    color: #fff; } }
@-ms-keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F18721; }
  to {
    color: #fff; } }
@-o-keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F18721; }
  to {
    color: #fff; } }
@keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F18721; }
  to {
    color: #fff; } }
@-webkit-keyframes fadeInUpSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-moz-keyframes fadeInUpSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-ms-keyframes fadeInUpSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-o-keyframes fadeInUpSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInUpSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.fadeInUpSm {
  -webkit-animation-name: fadeInUpSm;
  -moz-animation-name: fadeInUpSm;
  -ms-animation-name: fadeInUpSm;
  -o-animation-name: fadeInUpSm;
  animation-name: fadeInUpSm; }

@-webkit-keyframes fadeInDownSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-moz-keyframes fadeInDownSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-ms-keyframes fadeInDownSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-o-keyframes fadeInDownSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInDownSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.fadeInDownSm {
  -webkit-animation-name: fadeInDownSm;
  -moz-animation-name: fadeInDownSm;
  -ms-animation-name: fadeInDownSm;
  -o-animation-name: fadeInDownSm;
  animation-name: fadeInDownSm; }

@-webkit-keyframes fadeInRightSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-moz-keyframes fadeInRightSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-ms-keyframes fadeInRightSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-o-keyframes fadeInRightSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInRightSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.fadeInRightSm {
  -webkit-animation-name: fadeInRightSm;
  -moz-animation-name: fadeInRightSm;
  -ms-animation-name: fadeInRightSm;
  -o-animation-name: fadeInRightSm;
  animation-name: fadeInRightSm; }

@-webkit-keyframes fadeInLeftSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -moz-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-moz-keyframes fadeInLeftSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -moz-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-ms-keyframes fadeInLeftSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -moz-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-o-keyframes fadeInLeftSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -moz-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInLeftSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -moz-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.fadeInLeftSm {
  -webkit-animation-name: fadeInLeftSm;
  -moz-animation-name: fadeInLeftSm;
  -ms-animation-name: fadeInLeftSm;
  -o-animation-name: fadeInLeftSm;
  animation-name: fadeInLeftSm; }

@-webkit-keyframes fadeInLeftMd {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    -moz-transform: translate3d(-60px, 0, 0);
    -ms-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-moz-keyframes fadeInLeftMd {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    -moz-transform: translate3d(-60px, 0, 0);
    -ms-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-ms-keyframes fadeInLeftMd {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    -moz-transform: translate3d(-60px, 0, 0);
    -ms-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@-o-keyframes fadeInLeftMd {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    -moz-transform: translate3d(-60px, 0, 0);
    -ms-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInLeftMd {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    -moz-transform: translate3d(-60px, 0, 0);
    -ms-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.fadeInLeftMd {
  -webkit-animation-name: fadeInLeftMd;
  -moz-animation-name: fadeInLeftMd;
  -ms-animation-name: fadeInLeftMd;
  -o-animation-name: fadeInLeftMd;
  animation-name: fadeInLeftMd; }

@-webkit-keyframes bgchange {
  0% {
    background: #A9472E; }
  50% {
    background: #F18721; }
  100% {
    background: #A9472E; } }
@-moz-keyframes bgchange {
  0% {
    background: #A9472E; }
  50% {
    background: #F18721; }
  100% {
    background: #A9472E; } }
@-ms-keyframes bgchange {
  0% {
    background: #A9472E; }
  50% {
    background: #F18721; }
  100% {
    background: #A9472E; } }
@-o-keyframes bgchange {
  0% {
    background: #A9472E; }
  50% {
    background: #F18721; }
  100% {
    background: #A9472E; } }
@keyframes bgchange {
  0% {
    background: #A9472E; }
  50% {
    background: #F18721; }
  100% {
    background: #A9472E; } }
.bgchange {
  -webkit-animation-name: bgchange;
  -moz-animation-name: bgchange;
  -ms-animation-name: bgchange;
  -o-animation-name: bgchange;
  animation-name: bgchange; }

@-webkit-keyframes PreloaderSpin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes PreloaderSpin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes backgroundloop {
  0% {
    background-position: 0 0; }
  100% {
    background-position: -2000px 0; } }
@keyframes shpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(241, 135, 33, 0.4); }
  70% {
    box-shadow: 0 0 0 20px rgba(241, 135, 33, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(241, 135, 33, 0); } }
@keyframes shpulse_sm {
  0% {
    box-shadow: 0 0 0 0 rgba(90, 125, 120, 0.4); }
  70% {
    box-shadow: 0 0 0 10px rgba(90, 125, 120, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 125, 120, 0); } }
@keyframes g_blinking {
  from {
    background: #44cd00; }
  50% {
    background: #fff; }
  to {
    background: #44cd00; } }
@keyframes shine {
  100% {
    left: 135%; } }
/* ==========================================================================
   Basic styles
   ========================================================================== */
body {
  font-family: "Quattrocento", serif;
  color: #353535;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  background: #fff; }
  @media screen and (max-width: 520px) {
    body {
      font-size: 16px; } }
  @media screen and (max-width: 1200px) {
    body.menu-opened {
      overflow: hidden; } }

::-webkit-selection {
  background: #A9472E;
  color: #fff;
  text-shadow: none; }

::-moz-selection {
  background: #A9472E;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #A9472E;
  color: #fff;
  text-shadow: none; }

.container,
.container-fluid,
.kb-theme-content-width {
  width: 1580px;
  max-width: 100% !important; }
  @media screen and (max-width: 1200px) {
    .container,
    .container-fluid,
    .kb-theme-content-width {
      padding-left: 20px;
      padding-right: 20px; } }

.container-wide {
  padding-left: 20px;
  padding-right: 20px;
  width: 1740px;
  max-width: 100% !important;
  margin-left: auto;
  margin-right: auto; }

.container-full {
  padding-left: 15px;
  padding-right: 15px; }
  .container-full.padding-0 {
    padding: 0; }

#maincontentcontainer {
  background: #fff;
  z-index: 50; }

.site-content {
  padding: 64px 15px 40px 15px; }
  @media screen and (max-width: 768px) {
    .site-content {
      padding: 48px 20px 32px 20px;
      /* Since we have wrapper padding: */ }
      .site-content > .container-fluid, .site-content > .container-wide {
        padding-left: 0;
        padding-right: 0; } }

.home.page .site-content,
.page-template-full-width .site-content,
.page-template-location-page .site-content,
.page-template-blank-page .site-content,
.page-template-blanktitle-page .site-content,
.page-template-contact-page .site-content {
  padding: 0; }
  .home.page .site-content article,
  .home.page .site-content .entry-content,
  .page-template-full-width .site-content article,
  .page-template-full-width .site-content .entry-content,
  .page-template-location-page .site-content article,
  .page-template-location-page .site-content .entry-content,
  .page-template-blank-page .site-content article,
  .page-template-blank-page .site-content .entry-content,
  .page-template-blanktitle-page .site-content article,
  .page-template-blanktitle-page .site-content .entry-content,
  .page-template-contact-page .site-content article,
  .page-template-contact-page .site-content .entry-content {
    margin-bottom: 0; }

.home.page .kb-theme-content-width,
.page-template-front-page .kb-theme-content-width,
.page-template-full-width .kb-theme-content-width,
.page-template-blanktitle-page .kb-theme-content-width {
  width: 1740px; }

.wow {
  visibility: hidden;
  animation-fill-mode: backwards; }

/*@font-face {
    font-family: 'argentumsans_semibold';
    font-display: swap;
    src: url('../fonts/argentumsans_semibold.eot');
    src: url('../fonts/argentumsans_semibold.eot') format('embedded-opentype'),
         url('../fonts/argentumsans_semibold.woff2') format('woff2'),
         url('../fonts/argentumsans_semibold.woff') format('woff'),
         url('../fonts/argentumsans_semibold.ttf') format('truetype'),
         url('./fonts/argentumsans_semibold.svg#argentumsans_semibold') format('svg');
}
@font-face {
    font-family: 'argentumsans_bold';
    font-display: swap;
    src: url('../fonts/argentumsans_bold.eot');
    src: url('../fonts/argentumsans_bold.eot') format('embedded-opentype'),
         url('../fonts/argentumsans_bold.woff2') format('woff2'),
         url('../fonts/argentumsans_bold.woff') format('woff'),
         url('../fonts/argentumsans_bold.ttf') format('truetype'),
         url('./fonts/argentumsans_bold.svg#argentumsans_bold') format('svg');
}*/
@font-face {
  font-family: 'Argentum Sans';
  src: url("../fonts/ArgentumSans-Bold.eot");
  src: url("../fonts/ArgentumSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ArgentumSans-Bold.woff2") format("woff2"), url("../fonts/ArgentumSans-Bold.woff") format("woff"), url("../fonts/ArgentumSans-Bold.ttf") format("truetype"), url("../fonts/ArgentumSans-Bold.svg#ArgentumSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Argentum Sans';
  src: url("../fonts/ArgentumSans-SemiBold.eot");
  src: url("../fonts/ArgentumSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/ArgentumSans-SemiBold.woff2") format("woff2"), url("../fonts/ArgentumSans-SemiBold.woff") format("woff"), url("../fonts/ArgentumSans-SemiBold.ttf") format("truetype"), url("../fonts/ArgentumSans-SemiBold.svg#ArgentumSans-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }
/*@font-face {
    font-family: 'Argentum Sans';
    src: url('../fonts/ArgentumSans-Medium.eot');
    src: url('../fonts/ArgentumSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ArgentumSans-Medium.woff2') format('woff2'),
        url('../fonts/ArgentumSans-Medium.woff') format('woff'),
        url('../fonts/ArgentumSans-Medium.ttf') format('truetype'),
        url('../fonts/ArgentumSans-Medium.svg#ArgentumSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Argentum Sans";
  line-height: normal;
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  color: #353535;
  padding: 0;
  margin: 0 0 0.75em 0; }
  h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-weight: inherit; }

h1 {
  font-size: 30px; }
  @media screen and (min-width: 320px) {
    h1 {
      font-size: calc(30px + 14 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    h1 {
      font-size: 44px !important; } }

h2 {
  font-size: 26px; }
  @media screen and (min-width: 320px) {
    h2 {
      font-size: calc(26px + 12 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    h2 {
      font-size: 38px !important; } }

h3 {
  font-weight: 600; }
  h3 {
    font-size: 22px; }
    @media screen and (min-width: 320px) {
      h3 {
        font-size: calc(22px + 10 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      h3 {
        font-size: 32px !important; } }

h4 {
  font-weight: 600; }
  h4 {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      h4 {
        font-size: calc(18px + 10 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      h4 {
        font-size: 28px !important; } }

h5 {
  font-weight: 600; }
  h5 {
    font-size: 16px; }
    @media screen and (min-width: 320px) {
      h5 {
        font-size: calc(16px + 8 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      h5 {
        font-size: 24px !important; } }

h6 {
  font-weight: 600; }
  h6 {
    font-size: 14px; }
    @media screen and (min-width: 320px) {
      h6 {
        font-size: calc(14px + 6 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      h6 {
        font-size: 20px !important; } }

a {
  color: #A9472E;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none; }
  a:hover {
    color: #F18721; }

/* ==========================================================================
   General style of forms
   ========================================================================== */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #2b2b2b; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #2b2b2b; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #2b2b2b; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #2b2b2b; }

.grecaptcha-badge {
  opacity: 0 !important;
  width: 0 !important; }

.has-captcha-shift form.forminator-ui {
  margin: 0 !important; }
  .has-captcha-shift form.forminator-ui .forminator-row-last {
    /* to fix recpatcha shift */
    margin-top: -30px !important; }
    @media screen and (max-width: 782px) {
      .has-captcha-shift form.forminator-ui .forminator-row-last {
        margin-top: 0 !important; } }

form {
  position: relative; }
  form input[type="text"],
  form input[type="password"],
  form input[type="email"],
  form input[type="file"],
  form input[type="url"],
  form input[type="tel"],
  form input[type="date"],
  form input[type="search"],
  form input[type="number"],
  form textarea,
  form select {
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Quattrocento", serif;
    background: #fff;
    border: none;
    box-shadow: 0px 2px 15px rgba(131, 141, 169, 0.14);
    width: 100%;
    color: #3d4046;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; }
    @media screen and (max-width: 600px) {
      form input[type="text"],
      form input[type="password"],
      form input[type="email"],
      form input[type="file"],
      form input[type="url"],
      form input[type="tel"],
      form input[type="date"],
      form input[type="search"],
      form input[type="number"],
      form textarea,
      form select {
        font-size: 16px;
        padding: 10px 15px; } }
    form input[type="text"]:focus,
    form input[type="password"]:focus,
    form input[type="email"]:focus,
    form input[type="file"]:focus,
    form input[type="url"]:focus,
    form input[type="tel"]:focus,
    form input[type="date"]:focus,
    form input[type="search"]:focus,
    form input[type="number"]:focus,
    form textarea:focus,
    form select:focus {
      border-color: #F18721; }
  form select {
    min-height: 44px; }
    @media screen and (max-width: 600px) {
      form select {
        min-height: 40px; } }
    form select option {
      padding: 10px;
      font-size: 85%; }
  form textarea {
    height: 80px;
    overflow: auto; }
  form .forminator-label {
    display: none; }
  form .show-label .forminator-label {
    display: block;
    width: 100%; }
  form div[id*="textarea-"] .forminator-field {
    position: relative; }
    form div[id*="textarea-"] .forminator-field .forminator-description {
      padding: 10px;
      font-size: 12px;
      color: #353535;
      right: 0;
      bottom: 0;
      position: absolute;
      z-index: 20; }
  .gray form .forminator-field input, .gray form .forminator-field select, .gray form .forminator-field textarea {
    font-size: 14px !important;
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    box-shadow: none; }
    .gray form .forminator-field input:focus, .gray form .forminator-field select:focus, .gray form .forminator-field textarea:focus {
      background: #fff;
      border-color: #F18721; }
  form .forminator-row.forminator-row-last {
    margin-bottom: 0 !important; }
  form .forminator-multi-upload {
    padding: 15px !important; }
  form .forminator-error-message {
    color: #dc0505;
    font-size: 14px; }
  form .forminator-error ul {
    color: #ff6c00; }
  form .forminator-success {
    color: #fff;
    background: #00c264;
    padding: 10px 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px; }
  form.forminator-design--material .forminator-row {
    margin-bottom: 12px !important; }
  form.forminator-design--material textarea {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important; }
  form.forminator-design--material .forminator-button {
    background: #A9472E !important;
    font-family: "Argentum Sans" !important;
    padding: 12px 35px 12px 35px !important;
    font-weight: bold; }
    form.forminator-design--material .forminator-button:hover {
      background: #F18721 !important; }

/** Buttons */
input[type="submit"], .wpforms-submit, .wp-block-button__link, .btn, .forminator-button, .button {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  font-family: "Argentum Sans";
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  padding: 0.55em 1.35em 0.55em 1.35em;
  min-width: 160px;
  text-align: center;
  line-height: 1.4;
  background: #A9472E;
  border: 1px solid #A9472E;
  color: #fff !important;
  text-shadow: none;
  border-radius: 0;
  font-size: 20px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s; }
  input[type="submit"], .wpforms-submit, .wp-block-button__link, .btn, .forminator-button, .button {
    font-size: 16px; }
    @media screen and (min-width: 320px) {
      input[type="submit"], .wpforms-submit, .wp-block-button__link, .btn, .forminator-button, .button {
        font-size: calc(16px + 4 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      input[type="submit"], .wpforms-submit, .wp-block-button__link, .btn, .forminator-button, .button {
        font-size: 20px !important; } }
  input[type="submit"] img, .wpforms-submit img, .wp-block-button__link img, .btn img, .forminator-button img, .button img {
    vertical-align: top;
    margin-right: 8px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
  input[type="submit"]:hover, .wpforms-submit:hover, .wp-block-button__link:hover, .btn:hover, .forminator-button:hover, .button:hover {
    background: #F18721;
    border-color: #F18721;
    color: #fff !important; }
  input[type="submit"] > *, .wpforms-submit > *, .wp-block-button__link > *, .btn > *, .forminator-button > *, .button > * {
    position: relative; }
  input[type="submit"].white, .white > input[type="submit"], .wpforms-submit.white, .white > .wpforms-submit, .wp-block-button__link.white, .white > .wp-block-button__link, .btn.white, .white > .btn, .forminator-button.white, .white > .forminator-button, .button.white, .white > .button {
    background: #fff;
    border-color: #fff;
    color: #353535 !important; }
    input[type="submit"].white:hover, .white > input[type="submit"]:hover, .wpforms-submit.white:hover, .white > .wpforms-submit:hover, .wp-block-button__link.white:hover, .white > .wp-block-button__link:hover, .btn.white:hover, .white > .btn:hover, .forminator-button.white:hover, .white > .forminator-button:hover, .button.white:hover, .white > .button:hover {
      background: #A9472E;
      border-color: #A9472E;
      color: #fff !important; }
  input[type="submit"].orange, .orange > input[type="submit"], .wpforms-submit.orange, .orange > .wpforms-submit, .wp-block-button__link.orange, .orange > .wp-block-button__link, .btn.orange, .orange > .btn, .forminator-button.orange, .orange > .forminator-button, .button.orange, .orange > .button {
    background: #F18721;
    border-color: #F18721;
    color: #fff !important; }
    input[type="submit"].orange:hover, .orange > input[type="submit"]:hover, .wpforms-submit.orange:hover, .orange > .wpforms-submit:hover, .wp-block-button__link.orange:hover, .orange > .wp-block-button__link:hover, .btn.orange:hover, .orange > .btn:hover, .forminator-button.orange:hover, .orange > .forminator-button:hover, .button.orange:hover, .orange > .button:hover {
      background: #A9472E;
      border-color: #A9472E;
      color: #fff !important; }
  input[type="submit"].outline, .outline > input[type="submit"], .wpforms-submit.outline, .outline > .wpforms-submit, .wp-block-button__link.outline, .outline > .wp-block-button__link, .btn.outline, .outline > .btn, .forminator-button.outline, .outline > .forminator-button, .button.outline, .outline > .button {
    background: rgba(0, 0, 0, 0);
    border-color: #A9472E;
    color: #A9472E !important; }
    input[type="submit"].outline:hover, .outline > input[type="submit"]:hover, .wpforms-submit.outline:hover, .outline > .wpforms-submit:hover, .wp-block-button__link.outline:hover, .outline > .wp-block-button__link:hover, .btn.outline:hover, .outline > .btn:hover, .forminator-button.outline:hover, .outline > .forminator-button:hover, .button.outline:hover, .outline > .button:hover {
      background: #A9472E;
      border-color: #A9472E;
      color: #fff !important; }
  input[type="submit"].outline-white, .outline-white > input[type="submit"], .wpforms-submit.outline-white, .outline-white > .wpforms-submit, .wp-block-button__link.outline-white, .outline-white > .wp-block-button__link, .btn.outline-white, .outline-white > .btn, .forminator-button.outline-white, .outline-white > .forminator-button, .button.outline-white, .outline-white > .button {
    background: rgba(0, 0, 0, 0);
    border-color: #fff;
    color: #fff !important; }
    input[type="submit"].outline-white:hover, .outline-white > input[type="submit"]:hover, .wpforms-submit.outline-white:hover, .outline-white > .wpforms-submit:hover, .wp-block-button__link.outline-white:hover, .outline-white > .wp-block-button__link:hover, .btn.outline-white:hover, .outline-white > .btn:hover, .forminator-button.outline-white:hover, .outline-white > .forminator-button:hover, .button.outline-white:hover, .outline-white > .button:hover {
      background: #5A7D78;
      border-color: #5A7D78;
      color: #fff !important; }
  input[type="submit"].hover-w:hover, .hover-w > input[type="submit"]:hover, .wpforms-submit.hover-w:hover, .hover-w > .wpforms-submit:hover, .wp-block-button__link.hover-w:hover, .hover-w > .wp-block-button__link:hover, .btn.hover-w:hover, .hover-w > .btn:hover, .forminator-button.hover-w:hover, .hover-w > .forminator-button:hover, .button.hover-w:hover, .hover-w > .button:hover {
    background: #fff;
    border-color: #fff;
    color: #A9472E !important; }
  input[type="submit"].btn-lg, .btn-lg > input[type="submit"], .wpforms-submit.btn-lg, .btn-lg > .wpforms-submit, .wp-block-button__link.btn-lg, .btn-lg > .wp-block-button__link, .btn.btn-lg, .btn-lg > .btn, .forminator-button.btn-lg, .btn-lg > .forminator-button, .button.btn-lg, .btn-lg > .button {
    padding: 0.7em 1.75em;
    min-width: 180px; }
    input[type="submit"].btn-lg, .btn-lg > input[type="submit"], .wpforms-submit.btn-lg, .btn-lg > .wpforms-submit, .wp-block-button__link.btn-lg, .btn-lg > .wp-block-button__link, .btn.btn-lg, .btn-lg > .btn, .forminator-button.btn-lg, .btn-lg > .forminator-button, .button.btn-lg, .btn-lg > .button {
      font-size: 17px; }
      @media screen and (min-width: 320px) {
        input[type="submit"].btn-lg, .btn-lg > input[type="submit"], .wpforms-submit.btn-lg, .btn-lg > .wpforms-submit, .wp-block-button__link.btn-lg, .btn-lg > .wp-block-button__link, .btn.btn-lg, .btn-lg > .btn, .forminator-button.btn-lg, .btn-lg > .forminator-button, .button.btn-lg, .btn-lg > .button {
          font-size: calc(17px + 5 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        input[type="submit"].btn-lg, .btn-lg > input[type="submit"], .wpforms-submit.btn-lg, .btn-lg > .wpforms-submit, .wp-block-button__link.btn-lg, .btn-lg > .wp-block-button__link, .btn.btn-lg, .btn-lg > .btn, .forminator-button.btn-lg, .btn-lg > .forminator-button, .button.btn-lg, .btn-lg > .button {
          font-size: 22px !important; } }
  input[type="submit"].btn-sm, .btn-sm > input[type="submit"], .wpforms-submit.btn-sm, .btn-sm > .wpforms-submit, .wp-block-button__link.btn-sm, .btn-sm > .wp-block-button__link, .btn.btn-sm, .btn-sm > .btn, .forminator-button.btn-sm, .btn-sm > .forminator-button, .button.btn-sm, .btn-sm > .button {
    min-width: 110px;
    padding: 0.45em 1.5em; }
    input[type="submit"].btn-sm, .btn-sm > input[type="submit"], .wpforms-submit.btn-sm, .btn-sm > .wpforms-submit, .wp-block-button__link.btn-sm, .btn-sm > .wp-block-button__link, .btn.btn-sm, .btn-sm > .btn, .forminator-button.btn-sm, .btn-sm > .forminator-button, .button.btn-sm, .btn-sm > .button {
      font-size: 14px; }
      @media screen and (min-width: 320px) {
        input[type="submit"].btn-sm, .btn-sm > input[type="submit"], .wpforms-submit.btn-sm, .btn-sm > .wpforms-submit, .wp-block-button__link.btn-sm, .btn-sm > .wp-block-button__link, .btn.btn-sm, .btn-sm > .btn, .forminator-button.btn-sm, .btn-sm > .forminator-button, .button.btn-sm, .btn-sm > .button {
          font-size: calc(14px + 2 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        input[type="submit"].btn-sm, .btn-sm > input[type="submit"], .wpforms-submit.btn-sm, .btn-sm > .wpforms-submit, .wp-block-button__link.btn-sm, .btn-sm > .wp-block-button__link, .btn.btn-sm, .btn-sm > .btn, .forminator-button.btn-sm, .btn-sm > .forminator-button, .button.btn-sm, .btn-sm > .button {
          font-size: 16px !important; } }
  input[type="submit"].full, .full > input[type="submit"], .wpforms-submit.full, .full > .wpforms-submit, .wp-block-button__link.full, .full > .wp-block-button__link, .btn.full, .full > .btn, .forminator-button.full, .full > .forminator-button, .button.full, .full > .button {
    display: block;
    width: 100%; }
  input[type="submit"].wider, .wider > input[type="submit"], .wpforms-submit.wider, .wider > .wpforms-submit, .wp-block-button__link.wider, .wider > .wp-block-button__link, .btn.wider, .wider > .btn, .forminator-button.wider, .wider > .forminator-button, .button.wider, .wider > .button {
    padding-left: 2.5em;
    padding-right: 2.5em; }

/* Social Media icons */
.social-media-icons {
  height: auto; }
  .social-media-icons h4 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    padding: 0;
    font-weight: 400;
    font-size: 18px !important; }
  .social-media-icons ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle; }
    .social-media-icons ul li {
      display: inline-block;
      vertical-align: middle;
      margin: 5px 5px;
      text-align: center;
      font-size: 22px; }
      .social-media-icons ul li a {
        text-decoration: none;
        display: block;
        width: 48px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        border: 1px solid #fff !important;
        color: #fff !important;
        background-color: rgba(0, 0, 0, 0);
        position: relative;
        top: 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%; }
        .social-media-icons ul li a i {
          position: relative;
          z-index: 20; }
        .social-media-icons ul li a:hover {
          color: #fff !important;
          border-color: #A9472E !important;
          background-color: #A9472E; }
          .social-media-icons ul li a:hover .fa-homestars {
            background-image: url("../images/homestars.png"); }
  .social-media-icons .fa-homestars {
    background: url("../images/homestars_w.png") no-repeat center center;
    background-size: contain;
    width: 60%;
    margin: 0 auto;
    padding-top: 100%;
    display: block; }

/* ==========================================================================
   Header Section
   ========================================================================== */
#headercontainer {
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 500; }
  #headercontainer.scrolled {
    background: #fff;
    box-shadow: 0 0 35px rgba(56, 59, 67, 0.2);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    animation: fadeInDownSm 0.6s; }
    @media screen and (max-width: 1200px) {
      #headercontainer.scrolled {
        box-shadow: 0 0 25px rgba(56, 59, 67, 0.2); } }
    .admin-bar #headercontainer.scrolled {
      margin-top: 32px; }
  #headercontainer #headertop {
    background: #F18721;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 16px; }
    #headercontainer #headertop p {
      margin: 0; }
  #headercontainer .site-header {
    padding: 0;
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    #headercontainer .site-header .logo {
      width: 250px;
      max-width: 30%;
      padding-top: 10px;
      padding-bottom: 10px;
      z-index: 10; }
      #headercontainer .site-header .logo a {
        display: inline-block;
        vertical-align: middle;
        position: relative; }
        #headercontainer .site-header .logo a img {
          transition: all 0.3s; }
      #headercontainer .site-header .logo .logo-caption {
        text-align: center;
        color: #353535; }
        @media screen and (max-width: 480px) {
          #headercontainer .site-header .logo .logo-caption {
            font-size: 14px; } }
      @media screen and (max-width: 768px) {
        #headercontainer .site-header .logo {
          max-width: 45%; } }
      @media screen and (max-width: 600px) {
        #headercontainer .site-header .logo {
          max-width: 55%; } }
    #headercontainer .site-header .header-right {
      /* flex: 1; */
      margin-left: auto; }
      @media screen and (max-width: 1200px) {
        #headercontainer .site-header .header-right {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          /*
          flex-direction: row | row-reverse | column | column-reverse;
          */
          -webkit-flex-direction: row;
          flex-direction: row;
          /*
          horizontally
          justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
          */
          -webkit-justify-content: space-between;
          justify-content: space-between;
          /*
          vertically
          align-items: flex-start | flex-end | center | baseline | stretch;
          */
          -webkit-align-items: center;
          align-items: center;
          -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: none;
          flex-wrap: nowrap; } }
    #headercontainer .site-header .header-widgets {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      /*
      flex-direction: row | row-reverse | column | column-reverse;
      */
      -webkit-flex-direction: row;
      flex-direction: row;
      /*
      horizontally
      justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
      */
      -webkit-justify-content: space-between;
      justify-content: space-between;
      /*
      vertically
      align-items: flex-start | flex-end | center | baseline | stretch;
      */
      -webkit-align-items: center;
      align-items: center;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      padding: 20px 0;
      gap: 48px; }
      @media screen and (max-width: 1365px) {
        #headercontainer .site-header .header-widgets {
          gap: 32px; } }
      @media screen and (min-width: 1200px) {
        #headercontainer .site-header .header-widgets {
          border-bottom: 1px solid #D6D6D6; } }
      #headercontainer .site-header .header-widgets .link-box {
        color: #353535;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        /*
        flex-direction: row | row-reverse | column | column-reverse;
        */
        -webkit-flex-direction: row;
        flex-direction: row;
        /*
        horizontally
        justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
        */
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        /*
        vertically
        align-items: flex-start | flex-end | center | baseline | stretch;
        */
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: none;
        flex-wrap: nowrap;
        gap: 16px; }
        #headercontainer .site-header .header-widgets .link-box:hover {
          color: #5A7D78; }
        #headercontainer .site-header .header-widgets .link-box .caption b {
          display: block;
          font-size: 14px;
          font-weight: 400; }
        #headercontainer .site-header .header-widgets .link-box .caption em {
          display: block;
          font-size: 18px;
          font-style: normal; }
      @media screen and (max-width: 1279px) {
        #headercontainer .site-header .header-widgets .header-badges {
          display: none; } }
      @media screen and (max-width: 1200px) {
        #headercontainer .site-header .header-widgets .available-today {
          display: none; }
        #headercontainer .site-header .header-widgets .contact-btn .btn {
          font-size: 14px !important; } }
      @media screen and (max-width: 768px) {
        #headercontainer .site-header .header-widgets .contact-btn {
          display: none; } }
      @media screen and (max-width: 600px) {
        #headercontainer .site-header .header-widgets .phone-box .caption {
          display: none; } }

.is-sticky .sticker {
  left: 0;
  right: 0;
  width: auto !important;
  background: #fff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2) !important;
  z-index: 999 !important; }
  .admin-bar .is-sticky .sticker {
    margin-top: 32px; }

/* ==========================================================================
   Main Navigation
   ========================================================================== */
.main-menu-toggler {
  display: none;
  cursor: pointer;
  color: #5A7D78;
  background: #fff;
  font-size: 20px;
  border: none;
  line-height: 1em;
  box-sizing: border-box;
  z-index: 300;
  text-align: center;
  padding: 15px 10px;
  margin-left: 15px;
  width: auto; }
  @media screen and (max-width: 1200px) {
    .main-menu-toggler {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      /*
      flex-direction: row | row-reverse | column | column-reverse;
      */
      -webkit-flex-direction: row;
      flex-direction: row;
      /*
      horizontally
      justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
      */
      -webkit-justify-content: center;
      justify-content: center;
      /*
      vertically
      align-items: flex-start | flex-end | center | baseline | stretch;
      */
      -webkit-align-items: center;
      align-items: center;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap;
      order: 10; } }
  .main-menu-toggler .lbl {
    display: none;
    vertical-align: bottom;
    text-transform: uppercase; }
  .main-menu-toggler .bar {
    width: 40px;
    height: 20px;
    position: relative;
    display: inline-block;
    vertical-align: middle; }
    .main-menu-toggler .bar i {
      display: block;
      position: relative;
      width: 100%;
      height: 2px;
      background: #5A7D78;
      margin: 6px 0 0 0; }
      .main-menu-toggler .bar i:first-child {
        margin: 0; }

.main-navigation .innav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /*
  flex-direction: row | row-reverse | column | column-reverse;
  */
  -webkit-flex-direction: row;
  flex-direction: row;
  /*
  horizontally
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
  */
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  /*
  vertically
  align-items: flex-start | flex-end | center | baseline | stretch;
  */
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap; }
.main-navigation .menu-holder {
  width: 100%; }
.main-navigation .mobile-logo {
  display: none;
  box-shadow: 0 0 25px rgba(56, 59, 67, 0.2); }
  @media screen and (max-width: 1200px) {
    .main-navigation .mobile-logo {
      display: block;
      position: relative;
      margin: 0 60px 30px 0;
      max-width: 250px;
      z-index: 20; }
      .main-navigation .mobile-logo img {
        max-height: 90px;
        width: auto; } }
.main-navigation .side-menu-footer {
  display: none; }
  @media screen and (max-width: 1200px) {
    .main-navigation .side-menu-footer {
      display: block;
      margin-top: 30px;
      color: #F18721;
      text-align: center; }
      .main-navigation .side-menu-footer .btn {
        display: block;
        margin: 10px 0;
        letter-spacing: 1px; } }
.main-navigation ul.menu {
  position: relative;
  list-style: none;
  font-style: normal;
  font-family: "Argentum Sans";
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /*
  flex-direction: row | row-reverse | column | column-reverse;
  */
  -webkit-flex-direction: row;
  flex-direction: row;
  /*
  horizontally
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
  */
  -webkit-justify-content: space-between;
  justify-content: space-between;
  /*
  vertically
  align-items: flex-start | flex-end | center | baseline | stretch;
  */
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  z-index: 100; }
  .main-navigation ul.menu > li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1px;
    padding: 18px 5px 18px 24px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; }
    .main-navigation ul.menu > li:before {
      content: "";
      display: block;
      height: 18px;
      width: 18px;
      opacity: 0;
      margin-top: -9px;
      background: url("../images/lightning_dark.svg") no-repeat center;
      background-size: contain;
      top: 50%;
      left: 0;
      position: absolute;
      -webkit-transition: all 0.4s;
      -moz-transition: all 0.4s;
      -ms-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s; }
    .main-navigation ul.menu > li.menu-item-has-children > a {
      position: relative; }
      .main-navigation ul.menu > li.menu-item-has-children > a:after {
        /*	content: "\f107"; */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-style: normal;
        font-size: 45%;
        display: block;
        margin-left: -8px;
        bottom: 0;
        left: 50%;
        position: absolute;
        line-height: 1em;
        opacity: 0.75; }
    .main-navigation ul.menu > li > a {
      display: block;
      position: relative;
      padding: 0;
      font-weight: 500;
      font-size: 18px;
      letter-spacing: 1px;
      text-transform: none;
      color: #000;
      text-decoration: none;
      text-align: center;
      white-space: nowrap;
      z-index: 10; }
      @media screen and (max-width: 1366px) {
        .main-navigation ul.menu > li > a {
          font-size: 16px; } }
      @media screen and (max-width: 1280px) {
        .main-navigation ul.menu > li > a {
          font-size: 14px; } }
    .main-navigation ul.menu > li:hover:not(.btn-item):before, .main-navigation ul.menu > li[class*="current"]:not(.btn-item):before {
      opacity: 1; }
    .main-navigation ul.menu > li:hover:not(.btn-item) > a, .main-navigation ul.menu > li[class*="current"]:not(.btn-item) > a {
      color: #A9472E; }
    .main-navigation ul.menu > li:hover > .sub-menu {
      animation: fadeIn 0.6s; }
      @media screen and (min-width: 1201px) {
        .main-navigation ul.menu > li:hover > .sub-menu {
          display: block; } }
    @media screen and (min-width: 1201px) {
      .main-navigation ul.menu > li.has-dropdown_cols-2 .sub-menu {
        width: 545px; }
        .main-navigation ul.menu > li.has-dropdown_cols-2 .sub-menu li {
          display: inline-block;
          width: calc(50% - 0.6em);
          border-top: 1px solid rgba(0, 0, 0, 0.07); } }
.main-navigation .sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 240px;
  background: #F9F9FA;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  top: 100%;
  left: 0;
  position: absolute; }
  .main-navigation .sub-menu:before {
    content: '';
    display: block;
    border-bottom: 6px solid #fff;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    top: -6px;
    left: 50%;
    position: absolute;
    margin-left: -6px; }
  .main-navigation .sub-menu li {
    display: block;
    padding: 0;
    line-height: normal;
    border-top: 1px solid rgba(0, 0, 0, 0.07); }
    .main-navigation .sub-menu li:first-child {
      border-top: none; }
    .main-navigation .sub-menu li a {
      display: block;
      position: relative;
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 400;
      color: #353535;
      text-decoration: none; }
    .main-navigation .sub-menu li:hover > a, .main-navigation .sub-menu li[class*="current"] > a {
      color: #F18721; }
.main-navigation .menu-close {
  position: absolute;
  right: 15px;
  top: 35px;
  color: #A9472E;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 28px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  display: none;
  transition: all 0.3s; }
  .main-navigation .menu-close:hover {
    color: #F18721; }
  @media screen and (max-width: 1200px) {
    .main-navigation .menu-close {
      display: block; } }
@media screen and (max-width: 1200px) {
  .main-navigation {
    text-align: right;
    position: relative;
    /*
    horizontally
    justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
    */
    -webkit-justify-content: flex-end;
    justify-content: flex-end; }
    .main-navigation .menu-holder {
      display: block;
      background: #fff;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      height: 100%;
      max-height: 100%;
      top: 0;
      left: -450px;
      position: fixed;
      width: 350px;
      max-width: 100%;
      overflow: auto;
      margin: 0;
      padding: 30px 30px 30px 30px;
      text-align: left;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      z-index: 1200; }
      .main-navigation .menu-holder.menu-open {
        left: 0; }
      .main-navigation .menu-holder .menu {
        display: block !important;
        padding: 0; }
        .main-navigation .menu-holder .menu > li {
          display: block;
          margin: 0 !important;
          padding: 0 !important;
          text-align: left;
          border-bottom: 1px solid rgba(169, 71, 46, 0.15); }
          .main-navigation .menu-holder .menu > li:before, .main-navigation .menu-holder .menu > li:after {
            height: 2px;
            display: none !important; }
          .main-navigation .menu-holder .menu > li > a {
            text-align: left;
            padding: 15px 45px 15px 15px;
            font-size: 15px; }
          .main-navigation .menu-holder .menu > li.menu-item-has-children > a:after {
            display: none !important; }
          .main-navigation .menu-holder .menu > li.menu-item-has-children > .sub-menu-toggler {
            /*width: 40px;*/
            height: 55px;
            line-height: 55px;
            /*text-align: center;*/
            top: 0;
            right: 0px;
            position: absolute;
            color: #A9472E;
            opacity: 0.5;
            z-index: 20;
            /* to make all tab clickable */
            width: 100%;
            text-align: right; }
            .main-navigation .menu-holder .menu > li.menu-item-has-children > .sub-menu-toggler:before {
              content: '\f107';
              font-family: "Font Awesome 5 Free";
              font-weight: 900;
              font-size: 18px; }
            .main-navigation .menu-holder .menu > li.menu-item-has-children > .sub-menu-toggler.toggled-on:before {
              content: '\f106'; }
          .main-navigation .menu-holder .menu > li:hover > a {
            color: #A9472E; }
          .main-navigation .menu-holder .menu > li[class*="current"] > a {
            color: #A9472E; }
          .main-navigation .menu-holder .menu > li[class*="current"] .sub-menu.show {
            animation: none !important; }
          .main-navigation .menu-holder .menu > li.btn-item {
            margin-bottom: 5px !important; }
            .main-navigation .menu-holder .menu > li.btn-item a {
              padding: 8px 25px;
              text-align: center;
              color: #fff; }
            .main-navigation .menu-holder .menu > li.btn-item.first {
              margin-top: 30px !important; }
      .main-navigation .menu-holder .sub-menu {
        display: none;
        border: none;
        top: 0;
        left: 0;
        position: relative;
        margin: 5px 0 5px 5px;
        width: auto !important;
        background: rgba(0, 0, 0, 0);
        box-shadow: none;
        text-align: left; }
        .main-navigation .menu-holder .sub-menu.show {
          display: block;
          animation: fadeInDownSm 1s !important; }
        .main-navigation .menu-holder .sub-menu:before {
          display: none; }
        .main-navigation .menu-holder .sub-menu li {
          border-top-color: rgba(255, 255, 255, 0.15);
          position: relative;
          padding-left: 15px; }
          .main-navigation .menu-holder .sub-menu li:before {
            content: '';
            display: block;
            width: 10px;
            height: 1px;
            background: #979797;
            top: 23px;
            left: 8px;
            position: absolute; }
          .main-navigation .menu-holder .sub-menu li a {
            color: #353535;
            opacity: 0.8; }
          .main-navigation .menu-holder .sub-menu li:hover:before, .main-navigation .menu-holder .sub-menu li[class*="current"]:before {
            background: #F18721; }
          .main-navigation .menu-holder .sub-menu li:hover > a, .main-navigation .menu-holder .sub-menu li[class*="current"] > a {
            background: rgba(0, 0, 0, 0);
            color: #F18721; }
    .main-navigation .sh_body {
      display: none;
      background: rgba(24, 24, 24, 0.45);
      top: 0;
      left: 0;
      position: fixed;
      width: 100%;
      height: 100%;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      z-index: -1; }
      .main-navigation .sh_body.show {
        display: block;
        animation: fadeIn 0.4s;
        z-index: 1100; } }

.is-sticky .sticker {
  left: 0;
  right: 0;
  width: auto !important;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.98);
  z-index: 999 !important; }
  .admin-bar .is-sticky .sticker {
    margin-top: 32px; }

/* ==========================================================================
	Banner section for post/page
	========================================================================== */
.header-top-image {
  padding: 100px 0 65px 0;
  text-align: left;
  overflow: hidden;
  position: relative; }
  @media screen and (max-width: 992px) {
    .header-top-image {
      background-attachment: scroll; } }
  @media screen and (max-width: 600px) {
    .header-top-image {
      padding: 100px 0 40px 0; } }
  .header-top-image .cover-img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1; }
    .header-top-image .cover-img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      position: absolute; }
    .header-top-image .cover-img:before {
      content: '';
      display: block;
      top: 0;
      left: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      background: #F18721;
      /*rgba(45,45,45,0.45); */
      z-index: 1; }
  .header-top-image > * {
    position: relative;
    z-index: 30; }
  .page-template-location-page .header-top-image {
    text-align: center; }
    .page-template-location-page .header-top-image .entry-header {
      display: inline-block; }
      .page-template-location-page .header-top-image .entry-header .sub-title {
        text-align: right; }
        .page-template-location-page .header-top-image .entry-header .sub-title .lbl {
          text-align: center;
          min-width: 340px;
          max-width: 100%; }
          @media screen and (max-width: 1600px) {
            .page-template-location-page .header-top-image .entry-header .sub-title .lbl {
              min-width: 300px; } }
          @media screen and (max-width: 1366px) {
            .page-template-location-page .header-top-image .entry-header .sub-title .lbl {
              min-width: 250px; } }
        @media screen and (max-width: 1366px) {
          .page-template-location-page .header-top-image .entry-header .sub-title {
            text-align: center; } }
        @media screen and (max-width: 1024px) {
          .page-template-location-page .header-top-image .entry-header .sub-title {
            text-align: left; } }
  .header-top-image .entry-header {
    margin: 0; }
  .header-top-image .entry-title {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: left;
    position: relative;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    overflow: hidden;
    z-index: 20; }
    .header-top-image .entry-title {
      font-size: 32px; }
      @media screen and (min-width: 320px) {
        .header-top-image .entry-title {
          font-size: calc(32px + 28 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .header-top-image .entry-title {
          font-size: 60px !important; } }
    .header-top-image .entry-title b {
      color: #A9472E; }
  .header-top-image .sub-title {
    color: #000;
    font-weight: bold;
    margin: 0;
    text-align: left; }
    .header-top-image .sub-title {
      font-size: 16px; }
      @media screen and (min-width: 320px) {
        .header-top-image .sub-title {
          font-size: calc(16px + 4 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .header-top-image .sub-title {
          font-size: 20px !important; } }
    .header-top-image .sub-title p {
      margin: 0; }
    .header-top-image .sub-title .lbl {
      display: inline-block;
      padding: 5px 35px;
      background: #5A7D78;
      color: #fff;
      border-radius: 4px;
      font-weight: bold;
      line-height: 1em; }
      @media screen and (max-width: 600px) {
        .header-top-image .sub-title .lbl {
          padding: 4px 15px; } }
  .header-top-image #breadcrumbs {
    font-style: normal;
    font-size: 75%;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0 0 0;
    position: relative;
    z-index: 20; }
    .header-top-image #breadcrumbs a {
      color: #fff;
      text-decoration: none; }
      .header-top-image #breadcrumbs a:hover {
        opacity: 0.8; }
  .error404 .header-top-image {
    padding: 32px 0; }
    .error404 .header-top-image .entry-header {
      text-align: center; }
      .error404 .header-top-image .entry-header .entry-title {
        text-align: center;
        letter-spacing: 20px; }
        .error404 .header-top-image .entry-header .entry-title {
          font-size: 60px; }
          @media screen and (min-width: 320px) {
            .error404 .header-top-image .entry-header .entry-title {
              font-size: calc(60px + 40 * ((100vw - 320px) / 1600)) !important; } }
          @media screen and (min-width: 1920px) {
            .error404 .header-top-image .entry-header .entry-title {
              font-size: 100px !important; } }
      .error404 .header-top-image .entry-header #breadcrumbs {
        text-align: center; }

/* ==========================================================================
	Block editor - general styles 
	========================================================================== */
.site-content {
  /** Gallery */ }
  .site-content p, .site-content ol, .site-content ul, .site-content dl, .site-content address {
    margin-bottom: 1.3em; }
    .site-content p.margin-0, .site-content ol.margin-0, .site-content ul.margin-0, .site-content dl.margin-0, .site-content address.margin-0 {
      margin: 0; }
  .inner-page .site-content p a:not(.btn):not(.wp-block-button__link), .inner-page .site-content ul a:not(.btn):not(.wp-block-button__link) {
    text-decoration: none;
    border-bottom: 1px solid; }
  .inner-page .site-content p strong, .inner-page .site-content ul strong {
    color: #A9472E;
    font-weight: 600; }
  .inner-page .site-content p.has-text-color strong,
  .inner-page .site-content ul.has-text-color strong {
    color: inherit; }
  .site-content hr {
    height: 1px;
    background: #f1f2f8;
    border-color: #f1f2f8;
    margin: 30px 0; }
  .site-content .margin-top {
    margin-top: 36px; }
  .site-content .shadow-box {
    position: relative;
    box-shadow: 0px 5px 45px rgba(56, 59, 67, 0.14); }
    .site-content .shadow-box .kt-inside-inner-col {
      padding: 30px; }
      .site-content .shadow-box .kt-inside-inner-col > :last-child {
        margin-bottom: 0; }
    .site-content .shadow-box .wp-block-group__inner-container {
      padding: 30px; }
      .site-content .shadow-box .wp-block-group__inner-container > :last-child {
        margin-bottom: 0; }
  .site-content .top-ttl {
    color: #F9C007;
    font-weight: 400;
    margin-bottom: 0.5em;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px; }
    .site-content .top-ttl p.site-content .top-ttl {
      font-size: 16px; }
      @media screen and (min-width: 320px) {
        .site-content .top-ttl p.site-content .top-ttl {
          font-size: calc(16px + 6 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .top-ttl p.site-content .top-ttl {
          font-size: 22px !important; } }
    .site-content .top-ttl strong {
      display: inline-block;
      font-weight: 400; }
  .site-content .title {
    position: relative;
    margin-bottom: 1em; }
    .site-content .title {
      font-size: 30px; }
      @media screen and (min-width: 320px) {
        .site-content .title {
          font-size: calc(30px + 18 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .title {
          font-size: 48px !important; } }
    .site-content .title strong {
      color: #A9472E; }
    .site-content .title + .sub-ttl {
      margin-top: -1.5em;
      margin-bottom: 2em; }
      @media screen and (max-width: 640px) {
        .site-content .title + .sub-ttl {
          margin-top: -0.75em; } }
  .site-content .sub-ttl {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /*
    flex-direction: row | row-reverse | column | column-reverse;
    */
    -webkit-flex-direction: row;
    flex-direction: row;
    /*
    vertically
    align-items: flex-start | flex-end | center | baseline | stretch;
    */
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    gap: 10px;
    font-size: 16px;
    line-height: 1em;
    text-transform: uppercase;
    position: relative;
    color: #5A7D78; }
    .site-content .sub-ttl:before {
      content: '';
      background-color: rgba(90, 125, 120, 0.12);
      background-image: url("../images/lightning_green.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: auto 90%;
      display: block;
      width: 30px;
      min-width: 30px;
      height: 30px; }
    .site-content .sub-ttl strong {
      display: inline-block;
      color: #5A7D78 !important;
      font-weight: 700; }
    .site-content .sub-ttl.has-text-align-center {
      /*
      horizontally
      justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
      */
      -webkit-justify-content: center;
      justify-content: center; }
    .site-content .sub-ttl.has-white-color {
      color: #fff; }
      .site-content .sub-ttl.has-white-color:before {
        background-color: rgba(255, 255, 255, 0.12);
        background-image: url("../images/lightning.svg"); }
      .site-content .sub-ttl.has-white-color strong {
        color: #fff !important; }
  .site-content .color-ttl {
    color: #000;
    font-weight: 900;
    font-family: "Argentum Sans"; }
    .site-content .color-ttl strong {
      color: #F18721; }
  .site-content .highlight-text {
    padding: 5px 15px;
    background: rgba(90, 125, 120, 0.25);
    line-height: 1em;
    color: #000; }
    .site-content .highlight-text strong {
      color: #A9472E; }
  .site-content .p-intro {
    font-size: 18px;
    width: 90%;
    margin-left: auto;
    margin-right: auto; }
    .site-content .p-intro strong {
      color: #A9472E; }
    @media screen and (max-width: 992px) {
      .site-content .p-intro {
        width: 100%; } }
  .site-content .wp-block-group.has-background {
    padding: 2em 2.25em; }
  .site-content .bg-decor {
    background-color: #fff;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, 45deg, from(#f3f3f5), to(#fff));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(45deg, #f3f3f5, #fff);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(45deg, #f3f3f5, #fff);
    /* FF3.6 */
    background-image: -ms-linear-gradient(45deg, #f3f3f5, #fff);
    /* IE10 */
    background-image: -o-linear-gradient(45deg, #f3f3f5, #fff);
    /* Opera 11.10+ */
    background-image: linear-gradient(45deg, #f3f3f5, #fff);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,StartColorStr='#f3f3f5', EndColorStr='#fff');
    padding: 15px 25px 15px 25px;
    margin-bottom: 20px; }
  .site-content .bg-gray {
    padding: 15px 25px 15px 25px;
    background: #f3f3f5; }
  .site-content .bg-box ul:last-child,
  .site-content .bg-box p:last-child {
    margin-bottom: 0; }
  .site-content blockquote {
    margin: 0 0 20px 0;
    position: relative;
    border-left-color: #F18721;
    padding: 1em 0 1em 2em; }
    .site-content blockquote p {
      margin-bottom: 1em;
      font-size: 20px;
      letter-spacing: 1px; }
    .site-content blockquote:before {
      content: "\f10d";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      font-size: 24px;
      display: block;
      color: #F18721;
      background: #fff;
      padding: 10px 0;
      top: 50%;
      left: -12px;
      position: absolute;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 10; }
  .site-content ul.list-col-2 {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2; }
    @media screen and (max-width: 600px) {
      .site-content ul.list-col-2 {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1; } }
  .site-content ul.list-col-3 {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3; }
    @media screen and (max-width: 992px) {
      .site-content ul.list-col-3 {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2; } }
    @media screen and (max-width: 600px) {
      .site-content ul.list-col-3 {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1; } }
  .site-content ul.list-style {
    list-style: none;
    margin-left: 0; }
    .site-content ul.list-style li {
      padding-left: 20px;
      position: relative;
      margin: 0 0 10px 0; }
      .site-content ul.list-style li:before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        background: #F18721;
        color: #F18721;
        border-radius: 50%;
        top: 8px;
        left: 0;
        position: absolute; }
    .site-content ul.list-style.check li {
      padding-left: 35px;
      margin-bottom: 15px; }
      .site-content ul.list-style.check li:before {
        content: '\2713';
        font-family: Arial;
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 15px;
        text-align: center;
        border-radius: 0;
        top: 0;
        border-radius: 50%;
        background: #F18721;
        color: #fff; }
    .site-content ul.list-style.neg li {
      padding-left: 35px;
      margin-bottom: 15px; }
      .site-content ul.list-style.neg li:before {
        content: '\2715';
        font-family: Arial;
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 15px;
        text-align: center;
        border-radius: 0;
        top: 0;
        border-radius: 50%;
        background: #F18721;
        color: #fff; }
    .site-content ul.list-style.lightning li {
      padding-left: 42px;
      margin-bottom: 15px;
      min-height: 28px; }
      .site-content ul.list-style.lightning li:before {
        content: '';
        background-color: rgba(90, 125, 120, 0.12);
        background-image: url("../images/lightning_green.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 90%;
        display: block;
        width: 28px;
        height: 28px;
        top: 0px;
        border-radius: 0; }
    .site-content ul.list-style.inline-list li {
      display: inline-block;
      vertical-align: top;
      margin-right: 20px; }
  .site-content ol.list-style {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    list-style-type: none;
    counter-reset: li; }
    .site-content ol.list-style li {
      display: block;
      margin-bottom: 16px;
      margin-left: 0; }
      .site-content ol.list-style li:before {
        display: inline-block;
        color: #F18721;
        margin-right: 14px;
        min-width: 22px;
        counter-increment: li;
        content: counter(li,decimal-leading-zero) "."; }
  .site-content .wp-block-table {
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
    margin: 30px 0; }
    .site-content .wp-block-table tr:nth-child(2n+1) {
      background: #f8f9f9; }
    .site-content .wp-block-table tr:nth-child(2n) {
      background: #f0f0f0; }
    .site-content .wp-block-table th, .site-content .wp-block-table td {
      padding: 10px 15px;
      border-color: #fff; }
      @media screen and (max-width: 600px) {
        .site-content .wp-block-table th, .site-content .wp-block-table td {
          padding: 6px 10px;
          font-size: 14px; } }
    .site-content .wp-block-table th {
      background: #5A7D78;
      color: #fff;
      text-align: center;
      border-left: 1px solid rgba(255, 255, 255, 0.6); }
  .site-content .wp-block-image.fill-img {
    display: block;
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 60%; }
    .site-content .wp-block-image.fill-img > figure {
      position: absolute !important;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
    .site-content .wp-block-image.fill-img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      position: absolute; }
  .site-content .wp-block-image.crop-img {
    display: block;
    width: 100%;
    margin: 0 auto 1.5em auto;
    position: relative;
    padding-top: 87%; }
    .site-content .wp-block-image.crop-img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      position: absolute; }
  .site-content .wp-block-image.decor-img {
    position: relative; }
    .site-content .wp-block-image.decor-img:before, .site-content .wp-block-image.decor-img:after {
      content: '';
      display: block;
      background: #F18721 url("../images/orange-tile.png");
      width: 40%;
      height: 40%;
      position: absolute;
      z-index: 1; }
    .site-content .wp-block-image.decor-img:before {
      left: -40px;
      top: -40px; }
    .site-content .wp-block-image.decor-img:after {
      right: -40px;
      bottom: -40px; }
    .site-content .wp-block-image.decor-img img {
      width: 100%;
      height: auto;
      position: relative;
      z-index: 20; }
    .site-content .wp-block-image.decor-img.fill-img img {
      height: 100%; }
    @media screen and (max-width: 1365px) {
      .site-content .wp-block-image.decor-img:before {
        left: -30px;
        top: -30px; }
      .site-content .wp-block-image.decor-img:after {
        right: -30px;
        bottom: -30px; } }
    @media screen and (max-width: 1024px) {
      .site-content .wp-block-image.decor-img:before {
        left: -20px;
        top: -20px; }
      .site-content .wp-block-image.decor-img:after {
        right: -20px;
        bottom: -20px; } }
    .site-content .wp-block-image.decor-img.decor-left:after {
      display: none; }
    .site-content .wp-block-image.decor-img.decor-right:before {
      display: none; }
  .site-content .wp-block-image.shine-hover figure {
    display: block;
    position: relative;
    overflow: hidden; }
    .site-content .wp-block-image.shine-hover figure img {
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .site-content .wp-block-image.shine-hover figure:before, .site-content .wp-block-image.shine-hover figure:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: -150%;
      width: 30%;
      height: 100%;
      -webkit-transform: skewX(-45deg);
      transform: skewX(-45deg);
      z-index: 30; }
    .site-content .wp-block-image.shine-hover figure:before {
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0) 100%); }
    .site-content .wp-block-image.shine-hover figure:after {
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0) 100%); }
    .site-content .wp-block-image.shine-hover figure:hover:before, .site-content .wp-block-image.shine-hover figure:hover:after {
      -webkit-animation: shine 1s;
      animation: shine 1s; }
    .site-content .wp-block-image.shine-hover figure:hover img {
      filter: brightness(1.15); }
  .site-content .schema-faq .schema-faq-section {
    margin: 0 0 15px 0; }
    .site-content .schema-faq .schema-faq-section .schema-faq-question {
      position: relative;
      margin: 0 0 10px 0;
      padding: 0 0 0 33px;
      font-weight: 500;
      font-size: 16px;
      text-align: left;
      display: block; }
      .site-content .schema-faq .schema-faq-section .schema-faq-question:before {
        content: '\f059';
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 20px;
        line-height: 1.15;
        color: #5A7D78; }
    .site-content .schema-faq .schema-faq-section .schema-faq-answer {
      font-size: 15px;
      margin-bottom: 25px; }
  .site-content .schema-faq.faqs-spoiler {
    position: relative; }
    .site-content .schema-faq.faqs-spoiler .schema-faq-section {
      padding: 0;
      margin: 0 0 10px 0;
      border: 1px solid #e2e6eb; }
      .site-content .schema-faq.faqs-spoiler .schema-faq-section:hover .schema-faq-question {
        background: rgba(241, 135, 33, 0.05);
        color: #F18721; }
    .site-content .schema-faq.faqs-spoiler .schema-faq-question {
      display: block;
      position: relative;
      text-align: left;
      padding: 24px 60px 24px 32px;
      margin: 0;
      cursor: pointer;
      font-size: 16px;
      font-weight: 400; }
      .site-content .schema-faq.faqs-spoiler .schema-faq-question:before {
        display: none; }
      .site-content .schema-faq.faqs-spoiler .schema-faq-question:after {
        content: '\f067';
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 18px;
        line-height: 1em;
        color: #5A7D78;
        display: block;
        position: absolute;
        right: 25px;
        top: 50%;
        margin-top: -9px; }
      .site-content .schema-faq.faqs-spoiler .schema-faq-question.open:after {
        content: '\f068';
        animation: fadeIn 0.6s; }
      @media screen and (max-width: 640px) {
        .site-content .schema-faq.faqs-spoiler .schema-faq-question {
          padding: 16px 50px 16px 20px; }
          .site-content .schema-faq.faqs-spoiler .schema-faq-question:after {
            right: 16px; } }
    .site-content .schema-faq.faqs-spoiler .schema-faq-answer {
      display: none;
      padding: 32px;
      margin: 0;
      border-top: 1px solid #e2e6eb;
      position: relative; }
      @media screen and (max-width: 640px) {
        .site-content .schema-faq.faqs-spoiler .schema-faq-answer {
          padding: 20px;
          font-size: 14px; } }
  .site-content .rank-math-block .rank-math-question {
    font-weight: bold;
    font-family: "Argentum Sans";
    font-weight: 600;
    position: relative;
    margin: 0 0 10px 0;
    padding: 0 0 0 33px;
    font-size: 18px;
    text-align: left;
    display: block; }
    .site-content .rank-math-block .rank-math-question:before {
      content: '\f059';
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      display: block;
      position: absolute;
      left: 0;
      top: 1px;
      font-size: 20px;
      line-height: 1.15;
      color: #F18721; }
  .site-content .rl-gallery-container .rl-gallery-item {
    overflow: hidden; }
    .site-content .rl-gallery-container .rl-gallery-item img {
      -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s; }
    .site-content .rl-gallery-container .rl-gallery-item:hover img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); }
  .site-content .rl-gallery-container .rl-gallery-link:before {
    content: '\002B';
    font-family: Arial;
    font-size: 32px;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: -25px 0 0 -25px;
    opacity: 0;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 10; }
  .site-content .rl-gallery-container .rl-gallery-link:hover:before {
    opacity: 1; }
  .site-content .wp-block-kadence-advancedgallery .kb-gallery-figure {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
  .site-content .wp-block-kadence-advancedgallery .kb-gallery-item-link {
    position: relative; }
    .site-content .wp-block-kadence-advancedgallery .kb-gallery-item-link:before {
      content: '';
      display: block;
      width: 48px;
      height: 48px;
      line-height: 48px;
      background: #3d4046 url("../images/arrow-up-right.svg") no-repeat center;
      background-size: 24px 24px;
      margin: -24px 0 0 -24px;
      opacity: 0;
      top: 50%;
      left: 50%;
      position: absolute;
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s;
      z-index: 10; }
    .site-content .wp-block-kadence-advancedgallery .kb-gallery-item-link:hover:before {
      opacity: 1; }
  .site-content .wp-block-gallery {
    margin: 0; }
    .site-content .wp-block-gallery .blocks-gallery-item a,
    .site-content .wp-block-gallery .wp-block-image a {
      -webkit-transition: all 0.4s;
      -moz-transition: all 0.4s;
      -ms-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s;
      position: relative;
      border: none !important; }
      .site-content .wp-block-gallery .blocks-gallery-item a:before,
      .site-content .wp-block-gallery .wp-block-image a:before {
        content: '+';
        font-family: "Quattrocento", serif;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        margin: -30px 0 0 -30px;
        font-size: 34px;
        font-weight: 300;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        border-radius: 50%;
        opacity: 0;
        top: 50%;
        left: 50%;
        position: absolute;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        z-index: 100; }
    .site-content .wp-block-gallery .blocks-gallery-item:hover a:before,
    .site-content .wp-block-gallery .wp-block-image:hover a:before {
      opacity: 1; }
  @media screen and (max-width: 992px) {
    .site-content .wp-block-columns.row-responsive {
      display: block; }
      .site-content .wp-block-columns.row-responsive .wp-block-column {
        width: 100%;
        margin: 0 0 30px 0; } }
  .site-content .wp-block-media-text__content {
    padding: 30px 40px; }
    .site-content .wp-block-media-text__content > *:last-child {
      margin-bottom: 0; }
  .site-content .wp-block-media-text.is-image-fill .wp-block-media-text__media {
    padding-top: 70%; }
  @media screen and (max-width: 992px) {
    .site-content .wp-block-media-text {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      /*
      flex-direction: row | row-reverse | column | column-reverse;
      */
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .site-content .wp-block-media-text > * {
        width: 100%; }
      .site-content .wp-block-media-text__content {
        padding: 30px 0; }
      .site-content .wp-block-media-text__media {
        order: -1; } }
  .site-content .wp-block-media-text + h2, .site-content .wp-block-media-text + h3 {
    margin-top: 1.3em;
    margin-bottom: 1.3em; }
  .site-content .kt-tabs-content-wrap .wp-block-kadence-tab[aria-hidden="false"] {
    animation: fadeIn 0.8s; }
  .site-content .has-large-font-size {
    font-size: 20px; }
    @media screen and (min-width: 320px) {
      .site-content .has-large-font-size {
        font-size: calc(20px + 8 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .has-large-font-size {
        font-size: 28px !important; } }
  .site-content .wp-block-kadence-iconlist li {
    margin-left: 0; }
    .site-content .wp-block-kadence-iconlist li .kt-svg-icon-list-text {
      align-self: center; }
  .site-content .kt-svg-icon-list li {
    margin-left: 0; }
  .site-content .wp-block-buttons.is-layout-flex {
    gap: 16px; }
    @media screen and (max-width: 640px) {
      .site-content .wp-block-buttons.is-layout-flex {
        gap: 12px; } }
  @media screen and (min-width: 640px) {
    .site-content .wp-block-group.is-layout-flex {
      gap: 24px; } }
  @media screen and (max-width: 640px) {
    .site-content .has-medium-font-size {
      font-size: 17px !important; } }

/* ==========================================================================
   Home Page Content
   ========================================================================== */
.site-content {
  /* new */ }
  .site-content .hero-section .kt-inside-inner-col > *:last-child {
    margin-bottom: 0 !important; }
  .site-content .hero-section .ttl {
    font-family: "Argentum Sans";
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5em; }
    .site-content .hero-section .ttl {
      font-size: 32px; }
      @media screen and (min-width: 320px) {
        .site-content .hero-section .ttl {
          font-size: calc(32px + 32 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .hero-section .ttl {
          font-size: 64px !important; } }
    @media screen and (max-width: 600px) {
      .site-content .hero-section .ttl {
        letter-spacing: 0; } }
  .site-content .hero-section .txt {
    margin-bottom: 40px; }
    .site-content .hero-section .txt {
      font-size: 16px; }
      @media screen and (min-width: 320px) {
        .site-content .hero-section .txt {
          font-size: calc(16px + 4 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .hero-section .txt {
          font-size: 20px !important; } }
  .site-content .hero-section.anim-inview .kt-inside-inner-col {
    opacity: 0; }
  .site-content .hero-section.anim-inview.inview .kt-inside-inner-col {
    animation: fadeInDownSm 0.5s 0.05s;
    animation-fill-mode: forwards; }
  .site-content .promo-form-section {
    position: relative;
    margin-top: -120px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 50; }
    @media screen and (max-width: 1024px) {
      .site-content .promo-form-section {
        margin-top: -100px; } }
    @media screen and (max-width: 768px) {
      .site-content .promo-form-section {
        margin-top: -40px; } }
    .site-content .promo-form-section .kt-row-column-wrap {
      box-shadow: 0px 0px 15px 0px rgba(56, 59, 67, 0.12); }
    .site-content .promo-form-section .promo-box .kt-inside-inner-col {
      height: 100%; }
    .site-content .promo-form-section .form-box .kt-inside-inner-col {
      padding: 32px 48px; }
      @media screen and (max-width: 768px) {
        .site-content .promo-form-section .form-box .kt-inside-inner-col {
          padding: 30px 24px; } }
      .site-content .promo-form-section .form-box .kt-inside-inner-col .wp-block-heading {
        margin-bottom: 1em;
        font-weight: 500;
        font-family: "Argentum Sans";
        font-weight: 600; }
        .site-content .promo-form-section .form-box .kt-inside-inner-col .wp-block-heading {
          font-size: 18px; }
          @media screen and (min-width: 320px) {
            .site-content .promo-form-section .form-box .kt-inside-inner-col .wp-block-heading {
              font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
          @media screen and (min-width: 1920px) {
            .site-content .promo-form-section .form-box .kt-inside-inner-col .wp-block-heading {
              font-size: 24px !important; } }
    .site-content .promo-form-section .form-box .forminator-custom-form .forminator-row {
      margin-bottom: 20px !important; }
      .site-content .promo-form-section .form-box .forminator-custom-form .forminator-row.forminator-row-last {
        margin-bottom: 0 !important; }
    .site-content .promo-form-section .form-box .forminator-custom-form .forminator-field input, .site-content .promo-form-section .form-box .forminator-custom-form .forminator-field select, .site-content .promo-form-section .form-box .forminator-custom-form .forminator-field textarea {
      font-size: 14px !important;
      background: #F5F5F5;
      border: 1px solid #F5F5F5;
      box-shadow: none; }
      .site-content .promo-form-section .form-box .forminator-custom-form .forminator-field input:focus, .site-content .promo-form-section .form-box .forminator-custom-form .forminator-field select:focus, .site-content .promo-form-section .form-box .forminator-custom-form .forminator-field textarea:focus {
        background: #fff;
        border-color: #F18721; }
    .site-content .promo-form-section.anim-inview {
      opacity: 0; }
      .site-content .promo-form-section.anim-inview.inview {
        animation: fadeInDownSm 0.5s 0.05s;
        animation-fill-mode: forwards; }
  .site-content .left-decor-group {
    position: relative;
    padding-left: 3em; }
    .site-content .left-decor-group:before {
      content: '';
      display: block;
      height: 100%;
      width: 100px;
      background: #F18721 url("../images/orange-tile.png") repeat center;
      top: 0;
      right: 100%;
      position: absolute; }
    @media screen and (max-width: 768px) {
      .site-content .left-decor-group {
        padding-left: 1em; } }
  .site-content .sides-decor-section {
    overflow: hidden; }
    .site-content .sides-decor-section > .kt-row-column-wrap {
      position: relative; }
      .site-content .sides-decor-section > .kt-row-column-wrap:before, .site-content .sides-decor-section > .kt-row-column-wrap:after {
        content: '';
        display: block;
        height: 330px;
        max-height: 80%;
        width: 50vw;
        background: #F18721 url("../images/orange-tile.png") repeat center;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%); }
      .site-content .sides-decor-section > .kt-row-column-wrap:before {
        right: 100%;
        margin-right: 40px; }
        @media screen and (max-width: 1900px) {
          .site-content .sides-decor-section > .kt-row-column-wrap:before {
            margin-right: 12px; } }
        @media screen and (max-width: 1800px) {
          .site-content .sides-decor-section > .kt-row-column-wrap:before {
            margin-right: 0; } }
      .site-content .sides-decor-section > .kt-row-column-wrap:after {
        left: 100%;
        margin-left: 40px; }
        @media screen and (max-width: 1900px) {
          .site-content .sides-decor-section > .kt-row-column-wrap:after {
            margin-left: 12px; } }
        @media screen and (max-width: 1800px) {
          .site-content .sides-decor-section > .kt-row-column-wrap:after {
            margin-right: 0; } }
  .site-content .about-section {
    font-size: 18px; }
    .site-content .about-section strong {
      color: #A9472E; }
  .site-content .icons-list-holder {
    		/*.kt-inside-inner-col {
    			padding: 25px 20px 25px 20px;					
    
    			@include screen(custom, max, 640) {
    				padding: 15px 10px 15px 10px;
    			}
    		} */ }
    @media screen and (min-width: 1366px) {
      .site-content .icons-list-holder.cols-2 .kt-inside-inner-col {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        /*
        flex-direction: row | row-reverse | column | column-reverse;
        */
        -webkit-flex-direction: row;
        flex-direction: row;
        /*
        horizontally
        justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
        */
        -webkit-justify-content: space-between;
        justify-content: space-between;
        /*
        vertically
        align-items: flex-start | flex-end | center | baseline | stretch;
        */
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .site-content .icons-list-holder.cols-2 .kt-inside-inner-col .wp-block-kadence-infobox {
          width: 49%; } }
    @media (min-width: 768px) and (max-width: 1024px) {
      .site-content .icons-list-holder.cols-2 .kt-inside-inner-col {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        /*
        flex-direction: row | row-reverse | column | column-reverse;
        */
        -webkit-flex-direction: row;
        flex-direction: row;
        /*
        horizontally
        justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
        */
        -webkit-justify-content: space-between;
        justify-content: space-between;
        /*
        vertically
        align-items: flex-start | flex-end | center | baseline | stretch;
        */
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .site-content .icons-list-holder.cols-2 .kt-inside-inner-col .wp-block-kadence-infobox {
          width: 49%; } }
    .site-content .icons-list-holder .wp-block-kadence-infobox .kt-blocks-info-box-media {
      box-shadow: 0 0 15px rgba(56, 59, 67, 0.12);
      -webkit-transition: all 0.4s;
      -moz-transition: all 0.4s;
      -ms-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s; }
    .site-content .icons-list-holder .wp-block-kadence-infobox .kt-blocks-info-box-title {
      color: #000;
      font-family: "Argentum Sans";
      font-weight: 600; }
      .site-content .icons-list-holder .wp-block-kadence-infobox .kt-blocks-info-box-title {
        font-size: 18px; }
        @media screen and (min-width: 320px) {
          .site-content .icons-list-holder .wp-block-kadence-infobox .kt-blocks-info-box-title {
            font-size: calc(18px + 4 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .icons-list-holder .wp-block-kadence-infobox .kt-blocks-info-box-title {
            font-size: 22px !important; } }
    .site-content .icons-list-holder .wp-block-kadence-infobox .kt-blocks-info-box-text {
      color: #353535;
      font-size: 16px; }
      .site-content .icons-list-holder .wp-block-kadence-infobox .kt-blocks-info-box-text strong {
        color: #A9472E; }
    .site-content .icons-list-holder .wp-block-kadence-infobox:hover .kt-blocks-info-box-media {
      box-shadow: 0 10px 40px rgba(56, 59, 67, 0.3); }
    .site-content .icons-list-holder .wp-block-kadence-infobox:hover .kt-blocks-info-box-title {
      color: #F18721; }
    @media screen and (max-width: 480px) {
      .site-content .icons-list-holder.mobile-icon-top .wp-block-kadence-infobox .kt-blocks-info-box-media-align-left {
        display: block !important;
        text-align: center !important; }
        .site-content .icons-list-holder.mobile-icon-top .wp-block-kadence-infobox .kt-blocks-info-box-media-align-left .kt-blocks-info-box-media {
          display: inline-block;
          margin: 0 0 20px 0 !important; } }
  .site-content .service-boxes-grid .kt-inside-inner-col {
    position: relative;
    border-left: 3px solid #F18721;
    background: #FEFEFE;
    padding: 20px;
    padding-left: calc(30% + 44px);
    box-shadow: 0 0 20px rgba(56, 59, 67, 0.2);
    font-size: 16px;
    text-align: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; }
    .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-heading {
      color: #353535;
      -webkit-transition: all 0.4s;
      -moz-transition: all 0.4s;
      -ms-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s; }
      .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-heading {
        font-size: 20px; }
        @media screen and (min-width: 320px) {
          .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-heading {
            font-size: calc(20px + 4 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-heading {
            font-size: 24px !important; } }
    @media screen and (min-width: 641px) {
      .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-image {
        width: 30%;
        top: 20px;
        bottom: 20px;
        left: 20px;
        position: absolute; }
        .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-image figure {
          display: block;
          width: 100%;
          height: 100%; }
        .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-image img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover; } }
    .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group {
      padding: 20px;
      margin-top: auto; }
      .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group .price {
        margin-bottom: 15px;
        font-family: "Argentum Sans";
        font-weight: 600; }
        .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group .price {
          font-size: 16px; }
          @media screen and (min-width: 320px) {
            .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group .price {
              font-size: calc(16px + 4 * ((100vw - 320px) / 1600)) !important; } }
          @media screen and (min-width: 1920px) {
            .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group .price {
              font-size: 20px !important; } }
        .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group .price strong {
          font-family: "Argentum Sans";
          font-weight: 700;
          color: #A9472E; }
      .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group .wp-block-button__link {
        font-size: 14px; }
        @media screen and (min-width: 320px) {
          .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group .wp-block-button__link {
            font-size: calc(14px + 3 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-group .wp-block-button__link {
            font-size: 17px !important; } }
    .site-content .service-boxes-grid .kt-inside-inner-col:hover {
      box-shadow: 0 10px 20px rgba(56, 59, 67, 0.3); }
      .site-content .service-boxes-grid .kt-inside-inner-col:hover .wp-block-heading {
        color: #F18721; }
  @media screen and (max-width: 640px) {
    .site-content .service-boxes-grid .kt-inside-inner-col {
      padding: 20px; }
      .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-image {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        padding-top: 85%; }
        .site-content .service-boxes-grid .kt-inside-inner-col .wp-block-image img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          top: 0;
          left: 0;
          position: absolute; } }
  .site-content .has-show-more-boxes .more-box {
    display: none; }
  .site-content .has-show-more-boxes .more-boxes-btn strong {
    font-weight: inherit; }
  .site-content .has-show-more-boxes .more-boxes-btn em {
    font-style: normal;
    display: none; }
  .site-content .has-show-more-boxes.open .more-boxes-btn strong {
    display: none; }
  .site-content .has-show-more-boxes.open .more-boxes-btn em {
    display: inline; }
  .site-content .rplg .rplg-slider {
    margin-left: -24px;
    margin-right: -24px; }
    .site-content .rplg .rplg-slider .rplgsw-container {
      padding-left: 24px;
      padding-right: 24px; }
    .site-content .rplg .rplg-slider .rplg-slider-review {
      margin-bottom: 0px !important; }
    .site-content .rplg .rplg-slider .rplg-box {
      padding: 24px !important;
      margin: 0 !important;
      background: #fff !important;
      border: none !important;
      border-radius: 0px !important;
      box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.12) !important; }
      .site-content .rplg .rplg-slider .rplg-box:before {
        background: #fff !important; }
      .site-content .rplg .rplg-slider .rplg-box .rplg-review-badge {
        width: 24px !important;
        height: 24px !important;
        top: 20px !important;
        right: 20px !important; }
        .site-content .rplg .rplg-slider .rplg-box .rplg-review-badge svg {
          width: 24px !important;
          height: 24px !important; }
    .site-content .rplg .rplg-slider .rplg-review-name {
      color: #000 !important;
      font-weight: 600 !important;
      font-family: "Argentum Sans" !important;
      font-size: 16px !important; }
    .site-content .rplg .rplg-slider .rplg-box-content {
      padding-right: 12px !important;
      margin: 30px 5px 0px 20px !important; }
      .site-content .rplg .rplg-slider .rplg-box-content:before {
        top: 26px !important; }
      .site-content .rplg .rplg-slider .rplg-box-content .rplg-review-text {
        font-size: 16px !important;
        line-height: 1.5em !important; }
    .site-content .rplg .rplg-slider .rplg-stars {
      display: block !important;
      top: 20px;
      left: 40px;
      position: absolute; }
      .site-content .rplg .rplg-slider .rplg-stars svg use {
        fill: #FFD876; }
    .site-content .rplg .rplg-slider .rplgsw-pagination-bullet.rplgsw-pagination-bullet-active {
      background: #F18721; }
    .site-content .rplg .rplg-slider .rplg-slider-prev,
    .site-content .rplg .rplg-slider .rplg-slider-next {
      border-radius: 0 !Important;
      background: rgba(90, 125, 120, 0.1);
      width: 32px !important;
      height: 32px !important; }
      .site-content .rplg .rplg-slider .rplg-slider-prev span,
      .site-content .rplg .rplg-slider .rplg-slider-next span {
        color: #5A7D78 !important;
        left: 50% !important;
        top: 50% !important;
        margin-top: -2px;
        margin-left: -5px;
        width: 10px;
        height: 10px; }
      .site-content .rplg .rplg-slider .rplg-slider-prev:hover,
      .site-content .rplg .rplg-slider .rplg-slider-next:hover {
        background: #fff; }
        .site-content .rplg .rplg-slider .rplg-slider-prev:hover span,
        .site-content .rplg .rplg-slider .rplg-slider-next:hover span {
          color: #F18721 !important; }
  .site-content .emergency-section .icon {
    margin: 0 0 24px 0; }
  .site-content .emergency-call-box .wp-block-image {
    margin-top: auto;
    margin-bottom: 32px; }
    .site-content .emergency-call-box .wp-block-image img {
      border: 2px solid #fff; }
  .site-content .emergency-call-box .wp-block-heading {
    margin-bottom: 0.5em; }
    .site-content .emergency-call-box .wp-block-heading {
      font-size: 30px; }
      @media screen and (min-width: 320px) {
        .site-content .emergency-call-box .wp-block-heading {
          font-size: calc(30px + 14 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .emergency-call-box .wp-block-heading {
          font-size: 44px !important; } }
  .site-content .emergency-call-box .wp-block-buttons {
    margin-top: auto; }
  .site-content .servareas-section .servareas-list {
    position: relative;
    margin-top: 2em;
    margin-right: -20%;
    margin-left: -10px; }
    @media screen and (max-width: 1500px) {
      .site-content .servareas-section .servareas-list {
        margin-right: -35%; } }
    @media screen and (max-width: 1200px) {
      .site-content .servareas-section .servareas-list {
        margin-right: -55%; } }
    @media screen and (max-width: 1024px) {
      .site-content .servareas-section .servareas-list {
        margin-right: 0; } }
    .site-content .servareas-section .servareas-list .wp-block-group__inner-container {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      /*
      flex-direction: row | row-reverse | column | column-reverse;
      */
      -webkit-flex-direction: row;
      flex-direction: row;
      /*
      horizontally
      justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
      */
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .site-content .servareas-section .servareas-list .wp-block-kadence-infobox {
      margin-bottom: 30px;
      width: calc(50% - 15px); }
      @media screen and (max-width: 550px) {
        .site-content .servareas-section .servareas-list .wp-block-kadence-infobox {
          width: 100%;
          margin-bottom: 20px; } }
      .site-content .servareas-section .servareas-list .wp-block-kadence-infobox .kt-blocks-info-box-link-wrap {
        position: relative;
        box-shadow: 0 0 30px rgba(56, 59, 67, 0.2);
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s; }
        .site-content .servareas-section .servareas-list .wp-block-kadence-infobox .kt-blocks-info-box-link-wrap:after {
          content: '\f054';
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          display: block;
          color: #5A7D78;
          top: 50%;
          right: 20px;
          position: absolute;
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
        .site-content .servareas-section .servareas-list .wp-block-kadence-infobox .kt-blocks-info-box-link-wrap:hover {
          box-shadow: 0 10px 40px rgba(56, 59, 67, 0.3); }
      .site-content .servareas-section .servareas-list .wp-block-kadence-infobox .kt-blocks-info-box-title {
        color: #353535;
        padding-right: 30px;
        font-weight: 600; }
        .site-content .servareas-section .servareas-list .wp-block-kadence-infobox .kt-blocks-info-box-title {
          font-size: 14px; }
          @media screen and (min-width: 320px) {
            .site-content .servareas-section .servareas-list .wp-block-kadence-infobox .kt-blocks-info-box-title {
              font-size: calc(14px + 6 * ((100vw - 320px) / 1600)) !important; } }
          @media screen and (min-width: 1920px) {
            .site-content .servareas-section .servareas-list .wp-block-kadence-infobox .kt-blocks-info-box-title {
              font-size: 20px !important; } }
      .site-content .servareas-section .servareas-list .wp-block-kadence-infobox:hover .kt-blocks-info-box-title {
        color: #F18721; }
  @media screen and (min-width: 1025px) {
    .site-content .servareas-section .shift-map-col .kt-inside-inner-col {
      width: 60vw; } }

/* ==========================================================================
	Block editor - additional styles 
	========================================================================== */
.site-content {
  /** LOCATION PAGE */
  /** SERVICE PAGE */
  /** Process/icons grid */
  /** CALL TO ACTION SECTION - DRAFT */ }
  .site-content .accordion-style.has-2-cols .wp-block-kadence-pane {
    align-self: flex-start; }
  .site-content .accordion-style .wp-block-kadence-pane {
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15); }
    .site-content .accordion-style .wp-block-kadence-pane .kt-blocks-accordion-title-wrap {
      font-family: "Argentum Sans";
      font-weight: 600; }
      .site-content .accordion-style .wp-block-kadence-pane .kt-blocks-accordion-title-wrap {
        font-size: 16px; }
        @media screen and (min-width: 320px) {
          .site-content .accordion-style .wp-block-kadence-pane .kt-blocks-accordion-title-wrap {
            font-size: calc(16px + 6 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .accordion-style .wp-block-kadence-pane .kt-blocks-accordion-title-wrap {
            font-size: 22px !important; } }
    .site-content .accordion-style .wp-block-kadence-pane .kt-accordion-panel-inner p:last-child {
      margin-bottom: 0; }
  .site-content .accordion-style .kt-accodion-icon-style-basiccircle .kt-blocks-accordion-icon-trigger:after,
  .site-content .accordion-style .kt-accodion-icon-style-basiccircle .kt-blocks-accordion-icon-trigger:before {
    width: 14px;
    height: 2px;
    left: 5px;
    top: 11px; }
  .site-content .coming-soon-top {
    position: relative;
    z-index: 30; }
    .site-content .coming-soon-top .wp-block-kadence-column {
      margin-bottom: -80px;
      box-shadow: 0 0 30px rgba(56, 59, 67, 0.2); }
    .site-content .coming-soon-top .main-ttl {
      font-size: 36px; }
      @media screen and (min-width: 320px) {
        .site-content .coming-soon-top .main-ttl {
          font-size: calc(36px + 14 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .coming-soon-top .main-ttl {
          font-size: 50px !important; } }
    .site-content .coming-soon-top .logo {
      margin-top: -83px;
      position: relative;
      margin-bottom: 60px;
      z-index: 20; }
      .site-content .coming-soon-top .logo img {
        box-shadow: 0 0 30px rgba(56, 59, 67, 0.2); }
      @media screen and (max-width: 768px) {
        .site-content .coming-soon-top .logo {
          margin-top: -59px;
          margin-bottom: 40px; }
          .site-content .coming-soon-top .logo img {
            width: 350px; } }
      @media screen and (max-width: 480px) {
        .site-content .coming-soon-top .logo {
          margin: -50px -40px 20px -40px; }
          .site-content .coming-soon-top .logo img {
            width: 300px; } }
    .site-content .coming-soon-top p {
      font-size: 18px; }
      @media screen and (min-width: 320px) {
        .site-content .coming-soon-top p {
          font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .coming-soon-top p {
          font-size: 24px !important; } }
  .site-content .coming-soon-content .contact-box {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      .site-content .coming-soon-content .contact-box {
        font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .coming-soon-content .contact-box {
        font-size: 24px !important; } }
  .site-content .coming-soon-content .contact-box input[type="text"],
  .site-content .coming-soon-content .contact-box input[type="email"],
  .site-content .coming-soon-content .contact-box input[type="file"],
  .site-content .coming-soon-content .contact-box input[type="tel"],
  .site-content .coming-soon-content .contact-box textarea,
  .site-content .coming-soon-content .contact-box select {
    font-family: "Argentum Sans";
    background: #fff;
    border: none;
    box-shadow: 0px 2px 15px rgba(131, 141, 169, 0.14); }
  .site-content .coming-soon-content .info-box {
    font-size: 20px; }
    @media screen and (min-width: 320px) {
      .site-content .coming-soon-content .info-box {
        font-size: calc(20px + 4 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .coming-soon-content .info-box {
        font-size: 24px !important; } }
  .site-content .badges-gallery {
    margin: 60px 0;
    justify-content: center; }
    .site-content .badges-gallery .wp-block-image {
      flex-grow: 0 !important;
      width: auto !important;
      margin: 0 10px !important; }
      @media screen and (max-width: 480px) {
        .site-content .badges-gallery .wp-block-image {
          margin: 0 5px !important; } }
      .site-content .badges-gallery .wp-block-image img {
        box-shadow: 0 0 15px rgba(56, 59, 67, 0.1); }
  .site-content .all-services-list {
    margin-top: 3em;
    padding: 0 !important; }
    .site-content .all-services-list > .wp-block-group__inner-container {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      /*
      flex-direction: row | row-reverse | column | column-reverse;
      */
      -webkit-flex-direction: row;
      flex-direction: row;
      /*
      horizontally
      justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
      */
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 60px 40px; }
      .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group {
        width: 33.33%;
        padding: 0 30px;
        margin-bottom: 40px; }
        .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group .wp-block-heading {
          font-family: "Quattrocento", serif;
          line-height: 1em;
          color: #000;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          /*
          flex-direction: row | row-reverse | column | column-reverse;
          */
          -webkit-flex-direction: row;
          flex-direction: row;
          /*
          horizontally
          justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
          */
          -webkit-justify-content: space-between;
          justify-content: space-between;
          -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: none;
          flex-wrap: nowrap; }
          .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group .wp-block-heading:after {
            content: '';
            display: block;
            flex: 1;
            margin-left: 20px;
            background: url("../images/orange-tile-2.png") no-repeat center;
            opacity: 0.5; }
        .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group ul {
          list-style: none;
          margin-left: 0; }
          .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group ul li {
            padding-left: 20px;
            position: relative;
            margin: 0 0 10px 0; }
            .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group ul li:before {
              content: '';
              display: block;
              width: 5px;
              height: 5px;
              background: #F18721;
              color: #F18721;
              border-radius: 50%;
              top: 8px;
              left: 0;
              position: absolute; }
        @media screen and (min-width: 993px) {
          .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group:nth-child(3n+1) .wp-block-heading {
            color: #F18721; } }
        @media screen and (max-width: 992px) {
          .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group {
            width: 50%; }
            .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group:nth-child(2n+1) .wp-block-heading {
              color: #F18721; } }
        @media screen and (max-width: 767px) {
          .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group {
            width: 100%; } }
        @media screen and (max-width: 520px) {
          .site-content .all-services-list > .wp-block-group__inner-container .wp-block-group {
            padding: 0; } }
  @media screen and (max-width: 480px) {
    .site-content .cta-btns-inner .wp-block-button__link {
      min-width: 250px; } }
  .site-content .bg-list-box {
    background: #F18721;
    color: #fff;
    padding: 30px;
    margin: 1.3em 0;
    list-style: none;
    margin-left: 0; }
    .site-content .bg-list-box li {
      font-size: 18px;
      padding-left: 30px;
      position: relative;
      margin: 0 0 15px 0;
      text-transform: uppercase; }
      .site-content .bg-list-box li:last-child {
        margin-bottom: 0; }
      .site-content .bg-list-box li:before {
        content: '\f30b';
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        display: block;
        color: #fff;
        top: 0;
        left: 0;
        position: absolute; }
      .site-content .bg-list-box li strong {
        color: inherit;
        text-transform: uppercase;
        font-family: "Argentum Sans"; }
      .site-content .bg-list-box li em {
        text-transform: none; }
  @media screen and (min-width: 769px) {
    .site-content .location-service-box {
      background: #fff;
      -webkit-transition: all 0.4s;
      -moz-transition: all 0.4s;
      -ms-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s; }
      .site-content .location-service-box:hover {
        background: #f3f3f5; } }
  .site-content .location-service-box h3 {
    color: #A9472E; }
  .site-content .location-service-box .wp-block-kadence-infobox {
    width: 830px;
    max-width: 100%; }
    .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-media {
      box-shadow: 0 0 15px rgba(56, 59, 67, 0.12); }
    .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-title {
      background: rgba(90, 125, 120, 0.25);
      color: #A9472E;
      line-height: 1em;
      padding: 5px 10px; }
      .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-title {
        font-size: 19px; }
        @media screen and (min-width: 320px) {
          .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-title {
            font-size: calc(19px + 6 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-title {
            font-size: 25px !important; } }
      .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-title strong {
        color: #000; }
    .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-text {
      color: #353535; }
    @media screen and (max-width: 768px) {
      .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-link-wrap {
        text-align: center; }
        .site-content .location-service-box .wp-block-kadence-infobox .kt-blocks-info-box-link-wrap .kt-blocks-info-box-media {
          margin: 0 0 15px 0 !important; } }
  @media screen and (max-width: 1024px) {
    .site-content .location-service-box .wp-block-image.fill-img {
      padding-top: 50%; } }
  .site-content .fullsides-overlay-row .kb-section-has-overlay {
    position: relative; }
    @media screen and (min-width: 1025px) {
      .site-content .fullsides-overlay-row .kb-section-has-overlay:first-child .kt-inside-inner-col {
        padding-right: 100px; }
        .site-content .fullsides-overlay-row .kb-section-has-overlay:first-child .kt-inside-inner-col:before {
          width: 70vw;
          position: absolute;
          left: auto;
          right: 0;
          top: 0; }
      .site-content .fullsides-overlay-row .kb-section-has-overlay:last-child .kt-inside-inner-col:before {
        width: 70vw;
        position: absolute;
        left: -50px;
        right: auto;
        top: 0; } }
  .site-content .group-boxes-holder {
    gap: 2em;
    /*
    vertically
    align-items: flex-start | flex-end | center | baseline | stretch;
    */
    -webkit-align-items: stretch !important;
    align-items: stretch !important; }
    .site-content .group-boxes-holder > * {
      flex: 1; }
    @media screen and (max-width: 700px) {
      .site-content .group-boxes-holder {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
        .site-content .group-boxes-holder .wp-block-group {
          width: 100%;
          flex-basis: 100%; } }
  .site-content .tile-decor-group {
    position: relative; }
    .site-content .tile-decor-group:before {
      content: '';
      display: block;
      background: #F18721 url("../images/orange-tile.png");
      width: 380px;
      max-width: 80%;
      height: 380px;
      max-height: 80%;
      position: absolute;
      left: -40px;
      top: -40px;
      z-index: 1; }
      @media screen and (max-width: 1024px) {
        .site-content .tile-decor-group:before {
          left: -20px;
          top: -20px; } }
    .site-content .tile-decor-group .wp-block-group__inner-container {
      height: 100%;
      padding: 30px;
      background: #fff;
      box-shadow: 0 0 30px rgba(56, 59, 67, 0.25);
      position: relative;
      z-index: 20; }
      .site-content .tile-decor-group .wp-block-group__inner-container > *:last-child {
        margin-bottom: 0; }
    .site-content .tile-decor-group.right-bot:before {
      left: auto;
      top: auto;
      right: -40px;
      bottom: -40px; }
      @media screen and (max-width: 1024px) {
        .site-content .tile-decor-group.right-bot:before {
          right: -20px;
          bottom: -20px; } }
  .site-content .promo-icon-box {
    margin-top: 100px;
    margin-bottom: 35px;
    padding-top: 1px !important;
    color: #000;
    font-size: 18px; }
    .site-content .promo-icon-box .wp-block-image:first-child {
      margin-top: -80px;
      margin-bottom: 30px; }
      .site-content .promo-icon-box .wp-block-image:first-child img {
        background: #fff;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); }
      @media screen and (max-width: 600px) {
        .site-content .promo-icon-box .wp-block-image:first-child img {
          max-width: 175px;
          height: auto; } }
    .site-content .promo-icon-box h3 {
      color: #fff;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
      font-family: "Argentum Sans";
      letter-spacing: 1px; }
      .site-content .promo-icon-box h3 {
        font-size: 16px; }
        @media screen and (min-width: 320px) {
          .site-content .promo-icon-box h3 {
            font-size: calc(16px + 6 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .promo-icon-box h3 {
            font-size: 22px !important; } }
    .site-content .promo-icon-box h4 {
      color: #fff;
      text-transform: uppercase;
      text-shadow: -2px 0 #A9472E, 0 2px #A9472E, 2px 0 #A9472E, 0 -2px #A9472E; }
      .site-content .promo-icon-box h4 {
        font-size: 20px; }
        @media screen and (min-width: 320px) {
          .site-content .promo-icon-box h4 {
            font-size: calc(20px + 16 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .promo-icon-box h4 {
            font-size: 36px !important; } }
      .site-content .promo-icon-box h4 strong {
        color: #F4E7DB; }
    .site-content .promo-icon-box .sub-ttl {
      font-size: 18px; }
    .site-content .promo-icon-box .inline-list {
      list-style: none;
      margin: 1em 0;
      padding: 0;
      text-align: center; }
      .site-content .promo-icon-box .inline-list li {
        display: inline-block;
        vertical-align: top;
        font-weight: bold;
        position: relative;
        padding-left: 20px;
        margin-right: 15px;
        margin-left: 0; }
        .site-content .promo-icon-box .inline-list li:last-child {
          margin-right: 0; }
        .site-content .promo-icon-box .inline-list li:before {
          content: '';
          display: block;
          width: 5px;
          height: 5px;
          border-radius: 50%;
          background: #000;
          top: 0.6em;
          left: 0;
          position: absolute; }
    .site-content .promo-icon-box .wp-block-buttons {
      margin-top: 2em; }
  .site-content .accent-quote-box {
    color: #000; }
    .site-content .accent-quote-box h2 {
      font-size: 22px; }
      @media screen and (min-width: 320px) {
        .site-content .accent-quote-box h2 {
          font-size: calc(22px + 10 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .accent-quote-box h2 {
          font-size: 32px !important; } }
    .site-content .accent-quote-box .wp-block-group {
      box-shadow: 0 5px 40px rgba(0, 0, 0, 0.25); }
      @media screen and (min-width: 650px) {
        .site-content .accent-quote-box .wp-block-group {
          padding: 2em 3.5em; } }
  .site-content .icons-grid-style .wp-block-kadence-infobox .kt-blocks-info-box-title {
    color: #000;
    font-family: "Argentum Sans";
    font-weight: 600; }
    .site-content .icons-grid-style .wp-block-kadence-infobox .kt-blocks-info-box-title {
      font-size: 18px; }
      @media screen and (min-width: 320px) {
        .site-content .icons-grid-style .wp-block-kadence-infobox .kt-blocks-info-box-title {
          font-size: calc(18px + 4 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .icons-grid-style .wp-block-kadence-infobox .kt-blocks-info-box-title {
          font-size: 22px !important; } }
  .site-content .icons-grid-style .wp-block-kadence-infobox .kt-blocks-info-box-text {
    color: #353535;
    font-size: 16px; }
    .site-content .icons-grid-style .wp-block-kadence-infobox .kt-blocks-info-box-text strong {
      color: #A9472E; }
  .site-content .icons-grid-style .wp-block-kadence-infobox:hover .kt-blocks-info-box-title {
    color: #F18721; }
@-webkit-keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    top: 0vh;
    opacity: .8; }
  75% {
    opacity: 1; }
  100% {
    top: -100vh;
    opacity: 0; } }
@-moz-keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    top: 0vh;
    opacity: .8; }
  75% {
    opacity: 1; }
  100% {
    top: -100vh;
    opacity: 0; } }
@-o-keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    top: 0vh;
    opacity: .8; }
  75% {
    opacity: 1; }
  100% {
    top: -100vh;
    opacity: 0; } }
@keyframes floatUp {
  0% {
    top: 100vh;
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    top: 0vh;
    opacity: .8; }
  75% {
    opacity: 1; }
  100% {
    top: -100vh;
    opacity: 0; } }
  .site-content .call-2-action-group {
    position: relative; }
    .site-content .call-2-action-group .lighting-animation {
      overflow: hidden;
      width: 100%;
      height: 100%;
      /*background: radial-gradient(#f00,#1f1013); */
      background-color: #ba2d0b;
      background-image: linear-gradient(319deg, #ba2d0b 0%, #fe7f2d 37%, #ffbf46 100%);
      background: linear-gradient(319deg, #faff00 0%, #ff6e00 37%, #f08721 100%);
      top: 0;
      left: 0;
      position: absolute;
      z-index: 1; }
      .site-content .call-2-action-group .lighting-animation .light {
        position: absolute;
        width: 0px;
        opacity: .95;
        background-color: white;
        box-shadow: #fff 0px 0px 20px 2px;
        /*e9f1f1*/
        opacity: 0;
        top: 100vh;
        bottom: 0px;
        left: 0px;
        right: 0px;
        margin: auto; }
      .site-content .call-2-action-group .lighting-animation .x1 {
        -webkit-animation: floatUp 4s infinite linear;
        -moz-animation: floatUp 4s infinite linear;
        -o-animation: floatUp 4s infinite linear;
        animation: floatUp 4s infinite linear;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); }
      .site-content .call-2-action-group .lighting-animation .x2 {
        -webkit-animation: floatUp 7s infinite linear;
        -moz-animation: floatUp 7s infinite linear;
        -o-animation: floatUp 7s infinite linear;
        animation: floatUp 7s infinite linear;
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -o-transform: scale(1.6);
        transform: scale(1.6);
        left: 15%; }
      .site-content .call-2-action-group .lighting-animation .x3 {
        -webkit-animation: floatUp 2.5s infinite linear;
        -moz-animation: floatUp 2.5s infinite linear;
        -o-animation: floatUp 2.5s infinite linear;
        animation: floatUp 2.5s infinite linear;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        left: -15%; }
      .site-content .call-2-action-group .lighting-animation .x4 {
        -webkit-animation: floatUp 4.5s infinite linear;
        -moz-animation: floatUp 4.5s infinite linear;
        -o-animation: floatUp 4.5s infinite linear;
        animation: floatUp 4.5s infinite linear;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        left: -34%; }
      .site-content .call-2-action-group .lighting-animation .x5 {
        -webkit-animation: floatUp 8s infinite linear;
        -moz-animation: floatUp 8s infinite linear;
        -o-animation: floatUp 8s infinite linear;
        animation: floatUp 8s infinite linear;
        -webkit-transform: scale(2.2);
        -moz-transform: scale(2.2);
        -o-transform: scale(2.2);
        transform: scale(2.2);
        left: -57%; }
      .site-content .call-2-action-group .lighting-animation .x6 {
        -webkit-animation: floatUp 3s infinite linear;
        -moz-animation: floatUp 3s infinite linear;
        -o-animation: floatUp 3s infinite linear;
        animation: floatUp 3s infinite linear;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
        left: -81%; }
      .site-content .call-2-action-group .lighting-animation .x7 {
        -webkit-animation: floatUp 5.3s infinite linear;
        -moz-animation: floatUp 5.3s infinite linear;
        -o-animation: floatUp 5.3s infinite linear;
        animation: floatUp 5.3s infinite linear;
        -webkit-transform: scale(3.2);
        -moz-transform: scale(3.2);
        -o-transform: scale(3.2);
        transform: scale(3.2);
        left: 37%; }
      .site-content .call-2-action-group .lighting-animation .x8 {
        -webkit-animation: floatUp 4.7s infinite linear;
        -moz-animation: floatUp 4.7s infinite linear;
        -o-animation: floatUp 4.7s infinite linear;
        animation: floatUp 4.7s infinite linear;
        -webkit-transform: scale(1.7);
        -moz-transform: scale(1.7);
        -o-transform: scale(1.7);
        transform: scale(1.7);
        left: 62%; }
      .site-content .call-2-action-group .lighting-animation .x9 {
        -webkit-animation: floatUp 4.1s infinite linear;
        -moz-animation: floatUp 4.1s infinite linear;
        -o-animation: floatUp 4.1s infinite linear;
        animation: floatUp 4.1s infinite linear;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
        left: 85%; }
    .site-content .call-2-action-group .call-2-action-line {
      position: relative;
      z-index: 20;
      background: rgba(0, 0, 0, 0) !important; }
      .site-content .call-2-action-group .call-2-action-line .kt-row-column-wrap {
        padding-left: 230px;
        position: relative;
        z-index: 30; }
        .site-content .call-2-action-group .call-2-action-line .kt-row-column-wrap:before {
          content: '';
          display: block;
          width: 190px;
          height: 100%;
          background: url("../images/lightning.svg") no-repeat center;
          background-size: contain;
          top: 0;
          left: 0;
          position: absolute;
          z-index: 5; }
        @media screen and (max-width: 768px) {
          .site-content .call-2-action-group .call-2-action-line .kt-row-column-wrap {
            padding-left: 130px;
            padding-right: 0; }
            .site-content .call-2-action-group .call-2-action-line .kt-row-column-wrap:before {
              width: 100px; } }
        @media screen and (max-width: 520px) {
          .site-content .call-2-action-group .call-2-action-line .kt-row-column-wrap {
            padding-left: 0px; }
            .site-content .call-2-action-group .call-2-action-line .kt-row-column-wrap:before {
              display: none; } }
      .site-content .call-2-action-group .call-2-action-line h2 {
        margin-bottom: 0.5em; }
      .site-content .call-2-action-group .call-2-action-line p {
        margin-bottom: 0.5em;
        color: #fff; }
        .site-content .call-2-action-group .call-2-action-line p strong {
          color: #fff; }
        .site-content .call-2-action-group .call-2-action-line p:last-child {
          margin: 0; }
      @media screen and (max-width: 1024px) {
        .site-content .call-2-action-group .call-2-action-line .wp-block-buttons {
          /*
          horizontally
          justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
          */
          -webkit-justify-content: start !important;
          justify-content: start !important; } }

/** CONTACT PAGE */
.page-template-contact-page .site-content {
  padding-top: 0;
  padding-bottom: 0; }
  .page-template-contact-page .site-content .contact-top-section .wp-block-kadence-column {
    box-shadow: 0 0 30px rgba(56, 59, 67, 0.2); }

/** Global styles & sections */
.site .promo-box-style .kt-inside-inner-col {
  padding: 32px 56px 56px 56px;
  position: relative; }
  @media screen and (max-width: 768px) {
    .site .promo-box-style .kt-inside-inner-col {
      padding: 24px 44px 44px 44px; } }
  .site .promo-box-style .kt-inside-inner-col:after {
    content: '';
    display: block;
    /* -- dashed border
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-size: 1px 100%, 100% 1px, 1px 100% , 100% 1px;
    background-repeat: no-repeat;
    background-image:
    	repeating-linear-gradient(0deg, #fff, #fff 14px, transparent 14px, transparent 28px), // left
    	repeating-linear-gradient(90deg, #fff, #fff 14px, transparent 14px, transparent 28px), // top
    	repeating-linear-gradient(180deg, #fff, #fff 14px, transparent 14px, transparent 28px), // right
    	repeating-linear-gradient(270deg, #fff, #fff 14px, transparent 14px, transparent 28px); // bottom
    */
    border: 2px solid #fff;
    top: 32px;
    right: 32px;
    bottom: 32px;
    left: 32px;
    position: absolute;
    z-index: 1; }
    @media screen and (max-width: 768px) {
      .site .promo-box-style .kt-inside-inner-col:after {
        top: 24px;
        right: 24px;
        bottom: 24px;
        left: 24px; } }
  .site .promo-box-style .kt-inside-inner-col > * {
    position: relative;
    z-index: 20; }
  .site .promo-box-style .kt-inside-inner-col > :last-child {
    margin-bottom: 0; }
  .site .promo-box-style .kt-inside-inner-col .wp-block-image {
    margin-top: -53px;
    margin-bottom: 20px; }
    @media screen and (max-width: 768px) {
      .site .promo-box-style .kt-inside-inner-col .wp-block-image {
        margin-top: -44px; } }
    @media screen and (max-width: 480px) {
      .site .promo-box-style .kt-inside-inner-col .wp-block-image {
        margin-bottom: 10px; } }
    .site .promo-box-style .kt-inside-inner-col .wp-block-image figure {
      position: relative;
      padding: 40px 16px 50px 16px;
      width: 140px;
      height: 150px; }
      .site .promo-box-style .kt-inside-inner-col .wp-block-image figure:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-bottom: 21px solid #5A7D78;
        border-left: 21px solid rgba(0, 0, 0, 0);
        top: 0;
        left: -21px;
        position: absolute;
        z-index: 1; }
      .site .promo-box-style .kt-inside-inner-col .wp-block-image figure:after {
        content: '';
        display: block;
        background: url("../images/ribbon.svg") no-repeat;
        background-size: contain;
        top: 0;
        right: 0;
        bottom: 0;
        left: -8px;
        position: absolute;
        z-index: 5; }
      .site .promo-box-style .kt-inside-inner-col .wp-block-image figure img {
        display: block;
        margin: 0 auto;
        position: relative;
        z-index: 10; }
  .site .promo-box-style .kt-inside-inner-col .ttl {
    font-family: "Argentum Sans";
    font-weight: 600;
    text-transform: none; }
    .site .promo-box-style .kt-inside-inner-col .ttl {
      font-size: 18px; }
      @media screen and (min-width: 320px) {
        .site .promo-box-style .kt-inside-inner-col .ttl {
          font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site .promo-box-style .kt-inside-inner-col .ttl {
          font-size: 24px !important; } }
  .site .promo-box-style .kt-inside-inner-col .price {
    font-family: "Argentum Sans";
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2; }
    .site .promo-box-style .kt-inside-inner-col .price {
      font-size: 22px; }
      @media screen and (min-width: 320px) {
        .site .promo-box-style .kt-inside-inner-col .price {
          font-size: calc(22px + 8 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site .promo-box-style .kt-inside-inner-col .price {
          font-size: 30px !important; } }
  .site .promo-box-style .kt-inside-inner-col .info {
    font-size: 18px;
    line-height: 1.4; }
    .site .promo-box-style .kt-inside-inner-col .info em {
      font-size: 13px;
      letter-spacing: 1px; }
  .site .promo-box-style .kt-inside-inner-col .has-note em {
    font-style: normal;
    vertical-align: top;
    font-size: 60%; }
  .site .promo-box-style .kt-inside-inner-col .note {
    margin-top: 2em; }
    .site .promo-box-style .kt-inside-inner-col .note strong:first-child {
      font-size: 120%; }

/* ==========================================================================
	Category posts 
	========================================================================== */
.archive .category-posts-holder .posts-articles,
.blog .category-posts-holder .posts-articles,
.search .category-posts-holder .posts-articles {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /*
  flex-direction: row | row-reverse | column | column-reverse;
  */
  -webkit-flex-direction: row;
  flex-direction: row;
  /*
  horizontally
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
  */
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .archive .category-posts-holder .posts-articles:after,
  .blog .category-posts-holder .posts-articles:after,
  .search .category-posts-holder .posts-articles:after {
    content: "";
    width: calc(33.33% - 30px);
    height: 0; }
  .archive .category-posts-holder .posts-articles .post-more,
  .blog .category-posts-holder .posts-articles .post-more,
  .search .category-posts-holder .posts-articles .post-more {
    margin-top: 20px; }
  .archive .category-posts-holder .posts-articles.no-results,
  .blog .category-posts-holder .posts-articles.no-results,
  .search .category-posts-holder .posts-articles.no-results {
    padding: 40px; }
    .archive .category-posts-holder .posts-articles.no-results .entry-content,
    .blog .category-posts-holder .posts-articles.no-results .entry-content,
    .search .category-posts-holder .posts-articles.no-results .entry-content {
      background: none;
      width: auto;
      margin: 0;
      padding: 0; }

.header-meta {
  text-align: left;
  position: relative;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  color: #707070;
  border-top-color: #e3e3e3;
  border-bottom-color: #e3e3e3; }
  .header-meta > * {
    display: inline-block;
    margin-right: 10px;
    font-weight: normal;
    font-style: normal; }

.post-thumb img {
  width: 100%;
  height: auto; }

.site-content #nav-below {
  margin-top: 30px;
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /*
  flex-direction: row | row-reverse | column | column-reverse;
  */
  -webkit-flex-direction: row;
  flex-direction: row;
  /*
  horizontally
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
  */
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap; }
  .site-content #nav-below .page-numbers {
    margin-left: auto;
    margin-right: auto; }
    .site-content #nav-below .page-numbers li .page-numbers {
      color: #353535;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.15);
      padding: 10px 15px;
      min-width: 45px; }
      .site-content #nav-below .page-numbers li .page-numbers:hover {
        color: #F18721;
        border-color: #F18721; }
      .site-content #nav-below .page-numbers li .page-numbers.current {
        color: #F18721; }
  .site-content #nav-below .nav-link {
    width: calc(50% - 2px); }
    .site-content #nav-below .nav-link a {
      height: 100%;
      display: block;
      padding: 1em 1.5em;
      background: #f8f8f8; }

/* ==========================================================================
	Blog
	========================================================================== */
.blogposts-grid .posts-articles {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /*
  flex-direction: row | row-reverse | column | column-reverse;
  */
  -webkit-flex-direction: row;
  flex-direction: row;
  /*
  horizontally
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
  */
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .blogposts-grid .posts-articles .post-list-item {
    width: calc(33.33% - 30px); }
    @media screen and (max-width: 992px) {
      .blogposts-grid .posts-articles .post-list-item {
        width: calc(50% - 20px);
        margin-bottom: 32px !important; } }
    @media screen and (max-width: 768px) {
      .blogposts-grid .posts-articles .post-list-item {
        width: 100%; } }

.blog-list-style .post-list-item {
  border-left: 3px solid #F18721;
  padding: 24px;
  margin-bottom: 30px !important;
  background: #fff;
  box-shadow: 0 0 20px rgba(56, 59, 67, 0.15);
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s; }
  .blog-list-style .post-list-item .header-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /*
    flex-direction: row | row-reverse | column | column-reverse;
    */
    -webkit-flex-direction: row;
    flex-direction: row;
    /*
    horizontally
    justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
    */
    -webkit-justify-content: center;
    justify-content: center;
    /*
    vertically
    align-items: flex-start | flex-end | center | baseline | stretch;
    */
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    padding-bottom: 24px; }
    @media screen and (max-width: 520px) {
      .blog-list-style .post-list-item .header-info {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 0; } }
    .blog-list-style .post-list-item .header-info .post-image {
      width: 40%;
      min-height: 200px;
      align-self: stretch; }
      .blog-list-style .post-list-item .header-info .post-image a {
        display: block;
        position: relative;
        padding-top: 110%;
        height: 100%; }
        @media screen and (max-width: 767px) {
          .blog-list-style .post-list-item .header-info .post-image a {
            padding-top: 100%; } }
        @media screen and (max-width: 520px) {
          .blog-list-style .post-list-item .header-info .post-image a {
            padding-top: 60%; } }
        .blog-list-style .post-list-item .header-info .post-image a img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          /*filter: grayscale(1); */
          top: 0;
          left: 0;
          position: absolute;
          -webkit-transition: all 0.4s ease-in-out;
          -moz-transition: all 0.4s ease-in-out;
          -ms-transition: all 0.4s ease-in-out;
          -o-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out; }
      @media screen and (max-width: 520px) {
        .blog-list-style .post-list-item .header-info .post-image {
          width: 100%;
          min-height: 100px; } }
    .blog-list-style .post-list-item .header-info .post-title {
      flex: 1;
      padding: 0 0 0 25px; }
      @media screen and (max-width: 520px) {
        .blog-list-style .post-list-item .header-info .post-title {
          padding: 25px 0 0 0; } }
      .blog-list-style .post-list-item .header-info .post-title .date {
        opacity: 0.85;
        font-size: 85%;
        margin-bottom: 10px; }
      .blog-list-style .post-list-item .header-info .post-title .title {
        font-family: "Argentum Sans";
        font-weight: 600;
        line-height: 1.4; }
        .blog-list-style .post-list-item .header-info .post-title .title {
          font-size: 18px; }
          @media screen and (min-width: 320px) {
            .blog-list-style .post-list-item .header-info .post-title .title {
              font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
          @media screen and (min-width: 1920px) {
            .blog-list-style .post-list-item .header-info .post-title .title {
              font-size: 24px !important; } }
        .blog-list-style .post-list-item .header-info .post-title .title a {
          color: #000; }
  .blog-list-style .post-list-item .summary-info p {
    margin-bottom: 1em; }
  .blog-list-style .post-list-item .summary-info .post-more {
    text-align: left;
    font-family: "Argentum Sans";
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase; }
    .blog-list-style .post-list-item .summary-info .post-more a {
      display: inline-block;
      font-weight: 600; }
      .blog-list-style .post-list-item .summary-info .post-more a:after {
        content: '\2192';
        display: inline-block;
        margin-left: 6px;
        font-family: sans-serif;
        font-weight: bold; }
  .blog-list-style .post-list-item:hover {
    box-shadow: 0 10px 40px rgba(56, 59, 67, 0.3); }
    .blog-list-style .post-list-item:hover .header-info {
      /*.post-image {
      	img {
      		filter: grayscale(0);
      	}
      }*/ }
      .blog-list-style .post-list-item:hover .header-info .post-title .title a {
        color: #F18721; }

/* ==========================================================================
   Footer Section
   ========================================================================== */
#footercontainer {
  background: #F18721;
  /*#3f3f3f*/
  position: relative;
  z-index: 10; }
  #footercontainer .footer-widgets {
    background: #F18721;
    color: #fff;
    font-size: 16px;
    padding: 80px 20px 40px 20px;
    position: relative; }
    #footercontainer .footer-widgets a {
      color: #fff;
      border-bottom: 1px solid rgba(0, 0, 0, 0); }
      #footercontainer .footer-widgets a:hover {
        border-bottom-color: #fff; }
    #footercontainer .footer-widgets .widget {
      position: relative;
      margin-bottom: 32px;
      z-index: 20; }
      #footercontainer .footer-widgets .widget .swifty_imgwidget_ul {
        padding: 0;
        margin: 0;
        list-style: none; }
      @media screen and (min-width: 768px) {
        #footercontainer .footer-widgets .widget.margin-lg {
          margin-bottom: 48px; } }
    #footercontainer .footer-widgets .widget-title {
      font-weight: 700;
      letter-spacing: 1px;
      text-align: left;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 32px;
      margin-bottom: 0;
      color: #fff;
      /*$_color_accent_dark;	*/ }
      #footercontainer .footer-widgets .widget-title {
        font-size: 16px; }
        @media screen and (min-width: 320px) {
          #footercontainer .footer-widgets .widget-title {
            font-size: calc(16px + 6 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          #footercontainer .footer-widgets .widget-title {
            font-size: 22px !important; } }
    #footercontainer .footer-widgets .menu,
    #footercontainer .footer-widgets .textwidget ul.list-style {
      padding: 0;
      margin: 0;
      font-family: "Argentum Sans";
      font-weight: 600; }
      #footercontainer .footer-widgets .menu li,
      #footercontainer .footer-widgets .textwidget ul.list-style li {
        display: block;
        margin-bottom: 9px;
        position: relative;
        padding-left: 30px; }
        #footercontainer .footer-widgets .menu li:before,
        #footercontainer .footer-widgets .textwidget ul.list-style li:before {
          content: '';
          background: url("../images/lightning.svg") no-repeat center;
          background-size: contain;
          display: block;
          width: 15px;
          height: 20px;
          opacity: 1;
          top: 0.25em;
          left: 0px;
          position: absolute; }
        #footercontainer .footer-widgets .menu li a,
        #footercontainer .footer-widgets .textwidget ul.list-style li a {
          border-bottom: 1px solid rgba(0, 0, 0, 0); }
          #footercontainer .footer-widgets .menu li a:hover,
          #footercontainer .footer-widgets .textwidget ul.list-style li a:hover {
            border-bottom-color: #fff; }
        #footercontainer .footer-widgets .menu li .sub-menu,
        #footercontainer .footer-widgets .textwidget ul.list-style li .sub-menu {
          margin-top: 6px;
          padding-left: 15px; }
    #footercontainer .footer-widgets .foot-logo img {
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); }
    #footercontainer .footer-widgets .foot-logo ul.swifty_imgwidget_ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left; }
      #footercontainer .footer-widgets .foot-logo ul.swifty_imgwidget_ul li {
        margin: 0;
        padding: 0;
        display: inline-block; }
        #footercontainer .footer-widgets .foot-logo ul.swifty_imgwidget_ul li .sbcaption {
          text-align: center;
          margin-top: 20px;
          line-height: 1.7; }
    #footercontainer .footer-widgets .foot-logo.transparent {
      display: none; }
    #footercontainer .footer-widgets .foot-contacts {
      font-size: 18px;
      font-family: "Argentum Sans";
      font-weight: 600; }
      #footercontainer .footer-widgets .foot-contacts .textwidget i {
        margin-right: 10px; }
      #footercontainer .footer-widgets .foot-contacts .textwidget p {
        margin: 10px 0; }
        #footercontainer .footer-widgets .foot-contacts .textwidget p.phone a {
          font-size: 130%; }
    #footercontainer .footer-widgets .foot-badges ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      /*
      flex-direction: row | row-reverse | column | column-reverse;
      */
      -webkit-flex-direction: row;
      flex-direction: row;
      /*
      horizontally
      justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
      */
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      /*
      vertically
      align-items: flex-start | flex-end | center | baseline | stretch;
      */
      -webkit-align-items: center;
      align-items: center;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: none;
      flex-wrap: nowrap; }
      #footercontainer .footer-widgets .foot-badges ul li {
        margin: 10px;
        box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.3); }
    #footercontainer .footer-widgets .foot-badges.transparent {
      display: none; }
      #footercontainer .footer-widgets .foot-badges.transparent ul li {
        width: 40%;
        margin: 10px 30px 10px 0;
        box-shadow: none; }
    #footercontainer .footer-widgets .foot-areas ul.list-style li:before {
      content: '\f3c5';
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      background: none;
      display: block;
      width: auto;
      height: auto;
      top: 0; }
    #footercontainer .footer-widgets .has-list-col-2 ul {
      -webkit-columns: 2;
      -moz-columns: 2;
      columns: 2; }
      @media screen and (max-width: 600px) {
        #footercontainer .footer-widgets .has-list-col-2 ul {
          -webkit-columns: 1;
          -moz-columns: 1;
          columns: 1; } }
  #footercontainer .footer-bottom {
    background: #fff;
    color: #353535;
    padding: 12px 0;
    box-shadow: 0px 0px 16px 0px rgba(18, 74, 47, 0.24);
    position: relative;
    z-index: 10; }
    #footercontainer .footer-bottom .foot-esa-info {
      text-align: center;
      font-size: 20px;
      text-transform: uppercase; }
      #footercontainer .footer-bottom .foot-esa-info p {
        margin: 0; }
      #footercontainer .footer-bottom .foot-esa-info strong {
        color: #A9472E;
        font-weight: 400; }
  #footercontainer .copyright {
    background: #F18721;
    font-size: 18px;
    color: #fff;
    padding: 18px 0 18px 0;
    text-align: center; }
    #footercontainer .copyright a {
      color: #fff; }
      #footercontainer .copyright a:hover {
        color: #A9472E; }
    #footercontainer .copyright p {
      margin: 0;
      padding: 0; }

/** Back Top Link */
#back-top {
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 300;
  display: none;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s; }
  @media screen and (max-width: 992px) {
    #back-top {
      bottom: 5px; } }
  #back-top.show {
    display: block;
    animation: fadeInRight 0.8s; }
  #back-top a {
    display: block;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    background: #F18721;
    border: 2px solid #F18721;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; }
    #back-top a:before {
      content: "\f106";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      font-size: 20px;
      line-height: 40px;
      height: 40px;
      width: 40px;
      text-align: center;
      display: block;
      -webkit-transition: all 0.4s;
      -moz-transition: all 0.4s;
      -ms-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s; }
    #back-top a:hover {
      background: #A9472E;
      border-color: #A9472E;
      color: #fff; }

/** Phone Floater */
.phone-floater {
  animation: fadeInLeft 1s 3s;
  animation-fill-mode: backwards;
  bottom: 20px;
  left: 20px;
  position: fixed;
  z-index: 200;
  display: none; }
  @media screen and (max-width: 992px) {
    .phone-floater {
      bottom: 5px;
      left: 5px;
      display: block; } }
  .phone-floater a {
    display: block;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    background: #F18721;
    animation: shpulse 2s infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%; }

.whatsapp-floater {
  animation: fadeInRight 1s 3s;
  animation-fill-mode: backwards;
  right: 20px;
  bottom: 20px;
  position: fixed;
  z-index: 200; }
  @media screen and (max-width: 992px) {
    .whatsapp-floater {
      bottom: 5px;
      right: 5px; } }
  .whatsapp-floater a {
    display: block; }
    .whatsapp-floater a img {
      width: 70px;
      height: 70px; }

/* ==========================================================================
   Sidebar
   ========================================================================== */
#secondary .widget {
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 0 25px rgba(56, 59, 67, 0.15); }
  #secondary .widget:last-child {
    margin: 0; }
  #secondary .widget .widget-title {
    font-family: "Quattrocento", serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 1em;
    color: #F18721; }
    #secondary .widget .widget-title {
      font-size: 16px; }
      @media screen and (min-width: 320px) {
        #secondary .widget .widget-title {
          font-size: calc(16px + 6 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        #secondary .widget .widget-title {
          font-size: 22px !important; } }
    #secondary .widget .widget-title:before, #secondary .widget .widget-title:after {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      bottom: 0;
      left: 0;
      position: absolute;
      z-index: 10; }
    #secondary .widget .widget-title:before {
      background: #F9C007; }
    #secondary .widget .widget-title:after {
      background: #F9C007;
      left: 24px; }
  #secondary .widget .menu {
    padding: 0;
    margin: 0; }
    #secondary .widget .menu li {
      display: block;
      position: relative;
      padding: 10px 0 10px 22px;
      border-top: 1px solid rgba(90, 125, 120, 0.1); }
      #secondary .widget .menu li:first-child {
        border: none; }
      #secondary .widget .menu li:before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        background: #5A7D78;
        opacity: 0.5;
        top: 17px;
        left: 0px;
        position: absolute; }
      #secondary .widget .menu li a {
        color: #5A7D78;
        border-bottom: 1px solid rgba(0, 0, 0, 0); }
        #secondary .widget .menu li a:hover {
          color: #F18721;
          border-bottom-color: #F18721; }
      #secondary .widget .menu li .sub-menu {
        margin-top: 6px;
        padding-left: 15px; }
  @media screen and (max-width: 992px) {
    #secondary .widget.side-services {
      display: none; } }

/* ==========================================================================
   404 Page
   ========================================================================== */
article.error404 {
  text-align: center; }
  article.error404 .error-code {
    color: #fff;
    text-shadow: -2px 0 #F18721, 0 2px #F18721, 2px 0 #F18721, 0 -2px #F18721;
    line-height: 1.1; }
    article.error404 .error-code {
      font-size: 60px; }
      @media screen and (min-width: 320px) {
        article.error404 .error-code {
          font-size: calc(60px + 120 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        article.error404 .error-code {
          font-size: 180px !important; } }

.error404 .site-content .entry-title,
.error404 .site-content p strong {
  color: #dc4732; }
.error404 .site-content .entry-content {
  color: #dc4732; }
  .error404 .site-content .entry-content {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      .error404 .site-content .entry-content {
        font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .error404 .site-content .entry-content {
        font-size: 24px !important; } }
  .error404 .site-content .entry-content .decor-img {
    margin-left: -20px;
    margin-right: -20px; }
    .error404 .site-content .entry-content .decor-img img {
      display: block;
      margin: 0 auto; }

/* ==========================================================================
   Site specific styles
   ========================================================================== */
.odometer-item {
  color: #F18721;
  font-family: "Argentum Sans" !important;
  font-weight: 400;
  text-align: center; }
  .odometer-item {
    font-size: 32px; }
    @media screen and (min-width: 320px) {
      .odometer-item {
        font-size: calc(32px + 16 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .odometer-item {
        font-size: 48px !important; } }
  .odometer-item .odometer {
    font-family: "Argentum Sans" !important;
    font-weight: 600;
    vertical-align: baseline; }
    .odometer-item .odometer * {
      vertical-align: baseline !important; }

.today-date {
  display: block;
  animation: fadeIn 0.6s;
  animation-fill-mode: backwards;
  position: relative;
  padding-left: 24px; }
  .today-date:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #5A7D78;
    border-radius: 50%;
    margin-top: -4px;
    /*box-shadow: 0 0 0 4px rgba($_color_accent2, 0.12);*/
    animation: shpulse_sm 2s infinite;
    top: 50%;
    left: 4px;
    position: absolute; }

/** 	Custom Separator 	*/
.sq_sep {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /*
  flex-direction: row | row-reverse | column | column-reverse;
  */
  -webkit-flex-direction: row;
  flex-direction: row;
  /*
  horizontally
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
  */
  -webkit-justify-content: center;
  justify-content: center;
  /*
  vertically
  align-items: flex-start | flex-end | center | baseline | stretch;
  */
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  position: relative;
  clear: both;
  overflow: hidden;
  margin: 0 auto 30px auto;
  width: 170px;
  max-width: 100%; }
  .sq_sep:before, .sq_sep:after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background: #F18721;
    margin: 0 15px; }
  .sq_sep .decor {
    display: block;
    width: 30px;
    height: 25px;
    background: url(../images/logo-icon.png) no-repeat center;
    background-size: contain; }
  .sq_sep.white:before, .sq_sep.white:after {
    background: #fff; }
  .sq_sep.white .decor {
    background-image: url(../images/logo-icon-w.png); }
  .sq_sep.line {
    width: 100%;
    height: 30px;
    background: url("../images/orange-tile.png");
    margin: 0; }
    .sq_sep.line:before, .sq_sep.line:after {
      display: none; }
    .sq_sep.line .decor {
      display: none; }

/** 	Blog Pullout 	*/
.blogposts-grid {
  padding: 20px 0 10px 0; }
  .blogposts-grid.sides-decor {
    position: relative; }
    .blogposts-grid.sides-decor:before, .blogposts-grid.sides-decor:after {
      content: '';
      display: block;
      height: 330px;
      max-height: 80%;
      width: 50vw;
      background: #F18721 url("../images/orange-tile.png") repeat center;
      position: absolute;
      top: 50%;
      transform: translate(0, -50%); }
    .blogposts-grid.sides-decor:before {
      right: 100%;
      margin-right: 64px; }
      @media screen and (max-width: 1900px) {
        .blogposts-grid.sides-decor:before {
          margin-right: 32px; } }
      @media screen and (max-width: 1800px) {
        .blogposts-grid.sides-decor:before {
          margin-right: 16px; } }
      @media screen and (max-width: 1024px) {
        .blogposts-grid.sides-decor:before {
          margin-right: 24px; } }
    .blogposts-grid.sides-decor:after {
      left: 100%;
      margin-left: 64px; }
      @media screen and (max-width: 1900px) {
        .blogposts-grid.sides-decor:after {
          margin-left: 32px; } }
      @media screen and (max-width: 1800px) {
        .blogposts-grid.sides-decor:after {
          margin-left: 16px; } }
      @media screen and (max-width: 1024px) {
        .blogposts-grid.sides-decor:after {
          margin-left: 24px; } }

/* ==========================================================================
   Additional styles
   ========================================================================== */
/** Additional Color Palette */
.has-sq-light-gray-background-color {
  background-color: #f3f3f5; }

.has-sq-light-gray-color {
  color: #f3f3f5; }

.has-sq-dark-gray-background-color {
  background-color: #1e2b43; }

.has-sq-dark-gray-color {
  color: #1e2b43; }

.has-sq-color-accent-background-color {
  background-color: #F18721; }

.has-sq-color-accent-color {
  color: #F18721; }

.has-sq-color-accent-light-background-color {
  background-color: #F9C007; }

.has-sq-color-accent-light-color {
  color: #F9C007; }

.has-sq-color-accent-dark-background-color {
  background-color: #A9472E; }

.has-sq-color-accent-dark-color {
  color: #A9472E; }

.has-sq-color-accent-green-background-color {
  background-color: #5A7D78; }

.has-sq-color-accent-green-color {
  color: #5A7D78; }

.has-sq-color-light-bg-background-color {
  background-color: #F4E7DB; }

.has-sq-color-light-bg-color {
  color: #F4E7DB; }

.has-sq-color-light-bg-2-background-color {
  background-color: #F9F9FA; }

.has-sq-color-light-bg-2-color {
  color: #F9F9FA; }

/*# sourceMappingURL=theme.css.map */
