@charset "UTF-8";
/*!
Theme Name: Novo Detox 2023
Theme URI: https://blueinteractiveagency.com/
Author: Blue Interactive Agency
Author URI: https://blueinteractiveagency.com/
Description:
Requires at least: WordPress 4.9.6
Version: 1.4
*/
/* animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2021 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@media (min-width: 767px) {
  .opacity0 {
    opacity: 0;
  }
  .opacity0.animate__zoomIn {
    opacity: 1;
  }
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 1;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 1;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.col-sm-1 {
  width: 8.3333333333%;
}

.col-sm-2 {
  width: 16.6666666667%;
}

.col-sm-3 {
  width: 25%;
}

.col-sm-4 {
  width: 33.3333333333%;
}

.col-sm-5 {
  width: 41.6666666667%;
}

.col-sm-6 {
  width: 50%;
}

.col-sm-7 {
  width: 58.3333333333%;
}

.col-sm-8 {
  width: 66.6666666667%;
}

.col-sm-9 {
  width: 75%;
}

.col-sm-10 {
  width: 83.3333333333%;
}

.col-sm-11 {
  width: 91.6666666667%;
}

.col-sm-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-1 {
    width: 8.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

  .col-lg-12 {
    width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
}

div, section, article, aside, form, input, video, figure, iframe, label, main, select, header, footer {
  display: block;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-weight: 300;
  display: block;
  font-family: "Work Sans", "sans-serif";
  overflow-x: hidden;
}
body.logged-in .skip-to-content:focus {
  top: 32px;
}

.skip-to-content {
  position: fixed;
  top: -120px;
  opacity: 0;
  z-index: 999999;
}
.skip-to-content:focus {
  top: 0;
  opacity: 1;
}

.hidden {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  text-indent: -9999px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.3;
  color: #216778;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  display: block;
  position: relative;
  text-transform: none;
  font-size: 18px;
  color: #102234;
  font-weight: 400;
  font-family: "Work Sans", "sans-serif";
}
@media (min-width: 768px) {
  h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    font-size: 24px;
    margin-bottom: 0px;
  }
}

h1, .h1-styling {
  font-size: 30px;
}
@media (min-width: 768px) {
  h1, .h1-styling {
    font-size: 40px;
  }
}

h2, .h2-styling {
  font-size: 26px;
}
@media (min-width: 768px) {
  h2, .h2-styling {
    font-size: 34px;
  }
}

h3, .h3-styling {
  font-size: 24px;
}
@media (min-width: 768px) {
  h3, .h3-styling {
    font-size: 28px;
  }
}

h4 {
  font-size: 20px;
  color: #216778;
}

ul, ol {
  margin: 0 0 20px 30px;
}

ul.icon-list {
  list-style: none;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
ul.icon-list img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
ul.icon-list li {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 5px;
}
@media (min-width: 1025px) {
  ul.icon-list li {
    padding: 0 10px;
    width: 50%;
  }
}
ul.icon-list li a {
  color: #216778;
}
ul.icon-list li a:hover, ul.icon-list li a:focus {
  color: #365F38;
}

p, blockquote {
  margin-bottom: 20px;
  line-height: 24px;
}

blockquote {
  border-bottom: 1px solid #216778;
  padding-bottom: 20px;
}
blockquote p {
  font-style: italic;
  font-size: 1.1rem;
}
blockquote cite {
  color: #216778;
}

a {
  text-decoration: underline;
  color: #0b819c;
  font-weight: 400;
}
a:hover, a:focus {
  color: #216778;
  text-decoration: none;
}
p a {
  text-decoration: underline;
}

.btn, .button, .wp-block-button__link {
  display: inline-block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #216778;
  background: #216778;
  position: relative;
  padding: 3px 0;
  cursor: pointer;
}
.btn:before, .button:before, .wp-block-button__link:before {
  content: "";
  position: absolute;
  left: -22px;
  top: 3px;
  height: 46px;
  width: 26px;
  -webkit-clip-path: polygon(82% 0, 100% 0, 100% 100%, 20% 100%);
          clip-path: polygon(82% 0, 100% 0, 100% 100%, 20% 100%);
  background: #fff;
  z-index: 9;
  transition: 0.3s ease-in-out;
}
.btn:after, .button:after, .wp-block-button__link:after {
  content: "";
  position: absolute;
  right: -24px;
  top: 3px;
  height: 46px;
  width: 26px;
  -webkit-clip-path: polygon(82% 0, 0 0, 0 100%, 20% 100%);
          clip-path: polygon(82% 0, 0 0, 0 100%, 20% 100%);
  background: #fff;
  z-index: 9;
  transition: 0.3s ease-in-out;
}
.btn > span, .button > span, .wp-block-button__link > span {
  background: #fff;
  color: #216778;
  padding: 15px 30px 15px;
  position: relative;
  transition: 0.3s ease-in-out;
  display: block;
}
.btn > span:before, .button > span:before, .wp-block-button__link > span:before {
  content: "";
  position: absolute;
  left: -26px;
  top: -3px;
  height: 52px;
  width: 26px;
  -webkit-clip-path: polygon(90% 0, 100% 0, 100% 100%, 20% 100%);
          clip-path: polygon(90% 0, 100% 0, 100% 100%, 20% 100%);
  background: #216778;
}
.btn > span:after, .button > span:after, .wp-block-button__link > span:after {
  content: "";
  position: absolute;
  right: -26px;
  top: -3px;
  height: 52px;
  width: 26px;
  -webkit-clip-path: polygon(90% 0, 0 0, 0 100%, 20% 100%);
          clip-path: polygon(90% 0, 0 0, 0 100%, 20% 100%);
  background: #216778;
}
.btn > span > span, .button > span > span, .wp-block-button__link > span > span {
  font-weight: 300;
}
.btn.phone-num, .button.phone-num, .wp-block-button__link.phone-num {
  -webkit-clip-path: initial;
          clip-path: initial;
}
.btn:hover > span, .btn:focus > span, .button:hover > span, .button:focus > span, .wp-block-button__link:hover > span, .wp-block-button__link:focus > span {
  background: #216778;
  color: #fff;
}
.btn:hover:before, .btn:hover:after, .btn:focus:before, .btn:focus:after, .button:hover:before, .button:hover:after, .button:focus:before, .button:focus:after, .wp-block-button__link:hover:before, .wp-block-button__link:hover:after, .wp-block-button__link:focus:before, .wp-block-button__link:focus:after {
  background: #216778;
}
.btn.revert, .button.revert, .wp-block-button__link.revert {
  background: #365F38;
  color: #fff;
}
.btn.revert:hover, .btn.revert:focus, .button.revert:hover, .button.revert:focus, .wp-block-button__link.revert:hover, .wp-block-button__link.revert:focus {
  background: #216778;
  color: #fff;
}
.btn.white, .button.white, .wp-block-button__link.white {
  background: #fff;
  color: #216778;
}
.btn.white > span:before, .btn.white > span:after, .button.white > span:before, .button.white > span:after, .wp-block-button__link.white > span:before, .wp-block-button__link.white > span:after {
  background: #fff;
}

a, .btn, .button, .wp-block-button__link {
  transition: all 300ms ease-out;
}

.btn, .button, .wp-block-button__link {
  text-decoration: none;
}

.row, .wp-block-columns {
  margin: 0 auto;
  width: 100%;
  max-width: 1640px;
}
.row.wide, .wp-block-columns.wide {
  max-width: 1920px;
}
.row:after, .wp-block-columns:after {
  content: " ";
  clear: both;
  display: block;
}
.row.no-padding, .wp-block-columns.no-padding {
  padding: 0;
}
.row.narrow, .wp-block-columns.narrow {
  max-width: 1000px;
}

.wp-block-columns {
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .wp-block-columns {
    padding: 70px 20px;
  }
}

[class*=col-], [class*=" col-"] {
  padding: 0 20px;
}

.centered {
  float: none;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.flexit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.flexit.align-top {
  align-items: flex-start;
}
.flexit.align-bottom {
  align-items: flex-end;
}
.flexit.swap {
  flex-direction: row-reverse;
}

.no-gutter {
  padding: 0;
}

img {
  margin: 0;
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

.wp-block-embed iframe {
  width: 100%;
  min-height: 320px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .wp-block-embed iframe {
    min-height: 540px;
  }
}

.sections-alternate .row {
  background: #fff;
}

form {
  padding: 20px;
}
form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
form label {
  margin-bottom: 20px;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
}
form label img {
  display: inline-block;
  border: 1px solid #e1e1e1;
  border-right: none;
  vertical-align: middle;
}
form input[type=text], form input[type=tel], form input[type=email], form input[type=numbers], form input[type=date], form textarea {
  border: 1px solid #e1e1e1;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 7px 10px;
  font-size: 1rem;
  margin-top: 5px;
  height: 45px;
  font-size: 15px;
  font-family: "Work Sans", "sans-serif";
}
form textarea {
  height: 150px;
  max-width: 100%;
  padding-top: 10px;
}
form button, form .btn {
  border: none;
  margin-top: 30px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-section > li:first-child:not(.form-line-column):not([data-type=control_head]):not([data-type=control_payment]):not([data-type=control_text]):not([data-type=control_button]):not([data-type=control_collapse]), .page-section > li:nth-child(2):not(.form-line-column):not([data-type=control_head]):not([data-type=control_paymrnt]):not([data-type=control_text]):not([data-type=control_button]):not([data-type=control_collapse]) {
  margin-top: 0;
}

.jotform-form input[type=text], .jotform-form input[type=tel], .jotform-form input[type=email], .jotform-form input[type=numbers], .jotform-form input[type=date], .jotform-form textarea {
  border: none;
  border-left: 1px solid #e1e1e1;
  margin: 0;
}
.jotform-form .form-error-message {
  position: absolute;
  display: block;
  background: #ff4848;
  bottom: calc(100% + 10px);
  padding: 5px;
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.jotform-form .form-error-message img {
  max-width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.jotform-form .form-error-message .form-error-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ff4848 transparent transparent transparent;
  position: absolute;
  bottom: -8px;
  left: 9px;
}
.jotform-form li {
  border: 1px solid #e1e1e1;
  background: #fff;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
}
.jotform-form li[data-type=control_button], .jotform-form li[data-type=control_head] {
  border: none;
  background: none;
}
.jotform-form li[data-type=control_textarea], .jotform-form li[data-type=control_address] {
  align-items: flex-start;
}
.jotform-form li[data-type=control_textarea] .input-icon, .jotform-form li[data-type=control_address] .input-icon {
  padding-top: 5px;
}
.jotform-form li[data-type=control_divider] {
  border: none;
  background: none;
}
.jotform-form li div {
  width: calc(100% - 36px);
}
.jotform-form li div#cid_2 {
  width: 100%;
  margin: 0 auto;
}
.jotform-form li div#cid_2 > div {
  width: 100%;
}
.jotform-form li div[data-component=divider] {
  margin: 0 auto;
  width: 100%;
  display: block;
}
.jotform-form li[data-type=control_divider] > div {
  margin: 0 auto;
}
.jotform-form .button {
  margin-top: 0;
}
.jotform-form .button svg {
  width: 28px;
  display: inline-block;
  vertical-align: middle;
}
.jotform-form .button svg polygon {
  transition: all 300ms ease-out;
}
.jotform-form .button span {
  display: inline-block;
  vertical-align: middle;
}
.jotform-form .button:hover svg polygon, .jotform-form .button:focus svg polygon {
  fill: #fff;
}
.jotform-form .button.dark svg polygon {
  fill: #fff;
}
.jotform-form .button.dark:hover svg polygon, .jotform-form .button.dark:focus svg polygon {
  fill: #fff;
}
.jotform-form .input-icon {
  width: 38px;
  display: flex;
  align-items: center;
}
.jotform-form .input-icon img {
  max-width: 100%;
  margin: 0;
}

.white-bg {
  background: #fff;
}

.breadcrumbs {
  font-weight: 600;
  margin-bottom: 40px;
}
.banner .breadcrumbs {
  color: #fff;
}
.banner .breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
.banner .breadcrumbs a:hover, .banner .breadcrumbs a:focus {
  color: #365F38;
}

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-on-mobile {
    display: none !important;
  }
}
@media (max-width: 767px) {
  #content {
    text-align: center;
  }
  #content section.quad, #content section.single-section img {
    margin: 0 auto 40px;
    height: auto !important;
  }
}
@media (max-width: 1024px) {
  .show-on-desktop {
    display: none !important;
  }

  .tablet-text-center {
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .hide-on-desktop {
    display: none !important;
  }
}
.social-list {
  list-style: none;
  margin: 0 auto;
  display: block;
}
.social-list li {
  display: inline-block;
  margin-right: 30px;
}
.social-list li:last-of-type {
  margin-right: 0;
}
.social-list li a {
  display: block;
  text-align: center;
  width: inherit;
  height: 30px;
  color: #fff;
  font-size: 25px;
  color: #C3E6EE;
}
.social-list li a svg {
  height: 30px;
  width: inherit;
  fill: #fff;
  transition: all 300ms ease-out;
}
.social-list li a:hover, .social-list li a:focus {
  color: #BDDCBA;
}
.social-list li a:hover svg, .social-list li a:focus svg {
  fill: #BDDCBA;
}

.wp-pagenavi {
  font-weight: 600;
  margin-top: 40px;
}
.wp-pagenavi a {
  color: #216778;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50%;
  padding: 0;
  background: none;
}
.wp-pagenavi span {
  border: none;
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin: 0 10px 0 0;
  font-size: 17px;
  padding: 0;
}
.wp-pagenavi span:not(.extend), .wp-pagenavi a {
  display: inline-block;
  vertical-align: middle;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  margin: 0 10px 0 0;
  border: none;
}
.wp-pagenavi span:not(.extend):hover, .wp-pagenavi span:not(.extend):focus, .wp-pagenavi span:not(.extend).current, .wp-pagenavi a:hover, .wp-pagenavi a:focus, .wp-pagenavi a.current {
  color: #fff;
  background: #216778;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink, .wp-pagenavi a.first, .wp-pagenavi a.last {
  width: auto;
  padding: 0 20px;
  color: #216778;
  background: none;
}
.wp-pagenavi a.nextpostslink:hover, .wp-pagenavi a.nextpostslink:focus, .wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.previouspostslink:focus, .wp-pagenavi a.first:hover, .wp-pagenavi a.first:focus, .wp-pagenavi a.last:hover, .wp-pagenavi a.last:focus {
  color: #365F38;
}

form.searchform {
  max-width: 500px;
  margin: 0 auto 30px;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}
form.searchform label {
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  color: #216778;
  text-transform: uppercase;
}
form.searchform input {
  width: calc(100% - 58px);
  margin: 0;
  height: 58px;
  border: 1px solid #80BB78;
  padding: 0 15px;
  font-family: "Work Sans", "sans-serif";
  color: #216778;
  font-size: 18px;
}
form.searchform input::-moz-placeholder {
  color: #216778;
}
form.searchform input:-ms-input-placeholder {
  color: #216778;
}
form.searchform input::placeholder {
  color: #216778;
}
form.searchform button {
  height: 58px;
  width: 58px;
  background: #80BB78;
  color: #fff;
  margin-top: 0;
  transition: all 300ms ease-out;
}
form.searchform button svg {
  height: 20px;
  margin: 3px 0 0;
  fill: #fff;
}
form.searchform button:hover, form.searchform button:focus {
  background: #37ADC8;
}

.wp-block-categories-list li a {
  text-transform: capitalize;
}

.single:not(.single-city-pages) #content:not(.full) {
  max-width: 1620px;
  margin: 0 auto;
}
.single:not(.single-city-pages) #content:not(.full) iframe {
  width: 100%;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./assets/images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 64px;
  width: 29px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  top: calc(50% - 32px);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  background: none;
  transition: all 300ms ease-out;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
  color: #fff;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  height: 40px;
  display: block;
  line-height: 1;
  color: #fff;
  opacity: 1;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 5px;
  z-index: 999;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 28px solid #37ADC8;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 20px;
}
.slick-prev:before {
  content: "";
  margin-right: 5px;
}
[dir=rtl] .slick-prev:before {
  content: "";
  margin-right: 0px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  [dir=rtl] .slick-prev {
    left: auto;
    right: 10px;
  }
}
.simple-slider .slick-prev {
  left: 20px;
}
[dir=rtl] .simple-slider .slick-prev {
  left: auto;
  right: 20px;
}

.slick-next {
  right: 5px;
  z-index: 999;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 28px solid #37ADC8;
}
[dir=rtl] .slick-next {
  left: 20px;
  right: auto;
}
.slick-next:before {
  content: "";
  margin-left: 5px;
}
[dir=rtl] .slick-next:before {
  content: "";
  margin-right: 0px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  [dir=rtl] .slick-next {
    right: auto;
    left: 10px;
  }
}
.simple-slider .slick-next {
  right: 20px;
}
[dir=rtl] .simple-slider .slick-next {
  right: auto;
  left: 20px;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  left: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: auto;
  width: auto;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li:only-child {
  display: none;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 30px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 30px;
  height: 30px;
  font-family: "FontAwesome";
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
}
.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 1;
}

header {
  transition: all 500ms ease-out;
  padding: 5px 0 0;
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: #fff;
}
@media (min-width: 768px) {
  header {
    padding: 8px 0 0;
  }
}
header.scrolled {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  header.scrolled .phone-num {
    top: 20px;
  }
  header.scrolled .toggle-menu {
    top: 25px;
  }
}
@media (min-width: 1050px) {
  header.scrolled .phone-num {
    top: 20px;
  }
}
header.scrolled.down {
  top: -100%;
}
@media (min-width: 768px) {
  header.scrolled.down {
    top: 0;
  }
}
header.scrolled.up {
  top: 0;
}
header .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 0 20px;
  max-width: 1585px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  header .row {
    justify-content: space-between;
  }
}
header .logo {
  width: 100%;
  max-width: 50%;
  order: 1;
  max-width: 180px;
  padding: 0 10px 0 0;
}
@media (min-width: 1050px) {
  header .logo {
    order: 0;
    text-align: center;
  }
}
@media (min-width: 1450px) {
  header .logo {
    max-width: 315px;
    padding: 0;
  }
}
header .btn-holder {
  order: 2;
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 1450px) {
  header .btn-holder {
    width: calc(100% - 240px);
    padding: 0 10px;
  }
}
@media (min-width: 1050px) {
  header .btn-holder {
    width: auto;
    order: 3;
  }
}
header .toggle-menu {
  max-width: 38px;
  display: block;
  order: 3;
  text-decoration: none;
  width: 100%;
  margin-top: -11px;
  z-index: 9;
}
header .toggle-menu svg {
  fill: #216778;
  margin: 0 0 -5px;
  display: block;
  transition: all 300ms ease-out;
}
header .toggle-menu span {
  color: #216778;
  font-size: 0.7rem;
  line-height: 0.5;
  text-transform: uppercase;
  transition: all 300ms ease-out;
}
header .toggle-menu:hover svg, header .toggle-menu:focus svg {
  fill: #C3E6EE;
}
header .toggle-menu:hover span, header .toggle-menu:focus span {
  color: #C3E6EE;
}
@media (min-width: 1050px) {
  header .toggle-menu {
    display: none;
  }
}
header .phone-num {
  margin: 0 10px 0 0;
  order: 2;
  text-decoration: none;
  font-family: "Work Sans", "sans-serif";
  background: none;
  padding: 0;
  max-width: 69px;
  display: inline-block;
  align-items: center;
  color: #fff;
  font-weight: 200;
  font-size: 16px;
  line-height: 20px;
}
header .phone-num__svg-holder {
  display: inline-block;
  background: #37ADC8;
  border-radius: 100%;
  width: 61.95px;
  height: 61.95px;
  border: 3px solid #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  header .phone-num__svg-holder {
    width: 50px;
    height: 50px;
  }
}
header .phone-num svg {
  width: 100%;
  height: 100%;
  max-width: 30.12px;
  max-height: 50%;
  transition: all 300ms ease-out;
  fill: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .phone-num__num-holder {
  -webkit-clip-path: polygon(6% 0, 100% 1%, 94% 100%, 0% 100%);
          clip-path: polygon(6% 0, 100% 1%, 94% 100%, 0% 100%);
  background: #37adc8;
  background: linear-gradient(111deg, #37adc8 0%, #37adc8 30%, #6abd74 50%, #6cbe70 100%);
  padding: 8px 50px 8px 60px;
  margin-left: -40px;
}
header .phone-num:after {
  display: none;
}
header .phone-num:hover, header .phone-num:focus {
  background: none;
  color: #102234;
}
header .phone-num:hover svg, header .phone-num:focus svg {
  fill: #102234;
}
@media (min-width: 1050px) {
  header .phone-num {
    margin-right: -25px;
  }
}
@media (min-width: 768px) {
  header .phone-num {
    margin-top: -10px;
    z-index: 1;
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-width: 280px;
  }
  header .phone-num svg {
    width: 60px;
    margin-right: 15px;
  }
  header .phone-num span {
    display: inline-block;
    vertical-align: middle;
  }
  header .phone-num span span {
    font-weight: 600;
    font-size: 19px;
  }
}

.main-nav-holder {
  position: fixed;
  transition: all 300ms ease-out;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: -100%;
  z-index: 99;
  background: #216778;
}
@media (min-width: 768px) {
  .main-nav-holder {
    max-width: 480px;
  }
}
.main-nav-holder .toggle-menu {
  position: absolute;
  top: 27px;
  right: 27px;
  z-index: 99;
}
.main-nav-holder .toggle-menu svg {
  fill: #fff;
}
.main-nav-holder.opened {
  right: 0;
}
.main-nav-holder nav {
  width: 80%;
}
.main-nav-holder nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav-holder nav ul li {
  margin: 0 0 10px;
  min-height: 45px;
  display: flex;
  align-items: center;
}
.main-nav-holder nav ul li:last-of-type {
  margin: 0;
}
.main-nav-holder nav ul li.current_page_item > a {
  color: #B5DEB7;
}
.main-nav-holder nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-transform: none;
  font-family: "Work Sans", "sans-serif";
  font-weight: 500;
}
.main-nav-holder nav ul li a:hover, .main-nav-holder nav ul li a:focus {
  color: #B5DEB7;
  text-decoration: underline;
}
@media (min-width: 1025px) {
  .main-nav-holder nav ul li a:hover, .main-nav-holder nav ul li a:focus {
    color: #37ADC8;
  }
}
.main-nav-holder nav ul li.menu-item-has-children {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-nav-holder nav ul li .expand-menu {
  padding: 2px 12px;
  background: #B5DEB7;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}
.main-nav-holder nav ul li .expand-menu svg {
  width: 20px;
  height: 21px;
  margin: 7px 0 0;
  fill: #216778;
}
.main-nav-holder nav ul li .sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 100px;
  background: #216778;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 20px;
  transition: all 300ms ease-out;
  left: 100%;
  overflow: scroll;
}
.main-nav-holder nav ul li .sub-menu.opened {
  left: 0;
}
.main-nav-holder nav ul li .sub-menu .back-header {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  min-height: 0;
}
.main-nav-holder nav ul li .sub-menu .back-header .back-tab svg {
  display: inline-block;
  vertical-align: middle;
  height: 22px;
  fill: #fff;
  margin-top: -3px;
}
@media (min-width: 1050px) {
  .main-nav-holder {
    position: initial;
    background: none;
    order: 1;
    justify-content: center;
    max-width: 100%;
    width: auto;
    flex-grow: 1;
  }
}
@media (min-width: 1050px) and (min-width: 1270px) {
  .main-nav-holder {
    margin-left: 55px;
  }
}
@media (min-width: 1050px) {
  .main-nav-holder .toggle-menu {
    display: none;
  }
}
@media (min-width: 1050px) {
  .main-nav-holder nav {
    text-align: center;
    width: 100%;
  }
  .main-nav-holder nav ul {
    display: block;
    margin-bottom: 12px;
  }
  .main-nav-holder nav ul li {
    display: inline-block;
    padding: 0 6px;
    margin-bottom: 0;
    position: relative;
    min-height: 0;
  }
  .main-nav-holder nav ul li.menu-item-has-children {
    display: inline-block;
  }
  .main-nav-holder nav ul li.menu-item-has-children .expand-menu {
    display: none;
  }
  .main-nav-holder nav ul li:first-of-type {
    padding-left: 0;
  }
  .main-nav-holder nav ul li:last-of-type {
    padding-right: 0;
  }
  .main-nav-holder nav ul li:hover ul, .main-nav-holder nav ul li:focus ul {
    display: block;
  }
  .main-nav-holder nav ul li:hover ul.sub-menu, .main-nav-holder nav ul li:focus ul.sub-menu {
    opacity: 1;
    height: auto;
    overflow: visible;
    transform: translateY(0px);
  }
  .main-nav-holder nav ul li a {
    font-size: 15px;
    padding: 4px 0 10px;
    width: 100%;
    box-sizing: border-box;
    color: #216778;
  }
  .main-nav-holder nav ul li .current_page_item a {
    background: #37ADC8;
    color: #fff;
  }
  .main-nav-holder nav ul li ul {
    position: absolute;
    top: 100%;
    width: 325px;
    left: -20px;
    background: #fff;
    height: auto;
    overflow: visible;
  }
  .main-nav-holder nav ul li ul.sub-menu {
    width: 325px;
    height: 0;
    padding-bottom: 0;
    overflow: hidden;
    background: #fff;
    left: -10px;
    top: 115%;
    padding: 0;
    opacity: 0;
    transition: all 300ms ease-out;
    transform: translateY(-10px);
    margin: 0;
    box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(179, 179, 179, 0.3);
  }
  .main-nav-holder nav ul li ul li {
    display: block;
    border-bottom: 1px solid rgba(179, 179, 179, 0.3);
    padding: 0;
  }
  .main-nav-holder nav ul li ul li:last-of-type {
    border-bottom: 0;
  }
  .main-nav-holder nav ul li ul li.menu-item-has-children {
    display: block;
  }
  .main-nav-holder nav ul li ul li.menu-item-has-children a:after {
    display: none;
  }
  .main-nav-holder nav ul li ul li.menu-item-has-children ul {
    display: none;
    left: 100%;
    top: 0;
  }
  .main-nav-holder nav ul li ul li.menu-item-has-children:hover ul, .main-nav-holder nav ul li ul li.menu-item-has-children:focus ul {
    display: block;
  }
  .main-nav-holder nav ul li ul li.back-header {
    display: none !important;
  }
  .main-nav-holder nav ul li ul li a {
    color: #216778;
    text-transform: none;
    text-align: left;
    display: block;
    padding: 10px 20px;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 20px;
  }
  .main-nav-holder nav ul li ul li a:hover, .main-nav-holder nav ul li ul li a:focus {
    color: #fff;
    background: #37ADC8;
  }
}
@media (min-width: 1450px) {
  .main-nav-holder nav ul li {
    padding: 0 11px;
  }
  .main-nav-holder nav ul li a {
    font-size: 20px;
    padding: 4px 0 20px;
  }
  .main-nav-holder nav ul li ul li a {
    font-size: 18px;
    line-height: 22px;
  }
}

.banner {
  min-height: 350px;
  padding: 120px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-position: center;
  background-size: cover;
  background-image: url(assets/images/banner-default.jpg);
  overflow: hidden;
  background-color: #216778;
}
.banner:before, .banner:after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: multiply;
  background: linear-gradient(114deg, rgba(90, 171, 197, 0) 0%, #5cacc0 30%, #80bb78 100%);
  opacity: 0.6;
}
.banner:after {
  background: linear-gradient(0deg, rgba(45, 59, 142, 0.77) 0%, rgba(45, 59, 142, 0) 100%);
}
.home .banner {
  overflow: hidden;
  position: relative;
}
.home .banner:before {
  display: none;
}
.home .banner:after {
  background: linear-gradient(140deg, rgba(90, 171, 197, 0) 20%, rgba(92, 172, 192, 0.85) 48%, rgba(128, 187, 120, 0.85) 100%);
  opacity: 0.6;
}
.banner__icon-hero {
  background: url(assets/svg/hero-icon.svg) no-repeat top center;
  background-size: contain;
  position: absolute;
  max-width: 808.29px;
  width: 50%;
  height: 100%;
  bottom: -23%;
  right: 0;
  transform: scale(1.2);
}
.banner .row {
  z-index: 3;
  margin-top: 45px;
}
@media (min-width: 768px) {
  .banner .row {
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .banner {
    padding-top: 200px;
    min-height: 596px;
  }
}
@media (min-width: 1025px) {
  .banner {
    padding-top: 240px;
  }
}
@media (min-width: 1025px) {
  .single-drug-silos .banner h1 {
    margin-top: 10px;
  }
}
.banner__copy-home {
  display: inline-block;
}
.home .banner {
  height: 100vh;
  background-image: url(assets/images/home-banner.jpg);
  text-align: center;
}
.home .banner h1 {
  font-size: 39px;
  margin-bottom: 20px;
}
.home .banner h1 span {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .home .banner h1 {
    font-size: 50px;
    padding-right: 30px;
    margin-bottom: 30px;
  }
  .home .banner h1 span {
    font-size: 26px;
  }
}
@media (min-width: 1025px) {
  .home .banner h1 span {
    font-size: 30px;
  }
}
.home .banner .btn {
  background: #fff;
  display: block;
  margin: 0 auto 20px;
  max-width: 270px;
}
.home .banner .btn span:before, .home .banner .btn span:after {
  background: #fff;
}
@media (min-width: 768px) {
  .home .banner .btn {
    display: inline-block;
    margin-right: 45px;
    max-width: initial;
  }
  .home .banner .btn:last-of-type {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .home .banner .row {
    margin-bottom: 100px;
    max-width: 1600px;
  }
}
@media (min-width: 1025px) {
  .home .banner .row {
    margin-bottom: 150px;
  }
}
.banner h1 {
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .banner h1 {
    font-size: 27px;
  }
}
.banner h1 span {
  color: #fff;
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 30px;
}
@media (min-width: 1025px) {
  .banner h1 {
    font-size: 40px;
  }
}
.banner p {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 0px;
  line-height: 1.4;
}
.banner p.h1-styling {
  font-size: 30px;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-bottom: 0;
}
.banner p.h1-styling span {
  color: #fff;
  font-weight: 300;
  display: block;
  text-transform: none;
  font-size: 24px;
}
@media (max-width: 767px) {
  .banner p.h1-styling {
    font-size: 30px;
  }
}
@media (min-width: 1025px) {
  .banner p.h1-styling {
    font-size: 40px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .banner p {
    font-size: 22px;
  }
}
.banner .row {
  position: relative;
  z-index: 4;
  padding: 0px;
  justify-content: center;
}
@media (min-width: 768px) {
  .home .banner .button {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .banner .inner {
    width: 100%;
  }
}

.light-blue {
  background: rgba(195, 230, 238, 0.4);
}

section {
  padding: 50px 0;
}
@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
}
section .h1-styling {
  text-transform: none;
  display: inline-block;
  position: relative;
}
@media (min-width: 1025px) {
  section .h1-styling {
    font-size: 34px;
  }
}
section .h1-styling:before, section .h1-styling:after {
  content: " ";
  position: absolute;
  height: 3px;
  width: 122px;
  background: #C9E5ED;
  right: -150px;
  top: 25px;
}
@media (max-width: 1024px) {
  section .h1-styling:before, section .h1-styling:after {
    display: none;
  }
}
section .h1-styling:before {
  left: -150px;
  right: initial;
}

.cta-section {
  text-align: center;
  position: relative;
}
.cta-section .row {
  position: relative;
  z-index: 2;
}
.cta-section.cta-sidebar {
  background: url(assets/svg/logo-silo.svg) no-repeat #216778 center/auto 90%;
  padding: 65px 15px;
  margin-bottom: 40px;
}
.cta-section.cta-sidebar:after {
  display: none;
}
.cta-section.cta-sidebar h2 {
  font-family: "Work Sans", "sans-serif";
  color: #B5DEB7;
  font-size: 40px;
  margin-bottom: 10px;
}
.cta-section.cta-sidebar p {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 34px;
}
.cta-section h2 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 30px;
}
.cta-section h2 span {
  color: #fff;
}
.cta-section h3 {
  color: #fff;
  margin: 20px 0 0;
}
.cta-section h3 span {
  color: #fff;
}
.cta-section p {
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
}
.cta-section a.btn span {
  font-weight: 600;
}
.cta-section a.btn span .hide-on-mobile {
  font-weight: 600;
}
.cta-section blockquote {
  border: none;
  padding: 0;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  margin-top: 20px;
}
.cta-section.wide-cta {
  background: linear-gradient(90deg, #37adc8 0%, #6cbe70 100%);
}
.cta-section.wide-cta a.btn {
  display: block;
  margin: 0 auto 20px;
  max-width: 270px;
}
@media (min-width: 768px) {
  .cta-section.wide-cta {
    padding: 70px 0;
  }
  .cta-section.wide-cta .narrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1755px;
  }
  .cta-section.wide-cta .narrow h2, .cta-section.wide-cta .narrow h3 {
    position: relative;
    display: inline-block;
    padding: 0 65px;
    margin-bottom: 0;
  }
  .cta-section.wide-cta .narrow h2:before, .cta-section.wide-cta .narrow h2:after, .cta-section.wide-cta .narrow h3:before, .cta-section.wide-cta .narrow h3:after {
    content: "";
    background: #fff;
    position: absolute;
    top: 22px;
    right: 0;
    height: 2px;
    width: 55px;
  }
  .cta-section.wide-cta .narrow h2:before, .cta-section.wide-cta .narrow h3:before {
    left: 0;
    right: initial;
  }
  .cta-section.wide-cta .narrow p {
    text-align: center;
    margin-bottom: 0;
  }
  .cta-section.wide-cta .narrow .btn {
    margin-right: 50px;
    display: inline-block;
    max-width: initial;
  }
  .cta-section.wide-cta .narrow .btn:last-of-type {
    margin-right: 0;
  }
  .cta-section.wide-cta .narrow .btn:last-of-type span {
    font-weight: 700;
  }
  .cta-section.wide-cta .cta-section__copy-side {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .cta-section.wide-cta .cta-section__cta-side {
    margin-top: 40px;
  }
}
@media (min-width: 1025px) {
  .cta-section .cta-section__cta-side {
    margin-top: 0px;
  }
}

.wp-block-gallery {
  padding: 50px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.general {
  text-align: left;
}
.general.bio .bio-img {
  max-width: 320px;
  display: block;
  margin: 0 auto 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .general.bio .bio-img {
    margin-bottom: 40px;
  }
}
.general.bio .bio-img img {
  border: 1px solid #216778;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .general.bio .bio-img {
    float: left;
    margin: 0 20px 20px 0;
    border-width: 20px;
  }
}
@media (min-width: 1025px) {
  .general.bio .bio-img {
    margin: 0 40px 0px 0;
  }
}
.general.bio h1 {
  display: inline-block;
  text-align: center;
}
@media (min-width: 768px) {
  .general.bio h1 {
    position: relative;
    text-align: left;
    max-width: calc(100% - 370px);
  }
  .general.bio h1:after {
    display: none;
  }
}
.general figure img {
  margin-bottom: 30px;
}
.general .blocks-gallery-grid figure img {
  margin-bottom: 0;
}
.general h2, .general h3 {
  margin-bottom: 20px;
}

.related-links {
  margin-top: 40px;
}
.related-links h3 {
  font-family: "Work Sans", "sans-serif";
  font-weight: 400;
  margin-bottom: 20px;
}
.related-links ul {
  margin-bottom: 60px;
  margin-left: 5px;
  list-style: none;
}
.related-links ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.related-links ul li:before {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #216778;
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
}

.single #content:not(.full) .sectional-content {
  padding: 0;
}

.white-bg-form {
  padding-top: 40px;
  background: #fff;
}

.page-id-202 .quad {
  padding-bottom: 0px;
}
.page-id-202 .member-section-slider {
  padding-top: 20px;
}

.map-section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) {
  .map-section {
    display: flex;
  }
}
.map-section__map {
  background: url(https://novodetox.com/wp-content/uploads/2022/12/map-footer-new.jpg) no-repeat 50% 50%;
  background-size: cover;
  height: 399px;
}
@media (min-width: 768px) {
  .map-section__map {
    width: 56.5%;
  }
}
.map-section__copy {
  text-align: center;
  background: linear-gradient(90deg, #37adc8 0%, #6cbe70 100%);
  height: 399px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .map-section__copy {
    width: 43.5%;
  }
}
.map-section__copy:before {
  content: "";
  position: absolute;
  left: -365px;
  top: 0;
  height: 100%;
  width: 366px;
  -webkit-clip-path: polygon(33% 0, 100% 0%, 100% 100%, 100% 100%);
          clip-path: polygon(33% 0, 100% 0%, 100% 100%, 100% 100%);
  background: #37adc8;
}
@media (min-width: 1100px) {
  .map-section__copy {
    padding-left: 3%;
  }
}
@media (min-width: 768px) {
  .map-section__copy {
    justify-content: flex-start;
  }
}
.map-section h2 {
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 0 65px;
  font-size: 30px;
  margin-bottom: 10px;
}
.map-section h2:before, .map-section h2:after {
  content: "";
  background: #fff;
  position: absolute;
  top: 22px;
  right: 0;
  height: 2px;
  width: 55px;
}
.map-section h2:before {
  left: 0;
  right: initial;
}
.map-section p {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
}
.map-section a.btn {
  margin: 0 auto 20px;
  display: block;
  max-width: 270px;
}
.map-section a.btn .hide-on-mobile {
  font-weight: 700;
}
@media (min-width: 1400px) {
  .map-section a.btn {
    display: inline-block;
    margin: 0 45px 0 0;
    max-width: initial;
  }
  .map-section a.btn:last-of-type {
    margin-right: 0;
  }
}

.top-badges {
  padding: 22px 0;
}
.top-badges .flexit {
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-badges .flexit > div {
    width: 50%;
    text-align: center;
  }
}
.top-badges img {
  max-width: 100%;
  max-height: 116px;
  width: auto;
}

footer {
  background: #216778;
  color: #fff;
  padding-top: 40px;
}
footer .row {
  max-width: 1300px;
}
footer a {
  color: #fff;
}
footer a:hover, footer a:focus {
  color: #365F38;
}
footer .light-blue-bg {
  padding: 30px 0 130px;
  background: #0b819c;
  color: #fff;
  margin-top: 30px;
}
@media (min-width: 768px) {
  footer .light-blue-bg {
    padding-bottom: 30px;
  }
}
footer .social-list {
  margin-bottom: 30px;
  text-align: center;
  padding-top: 40px;
}
@media (min-width: 768px) {
  footer .social-list {
    text-align: right;
    padding-top: 0;
  }
}
footer .row {
  align-items: flex-start;
}
footer .logo {
  max-width: 200px;
  margin-bottom: 30px;
}
footer .logo img {
  max-width: 100%;
}
@media (max-width: 768px) {
  footer .logo {
    margin: 0 auto 30px;
    display: block;
  }
}
footer address {
  font-family: "Work Sans", "sans-serif";
  font-style: normal;
  font-weight: 400;
  margin: 10px auto 30px;
  font-size: 16px;
}
footer address svg {
  fill: #fff;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -3px;
}
footer address p {
  margin-bottom: 0;
  line-height: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  footer address p {
    text-align: left;
  }
}
footer .badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px 0;
}
footer .badges .badge {
  width: 50%;
  padding: 10px;
  text-align: center;
}
footer .badges .badge img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  max-height: 110px !important;
}
@media (min-width: 768px) {
  footer .badges .badge {
    width: auto;
    max-width: 25%;
  }
  footer .badges .badge.jcommission img {
    max-width: 130px;
  }
}
@media (min-width: 1025px) {
  footer .badges .badge {
    width: 25%;
    max-width: 25%;
  }
}
@media (min-width: 768px) {
  footer .badges {
    padding-top: 0;
  }
}
footer .copyright {
  font-size: 16px;
  padding: 0 20px;
  font-weight: 400;
  margin: 0;
}
footer .copyright a {
  color: #fff;
}
footer .copyright a:hover, footer .copyright a:focus {
  color: #B5DEB7;
}
footer .secondary-nav {
  text-align: center;
}
footer .secondary-nav ul {
  list-style: none;
  font-family: "Work Sans", "sans-serif";
  margin: 0px auto;
  padding: 0px;
  border-left: none;
  border-right: none;
  display: inline-block;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
}
footer .secondary-nav ul li {
  width: 100%;
  text-align: center;
  display: block;
}
footer .secondary-nav ul li a {
  color: #fff;
  text-decoration: none;
}
footer .secondary-nav ul li a:hover, footer .secondary-nav ul li a:focus {
  color: #BDDCBA;
}
footer .secondary-nav ul li ul {
  display: none;
}
@media (min-width: 768px) {
  footer .secondary-nav ul li {
    text-align: left;
  }
}

.mobile-call-btn {
  position: fixed;
  font-size: 22px;
  background: #37ADC8;
  color: #fff;
  width: 100%;
  z-index: 999;
  bottom: 0;
  left: 0;
  text-decoration: none;
  line-height: 1.2;
  padding: 15px 0 13px;
  box-sizing: border-box;
  font-weight: 700;
  border-top: 1px solid #fff;
  text-align: center;
}
.mobile-call-btn span {
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}
.mobile-call-btn svg {
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  max-width: 35px;
  margin-right: 5px;
  fill: #fff;
}
.mobile-call-btn:hover, .mobile-call-btn:focus {
  background: #365F38;
  color: #fff;
}
@media (min-width: 768px) {
  .mobile-call-btn {
    display: none;
  }
}

/* Thanh New Call Button Style */
.parralelogram {
	transform: skew(-20deg);
}
.call-btn-new {
	background-color: #6bbd70;
	display: inline-block;
	padding: 0.5em 1em 0.5em 1em;
	color: white;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

.call-btn-new:hover {
	background-color: #528155;
}

.skew-fix {
	display: inline-block;
	transform: skew(20deg);
}

.phone-number-bold {
	font-weight: bold;
}