/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// Nine.css v2.0 /////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/*
    Primary color

            hex: var(--primary)
            rgb: rgb(7, 98, 171)

    Secondary color

            hex: var(--secondary)
            rgb: rgb(16, 75, 134)

    Tertiary color

            hex: var(--tertiary)
            rgb: rgb(61, 61, 61)

    Quaternary color

            hex: #616261
            rgb: rgb(97, 98, 97)

    Light color

            hex: #f8f9fa
            rgb: rgb(248, 249, 250)

    Dark color 1

            hex: #343a40
            rgb: rgb(52, 58, 64)

    Dark color 2

            hex: #2f343a
            rgb: rgb(47, 52, 58)

    Media Queries (bootstrap 4.x)

            /* (xs) Extra small devices (portrait phones, less than 576px) * /

            /* (sm) Small devices (landscape phones, 576px and up) * /
            @media (min-width: 576px) {  }

            /* (md) Medium devices (tablets, 768px and up) * /
            @media (min-width: 768px) {  }

            /* (lg) Large devices (desktops, 992px and up) * /
            @media (min-width: 992px) {  }

            /* (xl) Extra large devices (large desktops, 1200px and up) * /
            @media (min-width: 1200px) {  }
*/
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// GLOBAL ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  --primary: #7a1e1e;
  --primary-rgb: 122, 30, 30;
  --primary-tissue: 106 26 27 / 87%;
  --primary-opacity: 122 30 30;
  --primary-opacity-5: rgba(122, 30, 30, .5);
  --primary-opacity-8: rgba(122, 30, 30, .8);
  --secondary: #c8985b;
  --secondary-rgb: 200, 152, 91;
  --secondary-tissue: 200 152 91 / 67%;
  --secondary-opacity: 200 152 91;
  --secondary-opacity-5: rgba(200, 152, 91, .5);
  --secondary-opacity-8: rgba(200, 152, 91, .8);
  --tertiary: #5f8299;
  --tertiary-rgb: 95, 130, 153;
  --tertiary-tissue: 95 130 153 / 72%;
  --tertiary-opacity: 95 130 153;
  --tertiary-opacity-5: rgba(95, 130, 153, .5);
  --tertiary-opacity-8: rgba(95, 130, 153, .8);
  --quaternary: #303b41;
  --quaternary-rgb: 48, 59, 66;
  --quaternary-tissue: 48 59 66 / 78%;
  --quaternary-opacity: 48 59 66;
  --quaternary-opacity-5: rgba(48, 59, 66, .5);
  --quaternary-opacity-8: rgba(48, 59, 66, .8);
  --gray: #F9F9FA;
  --dark: #231f20;
  --darker: #1d1a1b;
  --font-primary: "Open Sans", sans-serif;
  --font-secondary: "Rubik", serif;
}

@font-face {
  font-family: "Calibri-Regular";
  src: url("/oak/themes/custom_energy/css/fonts/calibri/calibri-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body.first-fruits-site {
  --primary: #5f7533;
  --primary-rgb: 95, 117, 51;
  --primary-opacity: 95 117 51;
  --primary-opacity-5: rgba(95, 117, 51, .5);
  --primary-opacity-8: rgba(95, 117, 51, .8);
  --secondary: #BE7D13;
  --secondary-rgb: 190, 125, 19;
  --secondary-opacity: 190 125 19;
  --tertiary: #DDA860;
  --tertiary-rgb: 221, 168, 96;
  --tertiary-opacity: 221 168 96;
  --quaternary: #414042;
  --quaternary-rgb: 65, 64, 66;
  --quaternary-opacity: 65 64 66;
  --font-primary: "Rubik", serif;
  --font-secondary: "Mr Eaves Sans OT", "Open Sans", sans-serif;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// GLOBAL ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* page */
html {
  overflow-x: hidden;
}

body {
  color: #343434;
  background-color: #ffffff; /* generally the color of the footer for shorter pages */
  overflow-x: hidden;
  font-family: var(--font-primary);
  font-weight: 300;
}

main {
  position: relative;
  z-index: 1;
  clear: both;
}

footer nav a:hover {
  opacity: 1;
  color: #ffffff;
}

footer nav ul.services {
  columns: 2;
}

@media (min-width: 992px) {
  footer nav ul.services {
    columns: 1;
  }
}
footer nav ul.footer-pages {
  columns: 2;
}

@media (min-width: 576px) {
  footer nav ul.footer-pages {
    columns: 1;
  }
}
body.convention-site footer nav ul.footer-pages {
  columns: 2;
}

@media (min-width: 992px) {
  body.convention-site footer nav ul.footer-pages {
    columns: 3;
  }
}
footer nav li {
  list-style-type: none;
}

footer nav li a {
  font-size: 1.2rem;
  color: #f8f9fa;
}

footer .form-control, footer .form-control:disabled {
  background-color: #273035;
  border-color: var(--quaternary);
  color: #ffffff;
}

footer select.form-control {
  font-size: 14px;
}

footer .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(39, 48, 54, 0.5);
  color: #fff;
  background-color: #273035;
  border-color: rgba(39, 38, 54, 0.8);
}

footer label {
  color: #ffffff;
  opacity: 50%;
}

footer section .container {
  max-width: 1600px !important;
}

footer .form-group .btn-primary {
  color: var(--secondary);
  border-color: var(--secondary);
  background-color: transparent;
}

footer .form-group .btn-primary:hover,
footer .form-group .btn-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(var(--secondary-rgb), 0.5);
}

footer .form-group .btn-primary.focus, footer .form-group .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--secondary-rgb), 0.5);
}

footer .form-group .btn-primary.btn-icon i {
  color: #fff;
  background-color: rgba(var(--secondary-rgb), 0.8);
}

footer .form-group .btn-primary.btn-icon:hover i {
  background-color: rgba(0, 0, 0, 0.13);
}

/* a tags */
a {
  color: var(--primary);
}

a:hover {
  color: var(--secondary);
}

section.bg-image a:hover {
  color: #ffffff;
}

/* .text- */
.text-primary {
  color: var(--primary) !important;
}

a.text-primary:focus, a.text-primary:hover {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

a.text-secondary:hover {
  color: var(--secondary) !important;
}

.text-tertiary {
  color: var(--tertiary) !important;
}

.text-quaternary {
  color: var(--quaternary) !important;
}

.text-dark {
  color: #343434 !important;
}

.text-shadow {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.text-shadow-blur {
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.text-fade {
  color: #7e7e7e;
}

.text-convention-primary {
  color: #826135 !important;
}

/* .badge- */
.badge-primary {
  background-color: var(--primary);
}

.badge-secondary {
  background-color: var(--secondary);
}

/* .bg- */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-gradient {
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5a4f84+0,7a68ae+100 */
  background: rgb(var(--primary-rgb)); /* Old browsers */
  background: -moz-linear-gradient(-45deg, rgba(var(--primary-rgb), 1) 0%, rgb(118, 12, 12) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(var(--primary-rgb), 1) 0%, rgb(118, 12, 12) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 1) 0%, rgb(118, 12, 12) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="var(--primary)", endColorstr="#760c0c",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-secondary-gradient {
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5e8017+0,C1D82F+100 */
  background: rgb(var(--secondary-rgb)); /* Old browsers */
  background: -moz-linear-gradient(-45deg, rgba(var(--secondary-rgb), 1) 0%, rgb(169, 97, 6) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(var(--secondary-rgb), 1) 0%, rgb(169, 97, 6) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 1) 0%, rgb(169, 97, 6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="var(--secondary)", endColorstr="#a96106",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.bg-tertiary {
  background-color: var(--tertiary) !important;
}

.bg-tertiary-gradient {
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d6a104+0,F6892A+100 */
  background: rgb(214, 161, 4); /* Old browsers */
  background: -moz-linear-gradient(-45deg, rgb(214, 161, 4) 0%, rgb(255, 199, 33) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgb(214, 161, 4) 0%, rgb(255, 199, 33) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgb(214, 161, 4) 0%, rgb(255, 199, 33) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d6a104", endColorstr="var(--tertiary)",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.bg-quaternary {
  background-color: var(--quaternary) !important;
}

.bg-gradient {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/var(--primary)+29,f58929+100 */
  background: rgb(122, 104, 174); /* Old browsers */
  background: -moz-linear-gradient(45deg, rgb(122, 104, 174) 29%, rgb(245, 137, 41) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgb(122, 104, 174) 29%, rgb(245, 137, 41) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgb(122, 104, 174) 29%, rgb(245, 137, 41) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="var(--primary)", endColorstr="#f58929",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.bg-light {
  background-color: #f5f1ed !important;
}

.bg-gray {
  background-color: #f8f9fa !important;
}

.tooltip-inner {
  background-color: var(--secondary);
}

.tooltip.bs-tooltip-right .arrow:before {
  border-right-color: var(--secondary) !important;
}

.tooltip.bs-tooltip-left .arrow:before {
  border-left-color: var(--secondary) !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
  border-bottom-color: var(--secondary) !important;
}

.tooltip.bs-tooltip-top .arrow:before {
  border-top-color: var(--secondary) !important;
}

hr.hr-light {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// TYPOGRAPHY ////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-family: var(--font-secondary);
}

/* h*.sub */
h1 span.sub, h2 span.sub, h3 span.sub, h4 span.sub, h5 span.sub, h6 span.sub {
  display: block;
  font-size: 60%;
  /* opacity: .7; */
  margin-top: 0.5em;
}

h1.sub, .h1.sub, .display-1.sub {
  display: block;
  font-size: 2.1rem;
  margin-top: 0.5em;
}

h2.sub, .h2.sub, .display-2.sub {
  display: block;
  font-size: 1.68rem;
  margin-top: 0.5em;
}

h3.sub, .h3.sub, .display-3.sub {
  display: block;
  font-size: 1.44rem;
  margin-top: 0.5em;
}

h4.sub, .h4.sub, .display-4.sub {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.5em;
}

h5.sub, .h5.sub, .display-5.sub {
  display: block;
  font-size: 0.98rem;
  margin-top: 0.5em;
}

/* .display-* */
/* ---------- */
.display-1, h1, .h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.display-2, h2, .h2 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}

.display-3, h3, .h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.display-4, h4, .h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.display-5, h5, .h5 {
  font-size: 1.6rem;
  font-weight: 400;
}

/* (sm) Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .display-1, h1, .h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
  }
  .display-2, h2, .h2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
  }
  .display-3, h3, .h3 {
    font-size: 2.4rem;
    font-weight: 400;
  }
  .display-4, h4, .h4 {
    font-size: 2rem;
    font-weight: 400;
  }
  .display-5, h5, .h5 {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
/* (md) Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .display-1, h1, .h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
  }
  .display-2, h2, .h2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
  }
  .display-3, h3, .h3 {
    font-size: 2.4rem;
    font-weight: 400;
  }
  .display-4, h4, .h4 {
    font-size: 2rem;
    font-weight: 400;
  }
  .display-5, h5, .h5 {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
/* (lg) Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .display-1, h1, .h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
  }
  .display-2, h2, .h2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
  }
  .display-3, h3, .h3 {
    font-size: 2.4rem;
    font-weight: 400;
  }
  .display-4, h4, .h4 {
    font-size: 2rem;
    font-weight: 400;
  }
  .display-5, h5, .h5 {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
/* (xl) Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .display-1, h1, .h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
  }
  .display-2, h2, .h2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
  }
  .display-3, h3, .h3 {
    font-size: 2.4rem;
    font-weight: 400;
  }
  .display-4, h4, .h4 {
    font-size: 2rem;
    font-weight: 400;
  }
  .display-5, h5, .h5 {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
/* .font-block
{
    font-family: "proxima-nova", sans-serif;
    font-weight: 900;
} */
.font-display {
  font-family: var(--font-secondary);
}

p {
  margin-bottom: 1.5rem;
}

/* Ninthroot gradient text */
.text-ninthroot {
  font-weight: bold;
  background: linear-gradient(230deg, #ff4e6c 0%, #f26897 25%, #3abfe0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.font-rubik {
  font-family: "Rubik", sans-serif;
}

.font-weight-semi-bold {
  font-weight: 500;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// BUTTONS ///////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* .btn- */
.btn {
  border-radius: 0.2rem;
  white-space: normal;
  -webkit-box-shadow: 0 7px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 7px 10px -5px rgba(0, 0, 0, 0.2);
  font-family: var(--font-primary);
  text-transform: uppercase;
}

/* /// .btn Addons before ///////////////////////////////////////////////////////////////////////////////////// */
/* .btn-icon */
.btn-icon {
  position: relative;
  overflow: hidden;
}

.btn-icon:not(.icon-right) {
  padding-left: 45px;
}

.btn-icon.icon-right {
  padding-right: 45px;
}

.btn-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 35px;
  top: 0;
  background-color: rgba(0, 0, 0, 0.13);
}

.btn-icon:not(.icon-right) i {
  left: 0;
  border-right: 1px solid transparent;
}

.btn-icon.icon-right i {
  right: 0;
  border-left: 1px solid transparent;
}

/* .btn-count */
.btn-count {
  position: relative;
  overflow: hidden;
  padding-left: 0px !important;
}

.btn-count span.count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  width: auto;
  top: 0;
  left: 0;
  margin-right: 10px;
  padding: 0 8px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.13);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.btn-count span.count {
  border-right: 1px solid transparent;
}

/* .btn-sub */
.btn-sub span.sub {
  display: block;
  font-size: 60%;
  line-height: 61%;
  text-transform: uppercase;
  /* opacity: .7; */
}

/* .btn-primary */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem var(--primary-opacity-5);
}

.btn-primary.focus, .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem var(--primary-opacity-5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: var(--primary-opacity-5);
  border-color: var(--primary-opacity-5);
}

/* .btn-outline-primary */
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem var(--primary-opacity-5);
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem var(--primary-opacity-5);
}

.btn-outline-primary.btn-icon i {
  color: #fff;
  background-color: var(--primary);
}

.btn-outline-primary.btn-icon:hover i {
  background-color: rgba(0, 0, 0, 0.13);
}

/* .btn-secondary */
.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem var(--secondary-opacity-5);
}

.btn-secondary.focus, .btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem var(--secondary-opacity-5);
}

/* .btn-outline-secondary */
.btn-outline-secondary {
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem var(--secondary-opacity-5);
}

.btn-outline-secondary.focus, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem var(--secondary-opacity-5);
}

.btn-outline-secondary.btn-icon i {
  color: #fff;
  background-color: var(--secondary);
}

.btn-outline-secondary.btn-icon:hover i {
  background-color: rgba(0, 0, 0, 0.13);
}

/* .btn-tertiary */
.btn-tertiary {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  color: #ffffff;
}

.btn-tertiary:hover,
.btn-tertiary:not(:disabled):not(.disabled).active,
.btn-tertiary:not(:disabled):not(.disabled):active,
.show > .btn-tertiary.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  box-shadow: 0 0 0 0.2rem var(--tertiary-opacity-5);
}

.btn-tertiary.focus, .btn-tertiary:focus {
  box-shadow: 0 0 0 0.2rem var(--tertiary-opacity-5);
}

/* .btn-outline-tertiary */
.btn-outline-tertiary {
  color: var(--tertiary);
  border-color: var(--tertiary);
}

.btn-outline-tertiary:hover,
.btn-outline-tertiary:not(:disabled):not(.disabled).active,
.btn-outline-tertiary:not(:disabled):not(.disabled):active,
.show > .btn-outline-tertiary.dropdown-toggle {
  color: #fff;
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  box-shadow: 0 0 0 0.2rem var(--tertiary-opacity-5);
}

.btn-outline-tertiary.focus, .btn-outline-tertiary:focus {
  box-shadow: 0 0 0 0.2rem var(--tertiary-opacity-5);
}

.btn-outline-tertiary.btn-icon i {
  color: #fff;
  background-color: var(--tertiary);
}

.btn-outline-tertiary.btn-icon:hover i {
  background-color: rgba(0, 0, 0, 0.13);
}

/* .btn-quaternary */
.btn-quaternary {
  background-color: var(--quaternary);
  border-color: var(--quaternary);
  color: #ffffff;
}

.btn-quaternary:hover,
.btn-quaternary:not(:disabled):not(.disabled).active,
.btn-quaternary:not(:disabled):not(.disabled):active,
.show > .btn-quaternary.dropdown-toggle {
  color: var(--quaternary) !important;
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-quaternary.focus, .btn-quaternary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* .btn-outline-quaternary */
.btn-outline-quaternary {
  color: var(--quaternary);
  border-color: var(--quaternary);
}

.btn-outline-quaternary:hover,
.btn-outline-quaternary:not(:disabled):not(.disabled).active,
.btn-outline-quaternary:not(:disabled):not(.disabled):active,
.show > .btn-outline-quaternary.dropdown-toggle {
  color: #fff;
  background-color: var(--quaternary);
  border-color: var(--quaternary);
  box-shadow: 0 0 0 0.2rem var(--quaternary-opacity-5);
}

.btn-outline-quaternary.focus, .btn-outline-quaternary:focus {
  box-shadow: 0 0 0 0.2rem var(--quaternary-opacity-5);
}

.btn-outline-quaternary.btn-icon i {
  color: #fff;
  background-color: var(--quaternary);
}

.btn-outline-quaternary.btn-icon:hover i {
  background-color: rgba(0, 0, 0, 0.13);
}

/* .btn-light */
.btn-light {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: #edf1f5;
  color: var(--primary);
}

.btn-light:hover,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.95);
  border-color: #dee3e8;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.2);
}

.btn-light.focus, .btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.2);
}

.btn-light.btn-icon i {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: white;
}

.btn-light.btn-icon:hover i {
  color: #535b62;
}

section.bg-gray .btn-light {
  background-color: #fff;
}

/* .btn-outline-light */
.btn-outline-light {
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
  color: var(--quaternary);
  background-color: rgba(255, 255, 255, 0.95);
  border-color: #edf1f5;
}

.btn-outline-light.focus, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-outline-light.btn-icon i {
  background-color: transparent;
  border-color: white;
}

.btn-outline-light.btn-icon:hover i {
  background-color: rgba(255, 255, 255, 0.95);
}

/* .btn-dark */
.btn-dark {
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover,
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.focus, .btn-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* .btn-outline-dark */
.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.focus, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.btn-icon i {
  color: #fff;
  background-color: #343a40;
}

.btn-outline-dark.btn-icon:hover i {
  background-color: rgba(0, 0, 0, 0.13);
}

/* .btn-link */
.btn-link {
  color: var(--primary);
  background-color: transparent;
}

.btn-link:hover {
  color: var(--primary);
}

/* /// .btn Addons after ///////////////////////////////////////////////////////////////////////////////////// */
/* remove shadows, gradients, etc. */
.btn-flat {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-split-left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
}

.btn-split-right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// HEADER ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
header {
  position: fixed;
  z-index: 5;
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/* special container */
@media (max-width: 991px) {
  header div.header-container {
    max-width: 99%;
  }
}
body.convention-site header div.header-container {
  max-width: 1600px;
}

header .logo {
  display: none;
}

/* mobile logo */
header .mobile-logo {
  position: relative;
  left: -10px;
  padding: 0px;
  top: 3px;
}

header .mobile-logo img {
  height: 60px;
}

body.convention-site header .mobile-logo {
  top: 0px;
}

body.convention-site header .mobile-logo img {
  margin-top: 0px;
  height: 70px;
  padding: 5px 0px;
}

/* mobile icons */
header .mobile-icon-group {
  position: absolute;
  top: 15px;
  right: 49px;
  z-index: 500;
  font-size: 2.5rem;
  font-size: 25px;
}

header .mobile-icon-group a:not(.btn) {
  display: flex;
  float: right;
  color: #394042;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* dark */
body.h-dark header .mobile-icon-group a:not(.btn) {
  color: #fff;
}

header .mobile-icon-group a.on-open-only {
  display: none;
}

header .mobile-icon-group a.on-close-only {
  display: inline-block;
}

/* opened */
header .mobile-icon-group.open {
  position: fixed;
}

header .mobile-icon-group.open a.on-open-only {
  display: inline-block;
}

header .mobile-icon-group.open a.on-close-only {
  display: none;
}

header .mobile-icon-group.open a:not(.btn) {
  color: var(--primary);
}

/* mobile nav trigger */
header .mobile-nav-trigger {
  position: absolute;
  overflow: hidden;
  top: 1px;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 70px; /* mobile header height */
  font-size: 2.5rem;
  font-size: 25px;
  color: var(--primary);
  cursor: pointer;
}

body.convention-site header .mobile-nav-trigger {
  top: 3px;
}

header .mobile-nav-trigger .close-icon {
  position: relative;
  color: #ffffff;
  display: none;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

header .mobile-nav-trigger .open-icon {
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

/* opened */
header .mobile-nav-trigger.open {
  position: fixed;
}

header .mobile-nav-trigger.open .close-icon {
  display: inline;
}

header .mobile-nav-trigger.open .open-icon {
  display: none;
}

/* -------------- */
header .icon-group,
header .header-search {
  display: none;
}

@media (min-width: 295px) {
  header .mobile-logo img.insignia {
    display: none;
  }
  header .mobile-logo img.full {
    display: block;
  }
}
@media (min-width: 328px) {
  /* mobile logo */
  header .mobile-logo {
    height: 70px;
    overflow: hidden;
    padding: 0px;
    top: 1px;
  }
  header .mobile-logo img {
    margin-top: -26px;
    height: 106px;
    padding: 8px 0px;
  }
}
/* (lg) Large devices (desktops, 992px and up) */
/* ------------------------------------------- */
@media (min-width: 992px) {
  header .mobile-logo,
  header .mobile-nav-trigger,
  header .mobile-icon-group {
    display: none;
  }
  body.convention-site header .logo {
    height: 120px;
    margin-top: -29px;
  }
  body.first-fruits-site header .logo, body.first-fruits-site header .logo img {
    height: 105px;
  }
  body:not(.first-fruits-site):not(.convention-site):not(.locked-template) header:not(.scrolled) .header-container .logo {
    height: 0;
    margin-top: 40px;
  }
  body:not(.first-fruits-site):not(.convention-site):not(.locked-template) header:not(.scrolled) .header-container .logo img {
    height: auto;
    width: 135px;
  }
  header .logo img {
    height: 120px;
    transition: 0.25s ease-in;
  }
  header.scrolled .logo img {
    height: 85px;
  }
  body.first-fruits-site.h-sticky header.scrolled .logo {
    top: 0px;
    height: 55px;
  }
  body.first-fruits-site header.scrolled .logo img {
    height: 53px;
  }
  header .logo {
    /* height: 96px; */
    height: 70px;
    /* margin-bottom: -135px; */
  }
  header.scrolled .logo {
    margin-top: -20px;
  }
  /* container adjustments */
  body.h-full-width header div.container {
    max-width: 99% !important;
  }
  /* search bar */
  header .header-search {
    display: none;
    font-size: 25px;
    line-height: 40px; /* header height */
    padding: 25px 0; /* header height */
  }
  header .header-search form input {
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    font-size: 30px;
    height: 100%;
    letter-spacing: 2px;
    outline: 0 none;
    padding: 0;
  }
  header .header-search form input:focus {
    background-color: transparent;
  }
  body.h-dark header .header-search form input,
  body.h-transparent header .header-search form input {
    color: #fff;
  }
  /* logo */
  header .logo {
    position: relative;
    /* margin-bottom: -50px; */
    display: flex;
    align-items: center;
    padding: 0; /* header height */
    float: left;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  header .logo.has-identifier {
    padding: 16px 0 34px;
    display: flex;
    justify-content: center;
  }
  header .logo.has-identifier .identifier {
    position: absolute;
    bottom: 11px;
    display: block;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #5d5d5d;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  header .logo.has-identifier .identifier:hover {
    text-decoration: none;
  }
  header .logo img {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  header.scrolled .logo img.seal {
    display: block;
  }
  header .logo img.seal {
    display: none;
  }
  /* Custom "Icon Group" */
  header .nav-group {
    float: right;
    position: relative;
    top: 27px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  header .nav-group .btn.btn-lg {
    height: auto;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  header .nav-group .nav-group-cta .nav-group-phone {
    display: block;
  }
  header .nav-group .nav-group-cta .nav-group-phone .nav-g-icon {
    display: block;
  }
  header .nav-group .nav-group-cta .nav-group-phone .nav-g-number {
    display: none;
  }
  header .nav-group .nav-group-cta > a:not(.btn) {
    font-size: 25px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  header .nav-group .nav-group-cta a:hover:not(.btn) {
    color: var(--secondary);
    text-decoration: none;
  }
  /* Main Icon Group */
  body.h-show-icon-group header .icon-group {
    display: block;
  }
  header .icon-group {
    float: right;
    padding-left: 10px;
    margin-left: 10px;
  }
  header .icon-group a {
    display: block;
    float: left;
    height: 90px; /* generally the total height of the logo */
    font-size: 17px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  header .icon-group a:hover {
    text-decoration: none;
  }
  body.convention-site header nav .convention-date-header {
    font-weight: 300;
    font-size: 27px;
    color: #737373;
    padding-bottom: 2px;
    padding-left: 5px;
    border-bottom: 1px solid #333;
  }
} /* end media query lg  */
@media (min-width: 1030px) {
  header .logo img.full {
    display: block;
  }
  header .logo {
    /* height: 96px; */
    height: 105px;
    margin-top: -20px;
    /* margin-bottom: -135px; */
  }
}
@media (min-width: 1180px) {
  header .logo {
    /* height: 90px; */
    height: 105px;
    margin-top: -20px;
  }
  header .nav-group .nav-group-cta a:not(.btn) {
    font-size: 25px;
  }
}
@media (min-width: 1400px) {
  header .nav-group .nav-group-cta a:not(.btn) {
    font-size: 25px;
  }
}
/* HEADER TOP BAR */
/* -------------- */
header div.top-bar, header .nav-group {
  display: none;
}

/* (lg) Large devices (desktops, 992px and up) */
/* ------------------------------------------- */
@media (min-width: 992px) {
  body.h-show-top-bar header div.top-bar,
  header .nav-group {
    display: block;
  }
  header div.top-bar {
    color: #343a40;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+28,ffffff+100&0+2,1+100 */
    background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.27) 28%, rgb(246, 246, 246) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.27) 28%, rgb(246, 246, 246) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.27) 28%, rgb(246, 246, 246) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  header div.top-bar-border {
    width: 100%;
    height: 1px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+28,eeeeee+100&0+0,1+100 */
    background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 28%, rgb(238, 238, 238) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 28%, rgb(238, 238, 238) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 28%, rgb(238, 238, 238) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#eeeeee",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  /* dark */
  body.h-dark header div.top-bar {
    color: #fff;
    background-color: #242a2f;
  }
  /* Sticky */
  /* ------ */
  body.h-sticky header.scrolled div.top-bar {
    margin-top: -36px; /* top-bar height */
  }
  /* Included if shared top bar exists */
  div.shared-top-bar {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  div.shared-top-bar a.btn {
    border-radius: 0;
  }
  div.shared-top-bar a.btn:hover {
    cursor: pointer;
  }
  body.h-sticky header.scrolled div.shared-top-bar {
    margin-top: -40px;
  }
  /* top bar icon group */
  header div.top-bar div.top-icon-group {
    float: right;
  }
  header div.top-bar div.top-icon-group a {
    display: flex;
    float: left;
    width: 35px;
    height: 35px; /* top-bar height */
    font-size: 15px;
    color: var(--primary);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  /* text style */
  header div.top-bar div.top-icon-group a.text-style {
    font-size: 12px;
    padding: 0 15px;
    width: auto;
  }
  header div.top-bar div.top-icon-group a.text-style i {
    font-size: 12px;
    padding-right: 9px;
  }
  header div.top-bar div.top-icon-group a.text-style:hover span.text {
    text-decoration: underline;
  }
  /* dark */
  body.h-dark header div.top-bar div.top-icon-group a {
    color: #bdbdbd;
  }
  body.h-dark header div.top-bar div.top-icon-group a:hover {
    color: #fff;
  }
  /* top bar tert nav */
  header div.top-bar div.tert-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  header div.top-bar div.tert-nav ul li {
    float: left;
  }
  header div.top-bar div.tert-nav ul li a {
    display: flex;
    align-items: center;
    height: 35px; /* top-bar height */
    color: #343a40;
    opacity: 0.7;
    padding: 0 15px 0 0;
    /*-webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;*/
  }
  header div.top-bar div.tert-nav ul li a:hover {
    opacity: 1;
    color: var(--primary);
    text-decoration: none;
  }
  /* dark */
  body.h-dark header div.top-bar div.tert-nav ul li a {
    color: #bdbdbd;
  }
  body.h-dark header div.top-bar div.tert-nav ul li a:hover {
    color: var(--secondary);
  }
} /* end media query lg */
/* //// HEADER LIGHT (default) /////////////////////////////////////////////////////////////////////////////////////////////////// */
header {
  background: white;
  border-bottom: 1px solid #ffffff;
}

body.h-sticky header.scrolled {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  clear: both;
  background: rgb(255, 255, 255);
}

/* //// HEADER DARK /////////////////////////////////////////////////////////////////////////////////////////////////////////// */
body.h-dark header,
body.h-dark.h-sticky header.scrolled {
  background-color: #343a40;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* //// HEADER opaque ////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* (lg) Large devices (desktops, 992px and up) */
/* ------------------------------------------- */
@media (min-width: 992px) {
  body.h-opaque header {
    background-color: rgba(255, 255, 255, 0.7);
  }
  body.h-dark.h-opaque header {
    background-color: rgba(52, 58, 64, 0.7);
  }
  body.h-opaque:not(.h-sticky) header {
    margin-top: -90px; /* header height */
    bottom: -90px; /* header height */
  }
}
/* //// HEADER TRANSPARENT //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* (lg) Large devices (desktops, 992px and up) */
/* ------------------------------------------- */
@media (min-width: 992px) {
  body.h-transparent header {
    background-color: transparent;
  }
  body.h-transparent:not(.h-sticky) header {
    margin-top: -90px; /* header height */
    bottom: -90px; /* header height */
  }
  body.h-transparent header:not(.scrolled) {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
/* //// HEADER OUTLINE ////////////////////////////////////////////////////////////////////////////////////////////////////////// */
body.h-outline header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.h-outline header .logo {
  padding-right: 25px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

body.h-outline header .icon-group {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

body.h-outline.h-sticky header.scrolled .logo {
  padding-right: 15px;
}

/* (lg) Large devices (desktops, 992px and up) */
/* ------------------------------------------- */
@media (min-width: 992px) {
  /* light.opaque */
  body.h-outline.h-opaque header,
  body.h-outline.h-opaque header .logo,
  body.h-outline.h-opaque header .icon-group,
  body.h-outline.h-opaque.h-sticky header.scrolled,
  body.h-outline.h-opaque.h-sticky header.scrolled .logo {
    border-color: rgba(255, 255, 255, 0.4);
  }
}
/* dark */
body.h-outline.h-dark header,
body.h-outline.h-dark header .logo,
body.h-outline.h-dark header .icon-group,
body.h-outline.h-dark.h-sticky header.scrolled,
body.h-outline.h-dark.h-sticky header.scrolled .logo {
  border-color: rgb(40, 45, 50);
}

/* (lg) Large devices (desktops, 992px and up) */
/* ------------------------------------------- */
@media (min-width: 992px) {
  /* transparent */
  body.h-outline.h-transparent:not(.h-opaque) header:not(.scrolled) {
    border-color: rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  body.h-outline.h-transparent:not(.h-opaque) header:not(.scrolled) .logo,
  body.h-outline.h-transparent:not(.h-opaque) header:not(.scrolled) .icon-group {
    border-color: rgba(255, 255, 255, 0.4);
  }
  body.h-dark.h-outline.h-transparent.h-show-top-bar:not(.h-opaque) header:not(.scrolled) {
    border-color: rgba(0, 0, 0, 0.3);
  }
  body.h-dark.h-outline.h-transparent.h-show-top-bar:not(.h-opaque) header:not(.scrolled) .logo,
  body.h-dark.h-outline.h-transparent.h-show-top-bar:not(.h-opaque) header:not(.scrolled) .icon-group {
    border-color: rgba(0, 0, 0, 0.3);
  }
}
/* //// HEADER STICKY ////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* (lg) Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  body.h-sticky header {
    position: fixed;
    width: 100%;
    z-index: 500;
  }
  /* logo */
  body.h-sticky header.scrolled .logo {
    top: 5px;
    overflow: hidden;
  }
  body.convention-site.h-sticky header.scrolled .logo {
    margin-top: 0px;
    height: 85px;
    top: 5px;
  }
  body.h-sticky header.scrolled .logo.has-identifier .identifier {
    opacity: 0;
  }
  body.h-sticky header.scrolled .icon-group a {
    height: 50px;
  } /* header height */
  body.h-sticky header.scrolled .nav-group {
    top: 7px;
  }
}
@media (min-width: 1030px) {
  body.h-sticky header.scrolled .logo {
    top: -4px;
    height: 54px;
    overflow: hidden;
    margin-top: 0px;
  }
}
/* //// HEADER NAV ///////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* NAV Mobile */
/* ---------- */
header nav {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  overflow: hidden;
}

header nav.open {
  position: fixed;
  z-index: 100;
  overflow-y: scroll;
  height: 100%;
  background: rgba(37, 40, 41, 0.98);
}

header nav ul, header nav li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/*//// Nav Content ///////////////////////////////////////////*/
header nav li.nav-content {
  display: none;
}

/*//// LEVEL 1 ///////////////////////////////////////////*/
header nav ul.level-1 {
  margin: 73px auto; /* at least mobile header height */
  width: 80%;
}

header nav ul.level-1 > li {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

/* header nav ul.level-1 > li:last-child
{
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
} */
header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) {
  position: relative;
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 2rem;
  font-size: 20px;
  line-height: 25px;
  text-decoration: none;
  border-left: 1px solid transparent;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/* sub title */
header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) .sub-title {
  display: none;
}

header nav ul.level-1 li a:active:not(.nav-content):not(.mega-h-a) {
  background-color: rgba(var(--primary-rgb), 0.5);
}

/* carrot */
header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) .carrot {
  font-size: 12px;
  padding: 0 11px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

header nav ul.level-1 li a.open:not(.nav-content):not(.mega-h-a) .carrot {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=6);
}

/*//// LEVEL 2 ///////////////////////////////////////////*/
header nav li ul.level-2 {
  display: none;
  position: relative;
  /* background: rgba(52, 58, 64, 0.6); */
  width: 100%;
  padding: 10px 0;
}

header nav li ul.level-2 li {
  padding: 0 15px;
}

header nav li ul.level-2 li a:not(.nav-content):not(.mega-h-a) {
  position: relative;
  text-shadow: none;
  text-transform: none;
  font-size: 16px;
  line-height: 16px;
  padding: 12px 5px 12px 40px;
}

header nav li ul.level-2 li a:hover:not(.nav-content):not(.mega-h-a),
header nav li ul.level-2 li a:active:not(.nav-content):not(.mega-h-a) {
  background-color: rgba(var(--primary-rgb), 0.5);
}

/* carrot */
header nav ul.level-2 li a:not(.nav-content):not(.mega-h-a) .icon,
header nav ul.level-2 li a:not(.nav-content):not(.mega-h-a) .carrot {
  display: none;
}

/*//// LEVEL 3 ///////////////////////////////////////////*/
header nav li ul.level-3 {
  display: none;
}

nav .mega-highlight-standard a {
  position: relative;
  color: #fff;
  padding-left: 40px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

nav .mega-highlight-standard a:hover {
  text-decoration: none;
  color: var(--primary);
}

nav .mega-highlight-standard a.mega-h-crossover {
  display: none;
}

nav .mega-highlight-col {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}

nav .mega-highlight ul.level-2 {
  margin-bottom: 25px;
}

nav .mega-highlight-col a.mega-h-crossover {
  display: none;
}

nav .mega-highlight-col a.mega-h-a {
  text-decoration: none;
  display: flex;
  font-size: 17px;
  align-items: center;
}

nav .mega-highlight-col a.mega-h-a div.mega-h-text {
  color: #fff;
  padding-left: 1rem;
}

nav .mega-highlight-col a.mega-h-a:hover div.mega-h-text {
  color: var(--secondary);
}

nav .mega-highlight-col a.mega-h-a div.mega-h-img {
  padding: 1px;
  text-align: center;
  -webkit-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  border-radius: 50%;
  background-size: cover;
  height: 50px;
  width: 50px;
  flex-shrink: 0;
}

nav .mega-highlight-col a.mega-h-a div.mega-h-img img {
  border-radius: 50%;
  background-color: #f8f9fa;
  border: 1px solid #eee;
}

nav .mega-highlight-col a.mega-h-a:hover div.mega-h-img {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
}

/* NAV Desktop */
/* ----------- */
/* (lg) Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  header nav {
    position: relative;
    height: auto;
    overflow: visible;
    right: 21px;
    font-weight: 400;
  }
  header nav div.mobile-nav-trigger {
    display: none;
  }
  header nav > ul {
    display: block !important;
  }
  /*//// LEVEL 1 ///////////////////////////////////////////*/
  /* level 1: global */
  header nav ul.level-1 {
    margin: 0;
    width: auto;
    float: right;
  }
  header nav ul.level-1 > li {
    border-top: none;
    border-right: 1px solid #ffffff;
    float: left;
  }
  header nav ul.level-1 > li:first-child {
    border-left: 1px solid #ffffff;
  }
  header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) {
    height: 90px; /* generally the total height of the logo */
    font-size: 14px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    /* on light defaults */
    text-shadow: none;
    color: #5d5d5d;
  }
  body.convention-site header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) {
    border-bottom: 3px solid transparent;
    height: 40px;
    border-left: none;
    text-transform: uppercase;
    font-weight: 500;
  }
  /* sub title */
  header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) .sub-title {
    display: block;
    overflow: hidden;
    font-size: 12px;
    line-height: 12px;
    /* opacity: .7; */
    font-weight: 300;
    max-height: 50px;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
  }
  header nav ul.level-1 li a.over:not(.nav-content):not(.mega-h-a),
  header nav ul.level-1 li a:hover:not(.nav-content):not(.mega-h-a) {
    color: #ffffff;
    background-color: var(--primary);
  }
  body.convention-site header nav ul.level-1 li a.over:not(.nav-content):not(.mega-h-a),
  body.convention-site header nav ul.level-1 li a:hover:not(.nav-content):not(.mega-h-a) {
    border-bottom-color: #826135;
    border-left: none;
    color: #000000 !important;
    background-color: #fff;
  }
  /* Light vs Dark */
  /* ------------- */
  body.h-dark header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a),
  body.h-transparent header:not(.scrolled) nav ul.level-1 > li > a:not(.nav-content):not(.mega-h-a) {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  }
  /* Sticky */
  /* ------ */
  body.h-sticky header.scrolled nav ul.level-1 > li {
    border-right: 0px solid #f1f1f1;
  }
  header nav ul.level-1 > li:first-child {
    border-left: 0px solid #f1f1f1;
  }
  body.h-sticky header.scrolled nav ul.level-1 > li > a:not(.nav-content):not(.mega-h-a) {
    height: 50px;
    font-size: 14px;
  }
  body.convention-site.h-sticky header.scrolled nav ul.level-1 > li > a:not(.nav-content):not(.mega-h-a) {
    height: 40px;
  }
  body.first-fruits-site.h-sticky header.scrolled nav ul.level-1 > li > a:not(.nav-content):not(.mega-h-a) {
    height: 55px;
    font-size: 14px;
  }
  body.h-sticky header.scrolled nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) .sub-title {
    max-height: 0px;
  }
  header nav ul.level-1 li a span.icon {
    display: none;
  }
  /* LAST */
  /* ---- */
  body.h-highlight-last header nav ul.level-1 > li:last-child > a:not(.nav-content):not(.mega-h-a) {
    font-size: 25px;
  }
  body.h-highlight-last header nav ul.level-1 > li:last-child > a:hover:not(.nav-content):not(.mega-h-a),
  body.h-highlight-last header nav ul.level-1 > li:last-child > a.over:not(.nav-content):not(.mega-h-a) {
    color: var(--primary);
  }
  /* carrot */
  header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) .carrot {
    font-size: 17px;
    position: relative;
    padding-left: 8px;
    padding-right: 0;
    padding-top: 6px;
  }
  header nav ul.level-1 li a.over:not(.nav-content):not(.mega-h-a) .carrot,
  header nav ul.level-1 li a:hover:not(.nav-content):not(.mega-h-a) .carrot {
    transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
  }
  /* Level 1: fly out */
  header nav ul.level-1 > li.flyout {
    position: relative;
  }
  /*//// LEVEL 2 ///////////////////////////////////////////*/
  /* Level 2: global */
  header nav li ul.level-2 {
    position: absolute;
    background: #ffffff;
    color: #5a5a5a;
    padding: 0;
    border-radius: 0px 0px 0.4rem 0.4rem;
    overflow: visible;
    -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
  }
  header nav li ul.level-2 li a:not(.nav-content):not(.mega-h-a) {
    height: auto;
  }
  /* dark */
  body.h-dark header nav li ul.level-2 {
    background: rgba(52, 58, 64, 0.98);
  }
  body.h-dark header nav li ul.level-2 li a:not(.nav-content):not(.mega-h-a) {
    color: rgba(255, 255, 255, 0.95);
  }
  /* Level 2: flyout */
  header nav li.flyout ul.level-2 {
    top: 100%;
    width: 230px;
    border-top: 2px solid var(--primary);
  }
  /* flyout direction */
  header nav li.flyout.right ul.level-2 {
    left: 0;
  }
  header nav li.flyout.left ul.level-2 {
    right: 0;
  }
  header nav li.flyout ul.level-2 li {
    position: relative;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  /* dark */
  body.h-dark header nav li.flyout ul.level-2 li {
    border-bottom: 1px solid rgb(46, 52, 57);
  }
  header nav li.flyout ul.level-2 li:last-child {
    border: none !important;
  }
  header nav li.flyout ul.level-2 li a:not(.nav-content):not(.mega-h-a) {
    padding: 12px 10px;
    font-size: 13px;
    line-height: 13px;
  }
  header nav li.flyout ul.level-2 li:last-child a:not(.nav-content):not(.mega-h-a),
  header nav li.flyout ul.level-2 li:last-child a:not(.nav-content):not(.mega-h-a) {
    border-bottom-right-radius: 6.4px;
    border-bottom-left-radius: 6.4px;
  }
  header nav li.flyout ul.level-2 li a:not(.nav-content):not(.mega-h-a) .carrot {
    display: block;
    position: absolute;
    padding: 0;
    right: 10px;
    top: 12px;
    color: var(--primary);
  }
  header nav li.flyout ul.level-2 li a:hover:not(.nav-content):not(.mega-h-a),
  header nav li.flyout ul.level-2 li a.over:not(.nav-content):not(.mega-h-a) {
    color: #fff;
    text-decoration: none;
    background-color: var(--primary);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  }
  header nav li.flyout ul.level-2 li a:hover:not(.nav-content):not(.mega-h-a) .carrot,
  header nav li.flyout ul.level-2 li a.over:not(.nav-content):not(.mega-h-a) .carrot {
    color: #fff;
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
  }
  /* Level 2: mega */
  header nav li.mega ul.level-2 {
    right: -21px;
    top: 73px; /* starting point, should be updated via js */
    padding: 0 10px 10px 10px;
    max-width: 1820px;
    border-top: 2px solid var(--primary);
  }
  /* global */
  header nav li.mega ul.level-2 li {
    padding: 15px;
  }
  header nav li.mega ul.level-2 li a:not(.nav-content):not(.mega-h-a) {
    padding: 5px 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header nav li.mega ul.level-2 li a:hover:not(.nav-content):not(.mega-h-a) {
    background: transparent;
    color: var(--primary);
    padding-left: 5px;
  }
  header nav li.mega ul.level-2 li a:not(.nav-content):not(.mega-h-a) .icon {
    display: inline-block;
    padding-right: 10px;
    opacity: 0.4;
  }
  /* dark */
  body.h-dark header nav li.mega ul.level-2 li a:not(.nav-content):not(.mega-h-a) {
    border-bottom: 1px solid rgb(46, 52, 57);
  }
  /*//// LEVEL 3+ ///////////////////////////////////////////*/
  /* Level 3+: Flyout */
  header nav li.flyout ul.level-2 ul {
    position: absolute;
    z-index: 1;
    top: -2px;
    width: 230px;
    box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.95);
  }
  /* dark */
  body.h-dark header nav li.flyout ul.level-2 ul {
    background: rgba(52, 58, 64, 0.95);
  }
  /* flyout direction */
  header nav li.flyout ul.level-2 li.right > ul {
    left: 100%;
  }
  header nav li.flyout ul.level-2 li.left > ul {
    right: 100%;
  }
  /* stack order */
  header nav li.flyout ul.level-3 ul {
    z-index: 2;
  }
  header nav li.flyout ul.level-4 ul {
    z-index: 3;
  }
  header nav li.flyout ul.level-5 ul {
    z-index: 4;
  }
  header nav li.flyout ul.level-6 ul {
    z-index: 5;
  }
  /* Level 3: Mega */
  header nav li.mega ul.level-3 {
    display: block;
    margin: 5px 0 0 25px;
  }
  /* global */
  header nav li.mega ul.level-3 li {
    padding: 0;
  }
  header nav li.mega ul.level-3 li a:not(.nav-content):not(.mega-h-a) {
    font-size: 95%;
    opacity: 0.7;
    text-shadow: none;
    padding: 10px 1px;
    text-transform: none;
    text-decoration: none;
    border: none !important;
  }
  header nav li.mega ul.level-3 li a:hover:not(.nav-content):not(.mega-h-a) {
    opacity: 1;
  }
  /* level 3+ */
  header nav li.mega ul.level-3 ul {
    display: none;
  }
  /*//// Nav Content ///////////////////////////////////////////*/
  header nav li.nav-content-wrapper {
    display: block;
    color: #fff;
    width: 100%;
    padding: 0px !important;
    margin: 0px -10px -10px 10px !important;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/var(--primary)+0,102f54+100 */
    background: var(--primary); /* Old browsers */
    background: -moz-linear-gradient(-45deg, var(--primary) 0%, #102f54 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, var(--primary) 0%, #102f54 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, var(--primary) 0%, #102f54 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="var(--primary)", endColorstr="#102f54",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  nav .mega-highlight ul.level-2 {
    margin-bottom: 0;
  }
  nav .mega-highlight-standard a {
    position: relative;
    color: #5d5d5d;
    font-size: 15px;
    padding-left: 0px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  nav .mega-highlight-standard a:hover {
    text-decoration: none;
    color: var(--primary);
  }
  nav .mega-highlight-standard a.mega-h-crossover {
    display: inline-block;
    padding-left: 4px;
    font-size: 80%;
    opacity: 0.4;
  }
  nav .mega-highlight-standard a.mega-h-crossover:hover {
    opacity: 1;
  }
  nav .mega-highlight-col {
    margin-bottom: 0px;
  }
  nav .mega-highlight-col a.mega-h-crossover {
    position: absolute;
    left: 9px;
    top: calc(50% - 48px);
    opacity: 0.4;
  }
  nav .mega-highlight-col a.mega-h-crossover:hover {
    opacity: 1;
  }
  nav .mega-highlight-col a.mega-h-a {
    text-decoration: none;
    display: block;
    font-size: 19px;
  }
  nav .mega-highlight-col a.mega-h-a div.mega-h-text {
    color: #5d5d5d;
    padding-left: 0;
    font-size: 12px;
    padding-top: 6px;
  }
  nav .mega-highlight-col a.mega-h-a:hover div.mega-h-text {
    color: var(--primary);
  }
  nav .mega-highlight-col a.mega-h-a div.mega-h-img {
    position: relative;
    padding-left: 1px;
    padding-right: 1px;
    padding-top: 0px;
    padding-bottom: 100%;
    width: 100%;
    height: 0;
    background-size: cover;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
  }
  nav .mega-highlight-col a.mega-h-a div.mega-h-img img {
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 2px solid #eee;
  }
  nav .mega-highlight-col a.mega-h-a:hover div.mega-h-img {
    border-color: #e3e3e3;
    -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
  }
} /* end (lg) */
@media (min-width: 1120px) {
  header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) {
    /* font-size: 14px;
    padding: 0 10px; */
    font-size: 17px;
  }
}
@media (min-width: 1300px) {
  header nav ul.level-1 li a:not(.nav-content):not(.mega-h-a) {
    font-size: 17px;
  }
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// SECTIONS //////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
section {
  position: relative;
  margin: 0;
  padding: 75px 0;
  background-color: #fff; /* default */
}

section .container {
  max-width: 1200px !important;
}

/*section:not(.section-separator) { overflow-x: hidden; }*/
section.no-pad {
  padding: 0;
}

section.half-pad {
  padding: 25px 0;
}

/* //// SECTION Gray ////////////////////////////////////////////////////////////////////////////////////////////// */
section.bg-gray {
  background-color: #f8f9fa;
}

/* //// SECTION Dark ////////////////////////////////////////////////////////////////////////////////////////////// */
section.bg-dark {
  background-color: var(--dark) !important;
}

/* //// SECTION Dark 2 ////////////////////////////////////////////////////////////////////////////////////////////// */
section.bg-dark-2,
section.bg-darker {
  background-color: var(--darker) !important;
}

/* //// SECTION SPLIT ///////////////////////////////////////////////////////////////////////////////////////////// */
section.split {
  padding: 0;
}

/* both sides */
section.split div.left,
section.split div.right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

section.split div.left {
  background-color: #F9F9F9;
}

section.split div.right {
  background-color: #fff;
}

/* overrides */
section.split div.text-left {
  justify-content: left;
}

section.split div.text-right {
  justify-content: right;
}

@media (min-width: 992px) {
  section.split div.left {
    padding-left: 100px;
  }
  section.split div.right {
    padding-right: 100px;
  }
}
@media (min-width: 768px) {
  section.split div.left,
  section.split div.right {
    width: 50%;
    float: left;
  }
}
/* //// SECTION LR Image ///////////////////////////////////////////////////////////////////////////////////////////// */
section.lr-image div[class*=col-] {
  padding: 3rem;
}

section.lr-image h1:not(.h3):not(.h4):not(.h5), section.lr-image h2:not(.h3):not(.h4):not(.h5), section.lr-image .h1:not(.h3):not(.h4):not(.h5), section.lr-image .h2:not(.h3):not(.h4):not(.h5) {
  margin-bottom: 2rem;
}

/* //// SECTION IMAGE  /////////////////////////////////////////////////////////////////////////////////////////////// */
section img.section-image {
  position: absolute;
  top: 20px;
  width: 200px;
  opacity: 0.2;
}

section img.section-image.left {
  left: 0px;
}

section img.section-image.right {
  right: 0px;
}

section img.section-image.bottom {
  bottom: 0px;
}

section i.section-icon {
  position: absolute;
  font-size: 30em;
  opacity: 0.3;
}

section i.section-icon.left {
  left: -50px;
}

section i.section-icon.right {
  right: -50px;
}

section i.section-icon.bottom {
  bottom: -50px;
}

/* //// SECTION IMAGE /////////////////////////////////////////////////////////////////////////////////////////////////// */
section.bg-image {
  min-height: 350px;
  background-position: 50%;
  background-size: cover;
  color: #fff;
  background-color: transparent;
}

@media (min-width: 992px) {
  section.bg-image.bg-parallax {
    background-attachment: fixed;
  }
}
section.bg-image-tissue {
  background-position: 50%;
  background-size: cover;
  padding: 0 !important;
  background-color: transparent;
}

section.bg-image-tissue .container-fluid {
  padding: 0 !important;
}

section.bg-image-tissue .tissue-light {
  background-color: rgba(255, 255, 255, 0.9);
}

section.bg-image-tissue .tissue-dark {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

section.bg-image-tissue .tissue-primary {
  color: #fff;
  background-color: rgb(var(--primary-tissue));
}

section.bg-image-tissue .tissue-secondary {
  color: #fff;
  background-color: rgb(var(--secondary-tissue));
}

section.bg-image-tissue .tissue-tertiary {
  color: #fff;
  background-color: rgb(var(--tertiary-tissue));
}

section.bg-image-tissue .tissue-quaternary {
  color: #fff;
  background-color: rgb(var(--quaternary-tissue));
}

/* //// SECTION VIDEO /////////////////////////////////////////////////////////////////////////////////////////////////// */
section.bg-video {
  position: relative;
  color: #fff;
  background-color: transparent;
  overflow: hidden;
}

section.bg-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-repeat: no-repeat;
  background-size: cover;
}

.yt-wrapper {
  position: absolute;
  top: 0%;
  left: 0%;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
}

section.bg-video .yt-wrapper {
  z-index: -100;
}

.yt-wrapper iframe {
  min-width: 100%;
  min-height: 100%;
}

.yt-poster {
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
  left: 0;
  z-index: 1;
}

section.bg-video .yt-poster {
  z-index: -99;
}

/* //// SECTION CONTACT ///////////////////////////////////////////////////////////////////////////////////////////// */
section.contact-split {
  padding: 0px !important;
}

section.contact-split .container-fluid {
  padding: 0px;
}

section.contact-split .row {
  margin: 0px;
}

section.contact-split > .container-fluid > .row > div[class*=col-]:first-child {
  padding-top: 118px;
  padding-bottom: 30px;
}

section.contact-split > .container-fluid > .row > div[class*=col-]:last-child {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  section.contact-split > .container-fluid > .row > div[class*=col-],
  section.contact-split > .container-fluid > .row > div[class*=col-]:first-child,
  section.contact-split > .container-fluid > .row > div[class*=col-]:last-child {
    padding-top: 151px;
    padding-bottom: 48px;
  }
}
.content-overlay::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6196078431);
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.content-overlay.dark::before {
  background-color: rgba(0, 0, 0, 0.6509803922);
}

/* //// SECTION FULLSCREEN ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 992px) {
  section.full-screen:not(.bg-overlay) {
    height: 100vh;
  }
}
section.full-screen:not(.bg-overlay) > div.container,
section.full-screen:not(.bg-overlay) > div.container > div.row {
  height: 100%;
}

/* //// SECTION PARTIAL SCREEN ///////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 992px) {
  section.partial-screen:not(.bg-overlay) {
    height: 70vh;
  }
}
section.partial-screen:not(.bg-overlay) > div.container,
section.partial-screen:not(.bg-overlay) > div.container > div.row {
  height: 100%;
}

/* //// SECTION DIVIDERS /////////////////////////////////////////////////////////////////////////////////////////////// */
/* Diagonal */
/* -------- */
.divider-diagonal::before,
.divider-diagonal::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.divider-diagonal {
  z-index: 1;
  padding-top: 3rem !important;
  background: #fff;
}

.divider-diagonal::before,
.divider-diagonal::after {
  top: 0;
  left: -25%;
  z-index: -1;
  width: 150%;
  height: 75%;
  background: inherit;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* Mirror */
.divider-diagonal.diagonal-mirror::before,
.divider-diagonal.diagonal-mirror::after {
  top: -80px;
  left: -5%;
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}

/* Add Shadow */
.divider-diagonal.diagonal-shadow::before {
  height: 50%;
  background: rgba(46, 51, 57, 0.5);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
  -webkit-transform-origin: 3% 0;
  transform-origin: 3% 0;
}

.divider-diagonal.diagonal-mirror.diagonal-shadow::before {
  top: -100px;
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}

/* shadow colors */
.divider-diagonal.diagonal-shadow.shadow-primary::before {
  background: var(--primary-opacity-8);
  opacity: 0.8;
}

.divider-diagonal.diagonal-shadow.shadow-secondary::before {
  background: var(--primary-opacity-5);
}

/* //// SECTION SEPARATOR ////////////////////////////////////////////////////////////////////////////////////////////// */
section.section-separator-pad,
section.section-separator-pad .overlay {
  padding-bottom: 130px !important;
}

section.section-separator {
  position: relative;
  padding: 0;
  margin: 0;
}

/* svg paths */
section.section-separator svg {
  position: absolute;
  z-index: 1;
  padding-bottom: 0;
  margin-bottom: 0;
  bottom: 0;
  fill: #fff;
  stroke: #fff;
}

section.section-separator svg.back {
  z-index: 0;
  fill: var(--primary);
  stroke: var(--primary);
  opacity: 0.7;
}

/* coloring */
section.section-separator.separator-front-gray svg.front,
section.section-separator.separator-back-gray svg.back {
  fill: #f8f9fa;
  stroke: #f8f9fa;
}

section.section-separator.separator-front-secondary svg.front,
section.section-separator.separator-back-secondary svg.back {
  fill: var(--secondary);
  stroke: var(--secondary);
}

/* //// SECTION OVERLAY /////////////////////////////////////////////////////////////////////////////////////////////////// */
section.bg-overlay {
  min-height: auto;
  display: block;
  padding: 0;
}

section.bg-overlay div.overlay {
  display: flex;
  align-items: center;
  padding: 75px 0; /* re-apply default section padding */
  box-shadow: inset 0px 11px 8px -10px rgba(0, 0, 0, 0.2), inset 0px -11px 8px -10px rgba(0, 0, 0, 0.2);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.4) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 49%, rgba(0, 0, 0, 0.4) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6343a40", endColorstr="#c2343a40",GradientType=0 );
}

section.bg-overlay.overlay-darker div.overlay {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.5+0,0.4+100 */
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#80000000", endColorstr="#66000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

section.bg-overlay.overlay-gradient div.overlay {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/var(--secondary)+0,7A68AE+100&0.7+0,0.8+100 */
  background: -moz-linear-gradient(-45deg, rgba(51, 102, 31, 0.7) 0%, rgba(31, 51, 102, 0.8) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(51, 102, 31, 0.7) 0%, rgba(31, 51, 102, 0.8) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(51, 102, 31, 0.7) 0%, rgba(31, 51, 102, 0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3C1D82F", endColorstr="#cc7A68AE",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

section.bg-overlay.overlay-primary div.overlay {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#05757f+0,7A68AE+100&0.85+0,0.8+100 */
  background: -moz-linear-gradient(-45deg, rgba(5, 117, 127, 0.85) 0%, rgba(0, 142, 156, 0.8) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(5, 117, 127, 0.85) 0%, rgba(0, 142, 156, 0.8) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(5, 117, 127, 0.85) 0%, rgba(0, 142, 156, 0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d905757f", endColorstr="#cc7A68AE",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

section.bg-overlay.overlay-secondary div.overlay {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5e8017+0,C1D82F+100&0.85+0,0.8+100 */
  background: -moz-linear-gradient(-45deg, rgba(94, 128, 23, 0.85) 0%, rgba(123, 162, 41, 0.8) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(94, 128, 23, 0.85) 0%, rgba(123, 162, 41, 0.8) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(94, 128, 23, 0.85) 0%, rgba(123, 162, 41, 0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d95e8017", endColorstr="#ccC1D82F",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

section.bg-overlay.overlay-tertiary div.overlay {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e87229+0,f6892a+100&0.8+0,0.9+100 */
  background: -moz-linear-gradient(-45deg, rgba(232, 114, 41, 0.8) 0%, rgba(246, 137, 42, 0.9) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(232, 114, 41, 0.8) 0%, rgba(246, 137, 42, 0.9) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(232, 114, 41, 0.8) 0%, rgba(246, 137, 42, 0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#cce87229", endColorstr="#e6f6892a",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

section.bg-overlay.overlay-light div.overlay {
  background: webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.65) 49%, rgba(255, 255, 255, 0.4) 100%) !important;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.65) 49%, rgba(255, 255, 255, 0.4) 100%) !important;
}

/* overlay view hieght fixes */
@media (min-width: 992px) {
  section.full-screen.bg-overlay div.overlay {
    height: 100vh;
  }
}
section.full-screen.bg-overlay div.overlay > div.container,
section.full-screen.bg-overlay div.overlay > div.container > div.row {
  height: 100%;
}

@media (min-width: 992px) {
  section.partial-screen.bg-overlay div.overlay {
    height: 70vh;
  }
}
section.partial-screen.bg-overlay div.overlay > div.container,
section.partial-screen.bg-overlay div.overlay > div.container > div.row {
  height: 100%;
}

@media (max-width: 767px) {
  section.mobile-overlay::before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6196078431);
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
  }
  section.mobile-overlay.dark::before {
    background-color: rgba(0, 0, 0, 0.6705882353);
  }
}
/* //// HEADER OVERLAP SECTION ADJUSTMENTS //////////////////////////////////////////////////////////////////////// */
/* sticky / opaque / transparent */
body.h-sticky main section:first-child,
body.h-opaque main section:first-child,
body.h-transparent main section:first-child {
  padding-top: 90px; /* header height + section padding */
}

body.h-sticky main section.half-pad:first-child,
body.h-opaque main section.half-pad:first-child,
body.h-transparent main section.half-pad:first-child {
  padding-top: 94px;
}

/* overlay */
body.h-sticky main section.bg-overlay:first-child,
body.h-opaque main section.bg-overlay:first-child,
body.h-transparent main section.bg-overlay:first-child {
  padding: 0 !important;
} /* reset instead of :not selectors */
body.h-sticky main section.bg-overlay:first-child div.overlay,
body.h-opaque main section.bg-overlay:first-child div.overlay,
body.h-transparent main section.bg-overlay:first-child div.overlay {
  padding-top: 90px; /* header height + section padding */
}

/* top bar */
body.h-sticky.h-show-top-bar main section.bg-overlay:first-child div.overlay,
body.h-opaque.h-show-top-bar main section.bg-overlay:first-child div.overlay,
body.h-transparent.h-show-top-bar main section.bg-overlay:first-child div.overlay {
  padding-top: 130px; /* header height + section padding + top bar height */
}

/* Convention Site */
body.h-sticky.convention-site main section:first-child,
body.h-opaque.convention-site main section:first-child,
body.h-transparent.convention-site main section:first-child {
  padding-top: 71px;
}

@media (min-width: 992px) {
  /* sticky / opaque / transparent */
  body.h-sticky main section:first-child,
  body.h-opaque main section:first-child,
  body.h-transparent main section:first-child {
    padding-top: 165px; /* header height + section padding */
  }
  /* top bar */
  body.h-sticky.h-show-top-bar main section:first-child,
  body.h-opaque.h-show-top-bar main section:first-child,
  body.h-transparent.h-show-top-bar main section:first-child {
    padding-top: 185px; /* header height + section padding + top bar height */
  }
  body.h-sticky main section.em-banner:first-child,
  body.h-opaque main section.em-banner:first-child,
  body.h-transparent main section.em-banner:first-child {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  body.h-sticky main section.em-banner:first-child div.container > .row div.em-p,
  body.h-opaque main section.em-banner:first-child div.container > .row div.em-p,
  body.h-transparent main section.em-banner:first-child div.container > .row div.em-p {
    padding-top: 130px; /* header height + section padding + top bar height */
    padding-bottom: 45px;
  }
  /* overlay */
  body.h-sticky main section.bg-overlay:first-child,
  body.h-opaque main section.bg-overlay:first-child,
  body.h-transparent main section.bg-overlay:first-child {
    padding: 0 !important;
  } /* reset instead of :not selectors */
  body.h-sticky main section.bg-overlay:first-child div.overlay,
  body.h-opaque main section.bg-overlay:first-child div.overlay,
  body.h-transparent main section.bg-overlay:first-child div.overlay {
    padding-top: 165px; /* header height + section padding */
  }
  /* top bar */
  body.h-sticky.h-show-top-bar main section.bg-overlay:first-child div.overlay,
  body.h-opaque.h-show-top-bar main section.bg-overlay:first-child div.overlay,
  body.h-transparent.h-show-top-bar main section.bg-overlay:first-child div.overlay {
    padding-top: 185px; /* header height + section padding + top bar height */
  }
  /* .half-pad */
  body.h-sticky.h-show-top-bar main section.half-pad:first-child,
  body.h-opaque.h-show-top-bar main section.half-pad:first-child,
  body.h-transparent.h-show-top-bar main section.half-pad:first-child {
    padding-top: 152px; /* header height + section padding + top bar height */
  }
  /* Convention Site */
  body.h-sticky.convention-site main section:first-child,
  body.h-opaque.convention-site main section:first-child,
  body.h-transparent.convention-site main section:first-child {
    padding-top: 124px;
  }
  /* Convention Site + Top Bar */
  body.h-sticky.convention-site.h-show-top-bar main section:first-child,
  body.h-opaque.convention-site.h-show-top-bar main section:first-child,
  body.h-transparent.convention-site.h-show-top-bar main section:first-child {
    padding-top: 159px;
  }
}
/* .full-screen */
main.header-overlap section.full-screen {
  height: 75vh;
}

@media (min-width: 992px) {
  main.header-overlap section.full-screen {
    height: 100vh;
  }
}
.header-lg {
  height: 850px;
}

@media screen and (min-width: 992px) {
  .header-lg {
    height: 900px;
  }
}
@media screen and (min-width: 1100px) {
  .header-lg {
    height: 1000px;
  }
}
@media screen and (min-width: 1300px) {
  .header-lg {
    height: 1100px;
  }
}
.header-md {
  height: 500px;
}

@media screen and (min-width: 576px) {
  .header-md {
    height: 550px;
  }
}
@media screen and (min-width: 768px) {
  .header-md {
    height: 600px;
  }
}
@media screen and (min-width: 992px) {
  .header-md {
    height: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .header-md {
    height: 800px;
  }
}
@media screen and (min-width: 1400px) {
  .header-md {
    height: 900px;
  }
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// LISTS /////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* .icon-list */
ul.icon-list {
  margin: 0 0 0 10px;
  padding: 0;
}

ul.icon-list li {
  position: relative;
  list-style-type: none;
  padding: 6px 0 5px 18px;
  margin-bottom: 0;
}

ul.icon-list li.col {
  padding: 6px 17px 5px 17px;
}

/* default: chevron */
ul.icon-list li::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f054";
  font-style: normal;
  font-weight: 500;
  text-decoration: inherit;
  position: absolute;
  font-size: 11px;
  color: var(--primary);
  top: 11px;
  left: 0;
  z-index: 1;
}

.text-light ul.icon-list li::after {
  color: #ffffff;
  opacity: 0.4;
}

/* chevron circle */
ul.icon-list.list-arrow-circle li::after {
  content: "\f138";
}

/* checkmark */
ul.icon-list.list-checkmark li {
  padding-bottom: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

ul.icon-list.list-checkmark li::after {
  content: "\f00c";
}

ul.icon-list.list-checkmark li:last-child {
  border: none;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// TABS //////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* .nav-tabs bootstrap overrides */
.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  -webkit-box-shadow: 0 -5px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -5px 10px -5px rgba(0, 0, 0, 0.2);
}

/* .has-tabs section specific tabs overrides */
section.has-tabs {
  border-bottom: 1px solid #dee2e6;
}

section.has-tabs .nav-tabs-wrapper {
  position: absolute;
  bottom: 0;
}

/* .bg-dark */
section.bg-dark.has-tabs,
section.bg-dark .nav-tabs .nav-link:focus:not(.active),
section.bg-dark .nav-tabs .nav-link:hover:not(.active) {
  border-color: rgb(40, 45, 50);
}

/* .bg-image */
section.bg-image .nav-tabs .nav-link:focus:not(.active),
section.bg-image .nav-tabs .nav-link:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.4);
}

/* active overrides */
/* active-gray */
section.has-tabs.tabs-active-gray .nav-tabs .nav-link.active {
  background-color: #f8f9fa;
  border-bottom-color: #f8f9fa;
}

/* active-image */
section.has-tabs.tabs-active-image {
  border-bottom: 4px solid #343a40;
}

section.has-tabs.tabs-active-image .nav-tabs .nav-link.active {
  color: #f8f9fa;
  background-color: #343a40;
  border-color: rgb(40, 45, 50) rgb(40, 45, 50) #343a40;
}

section.has-tabs.tabs-active-image .nav-link:focus:not(.active),
section.has-tabs.tabs-active-image .nav-link:hover:not(.active) {
  border-color: rgba(40, 45, 50, 0.1) rgba(40, 45, 50, 0.1) rgb(40, 45, 50);
}

/* active-dark */
section.has-tabs.tabs-active-dark {
  border-color: rgb(40, 45, 50);
}

section.has-tabs.tabs-active-dark .nav-tabs .nav-link.active {
  color: #f8f9fa;
  background-color: #343a40;
  border-color: rgb(40, 45, 50) rgb(40, 45, 50) #343a40;
}

section.has-tabs.tabs-active-dark .nav-link:focus:not(.active),
section.has-tabs.tabs-active-dark .nav-link:hover:not(.active) {
  border-color: rgba(40, 45, 50, 0.1) rgba(40, 45, 50, 0.1) rgb(40, 45, 50);
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// IMAGES ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* .img-circle */
img.img-circle {
  background-color: #f7f6f5;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

/* .img-polaroid */
.img-polaroid {
  background-color: #f7f6f5;
  border: 6px solid #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

/* .img-abstract */
div.img-abstract {
  display: flex;
  align-items: center;
  min-height: 250px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 1200px) {
  div.img-abstract {
    min-height: 500px;
  }
}
div.img-abstract.abstract-overlay {
  display: block;
  min-height: auto;
}

div.img-abstract.abstract-overlay div.img-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px; /* re-apply default height */
  box-shadow: inset 0px 11px 8px -10px rgba(0, 0, 0, 0.2), inset 0px -11px 8px -10px rgba(0, 0, 0, 0.2);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.5+31,0.1+100 */
  background: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#80000000", endColorstr="#1a000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

div.img-abstract.abstract-overlay.overlay-secondary div.img-overlay {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5e8017+0,C1D82F+100&0.85+0,0.8+100 */
  background: -moz-linear-gradient(-45deg, rgba(94, 128, 23, 0.85) 0%, rgba(123, 162, 41, 0.8) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(94, 128, 23, 0.85) 0%, rgba(123, 162, 41, 0.8) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(94, 128, 23, 0.85) 0%, rgba(123, 162, 41, 0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d95e8017", endColorstr="#ccC1D82F",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// FORMS /////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* .form- */
.form-control {
  border-radius: 0.2rem;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgba(var(--primary-rgb), 0.8);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.2);
}

/* hide form labels */
.hide-form-labels form {
  margin-top: 15px;
}

.hide-form-labels form .form-group:not(.show-label) > label {
  display: none;
}

/* (sm) Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hide-form-labels-sm form {
    margin-top: 15px;
  }
  .hide-form-labels-sm .form-group label {
    display: none;
  }
}
/* (md) Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hide-form-labels-md form {
    margin-top: 15px;
  }
  .hide-form-labels-md .form-group label {
    display: none;
  }
}
/* (lg) Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hide-form-labels-lg form {
    margin-top: 15px;
  }
  .hide-form-labels-lg .form-group label {
    display: none;
  }
}
/* (xl) Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hide-form-labels-xl form {
    margin-top: 15px;
  }
  .hide-form-labels-xl .form-group label {
    display: none;
  }
}
/* inlay form labels */
.inlay-form-labels form {
  margin-top: 15px;
}

.inlay-form-labels .form-group {
  position: relative;
  margin-top: -19px;
}

.inlay-form-labels .form-group input,
.inlay-form-labels .form-group textarea {
  width: 100%;
  height: 50px;
  padding-top: 21px;
}

.inlay-form-labels .form-group label {
  position: relative;
  left: 12px;
  top: 25px;
  display: block;
  color: #b3b3b3;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.inlay-form-labels .form-group.inlay-select {
  margin-top: -19px;
}

.inlay-form-labels .form-group.inlay-button {
  margin-top: 0px;
}

.inlay-form-labels .form-group.inlay-button label {
  display: none;
}

.inlay-form-labels .form-group.inlay-select select {
  width: 100%;
  height: 50px;
  padding-top: 21px;
}

@media (max-width: 991px) {
  .inlay-form-labels .form-group select {
    -webkit-appearance: none;
  }
}
section.bg-dark .form-control {
  background-color: #2f343a;
  border-color: #262a2f;
  color: #fff;
}

.textarea-short textarea {
  min-height: 100px !important;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// TABLES ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
section.bg-dark .table td, section.bg-dark .table th,
section.bg-image .table td, section.bg-image .table th {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// MISC. /////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* .scroll-window */
/* -------------- */
div.scroll-window {
  position: relative;
}

div.scroll-window div.top-overlay {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=0 );
}

section.bg-gray div.scroll-window div.top-overlay {
  background: -moz-linear-gradient(top, rgb(248, 249, 250) 0%, rgba(248, 249, 250, 0) 100%);
  background: -webkit-linear-gradient(top, rgb(248, 249, 250) 0%, rgba(248, 249, 250, 0) 100%);
  background: linear-gradient(to bottom, rgb(248, 249, 250) 0%, rgba(248, 249, 250, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f8f9fa", endColorstr="#00f8f9fa",GradientType=0 );
}

div.scroll-window div.middle-content {
  z-index: 0;
  overflow: scroll;
  height: 600px;
  padding: 100px 35px 100px 25px;
}

div.scroll-window div.bottom-overlay {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}

section.bg-gray div.scroll-window div.bottom-overlay {
  background: -moz-linear-gradient(top, rgba(248, 249, 250, 0) 0%, rgb(248, 249, 250) 100%);
  background: -webkit-linear-gradient(top, rgba(248, 249, 250, 0) 0%, rgb(248, 249, 250) 100%);
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, rgb(248, 249, 250) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00f8f9fa", endColorstr="#f8f9fa",GradientType=0 );
}

/* .bouncing */
/* --------- */
div.bouncing {
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

body:not(.scrolled) div.bouncing {
  -webkit-animation: bounce 2s infinite ease-in-out;
}

body.scrolled div.bouncing {
  opacity: 0.5;
}

@-webkit-keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
}
/* .show-more */
/* ---------- */
div.show-more {
  position: relative;
  overflow: hidden;
  height: auto;
  padding-bottom: 45px; /* at least height of 'show less' button */
}

div.show-more div.show-more-button {
  position: absolute;
  cursor: pointer;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 69%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 69%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 69%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}

section.bg-gray div.show-more div.show-more-button {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f8f9fa+0,f8f9fa+100&0+0,1+79 */
  background: -moz-linear-gradient(top, rgba(248, 249, 250, 0) 0%, rgb(248, 249, 250) 79%, rgb(248, 249, 250) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(248, 249, 250, 0) 0%, rgb(248, 249, 250) 79%, rgb(248, 249, 250) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, rgb(248, 249, 250) 79%, rgb(248, 249, 250) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00f8f9fa", endColorstr="#f8f9fa",GradientType=0 ); /* IE6-9 */
}

div.show-more.open div.show-more-button {
  height: 37px;
  border-top: 1px solid #eee;
}

div.show-more div.show-more-button span.text {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: var(--primary);
}

/* .well */
/* ----- */
.well {
  position: relative;
  /* border-radius: calc(.25rem - 1px); */
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 0.4rem;
}

section.bg-dark .well {
  background-color: #2f343a;
  border-color: #2d3238;
}

section.bg-image .well {
  color: #5d5d5d;
}

section.bg-gray .well {
  background-color: #fff;
}

.well.well-shadow {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
}

.well.well-heavy-shadow {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 30px 71px rgba(1, 2, 2, 0.2);
  box-shadow: 0 30px 71px rgba(1, 2, 2, 0.2);
}

.well.well-shadow-hover:hover {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
}

.well.bg-primary {
  border-color: #6b5a9d;
  background-color: var(--primary);
  color: #fff;
}

.well.bg-secondary {
  border-color: #6b5a9d;
  background-color: var(--secondary);
  color: #fff;
}

.well.bg-tertiary {
  border-color: #6b5a9d;
  background-color: var(--tertiary);
  color: #fff;
}

.well.bg-quaternary {
  border-color: #6b5a9d;
  background-color: var(--quaternary);
  color: #fff;
}

@media (min-width: 992px) {
  .well.well-overlap-left {
    position: relative;
    margin-left: -110px;
    margin-bottom: 55px;
  }
}
/* .text-gold */
/* ---------- */
.review-star {
  color: rgb(255, 207, 0);
}

/* Flyout Sticky */
/* ------------- */
div.flyout-sticky {
  position: fixed;
  z-index: 6000;
  top: calc(30% - 45px);
  left: -350px;
  width: 400px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

div.flyout-sticky.over {
  left: 0;
}

div.flyout-sticky div.tab {
  position: absolute;
  top: 3px;
  right: 0;
  width: 50px;
  text-align: center;
  padding: 5px 0;
  font-size: 20px;
  color: var(--primary);
  background-color: #343a40;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

div.flyout-sticky div.content {
  position: absolute;
  top: 3px;
  right: 50px;
  padding: 25px;
  width: 350px;
  min-height: 200px;
  background-color: #343a40;
  -webkit-box-shadow: 0 7px 10px -5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 7px 10px -5px rgba(0, 0, 0, 0.4);
}

/* Social */
/* ------ */
.bg-facebook,
a.hover-bg-facebook:hover {
  background-color: #3b5998 !important;
}

.text-facebook,
a.hover-text-facebook:hover {
  color: #3b5998 !important;
}

a.bg-facebook,
a.text-facebook.hover-bg-facebook:hover {
  color: #fff !important;
}

.bg-twitter,
a.hover-bg-twitter:hover {
  background-color: #55acee !important;
}

.text-twitter,
a.hover-text-twitter:hover {
  color: #55acee !important;
}

a.bg-twitter,
a.text-twitter.hover-bg-twitter:hover {
  color: #fff !important;
}

.bg-instagram,
a.hover-bg-instagram:hover {
  background-color: #e4405f !important;
}

.text-instagram,
a.hover-text-instagram:hover {
  color: #e4405f !important;
}

a.bg-instagram,
a.text-instagram.hover-bg-instagram:hover {
  color: #fff !important;
}

.bg-youtube,
a.hover-bg-youtube:hover {
  background-color: #bb0000 !important;
}

.text-youtube,
a.hover-text-youtube:hover {
  color: #bb0000 !important;
}

a.bg-youtube,
a.text-youtube.hover-bg-youtube:hover {
  color: #fff !important;
}

.bg-linkedin,
a.hover-bg-linkedin:hover {
  background-color: #007bb5 !important;
}

.text-linkedin,
a.hover-text-linkedin:hover {
  color: #007bb5 !important;
}

a.bg-linkedin,
a.text-linkedin.hover-bg-linkedin:hover {
  color: #fff !important;
}

.bg-rss,
a.hover-bg-rss:hover {
  background-color: #ff6600 !important;
}

.text-rss,
a.hover-text-rss:hover {
  color: #ff6600 !important;
}

a.bg-rss,
a.text-rss.hover-bg-rss:hover {
  color: #fff !important;
}

.bg-google,
a.hover-bg-google:hover {
  background-color: #dd4b39 !important;
}

.text-google,
a.hover-text-google:hover {
  color: #dd4b39 !important;
}

a.bg-google,
a.text-google.hover-bg-google:hover {
  color: #fff !important;
}

.bg-yahoo,
a.hover-bg-yahoo:hover {
  background-color: #7B0099 !important;
}

.text-yahoo,
a.hover-text-yahoo:hover {
  color: #7B0099 !important;
}

a.bg-yahoo,
a.text-yahoo.hover-bg-yahoo:hover {
  color: #fff !important;
}

.bg-yelp,
a.hover-bg-yelp:hover {
  background-color: #c41200 !important;
}

.text-yelp,
a.hover-text-yelp:hover {
  color: #c41200 !important;
}

a.bg-yelp,
a.text-yelp.hover-bg-yelp:hover {
  color: #fff !important;
}

/* Bootstrap Breadcrumb */
/* -------------------- */
nav.wi-breadcrumb ol {
  font-size: 14px;
}

nav.wi-breadcrumb a {
  color: #ffffff;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// MISC. BOOTSTRAP OVERRIDES /////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* code */
code {
  color: #c3c3c3;
  word-break: normal;
}

/* breadcrumb */
ol.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
}

ol.breadcrumb, .bg-overlay ol.breadcrumb {
  padding: 0;
}

ol.breadcrumb .breadcrumb-item.active, .bg-overlay ol.breadcrumb .breadcrumb-item.active {
  color: #ffffff;
}

ol.breadcrumb .breadcrumb-item + .breadcrumb-item::before, .bg-overlay ol.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
  opacity: 0.8;
}

/* carousel */
.carousel, .item, .active {
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

/* navs */
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* pagination */
.pagination .page-link {
  border-color: #e6e5e2;
  color: var(--primary);
}

.pagination .page-link:hover {
  background-color: #f4f2ef;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(230, 229, 226, 0.74);
}

/* Borders */
.border-top {
  border-top: 1px solid #e2e2e2 !important;
}

.border-right {
  border-right: 1px solid #e2e2e2 !important;
}

.border-bottom {
  border-bottom: 1px solid #e2e2e2 !important;
}

.border-left {
  border-left: 1px solid #e2e2e2 !important;
}

@media (min-width: 768px) {
  .border-md-top {
    border-top: 1px solid #e2e2e2 !important;
  }
  .border-md-right {
    border-right: 1px solid #e2e2e2 !important;
  }
  .border-md-bottom {
    border-bottom: 1px solid #e2e2e2 !important;
  }
  .border-md-left {
    border-left: 1px solid #e2e2e2 !important;
  }
}
@media (min-width: 992px) {
  .border-lg-top {
    border-top: 1px solid #e2e2e2 !important;
  }
  .border-lg-right {
    border-right: 1px solid #e2e2e2 !important;
  }
  .border-lg-bottom {
    border-bottom: 1px solid #e2e2e2 !important;
  }
  .border-lg-left {
    border-left: 1px solid #e2e2e2 !important;
  }
}
.border-fade {
  border-color: rgba(226, 226, 226, 0.54) !important;
}

/* XXL bootstrap */
/* (xxl) Extra large devices (large desktops, 1500px and up) */
@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //// CUSTOM: NINE OVERRIDES / WIDGET ADDDITIONS ETC. ///////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/*

var(--primary)
rgb(var(--secondary-rgb))
rgb(var(--tertiary-rgb))

*/
/* general accordion */
.wi-accordion {
  width: 100%;
}

.wi-accordion div.card {
  border-radius: 0;
  margin-bottom: 2px;
  background-color: #f8f9fa;
  border: 1px solid #f8f9fa;
}

.wi-accordion div.card div.card-header {
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  background-color: transparent;
}

.wi-accordion div.card div.card-header button {
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 1em;
  font-weight: 600;
  color: #313536;
  padding: 12px;
  padding-left: 40px;
  border: none;
  background-color: transparent;
}

.wi-accordion div.card div.card-header button i {
  position: absolute;
  display: inline-block;
  margin-right: 5px;
  opacity: 0.4;
  left: 14px;
  top: 16px;
}

.wi-accordion div.card div.card-header button.collapsed i {
  transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
}

.wi-accordion div.card div.card-header button img {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 40px;
}

.wi-accordion div.card div.card-body {
  background-color: transparent;
}

.wi-accordion div.card div.card-body div.coupon {
  background-color: #fff;
}

.wi-accordion div.card div.card-body a.view-services {
  position: relative;
  top: -40px;
  left: 23px;
}

.wi-accordion div.card:nth-child(even) {
  background-color: #fff;
}

/* .wi-badges-simple */
.wi-badges-simple img {
  background-color: #fff;
  padding: 15px;
  border-radius: 0.4rem;
}

/*  wi-subnav-image-2 */
/* ------------------ */
.wi-subnav-image-2 a.wi-wrapper {
  display: block;
  text-align: center;
  color: #5d5d5d;
}

.wi-subnav-image-2 a.wi-wrapper .wi-image {
  position: relative;
  display: block;
  width: 80%;
  padding-top: 80%;
  margin: auto;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.wi-subnav-image-2 a.wi-wrapper:hover {
  text-decoration: none;
}

.wi-subnav-image-2 a.wi-wrapper .wi-image .em-tag {
  position: absolute;
  z-index: 5;
  left: 0px;
  top: calc(50% - 30px);
  width: 100%;
  text-align: center;
  font-size: 35px;
  text-transform: uppercase;
  opacity: 0;
  color: #ffffff !important;
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.wi-subnav-image-2 a.wi-wrapper:hover .wi-image .em-tag {
  opacity: 1;
}

.wi-subnav-image-2 a.wi-wrapper .wi-image div.wi-underlay {
  position: absolute;
  z-index: 1;
  left: -120%;
  top: -120%;
  border-radius: 50%;
  width: 120%;
  height: 120%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.wi-subnav-image-2 a.wi-wrapper:hover .wi-image div.wi-underlay {
  left: -10%;
  top: -10%;
}

.wi-subnav-image-2 .color-primary a.wi-wrapper .wi-image div.wi-underlay {
  background-color: var(--primary-opacity-8);
}

.wi-subnav-image-2 .color-secondary a.wi-wrapper .wi-image div.wi-underlay {
  background-color: var(--secondary-opacity-8);
}

.wi-subnav-image-2 .color-tertiary a.wi-wrapper .wi-image div.wi-underlay {
  background-color: var(--tertiary-opacity-8);
}

.wi-subnav-image-2 a.wi-wrapper .wi-image div.wi-underlay {
  font-size: 100px;
}

.wi-subnav-image-2 a.wi-wrapper:hover .wi-image {
  border-color: #72AA17;
}

.wi-subnav-image-2 .color-primary a.wi-wrapper:hover .wi-image {
  border-color: var(--primary);
}

.wi-subnav-image-2 .color-secondary a.wi-wrapper:hover .wi-image {
  border-color: var(--secondary);
}

.wi-subnav-image-2 .color-tertiary a.wi-wrapper:hover .wi-image {
  border-color: var(--tertiary);
}

.wi-subnav-image-2 .go-btn {
  position: absolute;
  left: 0px;
  bottom: 30%;
}

/* arrows */
/* ------ */
.arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #ffffff transparent transparent transparent;
}

.arrow.arrow-up {
  border-width: 0 20px 20px 20px !important;
}

/* arrow colors */
.arrow.arrow-primary,
section.section-arrow.arrow-primary .arrow {
  border-color: var(--primary) transparent transparent transparent;
}

.arrow.arrow-secondary,
section.section-arrow.arrow-secondary .arrow {
  border-color: var(--secondary) transparent transparent transparent;
}

.arrow.arrow-tertiary,
section.section-arrow.arrow-tertiary .arrow {
  border-color: var(--tertiary) transparent transparent transparent;
}

.arrow.arrow-quaternary,
section.section-arrow.arrow-quaternary .arrow {
  border-color: var(--quaternary) transparent transparent transparent;
}

.arrow.arrow-gray,
section.section-arrow.arrow-gray .arrow {
  border-color: #f8f9fa transparent transparent transparent;
}

.arrow.arrow-dark,
section.section-arrow.arrow-dark .arrow {
  border-color: #343a40 transparent transparent transparent;
}

.arrow.arrow-light,
section.section-arrow.arrow-light .arrow {
  border-color: #f5f1ed transparent transparent transparent;
}

.arrow.arrow-white,
section.section-arrow.arrow-white .arrow {
  border-color: white transparent transparent transparent;
}

/* section arrows */
section.section-arrow {
  border-top: 3px solid #ffffff;
}

section.section-arrow.arrow-primary {
  border-color: var(--primary);
}

section.section-arrow.arrow-secondary {
  border-color: var(--secondary);
}

section.section-arrow.arrow-tertiary {
  border-color: var(--tertiary);
}

section.section-arrow.arrow-quaternary {
  border-color: var(--quaternary);
}

section.section-arrow.arrow-gray {
  border-color: #f8f9fa;
}

section.section-arrow.arrow-dark {
  border-color: #343a40;
}

section.section-arrow.arrow-light {
  border-color: #f5f1ed;
}

section.section-arrow.arrow-white {
  border-color: white;
}

section.section-arrow .arrow {
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
}

section.section-arrow .arrow.arrow-up {
  bottom: 0 !important;
}

@media (min-width: 960px) {
  .arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0 25px;
    border-color: #ffffff transparent transparent transparent;
  }
  .arrow.arrow-up {
    border-width: 0 25px 25px 25px !important;
  }
  section.section-arrow .arrow {
    left: calc(50% - 25px);
  }
}
/* event */
.event-show-when-selected {
  display: none;
}

.wi-events-guest-select .wi-select-event {
  cursor: pointer;
}

.wi-events-guest-select .wi-select-event i.on {
  display: none;
}

.wi-events-guest-select .wi-select-event.selected i.on {
  display: inline;
}

.wi-events-guest-select .wi-select-event.selected i.off {
  display: none;
}

/* .wi-testimonials-small */
/* ---------------------- */
.wi-testimonials-small a.wi-testimonial {
  display: block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.wi-testimonials-small a.wi-testimonial:hover {
  text-decoration: none !important;
}

.wi-testimonials-small a.wi-testimonial div.wi-image {
  position: relative;
  width: 100%;
  border-radius: 50%;
  height: auto;
  padding-top: 100%;
  background-color: #f7f6f5;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wi-testimonials-small a.wi-testimonial div.wi-image i {
  position: absolute;
  font-size: 40px;
  line-height: 40px;
  top: calc(50% - 20px);
  left: calc(50% - 18px);
  opacity: 1;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.wi-testimonials-small a.wi-testimonial:hover div.wi-image i {
  /* color: #ffffff;
  opacity: 1; */
}

.wi-testimonials-small a.wi-testimonial blockquote p {
  font-size: 14px;
}

.wi-promos-1 .promo-wrapper {
  text-align: center;
  background: transparent;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}

.wi-promos-1 .promo {
  border: 4px dashed #fff;
  padding: 25px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.48);
}

.wi-promos-1 .promo-primary {
  background-color: rgba(var(--primary-rgb), 0.95);
}

.wi-promos-1 .promo-secondary {
  background-color: rgba(var(--secondary-rgb), 0.95);
}

.wi-promos-1 .promo-tertiary {
  background-color: rgba(var(--tertiary-rgb), 0.65);
}

.wi-promos-1 .promo h1,
.wi-promos-1 .promo h2,
.wi-promos-1 .promo h3,
.wi-promos-1 .promo h4,
.wi-promos-1 .promo h5 {
  color: #fff;
}

.wi-promos-1 .promo .expiration {
  opacity: 0.6;
  font-style: italic;
}

@media (min-width: 992px) {
  .bump-up-low {
    position: relative;
    z-index: 5000;
    top: -50px;
    margin-bottom: -45px;
  }
  .bump-up {
    position: relative;
    z-index: 5000;
    top: -100px;
    margin-bottom: -95px;
  }
  .bump-up-high {
    position: relative;
    z-index: 5000;
    top: -200px;
    margin-bottom: -195px;
  }
}
/* -------------------- */
a.btn-video {
  display: block;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

a.btn-video:hover {
  text-decoration: none;
}

a.btn-video .btn-video-overlay {
  text-align: center;
  padding: 50px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.31+1,0.44+100 */
  background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.31) 1%, rgba(0, 0, 0, 0.44) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.31) 1%, rgba(0, 0, 0, 0.44) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.31) 1%, rgba(0, 0, 0, 0.44) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4f000000", endColorstr="#70000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

a.btn-video:hover .btn-video-overlay {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.31+1,0.64+100 */
  background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.31) 1%, rgba(0, 0, 0, 0.64) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.31) 1%, rgba(0, 0, 0, 0.64) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.31) 1%, rgba(0, 0, 0, 0.64) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4f000000", endColorstr="#a3000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

a.btn-video .btn-video-overlay .play-icon {
  opacity: 1;
  font-size: 50px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

a.btn-video .btn-video-overlay h5 {
  opacity: 0.8;
  padding-top: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1rem;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

a.btn-video:hover .btn-video-overlay h5 {
  opacity: 1;
}

@media (min-width: 768px) {
  a.btn-video .btn-video-overlay {
    text-align: center;
    padding: 95px;
  }
}
@media (min-width: 992px) {
  a.btn-video .btn-video-overlay .play-icon {
    font-size: 100px;
  }
}
/* -------------------- */
.wi-subnav-tile-1 a.wi-bg-image {
  display: block;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.wi-subnav-tile-1 .wi-bg-image .wi-bg-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.5+31,0.1+100 */
  background: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#80000000", endColorstr="#1a000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.wi-subnav-tile-1 a.wi-bg-image:hover {
  text-decoration: none;
}

.wi-subnav-tile-1 a.wi-bg-image:hover .wi-bg-overlay {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e87229+0,f6892a+100&0.8+0,0.9+100 */
  background: -moz-linear-gradient(-45deg, rgba(232, 114, 41, 0.8) 0%, rgba(246, 137, 42, 0.9) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(232, 114, 41, 0.8) 0%, rgba(246, 137, 42, 0.9) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(232, 114, 41, 0.8) 0%, rgba(246, 137, 42, 0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#cce87229", endColorstr="#e6f6892a",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

/* -------------------- */
.wi-team-featured .wi-bg-image {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  cursor: pointer;
}

.wi-team-featured .wi-bg-image .wi-bg-overlay {
  position: relative;
  min-height: 300px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.1+46,0.5+99 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.5) 99%, rgba(0, 0, 0, 0.5) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.5) 99%, rgba(0, 0, 0, 0.5) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.5) 99%, rgba(0, 0, 0, 0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1a000000", endColorstr="#80000000",GradientType=0 ); /* IE6-9 */
}

.wi-team-featured .wi-bg-image .wi-bg-overlay h5 {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 20px;
  bottom: 20px;
}

/* -------------------- */
.wi-subnav-full-2 .img-abstract {
  margin: -19px -19px 15px -19px;
}

.wi-subnav-full-2 .img-abstract h3 {
  padding: 0 20px;
}

.wi-subnav-full-2 .img-abstract h3 a {
  color: #fff;
}

.wi-subnav-full-2 .grand-children-col {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 5px;
  padding-right: 5px;
}

/* div. */
div.in-content-image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

/* div.in-content-video */
div.in-content-video {
  position: relative;
  color: #fff;
  background-color: transparent;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

div.in-content-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-repeat: no-repeat;
  background-size: cover;
}

/* .graph-bg */
.graph-bg {
  display: block;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.2rem;
  overflow: hidden;
  margin-bottom: 20px;
}

.graph-bg div.overlay {
  padding: 25px 35px;
  background-color: rgba(var(--secondary-rgb), 0.9);
}

/* .cce */
.cce a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  font-size: 30px;
  -webkit-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.cce a:hover {
  text-decoration: none;
  background-color: var(--secondary);
}

.cce-sm .cce a {
  width: 40px;
  height: 40px;
  font-size: 15px;
}

.cce-lg .cce a {
  width: 100px;
  height: 100px;
  font-size: 40px;
}

/* .info-block */
a.info-block-title {
  display: block;
  position: relative;
  top: -50px;
  text-align: center;
  font-size: 30px;
  color: #5c5c5c;
  text-decoration: none;
}

a.info-block-title div {
  display: block;
  border: 2px solid #eee;
  background-color: #fff;
  padding: 25px;
  border-radius: 50%;
  margin: auto;
  height: 120px;
  width: 120px;
}

a.info-block-title div img {
  display: block;
  max-height: 100%;
}

a.info-block-title.over div {
  border-color: #0061c2;
}

div.info-block {
  position: relative;
  display: block;
  min-height: 420px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.2rem;
  overflow: hidden;
  color: #fff;
}

div.info-block div.info {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 51, 57, 0);
  padding: 20px 10px;
  text-align: left;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

div.info-block div.info div.info-title {
  font-size: 24px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

div.info-block div.info div.info-content {
  font-size: 18px;
}

@media (min-width: 992px) {
  div.info-block div.info div.info-content {
    font-size: 24px;
  }
  div.info-block div.info {
    padding: 30px 20px;
  }
}
div.info-block div.info div.info-content ul {
  padding-inline-start: 20px;
}

div.info-block.over div.info {
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/* ------------------- */
.wi-gallery-1 a.wi-img {
  display: block;
  width: 100%;
  font-size: 30px;
  text-decoration: none;
  background-position: 50%;
  background-size: cover;
  color: #fff;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.wi-gallery-1 a.wi-img .icon {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.wi-gallery-1 a.wi-img:hover .icon {
  opacity: 1;
}

.wi-gallery-1 a.wi-img div.wi-img-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  box-shadow: inset 0px 11px 8px -10px rgba(0, 0, 0, 0.2), inset 0px -11px 8px -10px rgba(0, 0, 0, 0.2);
}

.wi-gallery-1 a.wi-img:hover div.wi-img-overlay {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0.45+100 */
  background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33000000", endColorstr="#73000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

/* .wi-subnav-image-1 */
.wi-subnav-image-1 .go-btn {
  position: absolute;
  left: 0px;
  top: 30%;
}

/* --- */
.tic-tac {
  overflow: hidden;
  position: relative;
  top: -2px;
  left: -2px;
}

.tic-tac > div.row {
  position: relative;
  bottom: -2px;
  right: -2px;
  margin-right: 0;
  margin-left: 0;
}

.tic-tac > div > div {
  text-align: center;
  padding: 25px;
  border-right: 1px solid rgba(52, 58, 64, 0.2);
  border-bottom: 1px solid rgba(52, 58, 64, 0.2);
}

/* ------------ */
.wi-map-full-1 input.form-control {
  background-color: #92a520;
  border: 1px solid #8ea020;
  color: #fff;
  z-index: 0;
  padding-right: 34px;
}

.wi-map-full-1 input.form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #0072ab inset;
}

.wi-map-full-1 input.form-control:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
}

.wi-map-full-1 button.search-btn {
  position: absolute;
  top: 0;
  right: 7px;
  z-index: 1;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  padding: 5px;
}

.wi-map-full-1 button.search-btn:hover {
  color: rgb(255, 255, 255);
}

.wi-map-full-1 button.search-btn:focus {
  outline: 0;
}

.wi-map-full-1 input.form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.wi-map-full-1 input.form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.wi-map-full-1 input.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.wi-map-full-1 input.form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.wi-map-full-1 input.form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.wi-map-full-1 input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.wi-map-full-1 .wi-counter {
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 25px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5000;
}

.wi-map-full-1 .location-box {
  cursor: pointer;
  -webkit-box-shadow: 0 1px 8px 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 8px 1px rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.wi-map-full-1 .location-box.selected {
  -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.1);
  border-color: #e8e6e2;
}

.wi-map-full-1 .location-box.selected h5 {
  /* color: var(--primary); */
}

.wi-map-full-1 .loading-overlay {
  position: absolute;
  z-index: 500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.wi-map-full-1 .loading-overlay i {
  font-size: 40px;
  line-height: 40px;
}

.wi-map-full-1 address {
  font-size: 12px;
  opacity: 0.7;
}

.wi-map-full-1 .location-links a {
  font-size: 12px;
}

/* Social Large 1 */
/* -------------- */
div.wi-social-large-1 {
  display: flex;
  width: auto;
  margin: auto;
}

div.wi-social-large-1 a {
  display: flex;
  width: 75px;
  height: 75px;
  border-radius: 2px;
  margin: 0 2px;
  font-size: 50px;
  line-height: 50px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

div.wi-social-large-1 a:hover {
  color: #fff;
  background-color: #23a9e1;
}

/* Social Medium 1 */
/* -------------- */
div.wi-social-medium-1 {
  display: flex;
  width: auto;
  margin: auto;
}

div.wi-social-medium-1 a {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 2px;
  margin: 0 2px;
  font-size: 27px;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

div.wi-social-medium-1 a:hover {
  color: #fff;
  background-color: #23a9e1;
}

/* Social Medium 2 */
/* -------------- */
div.wi-social-medium-2 {
  display: flex;
  width: auto;
  margin: auto;
}

div.wi-social-medium-2 a {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 2px;
  margin: 0 2px;
  font-size: 27px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

div.wi-social-medium-2 a:hover {
  color: #fff;
  background-color: #23a9e1;
}

/* .wi-franchise-list */
/* ------------------ */
.wi-franchise-list .card-columns {
  column-count: 1;
}

@media (min-width: 992px) {
  .wi-franchise-list .card-columns {
    column-count: 2;
  }
  .wi-force-one-col .wi-franchise-list .card-columns {
    column-count: 1;
  }
}
@media (min-width: 1200px) {
  .wi-franchise-list .card-columns {
    column-count: 3;
  }
  .wi-force-one-col .wi-franchise-list .card-columns {
    column-count: 1;
  }
}
.wi-masonry-cards .card-columns {
  column-count: 1;
}

@media (min-width: 992px) {
  .wi-masonry-cards .card-columns {
    column-count: 2;
  }
}
@media (min-width: 1200px) {
  .wi-masonry-cards .card-columns {
    column-count: 3;
  }
}
.wi-masonry-cards .card-body {
  position: relative;
}

.wi-masonry-cards .card-body .icon {
  position: absolute;
  top: 10px;
  right: -10px;
  font-size: 200%;
}

.wi-menu-full-1 .card-columns {
  column-count: 1;
}

@media (min-width: 992px) {
  .wi-menu-full-1 .card-columns {
    column-count: 2;
  }
}
@media (min-width: 1200px) {
  .wi-menu-full-1 .card-columns {
    column-count: 3;
  }
  .row .row.wi-menu-full-1 .card-columns {
    column-count: 2;
  }
}
/* .wi-franchise-locations */
/* ---------------------- */
.wi-locations-1 .wi-bg-image {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  cursor: pointer;
}

.wi-locations-1 .wi-bg-image .wi-bg-overlay {
  position: relative;
  padding: 25px;
  min-height: 100px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.5+31,0.1+100 */
  background: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#80000000", endColorstr="#1a000000",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

/* Service Badges */
.service-column .service-badge {
  border-style: solid;
  border-color: #eee;
  border-width: 1px;
  border-radius: 100%;
  background-color: #f8f9fa;
  padding: 13px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.service-column a:hover .service-badge {
  border-color: #e3e3e3;
  -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.07);
}

.service-column .service-badge-text {
  text-align: center;
  color: #5d5d5d;
  font-size: 20px;
  margin-top: 10px;
}

/* Careers */
.career-section {
  /* margin-top: 125px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 90vh;
  padding: 0px !important;
  background-color: white;
}

.career-section .career {
  width: 20%;
  height: 33.3333%;
  opacity: 0;
}

.career-section .career-message {
  height: 33.3333%;
  width: 60%;
  position: absolute;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.career-section .career-message h1 {
  font-size: 46px;
}

.career {
  background-position: center center;
  background-size: cover;
}

@media (max-width: 1150px) {
  .career-section .career-message {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .career-section {
    /* margin-top: 54px; */
  }
  .career-section .career {
    width: 25%;
  }
  .career-section .career:nth-child(7), .career-section .career:nth-child(8), .career-section .career:nth-child(9) {
    display: none;
  }
}
@media (max-width: 650px) {
  .career-section {
    height: 50vh;
  }
  .career-section .career-message h1 {
    text-align: center;
    font-size: 30px;
  }
}
/* 9th Override */
.card-link:hover {
  text-decoration: none;
}

.card-link:hover h4 {
  text-decoration: underline;
}

.card-link small {
  color: #5d5d5d;
}

@media (min-width: 1200px) {
  .well.well-overlap-left-xl {
    position: relative;
    margin-left: -110px;
    margin-bottom: 55px;
  }
}
.wi-twitter-1 .well {
  display: flex;
  align-items: center;
}

.wi-twitter-1 .well .tweet-icon {
  top: unset !important;
}

div.wi-twitter-1 div.well {
  border-left-width: 1px !important;
}

/* job listing */
.listing {
  position: relative;
  justify-content: space-between;
  display: flex;
  min-height: 20px;
  padding: 22px 28px;
  margin-bottom: 15px;
  background-color: #f8f9fa;
  border: 1px solid #eee;
  align-items: center;
  border-style: solid;
  border-color: #b0b0b0;
  border-width: 1px;
  border-radius: 0.5rem;
}

.listing i {
  font-size: 39px;
  position: absolute;
  display: flex;
  right: 24px;
}

/* Full Calendar */
.calendar-loading,
.calendar-error {
  display: none;
  position: absolute;
  z-index: 5000;
  top: 20%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 50px;
}

span.fc-title {
  white-space: normal;
}

.fc-day.not-open, .fc-day.fc-past {
  background-color: #f8f9fa;
}

.fc-past.fc-day-top, .not-open.fc-day-top {
  opacity: 30%;
}

.fc-day-grid-event {
  background-color: #7BA22C;
  border-color: #7BA22C;
}

.fc-today {
  background-color: rgba(var(--secondary-rgb), 0.2);
  border-color: rgba(var(--secondary-rgb), 0.2);
}

.hours p:not(:last-child) {
  margin-bottom: 5px;
}

.hours p:last-child {
  margin-bottom: 0px;
}

.wi-store-tours.row:not(:empty) + .row {
  display: none;
}

/* .wi-coupons-slider-1 */
#email-for-coupon div.coupon-wrapper,
div.wi-coupons-slider-1 div.coupon-wrapper {
  text-align: center;
  background: transparent;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  margin-bottom: 20px;
  cursor: pointer;
}

#email-for-coupon div.coupon-wrapper div.coupon,
div.wi-coupons-slider-1 div.coupon-wrapper div.coupon {
  margin-top: 20px;
  border: 6px dashed var(--tertiary);
  border-radius: 15px;
  padding: 25px;
  min-height: 185px;
}

#email-for-coupon div.coupon-wrapper div.coupon div.amount,
div.wi-coupons-slider-1 div.coupon-wrapper div.coupon div.amount {
  /* font-family: 'proxima_nova_thextrabold', sans-serif !important; */
  /*       font-family: proxima-nova, sans-serif; */
  font-weight: 800;
  font-style: normal;
  font-size: 35px;
  letter-spacing: 1px;
  color: #7A68AF;
}

#email-for-coupon div.coupon-wrapper div.coupon div.for,
div.wi-coupons-slider-1 div.coupon-wrapper div.coupon div.for {
  /* font-family: 'proxima_nova_rgbold', sans-serif !important; */
  /*       font-family: proxima-nova, sans-serif; */
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  /* line-height: 30px; */
  color: #7A68AF;
  /* min-height: 78px; */
  width: 100%;
  margin: auto;
}

#email-for-coupon div.coupon-wrapper div.coupon div.image,
div.wi-coupons-slider-1 div.coupon-wrapper div.coupon div.image {
  position: relative;
  top: -50px;
  margin-bottom: -50px;
}

#email-for-coupon div.coupon-wrapper div.coupon div.image img,
div.wi-coupons-slider-1 div.coupon-wrapper div.coupon div.image img {
  height: 155px;
}

#email-for-coupon div.coupon-wrapper div.coupon div.expiration,
div.wi-coupons-slider-1 div.coupon-wrapper div.coupon div.expiration {
  margin-top: 15px;
  opacity: 80%;
}

#email-for-coupon div.coupon-wrapper div.coupon div.disclaimer,
div.wi-coupons-slider-1 div.coupon-wrapper div.coupon div.disclaimer {
  opacity: 70%;
  font-size: 80%;
  width: 70%;
  margin: auto;
}

/* slick overrides */
section div.wi-coupons-slider-1 .slick-prev:before,
section div.wi-coupons-slider-1 .slick-next:before {
  color: rgba(52, 58, 64, 0.3);
}

section.bg-image div.wi-coupons-slider-1 .slick-prev:before,
section.bg-image div.wi-coupons-slider-1 .slick-next:before,
section.bg-dark div.wi-coupons-slider-1 .slick-prev:before,
section.bg-dark div.wi-coupons-slider-1 .slick-next:before {
  color: #fff;
}

.no-shop {
  display: none;
}

a.d-none ~ .no-shop {
  display: inline-block;
}

.insig-box {
  padding-top: 40px;
  margin-top: -40px;
  z-index: 1;
}

.insig-box-logo {
  position: relative;
  background-color: #fff;
  width: 125px;
  padding: 7px;
  border-radius: 50%;
  border: 4px solid #eee;
  margin: auto;
  z-index: 2;
}

/* Client reviews 3 */
div.wi-reviews-slider-3 div.wi-review blockquote {
  font-size: 12px;
  height: 125px;
  overflow: scroll;
  padding: 5px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

div.wi-reviews-slider-3 div.wi-review div.review-stars {
  font-size: 25px;
}

div.wi-reviews-slider-3 div.wi-review div.review-stars span {
  display: inline-block;
  padding: 0 3px;
}

div.wi-reviews-slider-3 div.wi-review div.directory {
  position: absolute;
  top: -7px;
  right: -7px;
}

div.wi-reviews-slider-3 div.wi-review a.directory-icon {
  height: 40px;
  width: 40px;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  background-color: #f8f9fa;
  -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.1);
}

div.wi-reviews-slider-3 div.wi-review a.directory-icon span {
  font-size: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.wi-team-simple .img-circle {
  width: 100%;
  border-radius: 50%;
  height: auto;
  padding-top: 100%;
}

.wi-team-simple .tag {
  position: absolute;
  bottom: 10px;
  padding: 10px;
  background-color: var(--primary);
}

.wi-team-simple h5 {
  margin: 0px;
  color: white;
}

/* Checkmark LG */
ul.icon-list.list-checkmark.checkmark-lg {
  margin-left: 0px;
}

ul.icon-list.list-checkmark.checkmark-lg li {
  padding: 6px 0 5px 30px;
}

ul.icon-list.list-checkmark.checkmark-lg li::after {
  font-size: 20px;
  font-weight: 600;
}

/* //// Packages Well ////////////////////////////////////////////////////////////////////////////////////////////// */
.wi-packages-well {
  --border: solid 1px #c2c1c1;
}

.wi-packages-well .info-box {
  position: relative;
}

.wi-packages-well ul {
  list-style: none;
  position: relative;
}

.wi-packages-well ul li {
  position: relative;
  page-break-inside: avoid;
}

.wi-packages-well ul li::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  position: absolute;
  font-size: 11px;
  color: #3c763d;
  top: 11px;
  left: -26px;
  z-index: 1;
}

.wi-packages-well ul li span {
  display: block;
}

.wi-packages-well div[class*=col] {
  padding: 50px;
}

.wi-packages-well .odd div[class*=col]:last-child {
  padding-bottom: 0px;
}

.wi-packages-well.odd div[class*=col]:not(:last-child) {
  border-bottom: var(--border);
}

@media (min-width: 992px) {
  /* Odd*/
  .wi-packages-well.odd div[class*=col]:nth-child(odd):not(:last-child) {
    border-right: var(--border);
  }
  .wi-packages-well.odd div[class*=col]:not(:last-child) {
    border-bottom: var(--border);
  }
  /* Even */
  .wi-packages-well.even div[class*=col]:nth-child(odd) {
    border-right: var(--border);
  }
  .wi-packages-well.even div[class*=col]:not(:nth-child(1)):not(:nth-child(2)) {
    border-top: var(--border);
  }
}
@media (max-width: 991px) {
  .wi-packages-well div[class*=col]:not(:first-child) {
    border-top: var(--border);
  }
}
@media (min-width: 576px) {
  .wi-packages-well ul {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .wi-packages-well.even div[class*=col]:not(:last-child) {
    border-bottom: var(--border);
  }
}
/* //// LH Table ////////////////////////////////////////////////////////////////////////////////////////////// */
.lh-table {
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 5px;
  width: 100%;
}

.lh-table > div:not(:last-child) {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ccc;
}

.lh-table > div {
  padding: 0px 10px;
}

.lh-table p {
  margin: 0px;
  line-height: 1.4;
}

.lh-table .header,
.lh-table .content,
.lh-table .total {
  display: flex;
  justify-content: space-between;
}

.lh-table .header div,
.lh-table .content div,
.lh-table .total div {
  padding: 8px 0px;
  display: flex;
  align-items: center;
}

.lh-table .header div:first-child p,
.lh-table .content div:first-child p,
.lh-table .total div:first-child p {
  text-align: left;
}

.lh-table .header div:first-child,
.lh-table .content div:first-child,
.lh-table .total div:first-child {
  width: 40%;
}

.lh-table .header div:not(:first-child),
.lh-table .content div:not(:first-child),
.lh-table .total div:not(:first-child) {
  width: 30%;
  display: flex;
  justify-content: center;
}

.lh-table .total div p,
.lh-table .header div p {
  font-size: 25px;
}

@media (max-width: 445px) {
  .lh-table .total div p,
  .lh-table .header div p {
    font-size: 17px;
  }
  .lh-table .total div:first-child p,
  .lh-table .header div p {
    font-weight: 600;
  }
}
/* //// Bump ////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 992px) {
  .bump-up-low {
    position: relative;
    top: -50px;
    margin-bottom: -45px;
  }
  .bump-up {
    position: relative;
    top: -75px;
    margin-bottom: -75px;
  }
  .bump-up-more {
    position: relative;
    top: -95px;
    margin-bottom: -95px;
  }
  .bump-up-high {
    position: relative;
    top: -200px;
    margin-bottom: -195px;
  }
}
/* //// Reviews Stack 1 ////////////////////////////////////////////////////////////////////////////////////////////// */
div.wi-reviews-stack-1 div.wi-review {
  height: 100%;
}

div.wi-reviews-stack-1 div.wi-review blockquote {
  font-size: 16px;
  padding: 10px;
}

div.wi-reviews-stack-1 div.wi-review div.review-stars {
  font-size: 25px;
}

div.wi-reviews-stack-1 div.wi-review div.review-stars span {
  display: inline-block;
  padding: 0 3px;
}

div.wi-reviews-stack-1 div.wi-review div.directory {
  position: absolute;
  top: -17px;
  right: -17px;
}

div.wi-reviews-stack-1 div.wi-review a.directory-icon {
  height: 60px;
  width: 60px;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  background-color: #f8f9fa;
}

div.wi-reviews-stack-1 div.wi-review a.directory-icon span {
  font-size: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

div.wi-reviews-stack-1 div.wi-review a.directory-icon:hover span {
  color: #fff;
}

/* //// Nine Custom /////////////////////////////////////////////////////////////////////////////////////// */
.nine-h {
  min-height: var(--nine-h, unset);
}

.nine-w {
  min-width: var(--nine-w, unset);
}

.nine-h-max {
  max-height: var(--nine-h-max, unset);
}

.nine-w-max {
  max-width: var(--nine-w-max, unset);
}

.nine-bg-p {
  background-position: var(--nine-bg-p, center);
}

.nine-bg-s {
  background-size: var(--nine-bg-p, cover);
}

.nine-bg-i {
  background-image: url(var(--nine-bg-i));
}

.nine-fs {
  font-size: var(--nine-fs);
}

.nine-mt {
  margin-top: var(--nine-mt);
}

.nine-me {
  margin-right: var(--nine-me);
}

.nine-mb {
  margin-bottom: var(--nine-mb);
}

.nine-ms {
  margin-left: var(--nine-ms);
}

.nine-pos-t {
  top: var(--nine-pos-t);
}

.nine-pos-r {
  right: var(--nine-pos-r);
}

.nine-pos-b {
  bottom: var(--nine-pos-b);
}

.nine-pos-l {
  left: var(--nine-pos-l);
}

@media (min-width: 576px) {
  .nine-h-sm {
    min-height: var(--nine-h-sm);
  }
  .nine-w-sm {
    min-width: var(--nine-w-sm);
  }
  .nine-h-max-sm {
    max-height: var(--nine-h-max-sm);
  }
  .nine-w-max-sm {
    max-width: var(--nine-w-max-sm);
  }
  .nine-bg-p-sm {
    background-position: var(--nine-bg-p-sm);
  }
  .nine-bg-s-sm {
    background-size: var(--nine-bg-s-sm);
  }
  .nine-bg-i-sm {
    background-image: url(var(--nine-bg-i-sm));
  }
  .nine-fs-sm {
    font-size: var(--nine-fs-sm);
  }
  .nine-mt-sm {
    margin-top: var(--nine-mt-sm);
  }
  .nine-me-sm {
    margin-right: var(--nine-me-sm);
  }
  .nine-mb-sm {
    margin-bottom: var(--nine-mb-sm);
  }
  .nine-ms-sm {
    margin-left: var(--nine-ms-sm);
  }
  .nine-pos-t-sm {
    top: var(--nine-pos-t-sm);
  }
  .nine-pos-r-sm {
    right: var(--nine-pos-r-sm);
  }
  .nine-pos-b-sm {
    bottom: var(--nine-pos-b-sm);
  }
  .nine-pos-l-sm {
    left: var(--nine-pos-l-sm);
  }
}
@media (min-width: 768px) {
  .nine-h-md {
    min-height: var(--nine-h-md);
  }
  .nine-w-md {
    min-width: var(--nine-w-md);
  }
  .nine-h-max-md {
    max-height: var(--nine-h-max-md);
  }
  .nine-w-max-md {
    max-width: var(--nine-w-max-md);
  }
  .nine-bg-p-md {
    background-position: var(--nine-bg-p-md);
  }
  .nine-bg-s-md {
    background-size: var(--nine-bg-s-md);
  }
  .nine-bg-i-md {
    background-image: url(var(--nine-bg-i-md));
  }
  .nine-fs-md {
    font-size: var(--nine-fs-md);
  }
  .nine-mt-md {
    margin-top: var(--nine-mt-md);
  }
  .nine-me-md {
    margin-right: var(--nine-me-md);
  }
  .nine-mb-md {
    margin-bottom: var(--nine-mb-md);
  }
  .nine-ms-md {
    margin-left: var(--nine-ms-md);
  }
  .nine-pos-t-md {
    top: var(--nine-pos-t-md);
  }
  .nine-pos-r-md {
    right: var(--nine-pos-r-md);
  }
  .nine-pos-b-md {
    bottom: var(--nine-pos-b-md);
  }
  .nine-pos-l-md {
    left: var(--nine-pos-l-md);
  }
}
@media (min-width: 992px) {
  .nine-h-lg {
    min-height: var(--nine-h-lg);
  }
  .nine-w-lg {
    min-width: var(--nine-w-lg);
  }
  .nine-h-max-lg {
    max-height: var(--nine-h-max-lg);
  }
  .nine-w-max-lg {
    max-width: var(--nine-w-max-lg);
  }
  .nine-bg-p-lg {
    background-position: var(--nine-bg-p-lg);
  }
  .nine-bg-s-lg {
    background-size: var(--nine-bg-s-lg);
  }
  .nine-bg-i-lg {
    background-image: url(var(--nine-bg-i-lg));
  }
  .nine-fs-lg {
    font-size: var(--nine-fs-lg);
  }
  .nine-mt-lg {
    margin-top: var(--nine-mt-lg);
  }
  .nine-me-lg {
    margin-right: var(--nine-me-lg);
  }
  .nine-mb-lg {
    margin-bottom: var(--nine-mb-lg);
  }
  .nine-ms-lg {
    margin-left: var(--nine-ms-lg);
  }
  .nine-pos-t-lg {
    top: var(--nine-pos-t-lg);
  }
  .nine-pos-r-lg {
    right: var(--nine-pos-r-lg);
  }
  .nine-pos-b-lg {
    bottom: var(--nine-pos-b-lg);
  }
  .nine-pos-l-lg {
    left: var(--nine-pos-l-lg);
  }
}
@media (min-width: 1200px) {
  .nine-h-xl {
    min-height: var(--nine-h-xl);
  }
  .nine-w-xl {
    min-width: var(--nine-w-xl);
  }
  .nine-h-max-xl {
    max-height: var(--nine-h-max-xl);
  }
  .nine-w-max-xl {
    max-width: var(--nine-w-max-xl);
  }
  .nine-bg-p-xl {
    background-position: var(--nine-bg-p-xl);
  }
  .nine-bg-s-xl {
    background-size: var(--nine-bg-s-xl);
  }
  .nine-bg-i-xl {
    background-image: url(var(--nine-bg-i-xl));
  }
  .nine-fs-xl {
    font-size: var(--nine-fs-xl);
  }
  .nine-mt-xl {
    margin-top: var(--nine-mt-xl);
  }
  .nine-me-xl {
    margin-right: var(--nine-me-xl);
  }
  .nine-mb-xl {
    margin-bottom: var(--nine-mb-xl);
  }
  .nine-ms-xl {
    margin-left: var(--nine-ms-xl);
  }
  .nine-pos-t-xl {
    top: var(--nine-pos-t-xl);
  }
  .nine-pos-r-xl {
    right: var(--nine-pos-r-xl);
  }
  .nine-pos-b-xl {
    bottom: var(--nine-pos-b-xl);
  }
  .nine-pos-l-xl {
    left: var(--nine-pos-l-xl);
  }
}
@media (min-width: 1400px) {
  .nine-h-xxl {
    min-height: var(--nine-h-xxl);
  }
  .nine-w-xxl {
    min-width: var(--nine-w-xxl);
  }
  .nine-h-max-xxl {
    max-height: var(--nine-h-max-xxl);
  }
  .nine-w-max-xxl {
    max-width: var(--nine-w-max-xxl);
  }
  .nine-bg-p-xxl {
    background-position: var(--nine-bg-p-xxl);
  }
  .nine-bg-s-xxl {
    background-size: var(--nine-bg-s-xxl);
  }
  .nine-bg-i-xxl {
    background-image: url(var(--nine-bg-i-xxl));
  }
  .nine-fs-xxl {
    font-size: var(--nine-fs-xxl);
  }
  .nine-mt-xxl {
    margin-top: var(--nine-mt-xxl);
  }
  .nine-me-xxl {
    margin-right: var(--nine-me-xxl);
  }
  .nine-mb-xxl {
    margin-bottom: var(--nine-mb-xxl);
  }
  .nine-ms-xxl {
    margin-left: var(--nine-ms-xxl);
  }
  .nine-pos-t-xxl {
    top: var(--nine-pos-t-xxl);
  }
  .nine-pos-r-xxl {
    right: var(--nine-pos-r-xxl);
  }
  .nine-pos-b-xxl {
    bottom: var(--nine-pos-b-xxl);
  }
  .nine-pos-l-xxl {
    left: var(--nine-pos-l-xxl);
  }
}
/* //// HR /////////////////////////////////////////////////////////////////////////////////////// */
hr.thick {
  border-top-width: 6px;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

hr.primary {
  border-top-color: var(--primary);
}

hr.secondary {
  border-top-color: var(--secondary);
}

hr.tertiary {
  border-top-color: var(--tertiary);
}

hr.quaternary {
  border-top-color: var(--quaternary);
}

hr.light {
  border-top-color: #ffffff;
}

/* //// Width /////////////////////////////////////////////////////////////////////////////////////// */
.width-5 {
  width: 5%;
}

.width-10 {
  width: 10%;
}

.width-15 {
  width: 15%;
}

.width-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

.width-30 {
  width: 30%;
}

.width-35 {
  width: 35%;
}

.width-40 {
  width: 40%;
}

.width-45 {
  width: 45%;
}

.width-50 {
  width: 50%;
}

.width-55 {
  width: 55%;
}

.width-60 {
  width: 60%;
}

.width-65 {
  width: 65%;
}

.width-70 {
  width: 70%;
}

.width-75 {
  width: 75%;
}

.width-80 {
  width: 80%;
}

.width-85 {
  width: 85%;
}

.width-90 {
  width: 90%;
}

.width-95 {
  width: 95%;
}

.width-100 {
  width: 100%;
}

/* //// Misc ////////////////////////////////////////////////////////////////////////////////////////////// */
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

.label-primary {
  background-color: var(--primary);
}

.label-default {
  background-color: #777;
}

.bg-gossamer-dark {
  background-color: rgba(0, 0, 0, 0.5882352941);
}

@media (min-width: 992px) {
  .overlap-left {
    position: relative;
    margin-left: -55px;
    max-width: 600px;
  }
}
.wi-tmember:hover {
  cursor: pointer;
}

section.bg-white .slick-arrow::before {
  color: var(--primary);
}

.font-weight-semi-bold {
  font-weight: 500;
}

.fixed-btn {
  display: flex;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  font-family: var(--font-secondary);
}

.fixed-btn:hover {
  box-shadow: 0 0 0 0.2rem var(--primary-opacity-5);
  text-decoration: none;
  color: white;
}

.header-lg {
  height: 790px;
}

@media screen and (min-width: 992px) {
  .header-lg {
    height: 900px;
  }
}
@media screen and (min-width: 1100px) {
  .header-lg {
    height: 1000px;
  }
}
@media screen and (min-width: 1300px) {
  .header-lg {
    height: 1100px;
  }
}
.service-grid-image:hover {
  opacity: 70%;
}

.zip_backup_location .fran_location_select_wrapper {
  margin-top: 19px !important;
}

.fran_location_select_wrapper {
  background-color: #fff;
  border: 1px dashed #ced4da;
  color: #495057;
}

.fran_location_select {
  display: block;
}

.fran_location_select, .zip_finding_location {
  padding: 1rem;
  margin-bottom: 0;
}

footer .fran_location_select_wrapper {
  background-color: #273035;
  border-color: var(--quaternary);
  color: #ffffff;
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

.form-check-label {
  display: inline-block;
}

@font-face {
  font-family: "ffs";
  src: url("/oak/themes/footprints21/css/fonts/ffs.eot?ncngst");
  src: url("/oak/themes/footprints21/css/fonts/ffs.eot?ncngst#iefix") format("embedded-opentype"), url("/oak/themes/footprints21/css/fonts/ffs.ttf?ncngst") format("truetype"), url("/oak/themes/footprints21/css/fonts/ffs.woff?ncngst") format("woff"), url("/oak/themes/footprints21/css/fonts/ffs.svg?ncngst#ffs") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.ffs {
  display: inline-block;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ffs" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ffs-basketweave:before {
  content: "\e900";
}

.ffs-diagonal:before {
  content: "\e901";
}

.ffs-hardwood:before {
  content: "\e902";
}

.ffs-herringbone:before {
  content: "\e903";
}

.ffs-parquet:before {
  content: "\e904";
}

.ffs-picture-frame:before {
  content: "\e905";
}

.ffs-random-width:before {
  content: "\e906";
}

.ffs-refinish:before {
  content: "\e907";
}

.ffs-small-tile:before {
  content: "\e908";
}

.ffs-stone:before {
  content: "\e909";
}

.ffs-sun-frame:before {
  content: "\e90a";
}

.ffs-tile-grout:before {
  content: "\e90b";
}

.ffs-tile:before {
  content: "\e90c";
}

.ffs-wood-horizontal:before {
  content: "\e90d";
}

.ffs-wood-strip:before {
  content: "\e90e";
}

@font-face {
  font-family: "ffc";
  src: url("fonts/ffc/ffc.eot?404ej1");
  src: url("fonts/ffc/ffc.eot?404ej1#iefix") format("embedded-opentype"), url("fonts/ffc/ffc.ttf?404ej1") format("truetype"), url("fonts/ffc/ffc.woff?404ej1") format("woff"), url("fonts/ffc/ffc.svg?404ej1#ffc") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.ffc {
  display: inline-block;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ffc" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ffc-attendee:before {
  content: "\e900";
}

.ffc-sun:before {
  content: "\e901";
}

.ffc-sponsorship:before {
  content: "\e902";
}

.ffc-schedule:before {
  content: "\e903";
}

.ffc-raffle-tickets:before {
  content: "\e904";
}

.ffc-partner:before {
  content: "\e905";
}

.ffc-info:before {
  content: "\e906";
}

.ffc-ideas:before {
  content: "\e907";
}

.ffc-hotel:before {
  content: "\e908";
}

.ffc-franchise-attendee:before {
  content: "\e909";
}

.ffc-fee-structure:before {
  content: "\e90a";
}

.ffc-faqs:before {
  content: "\e90b";
}

.ffc-events:before {
  content: "\e90c";
}

.ffc-attendees:before {
  content: "\e90d";
}

.ffc-activities:before {
  content: "\e90e";
}

.ffc-graph:before {
  content: "\e90f";
}

.outside-radius-wrapper {
  text-align: center;
  margin-top: 1rem;
  padding: 10px;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  display: none;
}

@media (min-width: 992px) {
  .locked-template header:not(.scrolled) .logo {
    margin-top: 0;
    height: 127px;
  }
}