/*
	(c) Jeremy Hickman Limited
*/
/* ----- 1.0 Normalise ----- */
/* ----- 2.0 Plugin style overrides ----- */
/* ----- 3.0 Mixins ----- */
/*  Responsive breakpoints - example usage

    @include responsive(xs) {
        font-size: 13px
    }
    @include responsive(sm) {
        font-size: 14px
    }
    @include responsive(md) {
        font-size: 15px
    }
    @include responsive(lg) {
        font-size: 16px
    }
    @include responsive(xl) {
        font-size: 17px
    }

    */
/* ----- 4.0 Variables ----- */
/* ----- 5.0 Colours ----- */
/* Whites */
/* Blacks */
/* Greys */
/* Blues */
/* Brand colours */
/* Classes */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
.white {
  background: white;
  color: #3f5162;
}

.white-80 {
  background: rgba(255, 255, 255, 0.8);
  color: #3f5162;
}

.grey-gradient {
  background-image: linear-gradient(90deg, white 0%, #eeeeee 100%);
}

.grey-light {
  background: #eeeeee;
}

.grey-mid {
  background: gray;
  color: white;
}

.grey-dark {
  background: #4a4a4a;
  color: white;
}

.grey-xdark {
  background: #111111;
  color: white;
}

.blue-light {
  background: #f1d8cb;
  color: white;
}

.blue-dark {
  background: #000c2e;
  color: white;
}

.peach-light {
  background: rgba(241, 216, 203, 0.2);
  color: #3f5162;
}

.peach-dark-40 {
  background: rgba(194, 167, 163, 0.4);
  color: #3f5162;
}

.peach-dark {
  background: #c2a7a3;
  color: white;
}

.blue-gradient {
  background: linear-gradient(90deg, #00103d 0%, #1c3b90 100%);
  color: white;
}

.primary {
  background: #3f5162;
  color: rgba(255, 255, 255, 0.9);
}

.secondary {
  background: #f1d8cb;
  color: white;
}

.secondary-80 {
  background: rgba(241, 216, 203, 0.8);
  color: white;
}

.tertiary {
  background: #a6c9b0;
  color: #3f5162;
}

.tertiary-80 {
  background: rgba(166, 201, 176, 0.8);
  color: #3f5162;
}

/* Text */
.text-white {
  color: white;
}

.text-grey-mid {
  color: gray;
}

.text-color-primary {
  color: #3f5162;
}

.text-color-secondary {
  color: #f1d8cb;
}

/* ----- 6.0 Typography ----- */
/* ----- 6.2.1 Fonts ----- */
/* ----- 6.2.2 Heading styles ----- */
.headingStyle,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}
.headingStyle span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-size: 1rem;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  h1 {
    font-size: 2.4rem;
  }
}

h2 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  h2 {
    font-size: 1.4rem;
  }
}

.headingStyle--h3,
h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .headingStyle--h3,
h3 {
    font-size: 1.6rem;
  }
}
.headingStyle--h3 span,
h3 span {
  color: #f1d8cb;
}

.quote h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .quote h3 {
    font-size: 1.6rem;
  }
}

.headingStyle--h4,
h4 {
  font-size: 1.2rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .headingStyle--h4,
h4 {
    font-size: 1.3rem;
  }
}
.headingStyle--h4 a:hover,
h4 a:hover {
  color: #f1d8cb;
  text-decoration: none;
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.headingStyle--h6,
h6 {
  color: #3f5162;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* ----- 6.2.3 Paragraph styles ----- */
/* ----- 6.2.4 Link styles ----- */
a {
  color: inherit;
  transition: all 0.25s linear;
}
a:active {
  color: inherit;
  text-decoration: underline;
  transition: all 0.25s linear;
}
a:focus {
  color: inherit;
  text-decoration: underline;
  transition: all 0.25s linear;
}
a:hover {
  color: inherit;
  text-decoration: underline;
  transition: all 0.25s linear;
}

/* ----- 6.2.5 Bullets ----- */
.list-styles ul {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
.list-styles ul li {
  display: block;
  vertical-align: top;
  padding: 0 0 15px 35px;
  position: relative;
}
.list-styles ul li::before {
  content: "";
  position: absolute;
  display: block;
  background: #f1d8cb;
  height: 15px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 15px;
}
.list-styles.list-styles--checked ul li::before {
  background: transparent url("../img/svg/img-sprite.svg") no-repeat -1010px center;
  background-size: 2400px 80px;
}
.list-styles.list-styles--split ul {
  display: block;
  width: 100%;
}
.list-styles.list-styles--split ul li {
  display: block;
  vertical-align: top;
  font-size: 1.2rem;
  padding: 0 15px 15px 30px;
  background: url("../../dist/img/img-bullet-diamond.svg") no-repeat left 5px;
  background-size: 16px 16px;
}
@media (min-width: 768px) {
  .list-styles.list-styles--split ul li {
    display: inline-block;
    width: 49%;
  }
}

code {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  color: white;
  margin: 0 6px;
  padding: 0 8px;
}

/* ----- 7.0 Helpers ----- */
.row {
  min-width: 100%;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > [class*=col-],
.no-gutters > .col {
  padding-right: 0;
  padding-left: 0;
}

.thin-gutters {
  margin-right: -5px;
  margin-left: -5px;
}
.thin-gutters > [class*=col-],
.thin-gutters > .col {
  padding-right: 5px;
  padding-left: 5px;
}

.no-bullets {
  list-style-type: none;
}

.text-constrain {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clear-left {
  clear: left;
}

.small,
small {
  font-size: 0.8em;
  font-weight: 300;
}
.small a,
.small span,
small a,
small span {
  font-size: inherit;
}

.smaller {
  font-size: 0.6em;
}

.smallest {
  font-size: 75%;
}

.extra-small {
  font-size: 60%;
}

.large {
  font-size: 1.2em;
}

.larger {
  font-size: 1.4em;
}

.huge {
  font-size: 65px;
}

.text-shadow {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.text-undermark {
  padding-bottom: 40px;
  position: relative;
}
.text-undermark::after {
  content: "";
  position: absolute;
  display: block;
  background: #3f5162;
  bottom: 0;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-60px);
  width: 120px;
}

.text-undermark--white::after {
  background: white;
}

strong {
  font-weight: 600;
}

.dim {
  opacity: 0.5;
}

.alignleft {
  float: left;
  margin: 5px 15px 0 0;
}

.alignright {
  float: right;
  margin: 5px 0 0 15px;
}

.aligncenter {
  display: inline-block;
  float: none;
  clear: both;
  text-align: center;
}

.alignnone {
  height: auto;
  max-width: 100%;
  width: auto;
}

.wp-caption-text {
  border-bottom: 1px solid #f1d8cb;
  font-size: 0.6em;
  padding: 10px 0;
}

/* Responsive iFrames - https://css-tricks.com/responsive-iframes/ */
[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}

[style*="--aspect-ratio"] > img {
  height: auto;
}

@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }

  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }

  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
/* ----- 8.0 Globals ----- */
body {
  background: white;
  color: #3f5162;
  font-family: "Montserrat", sans-serif;
  font-size: calc(0.2vw + 13px);
  font-weight: 400;
  height: 100%;
  line-height: 1.5;
  max-width: 100vw;
  min-height: 100vh;
  min-width: 100vw;
  text-rendering: optimizeLegibility;
  width: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: subpixel-antialiased;
}

.body-content {
  /* Clear the header */
  margin-top: 60px;
  transition: 0.25s ease;
}
@media (min-width: 992px) {
  .body-content {
    margin-top: 125px;
  }
}

.scrolled-header .body-content {
  margin-top: 0;
  transition: 2s ease;
}

.page-mask {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: transparent;
  transition: background 0.5s ease;
}
.page-mask.active {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  transition: background 2s ease 0.25s;
}

.page-header {
  background: #3f5162;
  color: white;
}
.page-header > .container > .row {
  height: 250px;
}
.page-header h1 {
  font-size: 1.8em;
}
@media (min-width: 768px) {
  .page-header h1 {
    font-size: 2.4em;
  }
}

.page-content p img {
  border-radius: 10px;
  height: auto;
  vertical-align: top;
}
.page-content p img.alignleft {
  float: left;
  margin: 0 30px 15px 0;
  width: auto;
  max-width: 250px;
}
@media (min-width: 768px) {
  .page-content p img.alignleft {
    max-width: 350px;
  }
}
.page-content p img.alignright {
  float: right;
  margin: 0 0 15px 30px;
  width: auto;
  max-width: 250px;
}
@media (min-width: 768px) {
  .page-content p img.alignright {
    max-width: 350px;
  }
}
.page-content p img.aligncenter, .page-content p img.alignnone {
  clear: both;
  float: none;
  width: 100%;
}

section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
section.section--padding-top {
  padding-top: 60px;
}
section.section--padding-bottom {
  padding-bottom: 60px;
}
section.divider.divider--bottom-semi::after {
  content: "";
  position: absolute;
  display: block;
  background: url("../img/svg/img-chequer-semi.svg") repeat-x;
  bottom: 0;
  height: 27px;
  left: 0;
  width: 100%;
}
section.divider.divider--bottom-light::after {
  content: "";
  position: absolute;
  display: block;
  background: url("../img/svg/img-chequer-light.svg") repeat-x;
  bottom: 0;
  height: 27px;
  left: 0;
  width: 100%;
}

.content ul.pagination {
  list-style-type: none;
  display: inline-block;
  background: transparent;
  border: none;
}
.content ul.pagination li {
  background: none;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 2px;
  display: inline-block;
  transition: all 0.25s linear;
}
.content ul.pagination li > span,
.content ul.pagination li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.content ul.pagination li.active {
  background: #3f5162;
  border: 1px solid #3f5162;
}
.content ul.pagination li.active > span,
.content ul.pagination li.active a {
  color: white;
}
.content ul.pagination li.active:hover {
  transition: all 0.25s linear;
  background: #3f5162;
  border: 1px solid #3f5162;
}
.content ul.pagination li.active:hover > span,
.content ul.pagination li.active:hover a {
  color: white;
}
.content ul.pagination li:hover {
  transition: all 0.25s linear;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #f1d8cb;
}
.content ul.pagination li:hover > span,
.content ul.pagination li:hover a {
  color: #3f5162;
  text-decoration: none;
}
.content ul.pagination li:before {
  display: none;
}

.bullet-column {
  padding-left: 25px;
  position: relative;
}
.bullet-column::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 7px;
  left: 0;
  background: #3f5162;
}
.bullet-column p {
  font-size: 1.15em;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .bullet-column p {
    font-size: 1.3em;
  }
}

.page-content blockquote {
  margin: 50px 0;
  border-left: 10px solid #3f5162;
  padding: 0 100px 0 25px;
}
.page-content blockquote p {
  color: #3f5162;
  font-weight: 300;
  font-size: 1.4em;
  line-height: 1.4;
  text-transform: uppercase;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 8px);
}

.tabbed-content {
  background: linear-gradient(to bottom, white 0%, white 66px, #eeeeee 66px, #eeeeee 100%);
}
.tabbed-content .nav-tabs {
  margin: 0;
  border: none;
  min-height: 66px;
}
.tabbed-content .nav-tabs .nav-item {
  background: none;
}
.tabbed-content .nav-tabs .nav-item .nav-link {
  padding: 10px;
  line-height: 1.2;
  font-size: 1.3em;
  text-align: center;
  text-transform: lowercase;
  color: #a6c9b0;
  background: transparent;
  border: none;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  .tabbed-content .nav-tabs .nav-item .nav-link {
    padding: 0 10px;
    line-height: 66px;
  }
}
@media (min-width: 992px) {
  .tabbed-content .nav-tabs .nav-item .nav-link {
    font-size: 1.7em;
  }
}
.tabbed-content .nav-tabs .nav-item .nav-link.active {
  background: #eeeeee;
}
.tabbed-content .nav-tabs .nav-item.show .nav-link {
  background: #eeeeee;
}
.tabbed-content .tab-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.slick-slider .slick-dots {
  padding: 0;
  list-style-type: none;
}
.slick-slider .slick-dots li {
  text-indent: -9999px;
  position: relative;
}
.slick-slider .slick-dots li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.slick-slider .slick-dots {
  text-align: center;
  padding: 0;
  list-style-type: none;
}
.slick-slider .slick-dots li {
  display: inline-block;
  margin-right: 10px;
}
.slick-slider .slick-dots li button {
  background: transparent;
  border: 1px solid #a6c9b0;
  border-radius: 50%;
  display: inline-block;
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  padding: 0;
}
.slick-slider .slick-dots li.slick-active button {
  background: #a6c9b0;
}

.category-icon {
  display: inline-block;
  background: transparent;
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  border: 1px solid #3f5162;
  text-transform: lowercase;
  padding: 0 15px;
  margin: 0 15px 10px 0;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #3f5162;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s linear;
}
.category-icon:active {
  background-color: #f1d8cb;
  border: 1px solid #f1d8cb;
  color: #3f5162 !important;
  text-decoration: none;
}
.category-icon:focus {
  background-color: #f1d8cb;
  border: 1px solid #f1d8cb;
  color: #3f5162 !important;
  text-decoration: none;
}
.category-icon:hover {
  background-color: #f1d8cb;
  border: 1px solid #f1d8cb;
  color: #3f5162 !important;
  text-decoration: none;
}

/* ----- 9.0 Animations ----- */
@keyframes opacityChange {
  0% {
    opacity: 0.5;
  }
  18% {
    opacity: 1;
  }
  33% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes swing {
  0%, 100% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(30deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  20% {
    transform: scale(1);
  }
}
@keyframes grow {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 18;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes smile {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logoreveal {
  0% {
    transform: rotateY(101deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: scale(6);
    opacity: 1;
  }
}
@keyframes turn_clockwise1 {
  0% {
    transform: rotate(0deg) scale(1);
    border: 35px solid rgba(0, 0, 0, 0.05);
    border-top-color: transparent;
  }
  20% {
    border: 35px solid rgba(0, 0, 0, 0.1);
    border-top-color: transparent;
  }
  50% {
    border: 35px solid rgba(0, 0, 0, 0.1);
    transform: rotate(180deg) scale(1.2);
  }
  80% {
    border: 35px solid rgba(0, 0, 0, 0.1);
    border-top-color: transparent;
  }
  100% {
    transform: rotate(360deg) scale(1);
    border: 35px solid rgba(0, 0, 0, 0.05);
    border-top-color: transparent;
  }
}
@keyframes turn_clockwise2 {
  0% {
    transform: rotate(0deg) scale(0.9);
    border: 2px solid rgba(255, 255, 255, 0);
    border-top-color: transparent;
  }
  20% {
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: transparent;
  }
  50% {
    transform: rotate(180deg) scale(1.3);
  }
  80% {
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: transparent;
  }
  100% {
    transform: rotate(360deg) scale(0.9);
    border: 2px solid rgba(255, 255, 255, 0);
    border-top-color: transparent;
  }
}
@keyframes turn_counter_clockwise {
  0% {
    transform: rotate(360deg) scale(0.8);
    border: 10px solid rgba(255, 255, 255, 0);
    border-top-color: transparent;
  }
  20% {
    border: 10px solid rgba(255, 255, 255, 0.05);
    border-top-color: transparent;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  80% {
    border: 10px solid rgba(255, 255, 255, 0.05);
    border-top-color: transparent;
  }
  100% {
    transform: rotate(0deg) scale(0.8);
    border: 10px solid rgba(255, 255, 255, 0);
    border-top-color: transparent;
  }
}
@keyframes jhlogo {
  0% {
    opacity: 0;
    transform: rotate(-180deg) translateY(0);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) translateX(0);
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 350;
    stroke: rgba(255, 255, 255, 0);
  }
  50% {
    stroke: rgba(255, 255, 255, 0.5);
  }
  100% {
    stroke-dashoffset: -350;
    stroke: rgba(255, 255, 255, 0);
  }
}
@keyframes dash2 {
  0% {
    stroke-dashoffset: 350;
    stroke: rgba(0, 0, 0, 0);
  }
  50% {
    stroke: rgba(0, 0, 0, 0.5);
  }
  100% {
    stroke-dashoffset: -350;
    stroke: rgba(0, 0, 0, 0);
  }
}
@keyframes titleup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes titledown {
  0% {
    opacity: 0;
    transform: translateY(-210px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-delayed-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes blink {
  100% {
    opacity: 0;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@keyframes mosaic {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(200px);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  100% {
    transform: translateX(-730px) translateY(-280px);
  }
}
@keyframes slide {
  0% {
    transform: translate3d(0, 0, 300px) rotateX(50deg) rotateZ(-20deg);
  }
  50% {
    transform: translate3d(0, 0, 300px) rotateX(50deg) rotateZ(-20deg) translateX(200%);
  }
  51% {
    transform: translate3d(0, 0, 0) rotateX(50deg) rotateZ(-20deg) translateX(200%);
  }
  100% {
    transform: translate3d(0, 0, 0) rotateX(50deg) rotateZ(-20deg);
  }
}
@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
/* ----- 10.0 Components: Buttons ----- */
/* BUTTONS
-------------------------------------------------- */
.btn.btn-default {
  display: inline-block;
  background: #f1d8cb;
  border: 0;
  border-radius: 18px;
  text-transform: uppercase;
  padding: 0 25px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #3f5162;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s linear;
}
.btn.btn-default:hover {
  background: rgba(241, 216, 203, 0.8);
  color: #3f5162;
}
.btn.btn-small {
  display: inline-block;
  background: #f1d8cb;
  border: 0;
  border-radius: 15px;
  text-transform: uppercase;
  padding: 0 15px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #3f5162;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s linear;
}
.btn.btn-small:hover {
  background: rgba(241, 216, 203, 0.8);
  color: #3f5162;
}
.btn.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid #3f5162;
  border-radius: 15px;
  color: #3f5162;
  text-transform: uppercase;
  padding: 0 15px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s linear;
}
.btn.btn-outline:hover {
  background: #f1d8cb;
  border-color: #f1d8cb;
  color: #3f5162;
}
.btn.btn-reversed {
  border: 1px solid white;
  color: white;
}
.btn.btn-reversed:active {
  background: #3f5162;
  border: 1px solid #3f5162;
  color: white;
}
.btn.btn-reversed:focus {
  background: #3f5162;
  border: 1px solid #3f5162;
  color: white;
}
.btn.btn-reversed:hover {
  background: #3f5162;
  border: 1px solid #3f5162;
  color: white;
}
.btn.btn-plain {
  border: 1px solid transparent;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}

/* ----- 11.0 Components: Navigation ----- */
/* MAIN MENU - NAVBAR
-------------------------------------------------- */
.navbar-brand {
  background: url("../img/svg/img-sprite.svg") no-repeat 0 center;
  background-size: auto 60px;
  height: 60px;
  margin: 5px 20px 5px 0;
  transition: all 0.25s linear;
  width: 110px;
}
@media (min-width: 992px) {
  .navbar-brand {
    margin: 0;
    width: 180px;
    height: 100px;
    background-size: auto 100px;
  }
}

.menu-toggler {
  background: transparent;
  border: 0;
  color: #3f5162;
  display: inline-block;
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  height: 72px;
  line-height: 40px;
  margin: 0 0 0 20px;
  opacity: 1;
  padding: 0 0 0 45px;
  position: relative;
  transition: all 0.25s ease;
  width: 40px;
}
.menu-toggler::after {
  content: "";
  position: absolute;
  display: block;
  background: url("../img/svg/img-sprite.svg") no-repeat -570px center;
  background-size: 2400px 80px;
  height: 20px;
  left: 20px;
  top: 50%;
  transform: translateY(-8px);
  width: 12px;
}
.menu-toggler:active {
  outline: none;
}
.menu-toggler:active::after {
  background-position: -590px center;
}
.menu-toggler:focus {
  outline: none;
}
.menu-toggler:focus::after {
  background-position: -590px center;
}
.menu-toggler:hover {
  outline: none;
}
.menu-toggler:hover::after {
  background-position: -590px center;
}
@media (min-width: 992px) {
  .menu-toggler {
    height: 120px;
  }
}

.main-nav-wrapper {
  display: inline-block;
}
.main-nav-wrapper .navbar-nav {
  display: inline-block;
  float: right;
  margin: 0;
  padding: 0 15px 0 0;
  transition: all 0.25s ease;
  vertical-align: middle;
  width: auto;
}
.main-nav-wrapper .navbar-nav > li {
  display: inline-block;
  position: relative;
}
.main-nav-wrapper .navbar-nav > li > .nav-link {
  color: #3f5162;
  display: inline-block;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 115px;
  padding: 0 15px;
  margin: 5px 0 0;
  transition: all 0.25s ease;
}
.main-nav-wrapper .navbar-nav > li > .nav-link:active {
  background: transparent;
  color: #f1d8cb;
}
.main-nav-wrapper .navbar-nav > li > .nav-link:focus {
  background: transparent;
  color: #f1d8cb;
}
.main-nav-wrapper .navbar-nav > li > .nav-link:hover {
  background: transparent;
  color: #f1d8cb;
}
.main-nav-wrapper .navbar-nav > li.active > .nav-link {
  color: rgba(63, 81, 98, 0.6);
}

.fixed-top {
  background: white;
  transition: background 0.5s ease, right 0.25s ease, top 0.25s ease;
}
@media (min-width: 992px) {
  .fixed-top nav.divider::after {
    content: "";
    display: block;
    position: absolute;
    right: 17px;
    bottom: -60px;
    width: 0;
    height: 0;
    z-index: 9;
    border-style: solid;
    border-width: 60px 90px 0 0;
    border-color: #3f5162 transparent transparent transparent;
    -webkit-transform: rotate(360deg);
  }
  .fixed-top nav.divider.divider-righthand::after {
    left: auto;
    right: 16px;
    border-width: 60px 90px 0 0;
  }
  .fixed-top nav.divider.divider-righthand.divider-darkblue-translucent::after {
    border-color: rgba(0, 35, 75, 0.5) transparent transparent transparent;
  }
}

.scrolled-header .fixed-top {
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 992px) {
  .scrolled-header .fixed-top .navbar-brand {
    margin: 5px 20px 5px 0;
    top: 0;
    width: 110px;
    height: 60px;
    background-size: auto 60px;
  }
}
.scrolled-header .fixed-top .main-nav-wrapper .navbar-nav > li > .nav-link {
  line-height: 65px;
}
.scrolled-header .fixed-top .menu-toggler {
  height: 72px;
}
.scrolled-header.scrolled-hidden .fixed-top {
  top: -70px;
  transition: top 0.25s linear;
}
@media (min-width: 992px) {
  .scrolled-header.scrolled-hidden .fixed-top {
    top: -110px;
  }
}
.scrolled-header .menu-upper {
  transition: all 0.25s linear;
}

/* MAIN MENU - OFFCANVAS
-------------------------------------------------- */
body.menu-active {
  transition: right 0.25s ease;
}
body.menu-active .main-menu-offcanvas {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  right: 0;
}

.main-menu-offcanvas {
  background: rgba(241, 216, 203, 0.8);
  background-size: 2400px 80px;
  backdrop-filter: blur(5px);
  height: 100vh;
  max-height: 100vh;
  overflow-y: scroll;
  position: fixed;
  right: -350px;
  top: 0;
  transition: all 0.25s linear;
  width: 350px;
  z-index: 1031;
}
.main-menu-offcanvas .offcanvas-menu-content {
  display: inline-block;
  height: 100%;
  vertical-align: top;
  width: calc(100% - 25px);
}
.main-menu-offcanvas .main-menu-close {
  background: url("../img/svg/img-sprite.svg") no-repeat -630px center;
  background-size: 2400px 80px;
  border: 0;
  height: 15px;
  opacity: 1;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 30px;
  transition: all 0.25s ease;
  width: 15px;
  z-index: 1032;
}
.main-menu-offcanvas .main-menu-close:active {
  opacity: 0.5;
  outline: 0;
}
.main-menu-offcanvas .main-menu-close:focus {
  opacity: 0.5;
  outline: 0;
}
.main-menu-offcanvas .main-menu-close:hover {
  opacity: 0.5;
  outline: 0;
}
.main-menu-offcanvas > .container-fluid {
  height: 100vh;
  max-height: 100vh;
}

.offcanvas-brand {
  background: url("../img/svg/img-sprite.svg") no-repeat 0 center;
  background-size: 1500px 50px;
  height: 50px;
  margin: 65px 0 50px;
  width: 170px;
}

.offcanvas-nav-wrapper .offcanvas-nav {
  display: block;
}
.offcanvas-nav-wrapper .offcanvas-nav li {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  position: relative;
  float: none;
}
.offcanvas-nav-wrapper .offcanvas-nav li.dropdown {
  background: transparent;
}
.offcanvas-nav-wrapper .offcanvas-nav li.nav-link,
.offcanvas-nav-wrapper .offcanvas-nav li a {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  color: #3f5162;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 15px 0;
  width: 100%;
}
.offcanvas-nav-wrapper .offcanvas-nav li.nav-link:hover,
.offcanvas-nav-wrapper .offcanvas-nav li a:hover {
  background: transparent;
  color: rgba(63, 81, 98, 0.6);
}
.offcanvas-nav-wrapper .offcanvas-nav li.nav-link.dropdown-toggle,
.offcanvas-nav-wrapper .offcanvas-nav li a.dropdown-toggle {
  white-space: normal;
}
.offcanvas-nav-wrapper .offcanvas-nav li.nav-link.dropdown-toggle::after,
.offcanvas-nav-wrapper .offcanvas-nav li a.dropdown-toggle::after {
  float: right;
  margin: 7px 10px 0 0;
}
.offcanvas-nav-wrapper .offcanvas-nav li.active > a {
  color: rgba(63, 81, 98, 0.6);
}
.offcanvas-nav-wrapper .offcanvas-nav li.active > a:active {
  color: #3f5162;
}
.offcanvas-nav-wrapper .offcanvas-nav li.active > a:focus {
  color: #3f5162;
}
.offcanvas-nav-wrapper .offcanvas-nav li.active > a:hover {
  color: #3f5162;
}
.offcanvas-nav-wrapper .offcanvas-nav li ul.dropdown-menu {
  position: relative !important;
  top: auto;
  left: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transform: none !important;
}
.offcanvas-nav-wrapper .offcanvas-nav li ul.dropdown-menu li {
  padding: 0;
}
.offcanvas-nav-wrapper .offcanvas-nav li ul.dropdown-menu li a.nav-link {
  color: white;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
}
.offcanvas-nav-wrapper .offcanvas-nav li ul.dropdown-menu li a.nav-link:active {
  color: rgba(255, 255, 255, 0.5);
}
.offcanvas-nav-wrapper .offcanvas-nav li ul.dropdown-menu li a.nav-link:focus {
  color: rgba(255, 255, 255, 0.5);
}
.offcanvas-nav-wrapper .offcanvas-nav li ul.dropdown-menu li a.nav-link:hover {
  color: rgba(255, 255, 255, 0.5);
}
.offcanvas-nav-wrapper .offcanvas-nav li.dropdown.show > ul.dropdown-menu {
  position: relative !important;
  top: auto;
  left: auto;
  display: block;
  float: none;
  width: 100%;
  transform: none !important;
}
.offcanvas-nav-wrapper .offcanvas-nav li.dropdown.show > ul.dropdown-menu.show .dropdown-menu {
  position: relative !important;
  float: none !important;
}
.offcanvas-nav-wrapper .offcanvas-nav li.dropdown.show > ul.dropdown-menu.show .dropdown-menu .nav-link {
  font-size: 1em;
  padding-left: 15px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}
.offcanvas-nav-wrapper .offcanvas-nav li.dropdown.show > ul.dropdown-menu.show .dropdown-menu.show > ul.dropdown-menu {
  top: auto !important;
  left: auto !important;
  display: block;
  margin: 0;
  width: 100%;
  transform: none !important;
}
.offcanvas-nav-wrapper .offcanvas-nav li.dropdown.show > ul.dropdown-menu.show .dropdown-menu.show > ul.dropdown-menu .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8em;
  padding-left: 30px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}
.offcanvas-nav-wrapper .offcanvas-nav li.dropdown.show > ul.dropdown-menu.show .nav-item .nav-link {
  font-size: 0.9em;
  padding-left: 15px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}

/* ----- 12.0 Components: Blocks ----- */
/* FLEXIBLE CONTENT BLOCK - HERO VIDEO
-------------------------------------------------- */
.hero .hero-video {
  background: black;
  height: 500px;
  left: 0;
  min-width: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .hero .hero-video {
    height: 550px;
  }
}
@media (min-width: 992px) {
  .hero .hero-video {
    height: 560px;
  }
}
@media (min-width: 1200px) {
  .hero .hero-video {
    height: 650px;
  }
}
@media (min-width: 1450px) {
  .hero .hero-video {
    height: 780px;
  }
}
@media (min-width: 1650px) {
  .hero .hero-video {
    height: 950px;
  }
}
.hero .hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translateX(-50%) translateY(-50%);
}
@media (min-width: 992px) {
  .hero .hero-video video {
    height: auto;
    width: 100%;
  }
}
.hero.hero-background {
  background-color: #3f5162;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 300px;
}
@media (min-width: 576px) {
  .hero.hero-background {
    background-position: calc(((100vw - 510px) / 2) + 225px) center;
    background-size: auto 100%;
  }
}
@media (min-width: 768px) {
  .hero.hero-background {
    background-position: calc(((100vw - 690px) / 2) + 300px) center;
  }
}
@media (min-width: 992px) {
  .hero.hero-background {
    background-position: calc(((100vw - 930px) / 2) + 400px) center;
  }
}
@media (min-width: 1200px) {
  .hero.hero-background {
    background-position: calc(((100vw - 1140px) / 2) + 475px) center;
  }
}
.hero > .container {
  height: 500px;
}
@media (min-width: 768px) {
  .hero > .container {
    height: 550px;
  }
}
@media (min-width: 992px) {
  .hero > .container {
    height: 560px;
  }
}
@media (min-width: 1200px) {
  .hero > .container {
    height: 650px;
  }
}
@media (min-width: 1450px) {
  .hero > .container {
    height: 780px;
  }
}
@media (min-width: 1650px) {
  .hero > .container {
    height: 950px;
  }
}
.hero > .container.hero-height-medium {
  height: 500px;
}
@media (min-width: 576px) {
  .hero > .container.hero-height-medium {
    height: 300px;
  }
}
@media (min-width: 768px) {
  .hero > .container.hero-height-medium {
    height: 350px;
  }
}
@media (min-width: 992px) {
  .hero > .container.hero-height-medium {
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .hero > .container.hero-height-medium {
    height: 500px;
  }
}
@media (min-width: 1450px) {
  .hero > .container.hero-height-medium {
    height: 550px;
  }
}
@media (min-width: 1650px) {
  .hero > .container.hero-height-medium {
    height: 600px;
  }
}
.hero > .container.hero-height-short {
  height: 200px;
}
@media (min-width: 768px) {
  .hero > .container.hero-height-short {
    height: 225px;
  }
}
@media (min-width: 992px) {
  .hero > .container.hero-height-short {
    height: 250px;
  }
}
@media (min-width: 1200px) {
  .hero > .container.hero-height-short {
    height: 275px;
  }
}
@media (min-width: 1450px) {
  .hero > .container.hero-height-short {
    height: 300px;
  }
}
@media (min-width: 1650px) {
  .hero > .container.hero-height-short {
    height: 350px;
  }
}

/* FLEXIBLE CONTENT BLOCK - RICH TEXT
-------------------------------------------------- */
.richtext-content p a {
  color: #f1d8cb;
}
.richtext-content img {
  height: auto;
  max-width: 100%;
  width: auto;
}

/* FLEXIBLE CONTENT BLOCK - ACCORDION
-------------------------------------------------- */
.accordion .card {
  border: 0;
}
.accordion .card .card-header {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0;
}
.accordion .card .card-header .btn {
  border-radius: 0;
  color: white;
  font-size: 1.1em;
  font-weight: 500;
  padding: 10px 30px 10px 0;
  position: relative;
  text-transform: uppercase;
}
.accordion .card .card-header .btn:active {
  text-decoration: none;
  transition: all 0.25s ease;
}
.accordion .card .card-header .btn:focus {
  text-decoration: none;
  transition: all 0.25s ease;
}
.accordion .card .card-header .btn:hover {
  text-decoration: none;
  transition: all 0.25s ease;
}
.accordion .card .card-header .btn::after {
  content: "";
  position: absolute;
  display: block;
  background: url("../img/svg/img-sprite.svg") no-repeat -890px center;
  background-size: 2400px 80px;
  height: 12px;
  right: 0;
  top: 50%;
  transform: translateY(-8px);
  width: 12px;
}
.accordion .card .card-header .btn.collapsed {
  color: #3f5162;
}
.accordion .card .card-header .btn.collapsed:hover {
  color: #f1d8cb;
  text-decoration: none;
}
.accordion .card .card-header .btn.collapsed:hover::after {
  background-position: -890px center;
}
.accordion .card .card-header .btn.collapsed::after {
  background-position: -930px center;
}
.accordion .card .card-body {
  padding: 5px 0 20px;
}

/* FLEXIBLE CONTENT BLOCK - TABBED CONTENT
-------------------------------------------------- */
.section--tabbed-content {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section--tabbed-content .nav-tabs .nav-item {
  width: 33.33333%;
}
@media (min-width: 768px) {
  .section--tabbed-content .nav-tabs .nav-item {
    width: 16.66667%;
  }
}
.section--tabbed-content .nav-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid transparent;
  color: #f1d8cb;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
.section--tabbed-content .nav-tabs .nav-link:hover {
  border-bottom-color: rgba(0, 0, 0, 0.2);
}
.section--tabbed-content .nav-tabs .nav-link.active {
  background: transparent;
  border-bottom-color: #f1d8cb;
}

/* FLEXIBLE CONTENT BLOCK - IMAGE CAROUSEL
-------------------------------------------------- */
.fc-imagefeatures-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid white;
  height: 200px;
}

/* FLEXIBLE CONTENT BLOCK - TESTIMONIALS
-------------------------------------------------- */
.section--testimonials blockquote {
  text-align: center;
}
.section--testimonials blockquote p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7em;
  text-transform: uppercase;
}
.section--testimonials blockquote cite {
  font-size: 0.9em;
  font-style: normal;
}

/* FLEXIBLE CONTENT BLOCK - CAR SALES
-------------------------------------------------- */
.section--car-sales-summary .slick-slider .slick-arrow {
  display: none !important;
}
@media (min-width: 576px) {
  .section--car-sales-summary .slick-slider .slick-arrow {
    border: 0;
    display: inline-block !important;
    height: 24px;
    position: absolute;
    text-indent: -9999px;
    top: 50%;
    transform: translateY(-12px);
    width: 14px;
    z-index: 9;
  }
  .section--car-sales-summary .slick-slider .slick-arrow.slick-next {
    background: url("../img/svg/img-sprite.svg") no-repeat -1130px center;
    background-size: 2400px 80px;
    right: -40px;
  }
  .section--car-sales-summary .slick-slider .slick-arrow.slick-prev {
    background: url("../img/svg/img-sprite.svg") no-repeat -1070px center;
    background-size: 2400px 80px;
    left: -40px;
  }
  .section--car-sales-summary .slick-slider .slick-arrow:focus {
    outline: none;
  }
  .section--car-sales-summary .slick-slider .slick-arrow:hover.slick-next {
    background-position: -1110px center;
  }
  .section--car-sales-summary .slick-slider .slick-arrow:hover.slick-prev {
    background-position: -1050px center;
  }
}

/* FLEXIBLE CONTENT BLOCK - CONTACT DETAILS
-------------------------------------------------- */
.icon {
  background-repeat: no-repeat;
  background-size: 2400px 80px;
  display: inline-block;
  padding-left: 45px;
  position: relative;
}
.icon::after {
  content: "";
  position: absolute;
  display: block;
  background: #f1d8cb;
  border-radius: 50%;
  height: 35px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
}
.icon a:hover {
  color: #f1d8cb;
  text-decoration: none;
}

.icon--phone::after {
  background-image: url("../img/svg/img-sprite.svg");
  background-position: -1448px center;
}

.icon--email::after {
  background-image: url("../img/svg/img-sprite.svg");
  background-position: -1538px center;
}

/* FLEXIBLE CONTENT BLOCK - FORM
-------------------------------------------------- */
label,
label span {
  color: #3f5162;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

label {
  min-width: 100%;
}

.form-group {
  margin-bottom: 10px;
}
.form-group .btn {
  display: inline-block;
  background: #f1d8cb;
  border: 0;
  border-radius: 18px;
  text-transform: uppercase;
  padding: 0 25px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #3f5162;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s linear;
}
.form-group .btn:hover {
  background: rgba(241, 216, 203, 0.8);
  color: #3f5162;
}

.form-control {
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  border-radius: 0;
}
.form-control:focus {
  border: 1px solid #f1d8cb;
}

textarea.form-control {
  height: 120px;
  line-height: normal;
  padding-top: 5px;
  padding-bottom: 5px;
}

span.wpcf7-not-valid-tip {
  color: #f1d8cb;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8em;
  text-transform: uppercase;
}
span.wpcf7-list-item {
  margin: 0 !important;
  display: block !important;
}

div.wpcf7-mail-sent-ok, div.wpcf7-validation-errors {
  border: none;
}
div.wpcf7-response-output {
  background: #a6c9b0;
  border: 0 !important;
  color: rgba(0, 0, 0, 0.9);
  font-size: 0.9em;
  padding: 15px !important;
  margin: 0 !important;
}

.form-check {
  padding-left: 0;
}

div.wpcf7 .ajax-loader {
  display: none !important;
}

@media (max-width: 992px) {
  .content .bootstrap-select {
    margin-bottom: 10px;
    width: 100% !important;
  }
}
.content .bootstrap-select.btn-group .dropdown-toggle.btn {
  background: transparent;
  border-color: #3f5162;
  height: 42px;
  line-height: normal;
}
.content .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  color: #3f5162;
  line-height: 40px;
  vertical-align: middle;
}
.content .bootstrap-select.btn-group .dropdown-toggle .bs-caret .caret {
  background: url("../../dist/img/img-icon-chevron-down.svg") no-repeat center;
  background-size: 10px;
  margin-top: -5px;
  height: 10px;
  width: 10px;
}
.content .bootstrap-select.btn-group .dropdown-toggle::after {
  display: none !important;
}
.content .bootstrap-select.btn-group .dropdown-menu ul.inner {
  list-style-type: none;
}
.content .bootstrap-select.btn-group .dropdown-menu ul.inner li {
  background: white;
  padding: 0 0 0 20px;
}
.content .bootstrap-select.btn-group .dropdown-menu ul.inner li a {
  display: block;
}
.content .bootstrap-select.btn-group .dropdown-menu ul.inner li a span {
  color: #3f5162;
  display: inline-block;
  line-height: 35px;
  vertical-align: middle;
}
.content .bootstrap-select.btn-group .dropdown-menu ul.inner li a:active, .content .bootstrap-select.btn-group .dropdown-menu ul.inner li a:focus {
  outline: none !important;
}
.content .bootstrap-select.btn-group .dropdown-menu ul.inner li.selected {
  background: #3f5162;
}
.content .bootstrap-select.btn-group .dropdown-menu ul.inner li.selected a span {
  color: white;
}
.content .bootstrap-select.btn-group .dropdown-menu ul.inner li::before {
  display: none;
}
.content .bootstrap-select.dropup .dropdown-toggle .bs-caret .caret, .content .bootstrap-select.show .dropdown-toggle .bs-caret .caret {
  background: url("../../dist/img/img-icon-chevron-up.svg") no-repeat center;
}
.content .bootstrap-select.dropup .dropdown-menu, .content .bootstrap-select.show .dropdown-menu {
  display: block;
}

/* FLEXIBLE CONTENT BLOCK - GALLERY
-------------------------------------------------- */
.block-gallery-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  margin-bottom: 30px;
}

/* FLEXIBLE CONTENT BLOCK - TEAM
-------------------------------------------------- */
.team-members {
  position: relative;
}
.team-members .team-image {
  padding: 10px;
}
.team-members .team-image h6 {
  margin: 0.5rem 0 0;
  padding-bottom: 0.5rem;
}
.team-members h5 {
  font-size: 1em;
}
.team-members h6 {
  font-size: 0.8em;
}
.team-members.slick-slider {
  position: relative;
  z-index: 1;
}
.team-members.slick-slider .slick-list {
  position: relative;
  z-index: 1;
}
.team-members.slick-slider .slick-list .slick-track {
  padding: 30px 0 0;
  position: relative;
}
.team-members.slick-slider .slick-list .slick-track .slick-slide.slick-current .team-image {
  position: relative;
}
.team-members.slick-slider .slick-list .slick-track .slick-slide.slick-current .team-image h6 {
  border-bottom: 2px solid #f1d8cb;
}
.team-members.slick-slider .slick-list .slick-track .slick-slide:active, .team-members.slick-slider .slick-list .slick-track .slick-slide:focus {
  outline: none;
}
.team-members.slick-slider .slick-arrow {
  display: none !important;
}
@media (min-width: 576px) {
  .team-members.slick-slider .slick-arrow {
    border: 0;
    display: inline-block !important;
    position: absolute;
    text-indent: -9999px;
    top: 90px;
    height: 22px;
    width: 12px;
    z-index: 9;
  }
  .team-members.slick-slider .slick-arrow.slick-next {
    background: url("../img/svg/img-sprite.svg") no-repeat -1130px center;
    background-size: 2400px 80px;
    right: -20px;
  }
  .team-members.slick-slider .slick-arrow.slick-prev {
    background: url("../img/svg/img-sprite.svg") no-repeat -1070px center;
    background-size: 2400px 80px;
    left: -20px;
  }
  .team-members.slick-slider .slick-arrow:hover.slick-next {
    background-position: -1110px center;
  }
  .team-members.slick-slider .slick-arrow:hover.slick-prev {
    background-position: -1050px center;
  }
}
.team-members.slick-slider .slick-dots {
  margin: 10px 0 0;
}

.team-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.team-links li {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 400;
  margin: 0 10px 0 0;
  vertical-align: top;
}
.team-links li a {
  background: url("../img/svg/img-sprite.svg") no-repeat -1304px center;
  background-size: 2400px 80px;
  display: inline-block;
  height: 20px;
  transition: none;
  vertical-align: middle;
  width: 20px;
}
.team-links li a:hover {
  background-position: -1284px center;
  transition: none;
}
.team-links li.team-icon-email a {
  background-position: -1544px center;
}
.team-links li.team-icon-email a:hover {
  background-position: -1524px center;
}
.team-links li.team-icon-mobile a {
  background-position: -1484px center;
}
.team-links li.team-icon-mobile a:hover {
  background-position: -1464px center;
}
.team-links li.team-icon-tel a {
  background-position: -1424px center;
}
.team-links li.team-icon-tel a:hover {
  background-position: -1404px center;
}

/* FLEXIBLE CONTENT BLOCK - SERVICES
-------------------------------------------------- */
.service-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  width: 100%;
  /* 1:1 Aspect Ratio */
  padding-top: 65%;
}
.service-image .service-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50px;
  bottom: -25px;
  left: 50%;
  height: 50px;
  position: absolute;
  transform: translateX(-25px);
  width: 50px;
}
.service-image .service-icon.service-icon--training {
  background-image: url("../img/svg/img-service-icon-training.svg");
}
.service-image .service-icon.service-icon--nutrition {
  background-image: url("../img/svg/img-service-icon-nutrition.svg");
}

.service-item {
  position: relative;
  z-index: 10;
}

.service-item .service-image:hover::before {
  transform: rotate(4deg);
}

.service-item .service-image::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  transform: rotate(-4deg);
  transition: transform 0.25s ease;
  width: 100%;
  z-index: -1;
}

.service-item:nth-of-type(1) .service-image::before {
  background: #a6c9b0;
}

.service-item:nth-of-type(2) .service-image::before {
  background: #f1d8cb;
}

.service-item:nth-of-type(3) .service-image::before {
  background: #b9cfce;
}

/* FLEXIBLE CONTENT BLOCK - INSTAGRAM
-------------------------------------------------- */
.richtext-content p.instagram-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
.richtext-content p.instagram-link a {
  color: rgba(0, 0, 0, 0.9);
  padding-left: 25px;
}
.richtext-content p.instagram-link a:active {
  text-decoration: none;
}
.richtext-content p.instagram-link a:focus {
  text-decoration: none;
}
.richtext-content p.instagram-link a:hover {
  text-decoration: none;
}
.richtext-content p.instagram-link::before {
  content: "";
  position: absolute;
  display: block;
  background: transparent url("../img/svg/img-sprite.svg") no-repeat -1365px center;
  background-size: 2400px 80px;
  height: 20px;
  left: 0;
  top: 0;
  width: 20px;
}
.richtext-content p.instagram-link:active::before {
  background-position: -1345px center;
}
.richtext-content p.instagram-link:focus::before {
  background-position: -1345px center;
}
.richtext-content p.instagram-link:hover::before {
  background-position: -1345px center;
}

.crt-post-text {
  font-size: 0.6em !important;
}

.crt-date {
  font-size: 0.8em !important;
}

.crt-logo.crt-tag {
  font-size: 0.7em !important;
  opacity: 0.5 !important;
}

/* FLEXIBLE CONTENT BLOCK - AD
-------------------------------------------------- */
.ad-wrapper {
  background: white;
  padding: 10px;
  position: relative;
}
.ad-wrapper.ad-graphic {
  background-image: url("../img/svg/img-background-30-days.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 30px;
}
.ad-wrapper .content-logo {
  background-image: url("../img/svg/img-service-icon-training-mono.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 50px;
  padding-top: 50px;
}
.ad-wrapper .ad-new {
  background-image: url("../img/svg/img-label-new.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75px;
  height: 75px;
  left: 5px;
  position: absolute;
  top: -45px;
  width: 75px;
}
@media (min-width: 768px) {
  .ad-wrapper .ad-new {
    background-size: 100px;
    height: 100px;
    left: -50px;
    top: -50px;
    width: 100px;
  }
}
.ad-wrapper .ad-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  /* Aspect Ratio */
  padding-top: 125%;
}
.ad-wrapper .ad-image p {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .ad-wrapper .ad-image p {
    font-size: 2em;
  }
}

/* FLEXIBLE CONTENT BLOCK - PRICES
-------------------------------------------------- */
.table-row {
  height: 80px;
  min-height: 80px;
}

.offline.hide,
.online.hide {
  display: none;
}

.flag-wrapper {
  position: relative;
}
.flag-wrapper .flag {
  background: gray;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  height: auto;
  line-height: 1;
  min-height: 25px;
  left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  top: -40px;
  vertical-align: middle;
  width: 100%;
}
@media (min-width: 576px) {
  .flag-wrapper .flag {
    font-size: 1rem;
  }
}
.flag-wrapper .flag.flag--secondary {
  background: #f1d8cb;
  color: #3f5162;
}
.flag-wrapper .flag.flag--tertiary {
  background: #a6c9b0;
}

.check-yes {
  background: transparent url("../img/svg/img-sprite.svg") no-repeat -1005px center;
  background-size: 2400px 80px;
  display: inline-block;
  height: 20px;
  text-indent: -9999px;
  width: 20px;
}

.check-no {
  display: inline-block;
  height: 20px;
  text-indent: -9999px;
  width: 20px;
}

.apple-switch-container label {
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 17px;
  min-width: auto;
  vertical-align: middle;
  width: auto;
}

@media (max-width: 576px) {
  .btn.btn-default.btn-pricing {
    font-size: 1em;
    padding: 0 5px;
  }
}

/* https://codeburst.io/pure-css3-input-as-the-ios-checkbox-8b6347d5cefb */
input.apple-switch {
  position: relative;
  -webkit-appearance: none;
  outline: none;
  width: 50px;
  height: 30px;
  background-color: white;
  border: 1px solid #f1d8cb;
  border-radius: 50px;
  box-shadow: inset -20px 0 0 0 #a6c9b0;
  margin: 0 10px;
}
input.apple-switch::after {
  content: "";
  position: absolute;
  display: block;
  top: 1px;
  left: 1px;
  background: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}
input.apple-switch:checked {
  box-shadow: inset 20px 0 0 0 rgba(166, 201, 176, 0.8);
  border-color: #f1d8cb;
}
input.apple-switch:checked::after {
  left: 20px;
  box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.05);
}

/* FLEXIBLE CONTENT BLOCK - IMAGE/TEXT COMBO
-------------------------------------------------- */
.image-text-combo {
  background-color: #3f5162;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 400px;
  color: #ffffff;
}
@media (min-width: 576px) {
  .image-text-combo {
    background-position: calc(((100vw - 510px) / 2) + 225px) center;
    background-size: auto 100%;
  }
}
@media (min-width: 768px) {
  .image-text-combo {
    background-position: calc(((100vw - 690px) / 2) + 300px) center;
  }
}
@media (min-width: 992px) {
  .image-text-combo {
    background-position: calc(((100vw - 930px) / 2) + 400px) center;
  }
}
@media (min-width: 1200px) {
  .image-text-combo {
    background-position: calc(((100vw - 1140px) / 2) + 475px) center;
  }
}
.image-text-combo > .container > .row {
  padding-top: 400px;
}
@media (min-width: 576px) {
  .image-text-combo > .container > .row {
    min-height: 400px;
    padding-top: 0;
  }
}
.image-text-combo.image-text-combo--left {
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto 400px;
}
@media (min-width: 576px) {
  .image-text-combo.image-text-combo--left {
    background-position: right calc(((100vw - 510px) / 2) + 225px) center;
    background-size: auto 100%;
  }
}
@media (min-width: 768px) {
  .image-text-combo.image-text-combo--left {
    background-position: right calc(((100vw - 690px) / 2) + 300px) center;
  }
}
@media (min-width: 992px) {
  .image-text-combo.image-text-combo--left {
    background-position: right calc(((100vw - 930px) / 2) + 400px) center;
  }
}
@media (min-width: 1200px) {
  .image-text-combo.image-text-combo--left {
    background-position: right calc(((100vw - 1140px) / 2) + 475px) center;
  }
}

/* ----- 13.0 Components: General Components ----- */
/* IMAGES
-------------------------------------------------- */
.image--listing-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
}

/* MODAL
-------------------------------------------------- */
.modal-content {
  border-radius: 0;
}

.modal-header {
  background: #f1d8cb;
  border: 0;
  border-radius: 0;
  color: white;
}
.modal-header .close {
  color: white;
}

.modal-footer .btn-secondary {
  background: #f1d8cb;
  border: 0;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.gallery .modal-body img {
  height: auto;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

/* SLICK SLIDER
-------------------------------------------------- */
.image-navigation {
  position: relative;
}
.image-navigation.slick-slider {
  position: relative;
  z-index: 1;
}
.image-navigation.slick-slider .slick-list {
  position: relative;
  z-index: 1;
}
.image-navigation.slick-slider .slick-list .slick-track {
  padding: 30px 0 20px;
}
.image-navigation.slick-slider .slick-list .slick-track .slick-slide {
  opacity: 0.65;
  transform: scale(0.9);
  transform-origin: center center;
  transition: opacity 0.5s ease;
}
.image-navigation.slick-slider .slick-list .slick-track .slick-slide.slick-current {
  opacity: 1;
}
.image-navigation.slick-slider .slick-list .slick-track .slick-slide.slick-current img {
  border-bottom: 2px solid #f1d8cb;
  padding-bottom: 10px;
}
.image-navigation.slick-slider .slick-dots li {
  margin: 0 5px;
  padding: 5px 0;
  width: 15px;
}
.image-navigation.slick-slider .slick-dots li:hover::before {
  background: #f1d8cb;
}
.image-navigation.slick-slider .slick-dots li::before {
  background: gray;
  border-radius: 0;
  height: 2px;
  width: 20px;
}
.image-navigation.slick-slider .slick-dots li.slick-active::before {
  background: #f1d8cb;
}

/* BLOG
-------------------------------------------------- */
.blog-listing-image-wrapper {
  z-index: 10;
}
.blog-listing-image-wrapper .blog-listing-image {
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 90px;
  min-height: 90px;
  opacity: 1;
  position: relative;
}
@media (min-width: 576px) {
  .blog-listing-image-wrapper .blog-listing-image {
    height: 180px;
    min-height: 180px;
  }
}
@media (min-width: 992px) {
  .blog-listing-image-wrapper .blog-listing-image.blog-listing-image-larger {
    height: 210px;
    min-height: 210px;
  }
  .blog-listing-image-wrapper .blog-listing-image.blog-listing-image-medium {
    height: 220px;
    min-height: 220px;
  }
  .blog-listing-image-wrapper .blog-listing-image.blog-listing-image-smaller {
    height: 150px;
    min-height: 150px;
  }
}
@media (min-width: 1200px) {
  .blog-listing-image-wrapper .blog-listing-image.blog-listing-image-larger {
    height: 260px;
    min-height: 260px;
  }
}
.blog-listing-image-wrapper .blog-listing-image.blog-listing-image-sidebar {
  height: 210px;
  min-height: 210px;
}
.blog-listing-image-wrapper .blog-listing-image.blog-listing-image-micro {
  margin-right: 10px;
  height: 40px;
  min-height: 40px;
  width: 60px;
  vertical-align: top;
}
.blog-listing-image-wrapper .blog-listing-image:hover::before {
  transform: rotate(4deg);
  z-index: -1;
}
.blog-listing-image-wrapper .blog-listing-image::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  transform: rotate(-4deg);
  transition: transform 0.25s ease;
  width: 100%;
  z-index: -1;
}
.blog-listing-image-wrapper:nth-of-type(1n) .blog-listing-image::before {
  background: #a6c9b0;
}
.blog-listing-image-wrapper:nth-of-type(2n) .blog-listing-image::before {
  background: #f1d8cb;
}
.blog-listing-image-wrapper:nth-of-type(3n) .blog-listing-image::before {
  background: #b9cfce;
}

ul.pagination {
  list-style-type: none;
  display: inline-block;
  background: transparent;
  border: none;
}
ul.pagination li {
  background: none;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin: 2px;
  display: inline-block;
  transition: all 0.25s linear;
}
ul.pagination li > span,
ul.pagination li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
ul.pagination li.active {
  background: #3f5162;
  border: 1px solid #3f5162;
}
ul.pagination li.active > span,
ul.pagination li.active a {
  color: white;
}
ul.pagination li.active:hover {
  transition: all 0.25s linear;
  background: #3f5162;
  border: 1px solid #3f5162;
}
ul.pagination li.active:hover > span,
ul.pagination li.active:hover a {
  color: white;
}
ul.pagination li:hover {
  transition: all 0.25s linear;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #f1d8cb;
}
ul.pagination li:hover > span,
ul.pagination li:hover a {
  color: #3f5162;
  text-decoration: none;
}
ul.pagination li:before {
  display: none;
}

/* NOTIFICATIONS
-------------------------------------------------- */
.alert.notification-panel {
  background: rgba(63, 81, 98, 0.6);
  border-radius: 0;
  color: #ffffff;
  margin: 60px 0 0;
  padding-bottom: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.alert.notification-panel.alert-dismissible .close {
  top: -16px;
}
.alert.notification-panel a,
.alert.notification-panel h1,
.alert.notification-panel h2,
.alert.notification-panel h3,
.alert.notification-panel h4,
.alert.notification-panel h5,
.alert.notification-panel h6,
.alert.notification-panel p,
.alert.notification-panel p a,
.alert.notification-panel p strong {
  color: #ffffff;
}
.alert.notification-panel a,
.alert.notification-panel p a {
  border-bottom: 1px dashed #ffffff;
  text-decoration: none;
}
.alert.notification-panel a:hover,
.alert.notification-panel p a:hover {
  border-bottom: 1px solid #ffffff;
  text-decoration: none;
}
.alert.notification-panel button span {
  color: #ffffff;
}

/* FOOTER
-------------------------------------------------- */
footer {
  background: #a6c9b0;
  color: white;
}
footer a {
  color: white;
  font-weight: 300;
}
footer a:active {
  color: rgba(255, 255, 255, 0.5);
}
footer a:focus {
  color: rgba(255, 255, 255, 0.5);
}
footer a:hover {
  color: rgba(255, 255, 255, 0.5);
}
footer p {
  color: white;
  font-weight: 300;
}
footer small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}
footer small a {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  vertical-align: middle;
}
.social-links li {
  display: inline-block;
  height: 40px;
  margin-left: 5px;
  vertical-align: middle;
}
.social-links li.border-right {
  border-right: 1px solid #f1d8cb !important;
  margin-right: 10px;
  padding-right: 20px;
}
.social-links li a {
  color: white;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  width: 20px;
  transition: none;
}
.social-links li.icon-instagram a {
  background: transparent url("../img/svg/img-sprite.svg") repeat-y -1325px center;
  background-size: 2400px 80px;
}
.social-links li.icon-instagram a:active {
  background-position: -1365px center;
}
.social-links li.icon-instagram a:focus {
  background-position: -1365px center;
}
.social-links li.icon-instagram a:hover {
  background-position: -1365px center;
}
.social-links li.icon-linkedin a {
  background: transparent url("../img/svg/img-sprite.svg") repeat-y -1305px center;
  background-size: 2400px 80px;
}
.social-links li.icon-linkedin a:active {
  background-position: -1265px center;
}
.social-links li.icon-linkedin a:focus {
  background-position: -1265px center;
}
.social-links li.icon-linkedin a:hover {
  background-position: -1265px center;
}
.social-links li.icon-tel a {
  padding-left: 20px;
  position: relative;
  width: auto;
}
@media (min-width: 768px) {
  .social-links li.icon-tel a {
    padding-left: 30px;
  }
}
.social-links li.icon-tel a::before {
  content: "";
  position: absolute;
  display: block;
  background: transparent url("../img/svg/img-sprite.svg") repeat-y -1145px center;
  background-size: 2400px 80px;
  height: 40px;
  left: 0;
  top: 0;
  width: 20px;
}
.social-links li.icon-tel a:active {
  color: #f1d8cb;
  text-decoration: none;
}
.social-links li.icon-tel a:active::before {
  background-position: -1185px center;
}
.social-links li.icon-tel a:focus {
  color: #f1d8cb;
  text-decoration: none;
}
.social-links li.icon-tel a:focus::before {
  background-position: -1185px center;
}
.social-links li.icon-tel a:hover {
  color: #f1d8cb;
  text-decoration: none;
}
.social-links li.icon-tel a:hover::before {
  background-position: -1185px center;
}
.social-links li.icon-email a {
  background: transparent url("../img/svg/img-sprite.svg") repeat-y -1205px center;
  background-size: 2400px 80px;
}
.social-links li.icon-email a:active {
  background-position: -1245px center;
}
.social-links li.icon-email a:focus {
  background-position: -1245px center;
}
.social-links li.icon-email a:hover {
  background-position: -1245px center;
}

.social-links-alt {
  margin: 0;
  padding: 0;
}
.social-links-alt li {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  vertical-align: middle;
}
.social-links-alt li a {
  background: white;
  border-radius: 50%;
  display: block;
  height: 40px;
  margin-right: 10px;
  position: relative;
  width: 40px;
}
.social-links-alt li a::before {
  content: "";
  position: absolute;
  display: block;
  background: transparent url("../img/svg/img-sprite.svg") no-repeat -1185px center;
  background-size: 2400px 80px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translateX(-10px) translateY(-10px);
  width: 20px;
}
.social-links-alt li a:active {
  opacity: 0.5;
}
.social-links-alt li a:focus {
  opacity: 0.5;
}
.social-links-alt li a:hover {
  opacity: 0.5;
}
.social-links-alt li.icon-linkedin a::before {
  background-position: -1265px center;
}
.social-links-alt li.icon-instagram a::before {
  background-position: -1365px center;
}

.footer {
  background: #c2a7a3;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer .footer-brand {
  margin: 0;
  transition: width 0.01s linear;
  width: 180px;
  height: 100px;
  background: url("../img/svg/img-sprite.svg") no-repeat -180px center;
  background-size: auto 100px;
  transition: all 0.25s ease-out;
}
@media (min-width: 576px) {
  .footer .footer-menu-wrapper {
    border-left: 1px solid #f1d8cb;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .footer .footer-menu-wrapper {
    height: 100%;
  }
}
.footer .footer-menu-wrapper p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.footer .footer-menu-wrapper p a:active {
  color: #f1d8cb;
  text-decoration: none;
}
.footer .footer-menu-wrapper p a:focus {
  color: #f1d8cb;
  text-decoration: none;
}
.footer .footer-menu-wrapper p a:hover {
  color: #f1d8cb;
  text-decoration: none;
}
.footer ul.footer-nav {
  height: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer ul.footer-nav li {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
}
.footer ul.footer-nav li h6 {
  color: white;
  display: none;
  font-size: 1.1rem;
  padding-bottom: 10px;
}
.footer ul.footer-nav li a:active {
  color: #f1d8cb;
  text-decoration: none;
}
.footer ul.footer-nav li a:focus {
  color: #f1d8cb;
  text-decoration: none;
}
.footer ul.footer-nav li a:hover {
  color: #f1d8cb;
  text-decoration: none;
}
.footer ul.footer-nav li a.dropdown-toggle:after {
  display: none;
}
.footer ul.footer-nav li ul.dropdown-menu {
  display: block;
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  margin: 15px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.footer ul.footer-nav li ul.dropdown-menu li {
  padding: 0;
}
.footer ul.footer-nav li ul.dropdown-menu li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer ul.footer-nav li ul.dropdown-menu li a:active {
  color: rgba(255, 255, 255, 0.5);
}
.footer ul.footer-nav li ul.dropdown-menu li a:focus {
  color: rgba(255, 255, 255, 0.5);
}
.footer ul.footer-nav li ul.dropdown-menu li a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/*# sourceMappingURL=style.min.css.map */
