/*
 * GLOBAL VARS
 */
/* 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: #F15A24; }
  to {
    color: #fff; } }
@-moz-keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F15A24; }
  to {
    color: #fff; } }
@-ms-keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F15A24; }
  to {
    color: #fff; } }
@-o-keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F15A24; }
  to {
    color: #fff; } }
@keyframes blinking_text {
  from {
    color: #fff; }
  50% {
    color: #F15A24; }
  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: #a3a5b0; }
  50% {
    background: #F15A24; }
  100% {
    background: #a3a5b0; } }
@-moz-keyframes bgchange {
  0% {
    background: #a3a5b0; }
  50% {
    background: #F15A24; }
  100% {
    background: #a3a5b0; } }
@-ms-keyframes bgchange {
  0% {
    background: #a3a5b0; }
  50% {
    background: #F15A24; }
  100% {
    background: #a3a5b0; } }
@-o-keyframes bgchange {
  0% {
    background: #a3a5b0; }
  50% {
    background: #F15A24; }
  100% {
    background: #a3a5b0; } }
@keyframes bgchange {
  0% {
    background: #a3a5b0; }
  50% {
    background: #F15A24; }
  100% {
    background: #a3a5b0; } }
.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, 90, 36, 0.4); }
  70% {
    box-shadow: 0 0 0 20px rgba(241, 90, 36, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(241, 90, 36, 0); } }
@keyframes g_blinking {
  from {
    background: #44cd00; }
  50% {
    background: #fff; }
  to {
    background: #44cd00; } }
/* ==========================================================================
   Basic styles
   ========================================================================== */
body {
  font-family: "Open Sans", sans-serif;
  color: #3C4057;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  background: #fff; }
  @media screen and (max-width: 520px) {
    body {
      font-size: 15px; } }
  @media screen and (max-width: 1280px) {
    body.menu-opened {
      overflow: hidden; } }

::-webkit-selection {
  background: #3C4057;
  color: #fff;
  text-shadow: none; }

::-moz-selection {
  background: #3C4057;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #3C4057;
  color: #fff;
  text-shadow: none; }

.container,
.container-fluid,
.kb-theme-content-width {
  width: 1360px;
  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: 1625px;
  max-width: 100% !important;
  margin-left: auto;
  margin-right: auto; }

.container-full {
  padding-left: 15px;
  padding-right: 15px; }
  @media screen and (max-width: 768px) {
    .container-full {
      padding-left: 20px;
      padding-right: 20px; } }
  .container-full.padding-0 {
    padding: 0; }

#maincontentcontainer {
  background: #fff;
  z-index: 50; }

.site-content {
  padding: 64px 0 40px 0; }

.home.page .site-content,
.page-template-full-width .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 {
    margin-bottom: 0; }

.wow {
  visibility: hidden;
  animation-fill-mode: backwards; }

i.phone-icon {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background: url("../images/phone-icon.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s; }
  i.phone-icon.white {
    background-image: url("../images/phone-icon_white.svg"); }
  i.phone-icon.gray {
    background-image: url("../images/phone-icon_gray.svg"); }

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  line-height: normal;
  text-transform: none;
  font-weight: 400;
  line-height: 1.1;
  color: #3C4057;
  padding: 0;
  margin: 0 0 0.75em 0; }
  h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-weight: 700; }

h1 {
  font-size: 32px; }
  @media screen and (min-width: 320px) {
    h1 {
      font-size: calc(32px + 16 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    h1 {
      font-size: 48px !important; } }

h2 {
  font-size: 28px; }
  @media screen and (min-width: 320px) {
    h2 {
      font-size: calc(28px + 12 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    h2 {
      font-size: 40px !important; } }

h3 {
  font-size: 24px; }
  @media screen and (min-width: 320px) {
    h3 {
      font-size: calc(24px + 10 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    h3 {
      font-size: 34px !important; } }

h4 {
  font-size: 20px; }
  @media screen and (min-width: 320px) {
    h4 {
      font-size: calc(20px + 8 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    h4 {
      font-size: 28px !important; } }

h5 {
  font-size: 18px; }
  @media screen and (min-width: 320px) {
    h5 {
      font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    h5 {
      font-size: 24px !important; } }

h6 {
  font-size: 16px; }
  @media screen and (min-width: 320px) {
    h6 {
      font-size: calc(16px + 4 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    h6 {
      font-size: 20px !important; } }

a {
  color: #d9531a;
  -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: #FBB03B; }

/* ==========================================================================
   General style of forms
   ========================================================================== */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #979797; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #979797; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #979797; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #979797; }

.grecaptcha-badge {
  opacity: 0 !important;
  width: 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: 18px 0;
    font-size: 18px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    background: rgba(0, 0, 0, 0);
    border: none;
    border-bottom: 1px solid rgba(92, 92, 92, 0.64);
    width: 100%;
    color: #979797;
    -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: 15px;
        padding: 9px 13px; } }
    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-bottom-color: #F15A24; }
  form select {
    min-height: 46px;
    /*-webkit-appearance: none; */ }
    @media screen and (max-width: 600px) {
      form select {
        min-height: 40px; } }
    form select option {
      padding: 5px 10px; }
  form textarea {
    height: 80px;
    min-height: 80px;
    overflow: auto; }
  form .forminator-label {
    display: none; }
  form .show-label .forminator-label {
    font-weight: bold;
    display: block;
    width: 100%;
    margin-bottom: 10px; }
  form div[id*="textarea-"] .forminator-field {
    position: relative; }
    form div[id*="textarea-"] .forminator-field .forminator-description {
      padding: 10px;
      font-size: 12px;
      color: #3C4057;
      right: 0;
      bottom: 0;
      position: absolute;
      z-index: 20; }
  form .forminator-checkbox input {
    margin-right: 10px;
    width: 20px;
    height: 20px; }
  form .forminator-radio {
    margin-right: 20px; }
    form .forminator-radio input {
      margin-right: 10px;
      width: 20px;
      height: 20px; }
  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-custom-form .forminator-row {
    position: relative;
    margin-bottom: 30px !important; }
    form.forminator-custom-form .forminator-row .forminator-col {
      position: relative; }
    form.forminator-custom-form .forminator-row > .fas:before {
      display: block;
      color: #F15A24;
      top: 15px;
      left: 30px;
      position: absolute;
      z-index: 10; }
    form.forminator-custom-form .forminator-row > .fas .forminator-field input, form.forminator-custom-form .forminator-row > .fas .forminator-field select, form.forminator-custom-form .forminator-row > .fas .forminator-field textarea {
      padding-left: 40px; }
    @media screen and (max-width: 783px) {
      form.forminator-custom-form .forminator-row .forminator-col {
        display: block; }
        form.forminator-custom-form .forminator-row .forminator-col.fas:before {
          left: 15px; } }
  form.forminator-ui.forminator-design--material {
    margin: 0 !important; }
    form.forminator-ui.forminator-design--material .forminator-row {
      margin-bottom: 16px !important; }
    form.forminator-ui.forminator-design--material .forminator-field .forminator-floating--input {
      -webkit-transform: translateY(38px);
      transform: translateY(38px); }
    form.forminator-ui.forminator-design--material .forminator-field .select2-selection__rendered {
      padding: 1em 0.3em !important; }
    form.forminator-ui.forminator-design--material .forminator-field .forminator-input {
      font-size: 16px !important;
      padding: 1em 0.3em !important; }
    form.forminator-ui.forminator-design--material .forminator-field .forminator-textarea {
      border-left: none !important;
      border-right: none !important;
      border-top: none !important;
      padding: 1em 0.3em !important; }
    form.forminator-ui.forminator-design--material .forminator-field .forminator-floating--textarea {
      padding: 1em 0 !important; }
    form.forminator-ui.forminator-design--material .forminator-field .forminator-textarea--wrap {
      margin-top: 20px; }
      form.forminator-ui.forminator-design--material .forminator-field .forminator-textarea--wrap:after {
        border-top-color: rgba(0, 0, 0, 0) !important;
        border-left-color: rgba(0, 0, 0, 0) !important;
        border-right-color: rgba(0, 0, 0, 0) !important; }
      @media screen and (max-width: 650px) {
        form.forminator-ui.forminator-design--material .forminator-field .forminator-textarea--wrap {
          margin-top: 32px; } }
    form.forminator-ui.forminator-design--material .forminator-field.forminator-is_filled .forminator-floating--textarea, form.forminator-ui.forminator-design--material .forminator-field.forminator-is_active .forminator-floating--textarea {
      -webkit-transform: translateY(-24px);
      transform: translateY(-24px); }
    form.forminator-ui.forminator-design--material .forminator-field-select .forminator-label {
      visibility: hidden; }
    form.forminator-ui.forminator-design--material .forminator-field-upload {
      margin-top: 32px; }
      form.forminator-ui.forminator-design--material .forminator-field-upload .forminator-field {
        position: relative; }
      form.forminator-ui.forminator-design--material .forminator-field-upload .forminator-label {
        font-size: 16px !important;
        font-weight: 400 !important; }
      @media screen and (min-width: 640px) {
        form.forminator-ui.forminator-design--material .forminator-field-upload .forminator-label {
          top: 0;
          left: 0;
          position: absolute; }
        form.forminator-ui.forminator-design--material .forminator-field-upload .forminator-description {
          top: 0;
          right: 0;
          position: absolute; } }
      form.forminator-ui.forminator-design--material .forminator-field-upload .forminator-multi-upload {
        border-top: none;
        border-left: none;
        border-right: none; }
    form.forminator-ui.forminator-design--material .forminator-button {
      font-weight: 600 !important;
      padding: 1em 1.1em !important; }
      form.forminator-ui.forminator-design--material .forminator-button:before, form.forminator-ui.forminator-design--material .forminator-button:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 0;
        /*opacity: 0; */
        background: #FBB03B;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        z-index: 1; }
      form.forminator-ui.forminator-design--material .forminator-button:before {
        top: 20%;
        left: 0; }
      form.forminator-ui.forminator-design--material .forminator-button:after {
        bottom: 20%;
        right: 0; }
      form.forminator-ui.forminator-design--material .forminator-button:hover:before {
        width: 100%;
        height: 50%;
        top: 0;
        opacity: 1; }
      form.forminator-ui.forminator-design--material .forminator-button:hover:after {
        width: 100%;
        height: 50%;
        bottom: 0;
        opacity: 1; }
    form.forminator-ui.forminator-design--material .top-space {
      margin-top: 40px !important; }
    form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field {
      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: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      column-gap: 15px; }
      form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field h4.forminator-label, form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field > .forminator-label {
        margin-top: 32px;
        margin-bottom: 16px;
        font-size: 18px !important;
        font-family: "Raleway", sans-serif;
        width: 100%; }
      form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field .forminator-checkbox {
        width: calc(20% - 15px);
        margin: 20px 0 !important; }
        @media screen and (max-width: 1400px) {
          form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field .forminator-checkbox {
            width: calc(25% - 15px); } }
        @media screen and (max-width: 1200px) {
          form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field .forminator-checkbox {
            width: calc(50% - 15px); } }
        form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field .forminator-checkbox .forminator-checkbox-box {
          display: none; }
        form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field .forminator-checkbox .forminator-checkbox-image {
          box-shadow: none !important;
          padding: 3px; }
          form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field .forminator-checkbox .forminator-checkbox-image span {
            width: 45px !important;
            height: 45px !important; }
        form.forminator-ui.forminator-design--material .checkbox-icons .forminator-field .forminator-checkbox input:checked + .forminator-checkbox-box + .forminator-checkbox-label {
          color: #F15A24; }

body .select2-results__options {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); }

/** Buttons */
input[type="submit"], .wpforms-submit, .btn, a.more-link, .forminator-button {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  padding: 0.75em 1.5em;
  min-width: 200px;
  text-align: center;
  line-height: 1.4;
  background: #F15A24;
  border: 1px solid #F15A24;
  color: #fff !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  input[type="submit"], .wpforms-submit, .btn, a.more-link, .forminator-button {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      input[type="submit"], .wpforms-submit, .btn, a.more-link, .forminator-button {
        font-size: calc(18px + 4 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      input[type="submit"], .wpforms-submit, .btn, a.more-link, .forminator-button {
        font-size: 22px !important; } }
  input[type="submit"]:hover, .wpforms-submit:hover, .btn:hover, a.more-link:hover, .forminator-button:hover {
    background: #FBB03B;
    border-color: #FBB03B;
    color: #fff !important; }
  input[type="submit"] > *, .wpforms-submit > *, .btn > *, a.more-link > *, .forminator-button > * {
    position: relative; }
  input[type="submit"].white, .white > input[type="submit"], .wpforms-submit.white, .white > .wpforms-submit, .btn.white, a.white.more-link, .white > .btn, .white > a.more-link, .forminator-button.white, .white > .forminator-button {
    background: #fff;
    border-color: #fff;
    color: #F15A24 !important; }
    input[type="submit"].white:hover, .white > input[type="submit"]:hover, .wpforms-submit.white:hover, .white > .wpforms-submit:hover, .btn.white:hover, a.white.more-link:hover, .white > .btn:hover, .white > a.more-link:hover, .forminator-button.white:hover, .white > .forminator-button:hover {
      background: #FBB03B;
      border-color: #FBB03B;
      color: #fff !important; }
  input[type="submit"].gold, .gold > input[type="submit"], .wpforms-submit.gold, .gold > .wpforms-submit, .btn.gold, a.gold.more-link, .gold > .btn, .gold > a.more-link, .forminator-button.gold, .gold > .forminator-button {
    background: #FBB03B;
    border-color: #FBB03B;
    color: #fff !important; }
    input[type="submit"].gold:hover, .gold > input[type="submit"]:hover, .wpforms-submit.gold:hover, .gold > .wpforms-submit:hover, .btn.gold:hover, a.gold.more-link:hover, .gold > .btn:hover, .gold > a.more-link:hover, .forminator-button.gold:hover, .gold > .forminator-button:hover {
      background: #fff;
      border-color: #fff;
      color: #F15A24 !important; }
  input[type="submit"].btn-lg, .btn-lg > input[type="submit"], .wpforms-submit.btn-lg, .btn-lg > .wpforms-submit, .btn.btn-lg, a.btn-lg.more-link, .btn-lg > .btn, .btn-lg > a.more-link, .forminator-button.btn-lg, .btn-lg > .forminator-button {
    padding: 1em 1.1em;
    min-width: 250px; }
    input[type="submit"].btn-lg, .btn-lg > input[type="submit"], .wpforms-submit.btn-lg, .btn-lg > .wpforms-submit, .btn.btn-lg, a.btn-lg.more-link, .btn-lg > .btn, .btn-lg > a.more-link, .forminator-button.btn-lg, .btn-lg > .forminator-button {
      font-size: 20px; }
      @media screen and (min-width: 320px) {
        input[type="submit"].btn-lg, .btn-lg > input[type="submit"], .wpforms-submit.btn-lg, .btn-lg > .wpforms-submit, .btn.btn-lg, a.btn-lg.more-link, .btn-lg > .btn, .btn-lg > a.more-link, .forminator-button.btn-lg, .btn-lg > .forminator-button {
          font-size: calc(20px + 4 * ((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, .btn.btn-lg, a.btn-lg.more-link, .btn-lg > .btn, .btn-lg > a.more-link, .forminator-button.btn-lg, .btn-lg > .forminator-button {
          font-size: 24px !important; } }
  input[type="submit"].btn-sm, .btn-sm > input[type="submit"], .wpforms-submit.btn-sm, .btn-sm > .wpforms-submit, .btn.btn-sm, a.btn-sm.more-link, .btn-sm > .btn, .btn-sm > a.more-link, .forminator-button.btn-sm, .btn-sm > .forminator-button {
    min-width: 160px;
    padding: 0.65em 1em; }
    input[type="submit"].btn-sm, .btn-sm > input[type="submit"], .wpforms-submit.btn-sm, .btn-sm > .wpforms-submit, .btn.btn-sm, a.btn-sm.more-link, .btn-sm > .btn, .btn-sm > a.more-link, .forminator-button.btn-sm, .btn-sm > .forminator-button {
      font-size: 16px; }
      @media screen and (min-width: 320px) {
        input[type="submit"].btn-sm, .btn-sm > input[type="submit"], .wpforms-submit.btn-sm, .btn-sm > .wpforms-submit, .btn.btn-sm, a.btn-sm.more-link, .btn-sm > .btn, .btn-sm > a.more-link, .forminator-button.btn-sm, .btn-sm > .forminator-button {
          font-size: calc(16px + 4 * ((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, .btn.btn-sm, a.btn-sm.more-link, .btn-sm > .btn, .btn-sm > a.more-link, .forminator-button.btn-sm, .btn-sm > .forminator-button {
          font-size: 20px !important; } }
  input[type="submit"].full, .full > input[type="submit"], .wpforms-submit.full, .full > .wpforms-submit, .btn.full, a.full.more-link, .full > .btn, .full > a.more-link, .forminator-button.full, .full > .forminator-button {
    display: block;
    width: 100%; }

.wp-block-button,
.btn-effect {
  display: inline-block;
  background: #F15A24;
  border: 1px solid #F15A24;
  color: #fff !important;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  .wp-block-button,
  .btn-effect {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      .wp-block-button,
      .btn-effect {
        font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .wp-block-button,
      .btn-effect {
        font-size: 24px !important; } }
  .wp-block-button:before, .wp-block-button:after,
  .btn-effect:before,
  .btn-effect:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    /*opacity: 0; */
    background: #FBB03B;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1; }
  .wp-block-button:before,
  .btn-effect:before {
    top: 20%;
    left: 0; }
  .wp-block-button:after,
  .btn-effect:after {
    bottom: 20%;
    right: 0; }
  .wp-block-button .wp-block-button__link, .wp-block-button > b,
  .btn-effect .wp-block-button__link,
  .btn-effect > b {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    padding: 0.75em 1.1em;
    line-height: 1.4;
    border: none;
    min-width: 200px;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    z-index: 10; }
    .wp-block-button .wp-block-button__link, .wp-block-button > b,
    .btn-effect .wp-block-button__link,
    .btn-effect > b {
      font-size: 20px; }
      @media screen and (min-width: 320px) {
        .wp-block-button .wp-block-button__link, .wp-block-button > b,
        .btn-effect .wp-block-button__link,
        .btn-effect > b {
          font-size: calc(20px + 4 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .wp-block-button .wp-block-button__link, .wp-block-button > b,
        .btn-effect .wp-block-button__link,
        .btn-effect > b {
          font-size: 24px !important; } }
  .wp-block-button:hover,
  .btn-effect:hover {
    border-color: #FBB03B; }
    .wp-block-button:hover:before,
    .btn-effect:hover:before {
      width: 100%;
      height: 50%;
      top: 0;
      opacity: 1; }
    .wp-block-button:hover:after,
    .btn-effect:hover:after {
      width: 100%;
      height: 50%;
      bottom: 0;
      opacity: 1; }
  .wp-block-button.white,
  .btn-effect.white {
    background: #fff;
    border-color: #fff;
    color: #F15A24 !important; }
    .wp-block-button.white .wp-block-button__link, .wp-block-button.white > b,
    .btn-effect.white .wp-block-button__link,
    .btn-effect.white > b {
      color: #F15A24 !important; }
    .wp-block-button.white:hover,
    .btn-effect.white:hover {
      color: #fff !important;
      border-color: #FBB03B; }
      .wp-block-button.white:hover .wp-block-button__link, .wp-block-button.white:hover > b,
      .btn-effect.white:hover .wp-block-button__link,
      .btn-effect.white:hover > b {
        color: #fff !important; }
  .wp-block-button.gold,
  .btn-effect.gold {
    background: #FBB03B;
    border-color: #FBB03B;
    color: #fff !important; }
    .wp-block-button.gold:before, .wp-block-button.gold:after,
    .btn-effect.gold:before,
    .btn-effect.gold:after {
      background: #F15A24; }
    .wp-block-button.gold .wp-block-button__link, .wp-block-button.gold > b,
    .btn-effect.gold .wp-block-button__link,
    .btn-effect.gold > b {
      color: #fff !important; }
    .wp-block-button.gold:hover,
    .btn-effect.gold:hover {
      color: #fff !important;
      border-color: #F15A24; }
      .wp-block-button.gold:hover .wp-block-button__link, .wp-block-button.gold:hover > b,
      .btn-effect.gold:hover .wp-block-button__link,
      .btn-effect.gold:hover > b {
        color: #fff !important; }
  .wp-block-button.hover-w:before, .wp-block-button.hover-w:after,
  .btn-effect.hover-w:before,
  .btn-effect.hover-w:after {
    background: #fff; }
  .wp-block-button.hover-w:hover,
  .btn-effect.hover-w:hover {
    color: #F15A24 !important;
    border-color: #fff; }
    .wp-block-button.hover-w:hover .wp-block-button__link, .wp-block-button.hover-w:hover > b,
    .btn-effect.hover-w:hover .wp-block-button__link,
    .btn-effect.hover-w:hover > b {
      color: #F15A24 !important; }
  .wp-block-button.btn-lg .wp-block-button__link, .wp-block-button.btn-lg > b,
  .btn-effect.btn-lg .wp-block-button__link,
  .btn-effect.btn-lg > b {
    padding: 1em 1.1em;
    min-width: 250px; }
    .wp-block-button.btn-lg .wp-block-button__link, .wp-block-button.btn-lg > b,
    .btn-effect.btn-lg .wp-block-button__link,
    .btn-effect.btn-lg > b {
      font-size: 20px; }
      @media screen and (min-width: 320px) {
        .wp-block-button.btn-lg .wp-block-button__link, .wp-block-button.btn-lg > b,
        .btn-effect.btn-lg .wp-block-button__link,
        .btn-effect.btn-lg > b {
          font-size: calc(20px + 4 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .wp-block-button.btn-lg .wp-block-button__link, .wp-block-button.btn-lg > b,
        .btn-effect.btn-lg .wp-block-button__link,
        .btn-effect.btn-lg > b {
          font-size: 24px !important; } }
  .wp-block-button.btn-sm .wp-block-button__link, .wp-block-button.btn-sm > b,
  .btn-effect.btn-sm .wp-block-button__link,
  .btn-effect.btn-sm > b {
    min-width: 160px;
    padding: 0.65em 1em; }
    .wp-block-button.btn-sm .wp-block-button__link, .wp-block-button.btn-sm > b,
    .btn-effect.btn-sm .wp-block-button__link,
    .btn-effect.btn-sm > b {
      font-size: 16px; }
      @media screen and (min-width: 320px) {
        .wp-block-button.btn-sm .wp-block-button__link, .wp-block-button.btn-sm > b,
        .btn-effect.btn-sm .wp-block-button__link,
        .btn-effect.btn-sm > b {
          font-size: calc(16px + 4 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .wp-block-button.btn-sm .wp-block-button__link, .wp-block-button.btn-sm > b,
        .btn-effect.btn-sm .wp-block-button__link,
        .btn-effect.btn-sm > b {
          font-size: 20px !important; } }
  .wp-block-button.style1:before, .wp-block-button.style1:after,
  .btn-effect.style1:before,
  .btn-effect.style1:after {
    opacity: 0; }
  .wp-block-button.style1:hover:before, .wp-block-button.style1:hover:after,
  .btn-effect.style1:hover:before,
  .btn-effect.style1:hover:after {
    opacity: 1; }
  .wp-block-button.style2:before,
  .btn-effect.style2:before {
    top: 0;
    left: 0; }
  .wp-block-button.style2:after,
  .btn-effect.style2:after {
    bottom: 0;
    right: 0; }
  .wp-block-button.style3:before,
  .btn-effect.style3:before {
    top: 50%; }
  .wp-block-button.style3:after,
  .btn-effect.style3:after {
    bottom: 50%; }
  .wp-block-button.style4:before,
  .btn-effect.style4:before {
    top: 0;
    left: 50%;
    width: 0;
    height: 100%; }
  .wp-block-button.style4:after,
  .btn-effect.style4:after {
    top: 0;
    left: auto;
    right: 50%;
    width: 0;
    height: 100%; }
  .wp-block-button.style4:hover:before, .wp-block-button.style4:hover:after,
  .btn-effect.style4:hover:before,
  .btn-effect.style4:hover:after {
    width: 50%; }
  .wp-block-button.style5:before,
  .btn-effect.style5:before {
    top: 0;
    left: 0;
    width: 0;
    height: 100%; }
  .wp-block-button.style5:after,
  .btn-effect.style5:after {
    top: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 100%; }
  .wp-block-button.style5:hover:before, .wp-block-button.style5:hover:after,
  .btn-effect.style5:hover:before,
  .btn-effect.style5:hover:after {
    width: 50%; }

/* Social Media icons */
.social-media-icons {
  height: auto; }
  .social-media-icons h4,
  .social-media-icons .ttl {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
    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: top;
      margin: 5px 3px;
      text-align: center;
      font-size: 32px; }
      .social-media-icons ul li a {
        text-decoration: none;
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: rgba(241, 90, 36, 0.5) !important;
        background-color: rgba(255, 255, 255, 0);
        position: relative;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0; }
        .social-media-icons ul li a i {
          position: relative;
          z-index: 20; }
        .social-media-icons ul li a:hover {
          color: #F15A24 !important; }
          .social-media-icons ul li a:hover .fa-homestars {
            opacity: 1;
            /*background-image: url('../images/homestars_w.png'); */ }
  .social-media-icons .fa-homestars {
    background: url("../images/homestars.png") no-repeat center center;
    background-size: contain;
    opacity: 0.5;
    width: 60%;
    margin: 0 auto;
    padding-top: 100%;
    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; }
  .social-media-icons.sm ul li {
    margin: 0 2px;
    text-align: center;
    font-size: 22px; }
    .social-media-icons.sm ul li a {
      width: 32px;
      height: 32px;
      line-height: 32px; }

/* ==========================================================================
   Header Section
   ========================================================================== */
#headercontainer {
  width: 100%;
  background: #fff;
  position: relative;
  box-shadow: 0px 1px 8px 0px rgba(33, 48, 131, 0.1);
  -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 .top-header-line {
    background: #F15A24;
    color: #fff;
    padding: 5px 0;
    font-size: 15px; }
    @media screen and (max-width: 768px) {
      #headercontainer .top-header-line {
        padding: 10px 0;
        font-size: 13px; } }
    @media screen and (max-width: 650px) {
      #headercontainer .top-header-line .row {
        /*
        horizontally
        justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
        */
        -webkit-justify-content: center !important;
        justify-content: center !important; } }
    #headercontainer .top-header-line a {
      color: #fff !important; }
      #headercontainer .top-header-line a:hover {
        opacity: 0.75; }
    #headercontainer .top-header-line .widgets-left {
      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: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: auto;
      border-right: 1px solid rgba(255, 255, 255, 0.36); }
      @media screen and (max-width: 650px) {
        #headercontainer .top-header-line .widgets-left {
          /*margin-bottom: 1em; */
          margin-left: auto;
          margin-right: auto;
          border-right: none; } }
    #headercontainer .top-header-line .widgets-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: center;
      justify-content: center;
      /*
      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;
      /*margin-left: auto; */ }
      @media screen and (max-width: 650px) {
        #headercontainer .top-header-line .widgets-right {
          margin-left: auto;
          margin-right: auto;
          display: none; } }
    #headercontainer .top-header-line .icons-list {
      list-style: none;
      margin: 0;
      padding: 0; }
      #headercontainer .top-header-line .icons-list li {
        display: inline-block;
        vertical-align: middle;
        margin-left: 20px; }
        #headercontainer .top-header-line .icons-list li:first-child {
          margin-left: 0; }
        #headercontainer .top-header-line .icons-list li img {
          margin-right: 8px;
          vertical-align: middle; }
        #headercontainer .top-header-line .icons-list li b {
          font-weight: 400;
          vertical-align: middle; }
        @media screen and (max-width: 450px) {
          #headercontainer .top-header-line .icons-list li {
            border-left: 1px solid rgba(255, 255, 255, 0.5);
            padding-left: 12px;
            margin-left: 12px; }
            #headercontainer .top-header-line .icons-list li:first-child {
              border-left: none;
              padding-left: 0;
              margin-left: 0; }
            #headercontainer .top-header-line .icons-list li img {
              display: none; } }
    #headercontainer .top-header-line .phone {
      display: block;
      margin-left: 15px;
      color: rgba(241, 90, 36, 0.5);
      font-weight: 600;
      white-space: nowrap; }
      #headercontainer .top-header-line .phone .phone-icon {
        width: 20px;
        height: 20px; }
    #headercontainer .top-header-line .social-media-icons .ttl {
      font-size: inherit !important; }
      @media screen and (max-width: 992px) {
        #headercontainer .top-header-line .social-media-icons .ttl {
          display: none; } }
    @media screen and (max-width: 768px) {
      #headercontainer .top-header-line .social-media-icons {
        /*	display: none; */ } }
  #headercontainer .site-header {
    padding: 12px 0;
    position: relative;
    -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 {
      position: relative;
      align-self: center;
      max-width: 20%;
      z-index: 10; }
      #headercontainer .site-header .logo a {
        display: inline-block;
        vertical-align: middle;
        position: relative; }
        #headercontainer .site-header .logo a img {
          height: auto;
          transition: all 0.3s; }
      @media screen and (max-width: 1200px) {
        #headercontainer .site-header .logo {
          max-width: 35%; } }
      @media screen and (max-width: 480px) {
        #headercontainer .site-header .logo {
          max-width: 50%; } }
    #headercontainer .site-header .header-right {
      flex: 1; }

.is-sticky .sticker {
  left: 0;
  right: 0;
  width: auto !important;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(33, 48, 131, 0.1) !important;
  z-index: 999 !important; }
  .admin-bar .is-sticky .sticker {
    margin-top: 32px; }

/* ==========================================================================
   Main Navigation
   ========================================================================== */
.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 .mobile-logo {
  display: none; }
  @media screen and (max-width: 1280px) {
    .main-navigation .mobile-logo {
      display: block;
      position: relative;
      margin: 0 60px 25px 0;
      max-width: 250px;
      z-index: 20; }
      .main-navigation .mobile-logo img {
        max-height: 80px;
        width: auto; } }
.main-navigation .quote-widget {
  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; }
  .main-navigation .quote-widget .phone {
    display: block;
    color: rgba(217, 83, 26, 0.75);
    font-weight: 600;
    white-space: nowrap;
    /*@include fluid-type($min_width, $max_width, 16px, 18px); */
    font-size: 0; }
    .main-navigation .quote-widget .phone .phone-icon {
      width: 0px;
      height: 22px;
      opacity: 0.75; }
    .main-navigation .quote-widget .phone:hover {
      color: #F15A24; }
      .main-navigation .quote-widget .phone:hover .phone-icon {
        opacity: 1; }
    .is-sticky .main-navigation .quote-widget .phone {
      margin-left: 32px; }
      .is-sticky .main-navigation .quote-widget .phone {
        font-size: 16px; }
        @media screen and (min-width: 320px) {
          .is-sticky .main-navigation .quote-widget .phone {
            font-size: calc(16px + 2 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .is-sticky .main-navigation .quote-widget .phone {
            font-size: 18px !important; } }
      .is-sticky .main-navigation .quote-widget .phone .phone-icon {
        width: 22px; }
  @media screen and (max-width: 1280px) {
    .main-navigation .quote-widget {
      margin: 0 auto;
      text-align: left; } }
  @media screen and (max-width: 600px) {
    .main-navigation .quote-widget .social-media-icons {
      display: none; } }
  @media screen and (max-width: 450px) {
    .main-navigation .quote-widget {
      display: none; } }
.main-navigation .side-menu-footer {
  display: none; }
  @media screen and (max-width: 1280px) {
    .main-navigation .side-menu-footer {
      display: block;
      margin-top: 30px;
      text-align: center; } }
  .main-navigation .side-menu-footer > :last-child {
    margin-bottom: 0; }
  .main-navigation .side-menu-footer ul {
    list-style: none;
    padding: 15px 25px;
    margin: 0 0 1em 0;
    text-align: left;
    background: #F15A24;
    color: #fff;
    font-size: 16px; }
    .main-navigation .side-menu-footer ul li {
      margin: 10px 0; }
      .main-navigation .side-menu-footer ul li img {
        margin-right: 10px; }
      .main-navigation .side-menu-footer ul li b {
        font-weight: 400; }
  .main-navigation .side-menu-footer .phone {
    font-size: 22px;
    text-align: right; }
    .main-navigation .side-menu-footer .phone b {
      display: block;
      color: #F15A24;
      font-family: "Pinyon Script", cursive;
      font-weight: 400;
      font-size: 36px;
      letter-spacing: 1px;
      text-align: left; }
.main-navigation .menu {
  list-style: none;
  font-style: normal;
  font-family: "Open Sans", sans-serif;
  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; }
  .main-navigation .menu > li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    padding: 0 0 3px 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; }
    .main-navigation .menu > li:last-child {
      margin-right: 0; }
    .main-navigation .menu > li:after {
      /*	content: "";
      	display: block;
      	height: 0;
      	width: 100%;				
      	opacity: 0;
      	background: $_color_accent;
      	position: absolute;
      	left: 0;
      	bottom: 0;
      	@include transition(all 0.4s); */ }
    .main-navigation .menu > li.menu-item-has-children > a {
      position: relative; }
      .main-navigation .menu > li.menu-item-has-children > a:after {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-style: normal;
        font-size: 90%;
        display: inline-block;
        margin-left: 8px;
        line-height: 1em;
        opacity: 0.75; }
    .main-navigation .menu > li > a {
      display: block;
      position: relative;
      padding: 15px 0;
      font-weight: 400;
      font-size: 18px;
      text-transform: none;
      color: #5C5C5C;
      text-decoration: none;
      text-align: center;
      white-space: nowrap;
      z-index: 10; }
      @media screen and (max-width: 1520px) {
        .main-navigation .menu > li > a {
          font-size: 16px; } }
      @media screen and (max-width: 1366px) {
        .main-navigation .menu > li > a {
          font-size: 15px; } }
    .main-navigation .menu > li:hover:not(.btn-item):after, .main-navigation .menu > li[class*="current"]:not(.btn-item):after {
      opacity: 1;
      height: 1px; }
    .main-navigation .menu > li:hover:not(.btn-item) > a, .main-navigation .menu > li[class*="current"]:not(.btn-item) > a {
      color: #F15A24; }
    .main-navigation .menu > li:hover > .sub-menu {
      animation: fadeIn 0.6s; }
      @media screen and (min-width: 1280px) {
        .main-navigation .menu > li:hover > .sub-menu {
          display: block; } }
    .main-navigation .menu > li.icon-sub-menu .sub-menu {
      width: 420px;
      columns: 2; }
      .main-navigation .menu > li.icon-sub-menu .sub-menu > li {
        position: static; }
        .main-navigation .menu > li.icon-sub-menu .sub-menu > li:after {
          content: '';
          display: block;
          width: 180px;
          height: 100%;
          background: #f5f6f9;
          opacity: 0;
          box-shadow: 5px 3px 15px rgba(241, 90, 36, 0.1);
          top: 0;
          left: 100%;
          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: 10; }
        .main-navigation .menu > li.icon-sub-menu .sub-menu > li > a {
          position: static; }
          .main-navigation .menu > li.icon-sub-menu .sub-menu > li > a:before {
            display: none; }
          .main-navigation .menu > li.icon-sub-menu .sub-menu > li > a > img {
            display: block;
            width: 80px;
            height: auto;
            opacity: 0;
            margin-left: 50px;
            top: 50%;
            left: 100%;
            position: absolute;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            -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: 20; }
          .main-navigation .menu > li.icon-sub-menu .sub-menu > li > a > span {
            position: relative;
            display: block; }
            .main-navigation .menu > li.icon-sub-menu .sub-menu > li > a > span:before {
              content: '';
              display: inline-block;
              width: 0;
              height: 1px;
              border-top: 1px solid;
              top: 50%;
              left: -24px;
              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 .menu > li.icon-sub-menu .sub-menu > li:first-child a > img {
          /* opacity: 1; */ }
        .main-navigation .menu > li.icon-sub-menu .sub-menu > li:hover:after {
          opacity: 1; }
        .main-navigation .menu > li.icon-sub-menu .sub-menu > li:hover a > img {
          opacity: 0.75;
          z-index: 20; }
        .main-navigation .menu > li.icon-sub-menu .sub-menu > li:hover a > span:before {
          width: 18px; }
.main-navigation .sub-menu {
  display: none;
  margin: 0;
  padding: 15px 0;
  text-align: left;
  width: 250px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(241, 90, 36, 0.1);
  top: 100%;
  left: 0;
  position: absolute; }
  .main-navigation .sub-menu li {
    display: block;
    padding: 0;
    line-height: normal; }
    .main-navigation .sub-menu li a {
      display: block;
      position: relative;
      padding: 8px 20px;
      font-size: 16px;
      font-weight: 400;
      color: #000;
      text-decoration: none; }
      .main-navigation .sub-menu li a:before {
        content: '';
        display: inline-block;
        width: 0;
        height: 1px;
        border-top: 1px solid;
        top: 50%;
        left: 5px;
        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 .sub-menu li:hover > a {
      color: #F15A24;
      padding-left: 30px; }
      .main-navigation .sub-menu li:hover > a:before {
        width: 18px; }
    .main-navigation .sub-menu li[class*="current"] > a {
      color: #F15A24; }
.main-navigation .menu-toggle {
  display: none;
  cursor: pointer;
  color: #a3a5b0;
  background: #fff;
  font-size: 20px;
  border: 1px solid #a3a5b0;
  line-height: 1em;
  box-sizing: border-box;
  z-index: 300;
  text-align: center;
  padding: 10px;
  width: auto; }
  @media screen and (max-width: 1280px) {
    .main-navigation .menu-toggle {
      display: inline-block;
      order: 10; } }
  @media screen and (max-width: 600px) {
    .main-navigation .menu-toggle {
      margin-left: auto; } }
  .main-navigation .menu-toggle .lbl {
    display: none;
    vertical-align: bottom;
    text-transform: uppercase; }
  .main-navigation .menu-toggle .bar {
    width: 26px;
    height: 20px;
    position: relative;
    display: inline-block;
    vertical-align: middle; }
    .main-navigation .menu-toggle .bar i {
      display: block;
      position: relative;
      width: 100%;
      height: 2px;
      background: #a3a5b0;
      margin: 6px 0 0 0; }
      .main-navigation .menu-toggle .bar i:first-child {
        margin: 0; }
.main-navigation .menu-close {
  position: absolute;
  right: 15px;
  top: 30px;
  color: #F15A24;
  opacity: 0.5;
  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 {
    opacity: 1; }
  @media screen and (max-width: 1280px) {
    .main-navigation .menu-close {
      display: block; } }
@media screen and (max-width: 1280px) {
  .main-navigation {
    text-align: left;
    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(241, 90, 36, 0.2); }
          .main-navigation .menu-holder .menu > li > a {
            text-align: left;
            padding: 15px 45px 15px 15px;
            font-size: 18px; }
          .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: rgba(241, 90, 36, 0.85);
            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: #F15A24; }
          .main-navigation .menu-holder .menu > li[class*="current"] > a {
            color: #F15A24; }
          .main-navigation .menu-holder .menu > li[class*="current"] .sub-menu.show {
            animation: none !important; }
          .main-navigation .menu-holder .menu > li.icon-sub-menu .sub-menu {
            width: auto;
            padding-right: 0;
            columns: 1; }
            .main-navigation .menu-holder .menu > li.icon-sub-menu .sub-menu:before, .main-navigation .menu-holder .menu > li.icon-sub-menu .sub-menu:after {
              display: none; }
            .main-navigation .menu-holder .menu > li.icon-sub-menu .sub-menu > li {
              position: relative; }
              .main-navigation .menu-holder .menu > li.icon-sub-menu .sub-menu > li > a {
                position: static;
                display: block; }
                .main-navigation .menu-holder .menu > li.icon-sub-menu .sub-menu > li > a > img {
                  display: none; }
      .main-navigation .menu-holder .sub-menu {
        display: none;
        border: none;
        top: 0;
        left: 0;
        position: relative;
        margin: 0px 0 0px 25px;
        width: auto;
        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 li {
          position: relative; }
          .main-navigation .menu-holder .sub-menu li:hover:before, .main-navigation .menu-holder .sub-menu li[class*="current"]:before {
            border-top-color: #F15A24; }
          .main-navigation .menu-holder .sub-menu li:hover > a, .main-navigation .menu-holder .sub-menu li[class*="current"] > a {
            color: #F15A24; }
    .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; } }

/* ==========================================================================
	Banner section for post/page
	========================================================================== */
.header-top-image {
  padding: 60px 0 60px 0;
  overflow: hidden;
  position: relative;
  height: 40vh;
  min-height: 300px;
  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: flex-end;
  align-items: flex-end;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap; }
  @media screen and (max-width: 992px) {
    .header-top-image {
      background-attachment: scroll; } }
  @media screen and (max-width: 600px) {
    .header-top-image {
      padding: 40px 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 {
      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: rgba(45,45,45,0.45);
      background: linear-gradient(0deg, rgba(60,64,87,0.6) 0%, rgba(60,64,87,0.1) 100%);*/
      background: rgba(45, 45, 45, 0.45);
      background: linear-gradient(0deg, rgba(54, 34, 31, 0.6) 0%, rgba(80, 56, 42, 0.1) 100%);
      z-index: 1; }
  .header-top-image > * {
    position: relative;
    z-index: 30; }
  .header-top-image .entry-header {
    margin: 0; }
  .header-top-image .entry-title {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: normal;
    text-align: left;
    position: relative;
    text-shadow: 1px 1px 3px rgba(251, 176, 59, 0.2);
    margin-bottom: 0.25em;
    overflow: hidden;
    z-index: 20; }
    .header-top-image .entry-title {
      font-size: 24px; }
      @media screen and (min-width: 320px) {
        .header-top-image .entry-title {
          font-size: calc(24px + 16 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .header-top-image .entry-title {
          font-size: 40px !important; } }
  .header-top-image .sub-ttl {
    color: #fff;
    font-size: 22px !important;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 20px;
    text-align: left; }
    .header-top-image .sub-ttl p {
      margin: 0; }
    .header-top-image .sub-ttl .btn, .header-top-image .sub-ttl a.more-link {
      margin-top: 40px;
      font-weight: bold; }
  .header-top-image #breadcrumbs {
    font-style: normal;
    font-size: 75%;
    letter-spacing: 1px;
    text-align: left;
    text-transform: none;
    color: #fff;
    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; }

/* ==========================================================================
	Block editor - general styles 
	========================================================================== */
.site-content {
  /** Gallery */ }
  .site-content h3 {
    font-size: 22px; }
    @media screen and (min-width: 320px) {
      .site-content h3 {
        font-size: calc(22px + 8 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content h3 {
        font-size: 30px !important; } }
  .site-content h4 {
    font-size: 20px; }
    @media screen and (min-width: 320px) {
      .site-content h4 {
        font-size: calc(20px + 6 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content h4 {
        font-size: 26px !important; } }
  .site-content h5 {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      .site-content h5 {
        font-size: calc(18px + 4 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content h5 {
        font-size: 22px !important; } }
  .site-content h6 {
    font-size: 16px; }
    @media screen and (min-width: 320px) {
      .site-content h6 {
        font-size: calc(16px + 2 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content h6 {
        font-size: 18px !important; } }
  .site-content p, .site-content ol, .site-content ul, .site-content dl, .site-content address {
    margin-bottom: 1.3em; }
  .inner-page .site-content p a:not(.btn):not(a.more-link):not(.wp-block-button__link):not(.kt-tab-title), .inner-page .site-content ol a:not(.btn):not(a.more-link):not(.wp-block-button__link):not(.kt-tab-title), .inner-page .site-content ul:not(.kb-gallery-ul) a:not(.btn):not(a.more-link):not(.wp-block-button__link):not(.kt-tab-title) {
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid; }
    .inner-page .site-content p a:not(.btn):not(a.more-link):not(.wp-block-button__link):not(.kt-tab-title):hover, .inner-page .site-content ol a:not(.btn):not(a.more-link):not(.wp-block-button__link):not(.kt-tab-title):hover, .inner-page .site-content ul:not(.kb-gallery-ul) a:not(.btn):not(a.more-link):not(.wp-block-button__link):not(.kt-tab-title):hover {
      border-bottom-color: #FBB03B; }
  .site-content hr {
    height: 1px;
    background: #f1f2f8;
    border-color: #f1f2f8;
    margin: 30px 0; }
  .site-content .has-inline-img img {
    vertical-align: baseline; }
  .site-content .shadow-box {
    position: relative;
    box-shadow: 0px 5px 45px rgba(67, 72, 85, 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: #F15A24;
    opacity: 0.65;
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    margin-bottom: 0.35em !important;
    position: relative;
    text-transform: none;
    letter-spacing: 3px;
    line-height: normal; }
    .site-content .top-ttl {
      font-size: 28px; }
      @media screen and (min-width: 320px) {
        .site-content .top-ttl {
          font-size: calc(28px + 10 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .top-ttl {
          font-size: 38px !important; } }
    .site-content .top-ttl p.site-content .top-ttl {
      font-size: 28px; }
      @media screen and (min-width: 320px) {
        .site-content .top-ttl p.site-content .top-ttl {
          font-size: calc(28px + 10 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .top-ttl p.site-content .top-ttl {
          font-size: 38px !important; } }
    .site-content .top-ttl strong {
      display: inline-block; }
    .site-content .top-ttl:before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 40px;
      border-top: 1px solid;
      margin-right: 15px; }
      @media screen and (max-width: 768px) {
        .site-content .top-ttl:before {
          width: 25px; } }
    .site-content .top-ttl.gold {
      color: #FFC534; }
    .site-content .top-ttl.base-txt {
      letter-spacing: 0;
      font-family: "Open Sans", sans-serif; }
      .site-content .top-ttl.base-txt {
        font-size: 16px; }
        @media screen and (min-width: 320px) {
          .site-content .top-ttl.base-txt {
            font-size: calc(16px + 6 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .top-ttl.base-txt {
            font-size: 22px !important; } }
  .site-content .title {
    position: relative;
    margin-bottom: 0.5em; }
    .site-content .title {
      font-size: 36px; }
      @media screen and (min-width: 320px) {
        .site-content .title {
          font-size: calc(36px + 19 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .title {
          font-size: 55px !important; } }
  .site-content .decor-ttl {
    position: relative; }
    .site-content .decor-ttl:after {
      content: '';
      display: block;
      width: 100px;
      height: 1px;
      margin-top: 0.5em;
      background: #F15A24; }
    .site-content .decor-ttl strong {
      color: #F15A24; }
    .site-content .decor-ttl.has-text-align-center:after {
      margin-left: auto;
      margin-right: auto; }
  .site-content .bg-decor {
    background: url("../images/bg-pattern.png") repeat center;
    padding: 0.75em 1.5em;
    margin-bottom: 20px; }
  .site-content .bg-gray {
    padding: 0.75em 1.5em;
    background: #e1e1e1; }
  .site-content .bg-box ul:last-child,
  .site-content .bg-box p:last-child {
    margin-bottom: 0; }
  .site-content .wp-block-group.has-background .wp-block-group__inner-container {
    padding: 3em; }
  .site-content blockquote {
    margin: 0 0 20px 0;
    position: relative;
    border-left-color: #F15A24;
    padding: 0.5em 0 0.5em 2em; }
    .site-content blockquote p {
      margin-bottom: 0;
      font-size: 18px;
      letter-spacing: 1px;
      color: #3C4057;
      font-family: "Raleway", sans-serif;
      font-style: italic; }
    .site-content blockquote:before {
      content: "\f10d";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      font-size: 24px;
      display: block;
      color: #F15A24;
      background: #fff;
      padding: 8px 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 blockquote cite {
      margin-top: 15px; }
  .site-content ul.list-col-2,
  .site-content ol.list-col-2 {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2; }
    @media screen and (max-width: 600px) {
      .site-content ul.list-col-2,
      .site-content ol.list-col-2 {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1; } }
  .site-content ul.list-col-3,
  .site-content ol.list-col-3 {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3; }
    @media screen and (max-width: 600px) {
      .site-content ul.list-col-3,
      .site-content ol.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 8px 0; }
      .site-content ul.list-style li:before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        background: #F15A24;
        color: #F15A24;
        border-radius: 50%;
        top: 10px;
        left: 0;
        position: absolute; }
      .site-content ul.list-style li ul {
        list-style: none; }
        .site-content ul.list-style li ul li:first-child {
          margin-top: 10px; }
        .site-content ul.list-style li ul li:before {
          background: #fff;
          width: 6px;
          height: 6px;
          border: 1px solid #F15A24; }
    .site-content ul.list-style.check li:before {
      content: '\2713';
      font-family: Arial;
      width: 25px;
      height: 25px;
      line-height: 25px;
      font-size: 18px;
      border-radius: 0;
      top: 0;
      background: rgba(0, 0, 0, 0); }
    .site-content ul.list-style.has-medium-font-size li:before {
      top: 12px; }
  .site-content ol.list-style {
    font-size: 16px;
    font-weight: 400;
    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: #F15A24;
        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.05);
    margin: 30px 0; }
    .site-content .wp-block-table thead {
      border-bottom-color: #F15A24; }
    .site-content .wp-block-table tr:nth-child(2n+1) {
      background: #f7f7f7; }
    .site-content .wp-block-table tr:nth-child(2n) {
      background: #fff; }
    .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: rgba(241, 90, 36, 0.25);
      color: #F15A24;
      text-align: center;
      border-left: 1px solid rgba(255, 255, 255, 0.6); }
    .site-content .wp-block-table.price-table th, .site-content .wp-block-table.price-table td {
      vertical-align: middle;
      padding: 15px 15px; }
    .site-content .wp-block-table.price-table td:last-child {
      color: #F15A24; }
      .site-content .wp-block-table.price-table td:last-child strong {
        opacity: 0.85;
        font-size: 120%; }
      .site-content .wp-block-table.price-table td:last-child em {
        font-style: normal; }
  .site-content .entry-content > .wp-block-image .aligncenter {
    margin-bottom: 2em; }
  .site-content .wp-block-image.full figure {
    display: block;
    width: 100%; }
    .site-content .wp-block-image.full figure img {
      width: 100%; }
  .site-content .wp-block-image.shadow-img figure > a {
    display: block;
    position: relative; }
    .site-content .wp-block-image.shadow-img figure > a:after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      opacity: 0;
      background: rgba(20, 22, 24, 0.5);
      -webkit-transition: all 0.4s;
      -moz-transition: all 0.4s;
      -ms-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s;
      top: 0;
      left: 0;
      position: absolute;
      z-index: 10; }
    .site-content .wp-block-image.shadow-img figure > a img {
      border: 1px solid #fff;
      box-shadow: 0 0 30px rgba(67, 72, 85, 0.2); }
    .site-content .wp-block-image.shadow-img figure > a:hover:after {
      opacity: 1; }
  .site-content .wp-block-image.fill-img {
    display: block;
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 75%; }
    .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 figure {
    position: relative; }
    .site-content .wp-block-image.decor-img figure:before, .site-content .wp-block-image.decor-img figure:after {
      content: '';
      display: block;
      width: 150px;
      height: 2px;
      background: #FBB03B;
      position: absolute;
      z-index: 20; }
    .site-content .wp-block-image.decor-img figure:before {
      left: -40px;
      top: 30px; }
    .site-content .wp-block-image.decor-img figure:after {
      right: -40px;
      bottom: 30px; }
  .site-content .wp-block-image.round-icon figure {
    background: rgba(241, 90, 36, 0.05);
    padding: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%; }
    @media screen and (max-width: 600px) {
      .site-content .wp-block-image.round-icon figure {
        padding: 50px; }
        .site-content .wp-block-image.round-icon figure img {
          max-width: 80px; } }
  .site-content .schema-faq .schema-faq-section {
    margin: 0 0 15px 0; }
    .site-content .schema-faq .schema-faq-section .schema-faq-question {
      font-family: "Raleway", sans-serif;
      position: relative;
      margin: 0 0 10px 0;
      padding: 0 0 0 38px;
      font-weight: 700;
      font-size: 22px;
      text-align: left;
      line-height: normal;
      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: 115%;
        line-height: 1.15;
        color: #F15A24; }
    .site-content .schema-faq .schema-faq-section .schema-faq-answer {
      font-size: 17px;
      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, 90, 36, 0.05);
        color: #F15A24; }
    .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: #FBB03B;
        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 .rl-gallery-container .rl-gallery-item {
    overflow: hidden; }
    .site-content .rl-gallery-container .rl-gallery-item img {
      width: 100%; }
  .site-content .rl-gallery-container .rl-gallery-link:before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: #3C4057 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 .rl-gallery-container .rl-gallery-link:hover:before {
    opacity: 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: #3C4057 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 0 30px 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: '';
        display: block;
        width: 48px;
        height: 48px;
        line-height: 48px;
        background: #3C4057 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: 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.margin-bottom {
    margin-bottom: 30px; }
  .site-content .wp-block-media-text__content {
    padding: 40px 0px 40px 50px; }
    .site-content .wp-block-media-text__content > *:last-child {
      margin-bottom: 0; }
  .site-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 40px 50px 40px 0; }
  .site-content .wp-block-media-text.is-image-fill .wp-block-media-text__media {
    padding-top: 70%;
    position: relative; }
    .site-content .wp-block-media-text.is-image-fill .wp-block-media-text__media > a {
      display: block;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      position: absolute;
      z-index: 10; }
  @media screen and (max-width: 992px) {
    .site-content .wp-block-media-text:not(.device-grid-sm) {
      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:not(.device-grid-sm) > * {
        width: 100%; }
      .site-content .wp-block-media-text:not(.device-grid-sm) .wp-block-media-text__content {
        padding: 40px 0 !important; }
      .site-content .wp-block-media-text:not(.device-grid-sm) .wp-block-media-text__media {
        order: -1; } }
  @media screen and (max-width: 600px) {
    .site-content .wp-block-media-text.device-grid-sm {
      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.device-grid-sm > * {
        width: 100%; }
      .site-content .wp-block-media-text.device-grid-sm .wp-block-media-text__content {
        padding: 40px 0; }
      .site-content .wp-block-media-text.device-grid-sm .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; */ }
  @media screen and (max-width: 992px) {
    .site-content .wp-block-media-text.shadow-box .wp-block-media-text__content {
      padding: 30px; } }
  .site-content .wp-block-media-text.decor-img .wp-block-media-text__media {
    position: relative; }
    .site-content .wp-block-media-text.decor-img .wp-block-media-text__media:before, .site-content .wp-block-media-text.decor-img .wp-block-media-text__media:after {
      content: '';
      display: block;
      width: 150px;
      height: 2px;
      background: #FBB03B;
      position: absolute;
      z-index: 20; }
    .site-content .wp-block-media-text.decor-img .wp-block-media-text__media:before {
      left: -40px;
      top: 30px; }
    .site-content .wp-block-media-text.decor-img .wp-block-media-text__media:after {
      right: -40px;
      bottom: 30px; }
  .site-content .kt-tabs-content-wrap .wp-block-kadence-tab[aria-hidden="false"] {
    animation: fadeIn 0.8s; }
  @media screen and (max-width: 768px) {
    .site-content .has-medium-font-size {
      font-size: 17px !important; } }

/* ==========================================================================
   Home Page Content
   ========================================================================== */
.page-template-front-page .site-content {
  font-size: 16px; }
  @media screen and (min-width: 320px) {
    .page-template-front-page .site-content {
      font-size: calc(16px + 2 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    .page-template-front-page .site-content {
      font-size: 18px !important; } }
.page-template-front-page .site-content h2 {
  margin-bottom: 1.5em; }
  .page-template-front-page .site-content h2.margin-md {
    margin-bottom: 1em; }
  .page-template-front-page .site-content h2.margin-sm {
    margin-bottom: 0.5em; }
.page-template-front-page .site-content .top-space {
  margin-top: 2.5em; }
.page-template-front-page .kb-theme-content-width {
  width: 1625px; }

.site-content .hero-section .kt-inside-inner-col > *:last-child {
  margin-bottom: 0 !important; }
.site-content .hero-section .slogan {
  color: #F15A24;
  font-family: "Pinyon Script", cursive;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 32px; }
  .site-content .hero-section .slogan {
    font-size: 40px; }
    @media screen and (min-width: 320px) {
      .site-content .hero-section .slogan {
        font-size: calc(40px + 24 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .hero-section .slogan {
        font-size: 64px !important; } }
  .site-content .hero-section .slogan:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    border-top: 2px solid;
    margin-right: 15px;
    margin-top: -1px; }
  .site-content .hero-section .slogan strong {
    font-weight: 400;
    display: block;
    margin-left: 27%; }
    @media screen and (max-width: 768px) {
      .site-content .hero-section .slogan strong {
        display: inline;
        margin: 0; } }
.site-content .hero-section .wp-block-buttons {
  margin-bottom: 32px; }
.site-content .hero-section .txt {
  margin-bottom: 40px; }
  .site-content .hero-section .txt {
    font-size: 20px; }
    @media screen and (min-width: 320px) {
      .site-content .hero-section .txt {
        font-size: calc(20px + 4 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .hero-section .txt {
        font-size: 24px !important; } }
.site-content .hero-section .text-col .kt-inside-inner-col {
  animation: fadeInDownSm 1s 0.2s;
  animation-fill-mode: backwards; }
  @media screen and (max-width: 1600px) {
    .site-content .hero-section .text-col .kt-inside-inner-col {
      padding-top: 40px;
      padding-bottom: 40px; } }
.site-content .hero-section .slider-col {
  position: relative; }
  .site-content .hero-section .slider-col .kt-inside-inner-col {
    width: 116%; }
    @media screen and (max-width: 1600px) {
      .site-content .hero-section .slider-col .kt-inside-inner-col {
        width: 105%; } }
    @media screen and (max-width: 1024px) {
      .site-content .hero-section .slider-col .kt-inside-inner-col {
        width: 700px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto; } }
  .site-content .hero-section .slider-col .blinds-mask-wrap {
    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;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 20; }
    .site-content .hero-section .slider-col .blinds-mask-wrap .item {
      width: 20%;
      height: 100%;
      border-style: solid;
      border-color: #F5F6F9;
      border-width: 30px 100px;
      /*box-shadow: 0 0 0 20px #fff;
      box-sizing: content-box; 
      margin-top: 0; */
      -webkit-transition: all 1.6s;
      -moz-transition: all 1.6s;
      -ms-transition: all 1.6s;
      -o-transition: all 1.6s;
      transition: all 1.6s; }
      .site-content .hero-section .slider-col .blinds-mask-wrap .item:nth-child(2) {
        border-top-width: 60px;
        border-bottom-width: 0; }
      .site-content .hero-section .slider-col .blinds-mask-wrap .item:nth-child(4) {
        border-top-width: 0;
        border-bottom-width: 60px; }
  .site-content .hero-section .slider-col.inview .kt-inside-inner-col {
    /*animation: fadeInRight 0.6s; */ }
  .site-content .hero-section .slider-col.inview .blinds-mask-wrap .item {
    border-left-width: 18px;
    border-right-width: 18px; }
    @media screen and (max-width: 1600px) {
      .site-content .hero-section .slider-col.inview .blinds-mask-wrap .item {
        border-left-width: 14px;
        border-right-width: 14px; } }
    @media screen and (max-width: 640px) {
      .site-content .hero-section .slider-col.inview .blinds-mask-wrap .item {
        border-left-width: 8px;
        border-right-width: 8px; } }
.site-content .num-boxes-row .wp-block-kadence-column {
  position: relative;
  overflow: hidden; }
  .site-content .num-boxes-row .wp-block-kadence-column .kt-inside-inner-col {
    padding: 40px 45px 80px 45px; }
    .site-content .num-boxes-row .wp-block-kadence-column .kt-inside-inner-col > :last-child {
      margin-bottom: 0; }
  .site-content .num-boxes-row .wp-block-kadence-column .num {
    font-family: "Raleway", sans-serif;
    font-weight: 200;
    color: rgba(254, 254, 254, 0.2);
    line-height: 1em;
    margin: 0;
    right: 0;
    bottom: -4.5%;
    position: absolute; }
    .site-content .num-boxes-row .wp-block-kadence-column .num {
      font-size: 100px; }
      @media screen and (min-width: 320px) {
        .site-content .num-boxes-row .wp-block-kadence-column .num {
          font-size: calc(100px + 24 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .num-boxes-row .wp-block-kadence-column .num {
          font-size: 124px !important; } }
  .site-content .num-boxes-row .wp-block-kadence-column .wp-block-group__inner-container {
    margin-bottom: 1.5em;
    min-height: 3.5em;
    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; }
    .site-content .num-boxes-row .wp-block-kadence-column .wp-block-group__inner-container .wp-block-image {
      margin: 0 0 0 20px; }
    .site-content .num-boxes-row .wp-block-kadence-column .wp-block-group__inner-container .wp-block-heading {
      margin: 0;
      font-weight: 600;
      line-height: 1.6;
      overflow: hidden; }
      .site-content .num-boxes-row .wp-block-kadence-column .wp-block-group__inner-container .wp-block-heading {
        font-size: 18px; }
        @media screen and (min-width: 320px) {
          .site-content .num-boxes-row .wp-block-kadence-column .wp-block-group__inner-container .wp-block-heading {
            font-size: calc(18px + 2 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .site-content .num-boxes-row .wp-block-kadence-column .wp-block-group__inner-container .wp-block-heading {
            font-size: 20px !important; } }
.site-content .service-boxes-holder {
  margin-top: 60px; }
  .site-content .service-boxes-holder > .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 .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group {
      position: relative;
      width: calc(33.33% - 30px);
      margin-bottom: 40px; }
      @media screen and (max-width: 1024px) {
        .site-content .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group {
          width: calc(50% - 20px); } }
      @media screen and (max-width: 650px) {
        .site-content .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group {
          width: 100%; } }
      .site-content .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group .wp-block-image {
        margin-bottom: 32px; }
      .site-content .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group .wp-block-heading {
        position: relative; }
        .site-content .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group .wp-block-heading a {
          color: #3C4057;
          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; }
          .site-content .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group .wp-block-heading a:after {
            content: '';
            display: block;
            width: 48px;
            height: 48px;
            line-height: 48px;
            margin-left: 10px;
            background: #FBB03B url("../images/arrow-up-right.svg") no-repeat center;
            background-size: 24px 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; }
          .site-content .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group .wp-block-heading a:hover {
            color: #F15A24; }
            .site-content .service-boxes-holder > .wp-block-group__inner-container > .wp-block-group .wp-block-heading a:hover:after {
              background-color: #F15A24; }
.site-content .about-section {
  font-size: 17px; }
  @media screen and (min-width: 320px) {
    .site-content .about-section {
      font-size: calc(17px + 3 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    .site-content .about-section {
      font-size: 20px !important; } }
.site-content .whyus-section .icon-boxes-row .wp-block-image {
  margin: 0 0 2.5em 0; }
  .site-content .whyus-section .icon-boxes-row .wp-block-image img {
    height: 60px;
    width: auto; }
.site-content .whyus-section .icon-boxes-row .wp-block-heading {
  font-size: 20px; }
  @media screen and (min-width: 320px) {
    .site-content .whyus-section .icon-boxes-row .wp-block-heading {
      font-size: calc(20px + 8 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    .site-content .whyus-section .icon-boxes-row .wp-block-heading {
      font-size: 28px !important; } }
@media screen and (max-width: 1280px) {
  .site-content .whyus-section .icon-boxes-row .kt-row-column-wrap {
    column-gap: 100px; } }
.site-content .portfolio-section .slider-row {
  position: relative; }
  @media screen and (min-width: 768px) {
    .site-content .portfolio-section .slider-row .kt-inside-inner-col {
      position: static; }
    .site-content .portfolio-section .slider-row .wp-block-buttons {
      margin-bottom: 2.5em;
      right: 0;
      bottom: 100%;
      position: absolute; }
    .site-content .portfolio-section .slider-row .flex-direction-nav {
      bottom: 0;
      left: 0;
      position: absolute; } }
  @media screen and (max-width: 768px) {
    .site-content .portfolio-section .slider-row .flex-direction-nav {
      right: 0;
      bottom: 100%;
      position: absolute;
      margin-bottom: 2em; }
      .site-content .portfolio-section .slider-row .flex-direction-nav li.flex-nav-next {
        margin-left: 12px; } }
  @media screen and (max-width: 375px) {
    .site-content .portfolio-section .slider-row .flex-direction-nav {
      position: relative;
      text-align: center;
      margin: 2em 0 0 0; }
      .site-content .portfolio-section .slider-row .flex-direction-nav li.flex-nav-next {
        margin-left: 32px; } }
  @media screen and (min-width: 768px) {
    .site-content .portfolio-section .slider-row .slider-col .kt-inside-inner-col {
      width: 68vw; } }
.site-content .portfolio-section.compact .slider-row .wp-block-buttons {
  margin-top: 2.5em;
  margin-bottom: 0;
  position: relative;
  right: auto;
  bottom: auto; }
.site-content .reviews-section .testi-slider {
  position: relative;
  padding: 0 !important;
  margin-top: 64px; }
  .site-content .reviews-section .testi-slider .wpmslider-viewport {
    border: none !important; }
  .site-content .reviews-section .testi-slider .wpmtst-testimonial {
    border: none !important;
    position: relative;
    padding-bottom: 35px !important; }
    .site-content .reviews-section .testi-slider .wpmtst-testimonial:after {
      content: '';
      border-top: 26px solid #f5f5f5;
      border-left: 0px solid rgba(0, 0, 0, 0);
      border-right: 25px solid rgba(0, 0, 0, 0);
      bottom: 10px;
      left: 30px;
      position: absolute; }
  .site-content .reviews-section .testi-slider .testimonial-inner {
    position: relative;
    padding: 72px 30px 26px 30px !important;
    background: #f5f5f5;
    color: #3C4057;
    box-shadow: 0 4px 20px rgba(67, 72, 85, 0.15);
    text-align: center; }
    .site-content .reviews-section .testi-slider .testimonial-inner .testimonial-heading {
      font-size: 18px !important;
      color: #717171 !important;
      margin-bottom: 10px !important; }
      .site-content .reviews-section .testi-slider .testimonial-inner .testimonial-heading b {
        font-weight: bold; }
    .site-content .reviews-section .testi-slider .testimonial-inner .testimonial-content {
      margin-bottom: 15px !important;
      text-align: left;
      font-size: 18px !important; }
    .site-content .reviews-section .testi-slider .testimonial-inner .testimonial-rating {
      top: 25px;
      right: 30px;
      position: absolute; }
      .site-content .reviews-section .testi-slider .testimonial-inner .testimonial-rating .strong-rating .star {
        margin: 0 2px; }
        .site-content .reviews-section .testi-slider .testimonial-inner .testimonial-rating .strong-rating .star:before {
          width: 20px;
          height: 20px; }
        .site-content .reviews-section .testi-slider .testimonial-inner .testimonial-rating .strong-rating .star svg path {
          stroke: #fff;
          stroke-width: 6; }
    .site-content .reviews-section .testi-slider .testimonial-inner .testimonial-name {
      text-align: right;
      font-weight: bold;
      color: #3C4057;
      font-family: "Raleway", sans-serif;
      top: 25px;
      left: 30px;
      position: absolute; }
  .site-content .reviews-section .testi-slider .wpmslider-controls {
    padding: 0 !important;
    text-align: center; }
    .site-content .reviews-section .testi-slider .wpmslider-controls .wpmslider-controls-direction a {
      opacity: 1;
      display: block !important;
      width: 24px;
      height: 24px;
      background: url("../images/arrow.svg") no-repeat center;
      top: calc(50% - 40px); }
      .site-content .reviews-section .testi-slider .wpmslider-controls .wpmslider-controls-direction a:before {
        display: none !important; }
      .site-content .reviews-section .testi-slider .wpmslider-controls .wpmslider-controls-direction a.wpmslider-prev {
        left: -64px; }
      .site-content .reviews-section .testi-slider .wpmslider-controls .wpmslider-controls-direction a.wpmslider-next {
        right: -64px;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
    .site-content .reviews-section .testi-slider .wpmslider-controls .wpmslider-pager .wpmslider-pager-item {
      margin: 0 5px !important; }
      .site-content .reviews-section .testi-slider .wpmslider-controls .wpmslider-pager .wpmslider-pager-item .wpmslider-pager-link {
        display: block;
        width: 10px;
        height: 10px;
        background: #fff; }
        .site-content .reviews-section .testi-slider .wpmslider-controls .wpmslider-pager .wpmslider-pager-item .wpmslider-pager-link:before {
          display: none; }
        .site-content .reviews-section .testi-slider .wpmslider-controls .wpmslider-pager .wpmslider-pager-item .wpmslider-pager-link.active {
          background: #FBB03B; }
.site-content .areas-section .areas-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .site-content .areas-section .areas-list {
    font-size: 16px; }
    @media screen and (min-width: 320px) {
      .site-content .areas-section .areas-list {
        font-size: calc(16px + 4 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .areas-section .areas-list {
        font-size: 20px !important; } }
  .site-content .areas-section .areas-list li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-left: 28px;
    margin: 0 30px 32px 0; }
    .site-content .areas-section .areas-list li:before {
      content: '\f3c5';
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      font-size: 90%;
      display: block;
      color: #FBB03B;
      top: 0;
      left: 0;
      position: absolute; }
.site-content .contact-section {
  font-size: 17px; }
  @media screen and (min-width: 320px) {
    .site-content .contact-section {
      font-size: calc(17px + 3 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    .site-content .contact-section {
      font-size: 20px !important; } }
.site-content .contact-section .has-medium-font-size {
  font-size: 18px; }
  @media screen and (min-width: 320px) {
    .site-content .contact-section .has-medium-font-size {
      font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    .site-content .contact-section .has-medium-font-size {
      font-size: 24px !important; } }
.site-content .contact-section .slogan-txt {
  color: #F15A24;
  font-family: "Pinyon Script", cursive;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 32px; }
  .site-content .contact-section .slogan-txt {
    font-size: 48px; }
    @media screen and (min-width: 320px) {
      .site-content .contact-section .slogan-txt {
        font-size: calc(48px + 36 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .contact-section .slogan-txt {
        font-size: 84px !important; } }
  .site-content .contact-section .slogan-txt:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    border-top: 2px solid;
    margin-right: 15px;
    margin-top: -1px; }
    @media screen and (max-width: 768px) {
      .site-content .contact-section .slogan-txt:before {
        width: 20px;
        border-top-width: 1px; } }
  .site-content .contact-section .slogan-txt strong {
    font-weight: 400;
    display: block;
    text-align: left; }
@media screen and (max-width: 1024px) {
  .site-content .contact-section .has-text-align-right {
    text-align: center; } }
.site-content .contact-section.style-2 .img-col .wp-block-group {
  padding: 40px;
  margin: 32px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px); }
  @media screen and (max-width: 768px) {
    .site-content .contact-section.style-2 .img-col .wp-block-group {
      padding: 30px !important;
      margin: 15px !important; } }
  .site-content .contact-section.style-2 .img-col .wp-block-group *:last-child {
    margin-bottom: 0; }
.site-content .contact-section.style-2 .img-col .slogan-txt {
  font-size: 34px; }
  @media screen and (min-width: 320px) {
    .site-content .contact-section.style-2 .img-col .slogan-txt {
      font-size: calc(34px + 14 * ((100vw - 320px) / 1600)) !important; } }
  @media screen and (min-width: 1920px) {
    .site-content .contact-section.style-2 .img-col .slogan-txt {
      font-size: 48px !important; } }
.site-content .contact-section.style-2 .img-col.gold .wp-block-group {
  margin-right: 0;
  background: rgba(239, 225, 192, 0.7);
  backdrop-filter: blur(8px); }
.site-content .contact-section.style-2 .img-col.blue .wp-block-group {
  margin-right: 0;
  background: rgba(241, 90, 36, 0.85);
  backdrop-filter: blur(4px);
  color: #fff; }
.site-content .contact-section.style-2 .img-col.blue .slogan-txt {
  color: #fff; }

/* ==========================================================================
	Block editor - additional styles 
	========================================================================== */
.page-template-full-width .kb-theme-content-width {
  width: 1625px; }

.site-content .tabs-style .kt-tabs-title-list {
  background: rgba(251, 176, 59, 0.2);
  padding: 16px; }
  @media screen and (max-width: 1024px) {
    .site-content .tabs-style .kt-tabs-title-list {
      padding: 12px; } }
.site-content .tabs-style .kt-tabs-content-wrap h2 {
  font-weight: 600; }
  .site-content .tabs-style .kt-tabs-content-wrap h2 {
    font-size: 20px; }
    @media screen and (min-width: 320px) {
      .site-content .tabs-style .kt-tabs-content-wrap h2 {
        font-size: calc(20px + 8 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .tabs-style .kt-tabs-content-wrap h2 {
        font-size: 28px !important; } }
.site-content .tabs-style .kt-tabs-accordion-title {
  background: rgba(251, 176, 59, 0.2);
  margin-bottom: 16px; }
  .site-content .tabs-style .kt-tabs-accordion-title a {
    justify-content: center; }
.site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) {
  background: #F15A24;
  color: #fff;
  padding: 40px;
  overflow: hidden; }
  .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) > *:last-child {
    margin-bottom: 0; }
  .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .ttl strong {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .ttl strong {
        font-size: calc(18px + 4 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .ttl strong {
        font-size: 22px !important; } }
  .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .wp-block-image {
    margin: 0 0 2em 0; }
  .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .wp-block-heading {
    color: #fff; }
    .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .wp-block-heading {
      font-size: 18px; }
      @media screen and (min-width: 320px) {
        .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .wp-block-heading {
          font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .wp-block-heading {
          font-size: 24px !important; } }
  .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .num {
    font-family: "Raleway", sans-serif;
    font-weight: 200;
    color: #F15A24;
    line-height: 1em;
    margin: -10px 0 0.2em 0; }
    .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .num {
      font-size: 50px; }
      @media screen and (min-width: 320px) {
        .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .num {
          font-size: calc(50px + 30 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        .site-content .icon-color-boxes-row .kt-inside-inner-col:not(:empty) .num {
          font-size: 80px !important; } }
.site-content .icon-color-boxes-row.num-bg .kt-inside-inner-col .num {
  color: rgba(255, 255, 255, 0.1);
  line-height: 1em;
  margin: 0;
  right: 0;
  bottom: -5%;
  position: absolute; }
  .site-content .icon-color-boxes-row.num-bg .kt-inside-inner-col .num {
    font-size: 90px; }
    @media screen and (min-width: 320px) {
      .site-content .icon-color-boxes-row.num-bg .kt-inside-inner-col .num {
        font-size: calc(90px + 14 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .icon-color-boxes-row.num-bg .kt-inside-inner-col .num {
        font-size: 104px !important; } }
.site-content .icon-color-boxes-row.num-bg.light .kt-inside-inner-col .num {
  color: rgba(241, 90, 36, 0.1); }
.site-content .icon-color-boxes-row.light .kt-inside-inner-col:not(:empty) {
  background: rgba(241, 90, 36, 0.05);
  color: #3C4057; }
.site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) {
  background: #F15A24;
  color: #fff;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: calc(45% + 40px);
  overflow: hidden;
  position: relative; }
  @media screen and (max-width: 480px) {
    .site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) {
      padding-top: 0;
      padding-left: 40px; } }
  .site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) > *:last-child {
    margin-bottom: 0; }
  .site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) .ttl strong {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      .site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) .ttl strong {
        font-size: calc(18px + 4 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) .ttl strong {
        font-size: 22px !important; } }
  .site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) .wp-block-image {
    display: block;
    overflow: hidden;
    margin: 0;
    width: 45%;
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute; }
    @media screen and (max-width: 480px) {
      .site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) .wp-block-image {
        position: relative;
        width: auto;
        padding-top: 80%;
        margin: 0 -40px 35px -40px; } }
    .site-content .image-color-boxes-row .kt-inside-inner-col:not(:empty) .wp-block-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      position: absolute; }
.site-content .image-color-boxes-row.light .kt-inside-inner-col:not(:empty) {
  background: rgba(241, 90, 36, 0.05);
  color: #3C4057; }
.site-content .image-color-boxes-row.light .wp-block-kadence-column.dark .kt-inside-inner-col:not(:empty) {
  background: #F15A24;
  color: #fff; }
  .site-content .image-color-boxes-row.light .wp-block-kadence-column.dark .kt-inside-inner-col:not(:empty) .ttl {
    color: #FBB03B; }
.site-content .rl-gallery.cropped-bottom .rl-gallery-link {
  position: relative;
  padding-bottom: 64%; }
  .site-content .rl-gallery.cropped-bottom .rl-gallery-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    top: 0;
    left: 0;
    position: absolute; }

/* ==========================================================================
	Category posts 
	========================================================================== */
.archive article.post,
.blog article.post,
.search article.post {
  position: relative;
  box-shadow: 0px 5px 45px rgba(67, 72, 85, 0.14); }
  .archive article.post .entry-header,
  .blog article.post .entry-header,
  .search article.post .entry-header {
    margin: 0; }
  .archive article.post .post-thumb,
  .blog article.post .post-thumb,
  .search article.post .post-thumb {
    width: 100%;
    display: block;
    position: relative; }
    .archive article.post .post-thumb a,
    .blog article.post .post-thumb a,
    .search article.post .post-thumb a {
      display: block;
      overflow: hidden;
      position: relative;
      padding-top: 40%;
      z-index: 10; }
      .archive article.post .post-thumb a img,
      .blog article.post .post-thumb a img,
      .search article.post .post-thumb a img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
        position: absolute;
        -webkit-transition: all 3s;
        -moz-transition: all 3s;
        -ms-transition: all 3s;
        -o-transition: all 3s;
        transition: all 3s; }
      .archive article.post .post-thumb a:hover img,
      .blog article.post .post-thumb a:hover img,
      .search article.post .post-thumb a:hover img {
        transform: scale(1.05); }
  .archive article.post .entry-content,
  .blog article.post .entry-content,
  .search article.post .entry-content {
    padding: 35px;
    margin: 0;
    position: relative; }
    .archive article.post .entry-content .more-p,
    .blog article.post .entry-content .more-p,
    .search article.post .entry-content .more-p {
      display: none; }
  .archive article.post .entry-title a,
  .blog article.post .entry-title a,
  .search article.post .entry-title a {
    text-decoration: none;
    border: none;
    color: #3C4057; }
    .archive article.post .entry-title a:hover,
    .blog article.post .entry-title a:hover,
    .search article.post .entry-title a:hover {
      color: #F15A24; }
  .archive article.post.no-results,
  .blog article.post.no-results,
  .search article.post.no-results {
    padding: 40px;
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
    .archive article.post.no-results .entry-content,
    .blog article.post.no-results .entry-content,
    .search article.post.no-results .entry-content {
      background: none;
      width: auto;
      margin: 0;
      padding: 0; }

.header-meta {
  text-align: left;
  position: relative;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  color: #111; }
  .header-meta > * {
    display: inline-block;
    margin-right: 10px;
    font-weight: normal;
    font-style: normal; }

.post-thumb img {
  width: 100%;
  height: auto; }

.post-meta {
  color: #999;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 1em; }

p.more {
  margin: 0; }

a.more-link:after {
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  color: #fff;
  display: inline-block;
  font-size: 80%;
  margin-left: 10px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s; }
a.more-link:hover:after {
  color: #fff; }

/** Post Nav bottom */
.post-nav-section {
  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; }
  .post-nav-section .btn, .post-nav-section a.more-link {
    width: 49%;
    min-width: 100px;
    white-space: normal; }
    .post-nav-section .btn strong, .post-nav-section a.more-link strong {
      display: block;
      position: relative;
      font-size: 80%;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
      @media screen and (max-width: 480px) {
        .post-nav-section .btn strong, .post-nav-section a.more-link strong {
          display: none; } }
    .post-nav-section .btn[rel="prev"], .post-nav-section a[rel="prev"].more-link {
      text-align: left; }
    .post-nav-section .btn[rel="next"], .post-nav-section a[rel="next"].more-link {
      text-align: right; }
    @media screen and (max-width: 480px) {
      .post-nav-section .btn, .post-nav-section a.more-link {
        font-size: 12px !important; } }

/* ==========================================================================
	Portfolio/Projects
	========================================================================== */
.portfolio-grid article.post {
  box-shadow: none; }
  .portfolio-grid article.post .post-image img {
    width: 100%;
    height: auto; }
  .portfolio-grid article.post .summary-info {
    background: #fff;
    padding: 20px;
    right: 32px;
    bottom: 32px;
    left: 32px;
    position: absolute;
    z-index: 20; }
    @media screen and (max-width: 768px) {
      .portfolio-grid article.post .summary-info {
        padding: 16px;
        bottom: 24px;
        left: 24px;
        right: 24px; } }
    .portfolio-grid article.post .summary-info .post-title {
      position: relative; }
      .portfolio-grid article.post .summary-info .post-title .ttl {
        margin: 0;
        padding: 0; }
        .portfolio-grid article.post .summary-info .post-title .ttl {
          font-size: 18px; }
          @media screen and (min-width: 320px) {
            .portfolio-grid article.post .summary-info .post-title .ttl {
              font-size: calc(18px + 6 * ((100vw - 320px) / 1600)) !important; } }
          @media screen and (min-width: 1920px) {
            .portfolio-grid article.post .summary-info .post-title .ttl {
              font-size: 24px !important; } }
        .portfolio-grid article.post .summary-info .post-title .ttl a {
          color: #3C4057;
          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; }
          .portfolio-grid article.post .summary-info .post-title .ttl a span {
            flex: 1; }
          .portfolio-grid article.post .summary-info .post-title .ttl a:after {
            content: '';
            display: block;
            width: 48px;
            height: 48px;
            line-height: 48px;
            margin-left: 10px;
            background: #FBB03B url("../images/arrow-up-right.svg") no-repeat center;
            background-size: 24px 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; }
          .portfolio-grid article.post .summary-info .post-title .ttl a:hover {
            color: #F15A24; }
            .portfolio-grid article.post .summary-info .post-title .ttl a:hover:after {
              background-color: #F15A24; }

/*** Blog Pulls  */
.blogposts-pull:not(.posts-slider) .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-pull:not(.posts-slider) .posts-articles .post-list-item {
    width: calc(33.33% - 20px); }
    .blogposts-pull:not(.posts-slider) .posts-articles .post-list-item .post-image {
      margin-bottom: 1em; }
    @media screen and (max-width: 992px) {
      .blogposts-pull:not(.posts-slider) .posts-articles .post-list-item {
        width: calc(50% - 20px); } }
    @media screen and (max-width: 600px) {
      .blogposts-pull:not(.posts-slider) .posts-articles .post-list-item {
        width: 100%; } }
.blogposts-pull.posts-slider .post-list-item {
  position: relative;
  margin-bottom: 0 !important; }
.blogposts-pull.posts-slider .post-image img {
  width: 100%;
  height: auto; }
.blogposts-pull.posts-slider .summary-info {
  background: #fff;
  padding: 20px;
  right: 32px;
  bottom: 32px;
  left: 32px;
  position: absolute;
  z-index: 20; }
  @media screen and (max-width: 768px) {
    .blogposts-pull.posts-slider .summary-info {
      padding: 16px;
      bottom: 24px;
      left: 24px;
      right: 24px; } }
  .blogposts-pull.posts-slider .summary-info .post-title {
    position: relative; }
    .blogposts-pull.posts-slider .summary-info .post-title .ttl {
      margin: 0;
      padding: 0; }
      .blogposts-pull.posts-slider .summary-info .post-title .ttl {
        font-size: 20px; }
        @media screen and (min-width: 320px) {
          .blogposts-pull.posts-slider .summary-info .post-title .ttl {
            font-size: calc(20px + 6 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          .blogposts-pull.posts-slider .summary-info .post-title .ttl {
            font-size: 26px !important; } }
      .blogposts-pull.posts-slider .summary-info .post-title .ttl a {
        color: #3C4057;
        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; }
        .blogposts-pull.posts-slider .summary-info .post-title .ttl a span {
          flex: 1; }
        .blogposts-pull.posts-slider .summary-info .post-title .ttl a:after {
          content: '';
          display: block;
          width: 48px;
          height: 48px;
          line-height: 48px;
          margin-left: 10px;
          background: #FBB03B url("../images/arrow-up-right.svg") no-repeat center;
          background-size: 24px 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; }
        .blogposts-pull.posts-slider .summary-info .post-title .ttl a:hover {
          color: #F15A24; }
          .blogposts-pull.posts-slider .summary-info .post-title .ttl a:hover:after {
            background-color: #F15A24; }
  .blogposts-pull.posts-slider .summary-info .post-more {
    display: none; }

.posts-slider .flex-direction-nav {
  list-style: none;
  margin: 0;
  padding: 0; }
  .posts-slider .flex-direction-nav li {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0; }
    .posts-slider .flex-direction-nav li a {
      display: block;
      font-size: 0;
      line-height: 0; }
      .posts-slider .flex-direction-nav li a:before {
        content: '';
        display: block;
        width: 48px;
        height: 48px;
        background: #F15A24 url("../images/arrow.svg") no-repeat center;
        background-size: 24px 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; }
      .posts-slider .flex-direction-nav li a:hover:before {
        background-color: #FBB03B; }
    .posts-slider .flex-direction-nav li.flex-nav-next {
      margin-left: 64px; }
      .posts-slider .flex-direction-nav li.flex-nav-next a:before {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
.posts-slider .flex-control-paging {
  list-style: none;
  text-align: center;
  margin: 30px 0 0 0;
  padding: 0; }
  .posts-slider .flex-control-paging li {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    padding: 0;
    font-size: 0;
    line-height: 0; }
    .posts-slider .flex-control-paging li a {
      display: block;
      width: 10px;
      height: 10px;
      background: #F15A24; }
      .posts-slider .flex-control-paging li a:hover, .posts-slider .flex-control-paging li a.flex-active {
        background: #FBB03B; }

/* ==========================================================================
   Pre-Footer Section
   ========================================================================== */
#prefootercontainer {
  background: #F15A24 url("../images/blinds-bg.jpg") no-repeat center fixed;
  color: #fff;
  padding: 4rem 0 3rem 0; }
  #prefootercontainer {
    font-size: 16px; }
    @media screen and (min-width: 320px) {
      #prefootercontainer {
        font-size: calc(16px + 2 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      #prefootercontainer {
        font-size: 18px !important; } }
  @media screen and (max-width: 992px) {
    #prefootercontainer {
      background-attachment: scroll; } }
  #prefootercontainer:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(241, 90, 36, 0.9);
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1; }
  #prefootercontainer > * {
    position: relative;
    z-index: 30; }
  #prefootercontainer .top-ttl {
    color: #fff;
    opacity: 0.65;
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    margin-bottom: 0.35em !important;
    position: relative;
    text-transform: none;
    letter-spacing: 3px;
    line-height: normal; }
    #prefootercontainer .top-ttl {
      font-size: 28px; }
      @media screen and (min-width: 320px) {
        #prefootercontainer .top-ttl {
          font-size: calc(28px + 10 * ((100vw - 320px) / 1600)) !important; } }
      @media screen and (min-width: 1920px) {
        #prefootercontainer .top-ttl {
          font-size: 38px !important; } }
    #prefootercontainer .top-ttl:before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 40px;
      border-top: 1px solid;
      margin-right: 15px; }
  #prefootercontainer h2 {
    color: #fff; }
  #prefootercontainer .left p {
    width: 1060px;
    max-width: 100%; }
  #prefootercontainer .right p {
    margin: 1em 0; }

/* ==========================================================================
   Footer Section
   ========================================================================== */
#footercontainer {
  background: #fff;
  position: relative;
  z-index: 10; }
  #footercontainer a {
    color: #3C4057; }
    #footercontainer a:hover {
      color: #F15A24; }
  #footercontainer .footer-widgets {
    color: #3C4057;
    background: #fff;
    font-size: 20px;
    padding: 80px 20px 20px 20px;
    position: relative; }
    @media screen and (max-width: 1200px) {
      #footercontainer .footer-widgets {
        padding-top: 50px;
        padding-bottom: 20px;
        font-size: 18px; } }
    #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; }
    #footercontainer .footer-widgets .widget-title {
      font-family: "Open Sans", sans-serif;
      font-weight: 600;
      text-align: left;
      text-transform: none;
      position: relative;
      margin-bottom: 32px;
      color: #3C4057; }
      #footercontainer .footer-widgets .widget-title {
        font-size: 20px; }
        @media screen and (min-width: 320px) {
          #footercontainer .footer-widgets .widget-title {
            font-size: calc(20px + 4 * ((100vw - 320px) / 1600)) !important; } }
        @media screen and (min-width: 1920px) {
          #footercontainer .footer-widgets .widget-title {
            font-size: 24px !important; } }
    #footercontainer .footer-widgets .menu,
    #footercontainer .footer-widgets .textwidget ul.list-style {
      padding: 0;
      margin: 0; }
      #footercontainer .footer-widgets .menu li,
      #footercontainer .footer-widgets .textwidget ul.list-style li {
        display: block;
        margin-bottom: 20px; }
        #footercontainer .footer-widgets .menu li a,
        #footercontainer .footer-widgets .textwidget ul.list-style li a {
          color: rgba(60, 64, 87, 0.65); }
          #footercontainer .footer-widgets .menu li a:hover,
          #footercontainer .footer-widgets .textwidget ul.list-style li a:hover {
            color: #3C4057; }
        #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 {
      width: 300px;
      height: auto; }
    #footercontainer .footer-widgets .foot-contacts .textwidget > ul {
      margin-left: 0;
      padding: 0; }
      #footercontainer .footer-widgets .foot-contacts .textwidget > ul li {
        margin-bottom: 32px; }
        #footercontainer .footer-widgets .foot-contacts .textwidget > ul li strong {
          display: inline-block;
          vertical-align: baseline;
          margin-right: 5px; }
        #footercontainer .footer-widgets .foot-contacts .textwidget > ul li a {
          display: inline-block; }
    #footercontainer .footer-widgets .foot-contacts .social-media-icons h4 {
      font-family: "Open Sans", sans-serif;
      font-weight: 600; }
    #footercontainer .footer-widgets .list-2-cols ul {
      -webkit-columns: 2;
      -moz-columns: 2;
      columns: 2; }
      @media screen and (max-width: 600px) {
        #footercontainer .footer-widgets .list-2-cols ul {
          -webkit-columns: 1;
          -moz-columns: 1;
          columns: 1; } }
  #footercontainer .copyright {
    font-size: 18px;
    color: #3C4057;
    text-align: center; }
    #footercontainer .copyright .smallprint {
      border-top: 1px solid #d9531a; }
    #footercontainer .copyright .smallprint {
      padding: 46px 0 46px 0; }
      @media screen and (max-width: 768px) {
        #footercontainer .copyright .smallprint {
          padding: 32px 0 32px 0; } }
    #footercontainer .copyright a {
      color: #3C4057;
      text-decoration: underline; }
      #footercontainer .copyright a:hover {
        color: #F15A24; }
    #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: #FBB03B;
    border: 2px solid #FBB03B;
    -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: #F15A24;
      border-color: #F15A24;
      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: #F15A24;
    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(67, 72, 85, 0.15); }
  #secondary .widget:last-child {
    margin: 0; }
  #secondary .widget .widget-title {
    font-weight: 400;
    letter-spacing: 1px;
    text-align: left;
    text-transform: none;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 1em;
    color: #F15A24; }
    #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 .menu {
    padding: 0;
    margin: 0; }
    #secondary .widget .menu li {
      display: block;
      position: relative;
      padding: 10px 0 10px 22px;
      border-top: 1px solid rgba(251, 176, 59, 0.1); }
      #secondary .widget .menu li:first-child {
        border: none; }
      #secondary .widget .menu li:before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        background: #FBB03B;
        opacity: 0.5;
        top: 17px;
        left: 0px;
        position: absolute; }
      #secondary .widget .menu li a {
        color: #FBB03B;
        border-bottom: 1px solid rgba(0, 0, 0, 0); }
        #secondary .widget .menu li a:hover {
          color: #F15A24;
          border-bottom-color: #F15A24; }
      #secondary .widget .menu li .sub-menu {
        margin-top: 6px;
        padding-left: 15px; }

/* ==========================================================================
   404 Page
   ========================================================================== */
article.error404 {
  text-align: center; }
  article.error404 .error-code {
    color: #fff;
    text-shadow: -2px 0 #F15A24, 0 2px #F15A24, 2px 0 #F15A24, 0 -2px #F15A24;
    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; } }

/* ==========================================================================
   Site specific styles
   ========================================================================== */
.odometer-item {
  font-family: "Raleway", sans-serif !important;
  font-weight: 400;
  text-align: center; }
  .odometer-item {
    font-size: 40px; }
    @media screen and (min-width: 320px) {
      .odometer-item {
        font-size: calc(40px + 20 * ((100vw - 320px) / 1600)) !important; } }
    @media screen and (min-width: 1920px) {
      .odometer-item {
        font-size: 60px !important; } }
  .odometer-item .odometer {
    font-family: "Raleway", sans-serif !important;
    font-weight: 400;
    vertical-align: baseline; }
    .odometer-item .odometer * {
      vertical-align: baseline !important; }

/** 	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: flex-end;
  align-items: flex-end;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  position: relative;
  clear: both;
  overflow: hidden;
  margin: 0 auto 30px auto;
  width: 270px;
  max-width: 100%; }
  .sq_sep:before, .sq_sep:after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background: rgba(241, 90, 36, 0.5);
    margin: 0 15px; }
  .sq_sep .decor {
    display: block;
    width: 75px;
    height: 35px;
    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.icon {
    /*
    vertically
    align-items: flex-start | flex-end | center | baseline | stretch;
    */
    -webkit-align-items: center;
    align-items: center; }
    .sq_sep.icon .decor {
      width: 50px;
      height: 50px;
      background: url(../images/logo-icon.svg) no-repeat center;
      background-size: contain; }

.sq-video-preview .video-box {
  background: #f0f0f0;
  cursor: pointer;
  position: relative; }
  .sq-video-preview .video-box.played {
    background: none; }
  .sq-video-preview .video-box .poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    position: absolute; }
  .sq-video-preview .video-box .play-video {
    width: 60px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    margin-left: -30px;
    margin-top: -20px;
    color: #fff;
    text-decoration: none;
    background: rgba(241, 90, 36, 0.85);
    border-radius: 6px;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 20; }
    .sq-video-preview .video-box .play-video i {
      margin-left: 3px; }
  .sq-video-preview .video-box:hover .play-video {
    transform: scale(1.2);
    background: rgba(251, 176, 59, 0.84); }

/*@import "_site-loader";*/
/*@import "_site-modals"; */
/* ==========================================================================
   Additional styles
   ========================================================================== */
/** Additional Color Palette */
.has-sq-light-gray-background-color {
  background-color: #e1e1e1; }

.has-sq-light-gray-color {
  color: #e1e1e1; }

.has-sq-dark-gray-background-color {
  background-color: #3C4057; }

.has-sq-dark-gray-color {
  color: #3C4057; }

.has-sq-color-accent-light-background-color {
  background-color: #ff8821; }

.has-sq-color-accent-light-color {
  color: #ff8821; }

.has-sq-color-accent-background-color {
  background-color: #F15A24; }

.has-sq-color-accent-color {
  color: #F15A24; }

.has-sq-color-accent-dark-background-color {
  background-color: #d9531a; }

.has-sq-color-accent-dark-color {
  color: #d9531a; }

.has-sq-color-accent2-light-background-color {
  background-color: #fff7e4; }

.has-sq-color-accent2-light-color {
  color: #fff7e4; }

.has-sq-color-gold-light-background-color {
  background-color: #FBB03B; }

.has-sq-color-gold-light-color {
  color: #FBB03B; }

/*# sourceMappingURL=theme.css.map */
