/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

html {
  scroll-behavior: smooth;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

body {
  color: #00384d;
  background: #fff;
  font: 18px/1.666 "lotus-eden", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  min-width: 360px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1199px) {
  body {
    font-size: 17px;
  }
}
@media (max-width: 1023px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 388px) {
  body {
    font-size: 14px;
  }
}

.resize-active .nav-holder {
  transition: none;
}

.gm-style img {
  max-width: none;
}

body.menu-active {
  overflow: hidden;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

/* Paragraphs */
p {
  margin: 0 0 1em;
}
p:last-child {
  margin: 0;
}

strong, b {
  font-weight: 700;
}

/* Anchors */
a {
  color: #00a69c;
  transition: all 0.4s ease;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
  font-family: inherit;
  font-weight: 300;
  margin: 0 0 0.5em;
  color: #00384d;
  line-height: 1.1;
  letter-spacing: 0.6px;
}

h1, .h1 {
  font-size: 64px;
}
@media (max-width: 1439px) {
  h1, .h1 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 45px;
  }
}
@media (max-width: 1023px) {
  h1, .h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 36px;
  }
}

h2, .h2 {
  font-size: 58px;
}
@media (max-width: 1439px) {
  h2, .h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  h2, .h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 36px;
  }
}

h3, .h3 {
  font-size: 32px;
}
@media (max-width: 1439px) {
  h3, .h3 {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  h3, .h3 {
    font-size: 28px;
  }
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 17px;
}

h6, .h6 {
  font-size: 15px;
}

/* Lists */
ul,
ol {
  margin: 14px 0 0;
  padding: 0 0 0 26px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list, ol.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  max-width: 100%;
  height: auto;
}

/* container */
.container {
  max-width: 1250px;
  padding: 0 20px;
  margin: 0 auto;
}
.dnd-section > .row-fluid {
  max-width: 1250px;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding: 0 20px;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}
@media (max-width: 1250px) {
  .container {
    padding: 0 40px;
  }
  .dnd-section > .row-fluid {
    padding: 0 40px;
  }
  [class*=full-width-section] > .row-fluid {
    padding: 0;
  }
  [class*=full-width-section] > .row-fluid .container {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  .dnd-section > .row-fluid {
    padding: 0 15px;
  }
  [class*=full-width-section] > .row-fluid {
    padding: 0;
  }
  [class*=full-width-section] > .row-fluid .container {
    padding: 0 15px;
  }
}


/* Section Header Styles */
.section-header .subtitle {
  display: block;
  color: #287ca8;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 17px;
}
.section-header h2 {
  margin: 0 0 19px;
}
@media (min-width: 768px) {
  .section-header .subtitle {
    font-size: 28px;
  }
}

/* Slick Dots */
.slick-dots {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}
.slick-dots li {
  padding: 3px;
}
.slick-dots li button {
  width: 20px;
  height: 20px;
  transition: 0.3s;
  border: 0;
  border-radius: 50%;
  background: transparent;
  position: relative;
  transition: 0.3s;
}
.slick-dots li button:before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #00384d;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  transition: 0.3s;
}
.slick-dots li.slick-active button:before {
  width: 20px;
  height: 20px;
  background: #00384d;
}
@media (min-width: 768px) {
  .slick-dots {
    margin: 30px 0 0;
  }
  .slick-dots li button {
    width: 30px;
    height: 30px;
  }
  .slick-dots li button:before {
    width: 23px;
    height: 23px;
  }
  .slick-dots li.slick-active button:before {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 1024px) {
  .slick-dots {
    margin: 58px 0 0;
  }
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: var(--gray);
  border-color: var(--gray);
  color: #E6E6E6;
}

/* No button */
.hs-button, .cta_button {
  background: #00a69c;
  border: 1px solid #00a69c;
  padding: 16px 25px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  text-transform: capitalize;
}

.hs-button:hover, .hs-button:focus,
.cta_button:hover, .cta_button:focus {
  background: #00736c;
  border-color: #00736c;
}

.cta_button.btn-white {
  background: #fff;
  border-color: #00384d;
  color: #00384d;
}
.cta_button.btn-white:hover {
  color: #fff;
  background: #00384d;
  border-color: #00384d;
}
/* Fields */
.hs-form-field {
  margin-bottom: 20px;
}

/* Labels */
form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */
form legend {
  font-size: 0.875rem;
}

/* Inputs */
input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  box-sizing: border-box;
  width: 100% !important;
  height: 58px;
  border: 2px solid #00384d;
  border-radius: 5px;
  color: #00384d;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 20px;
  outline: none;
  font-family: "lotus-eden";
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: #00384d;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #00384d;
}

select {
  -webkit-border-radius: 0;
}

textarea {
  height: 130px;
  resize: none !important;
}

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.4rem 0 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* checkbox */
form .inputs-list .hs-form-booleancheckbox {
  padding: 0;
  margin: 0 0 1.4rem;
}
form .inputs-list .hs-form-checkbox label, form .inputs-list .hs-form-booleancheckbox label {
  position: relative;
  cursor: pointer;
  padding: 4px 0 0 30px;
  margin: 0;
}
form input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
form input[type="checkbox"] + span::before {
  border: 2px solid #00384d;
  border-radius: 3px;
  content: "";
  display: block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  width: 22px; 
}
form input[type="checkbox"] + span::after {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  content: "";
  display: block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transition: all .2s ease-out;
  width: 22px;
}
form input[type="checkbox"]:checked + span::before {
  background-color: #00384d;
}
form input[type="checkbox"]:checked + span::after {
  transform: scale(1);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.217' height='13.264'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='m.707 6.19 5.661 5.66L17.51.707'/%3E%3C/svg%3E");
}

/* Inputs - date picker */
.hs-dateinput {
  position: relative;
}
.hs-dateinput input[type="text"] {
  padding: 12px 16px 12px 45px;
}
.hs-dateinput:before {
  content:'';
  position: absolute;
  left: 20px;
  top: 15px;
  height: 19px;
  width: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 8.16667H1.5M12.3333 1.5V4.83333M5.66667 1.5V4.83333M5.5 18.1667H12.5C13.9001 18.1667 14.6002 18.1667 15.135 17.8942C15.6054 17.6545 15.9878 17.272 16.2275 16.8016C16.5 16.2669 16.5 15.5668 16.5 14.1667V7.16667C16.5 5.76654 16.5 5.06647 16.2275 4.53169C15.9878 4.06129 15.6054 3.67883 15.135 3.43915C14.6002 3.16667 13.9001 3.16667 12.5 3.16667H5.5C4.09987 3.16667 3.3998 3.16667 2.86502 3.43915C2.39462 3.67883 2.01217 4.06129 1.77248 4.53169C1.5 5.06647 1.5 5.76654 1.5 7.16667V14.1667C1.5 15.5668 1.5 16.2669 1.77248 16.8016C2.01217 17.272 2.39462 17.6545 2.86502 17.8942C3.3998 18.1667 4.09987 18.1667 5.5 18.1667Z' stroke='%23344054' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */
form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}
form input::file-selector-button {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0px 1px 2px 0px #1018280D;
  border-radius: 8px;
  color: var(--white-color);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

/* Headings and text */
form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 0 !important;
}

/* Validation */
.hs-form-required {
  color: var(--text-color);
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  font-size: 12px;
  line-height: 18px;
  color: #EF6B51;
  margin: 0.35rem 0 0;
}

/* Submit button */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  padding: 16px 25px 12px;
  width: auto;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* Slick slider styles */
.slick-slider {
  position: relative;
  user-select: none;
}

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

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  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;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.header {
  padding: 14px 0;
  width: 100%;
  background: #f7f4ec;
  position: relative;
  z-index: 5;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1440px;
}

/* Logo Styles */
.logo {
  display: block;
  position: relative;
  width: 120px;
  margin: 0 auto;
}
.logo a {
  display: flex;
  position: relative;
}
.logo a img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Nav Opener Styles */
.nav-opener {
  position: absolute;
  right: 15px;
  width: 24px;
  height: 20px;
  border-top: 2px solid #00384d;
  transition: all 0.4s ease;
  display: none;
}
.nav-active .nav-opener {
  border-top: none;
}
.nav-active .nav-opener {
  z-index: 2;
}
.nav-opener:after, .nav-opener:before {
  background: #00384d;
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  content: "";
  position: absolute;
  transition: all 0.4s ease;
}
.nav-active .nav-opener:after, .nav-active .nav-opener:before {
  top: 10px;
  transform: rotate(45deg);
  background: #fff;
}
.nav-opener:after {
  top: 14px;
}
.nav-active .nav-opener:after {
  transform: rotate(-45deg);
}

/* Nav Holder Styles */
.nav-holder {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

/* Menu Styles */
.nav-holder ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  list-style: none;
  margin: 0;
  padding: 0 26px 0 0;
}
.nav-holder ul li {
  padding: 0 25px 0 24px;
}
.nav-holder ul li.active > a {
  font-weight: bold; 
}
.nav-holder ul a {
  text-decoration: none;
  color: #00384d;
  transition: all 0.4s ease;
  padding: 4px 0 0;
  display: block;
}
.nav-holder ul a:hover {
  color: #00a69c;
}


@media (min-width: 768px) {
  .header {
    padding: 20px 0;
  }
  .logo {
    width: 160px;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .logo {
    width: 184px;
  }
}
@media (min-width: 1440px) {
  .header .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}


@media (max-width: 1199px) {
  .nav-holder ul {
    padding: 0 15px 0 0;
    font-size: 14px;
  }
  .nav-holder ul li {
    padding: 0 15px;
  }
}
@media (max-width: 1023px) {
  .nav-active {
    overflow: hidden;
  }
  .nav-opener {
    display: block;
  }
  .nav-active .nav-opener {
    border-top-color: #fff;
  }
  .nav-holder {
    padding: 50px 0;
    width: 300px;
    right: 0;
    top: 0;
    bottom: 0;
    background: #00a69c;
    position: fixed;
    display: block;
    transition: all 0.4s ease;
    transform: translate(100%, 0);
    overflow: auto;
  }
  .nav-active .nav-holder {
    transform: none;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
  }
  .nav-holder .btn-holder {
    width: 100%;
  }
  .nav-holder .btn-holder .cta_button {
    margin: 20px 24px 0;
    background: #00736c;
    display: block;
    /*     width: calc(100% - 48px); */
  }
  .nav-holder .btn-holder .cta_button:hover {
    background: #00403c;
  }
  .nav-holder ul {
    display: block !important;
    font-size: 16px;
  }
  .nav-holder ul li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .nav-holder ul a {
    color: #fff;
    padding: 16px 24px 12px;
  }
  .nav-holder ul a:hover {
    color: #00403c;
  }
}
.visual-block {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.visual-block .visual-image {
  width: 100%;
  position: relative;
}
.visual-block .visual-image:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
.visual-block .visual-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.visual-block .visual-holder {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #00384d;
  padding: 40px 25px 32px;
}
.visual-block .container {
  width: 100%;
}
.visual-block .textbox {
  width: 100%;
}
.visual-block .subtitle {
  display: block;
  color: #6edef9;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 15px;
}
.visual-block h1 {
  color: #fff;
  margin: 0 0 10px;
}

.visual-block.subvisual .visual-image:before {
  width: 80%;
  background: linear-gradient(to right, rgb(0, 56, 77) 0%, rgba(0, 56, 77, 0.015) 100%);
}
.visual-block.subvisual .textbox {
  color: #fff;
}
.visual-block.subvisual p {
  margin: 0 0 30px;
}
.visual-block.subvisual p:last-child {
  margin-bottom: 0;
}

.visual-block.textvisual .container {
  max-width: 1046px;
}
.visual-block.textvisual .textbox {
  max-width: 100%;
}
.visual-block.textvisual .date {
  display: block;
  color: #ffd666;
  line-height: 1.5;
}


@media (max-width: 767px) {
  .visual-block h1 {
    line-height: 1.25;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .visual-block .visual-image {
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
  }
  .visual-block .visual-holder {
    padding: 100px 0 250px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .visual-block .textbox {
    max-width: 600px;
  }
  .visual-block .subtitle {
    font-size: 28px;
  }
  .visual-block.subvisual .visual-holder {
    padding: 117px 0;
  }
  .visual-block.subvisual .textbox {
    max-width: 620px;
  }
  .visual-block.subvisual h1 {
    margin-bottom: 20px;
  }
  .visual-block.textvisual .visual-holder {
    padding: 80px 0 68px;
    background: #00384d;
  }
  .visual-block.textvisual .date {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .visual-block .visual-holder {
    padding: 157px 0 291px;
  }
  .visual-block .subtitle {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .visual-block.subvisual .visual-holder {
    min-height: 657px;
  }
  .visual-block.textvisual .visual-holder {
    min-height: inherit;
  }
}
.categories-block {
  position: relative;
  padding: 40px 0 45px;
  background: #f7f4ec;
}
.categories-block .categories-holder {
  display: flex;
  flex-wrap: wrap;
}

/* Category Box Styles */
.category-box {
  position: relative;
  z-index: 1;
  padding: 0 0 15px;
  width: 100%;
}
.category-box .textbox {
  background: #C7EFE8;
  display: flex;
  flex-direction: column;
  padding: 20px 16px 16px;
  margin-left: 40px;
  position: relative;
  padding-left: 50px;
}
.category-box .text-wrap {
  flex-grow: 1;
  width: 100%;
}
.category-box .icon {
  width: 80px;
  flex-shrink: 0;
  position: absolute;
  left: -40px;
  top: 10px;
}
.category-box .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.category-box .title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 7px;
}
.category-box p {
  line-height: 1.7;
  margin: 0 0 12px;
}
.category-box .button-wrap {
  text-align: right;
}
.category-box.green .textbox {
  background: #c2d9a0;
}
.category-box.yellow .textbox {
  background: #ffd666;
}


@media (min-width: 768px) {
  .categories-block.above-section {
    margin-top: -170px;
    padding: 0 0 48px;
  }
  .categories-block {
    padding: 98px 0 48px;
    background: transparent;
  }
  .categories-block .categories-holder {
    margin: 0 -7px;
  }
  .category-box {
    width: 33.333%;
    text-align: center;
    padding: 0 7px 15px;
  }
  .category-box .textbox {
    padding: 0 15px 25px;
    height: 100%;
    border-radius: 5px;
    margin-left: 0;
  }
  .category-box .icon {
    margin: -40px auto 25px;
    position: static;
  }
  .category-box .title {
    font-size: 18px;
    margin: 0 -5px 7px;
  }
  .category-box p {
    margin: 0 0 16px;
  }
  .category-box .button-wrap {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .categories-block .categories-holder {
    margin: 0 -15px;
  }
  .category-box {
    padding: 0 15px 20px;
  }
  .category-box .icon {
    width: 100px;
    margin: -50px auto 32px;
  }
}
@media (min-width: 1200px) {
  .categories-block .categories-holder {
    margin: 0 -30px;
  }
  .category-box {
    padding: 0 30px 30px;
  }
  .category-box .textbox {
    padding: 0 35px 25px;
  }
  .category-box .title {
    margin: 0 -10px 7px;
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .categories-block .categories-holder {
    margin: 0 -40px;
  }
  .category-box {
    padding: 0 40px 40px;
  }
}
.articles-block {
  overflow: hidden;
  width: 100%;
  padding: 60px 0;
}
.articles-block .container {
  max-width: 1250px;
}

/* Article Post Styles */
.article-post {
  height: 100%;
  display: flex;
  background: #f7f4ec;
}
.article-post .textbox {
  width: 100%;
}
.article-post .section-header {
  padding: 25px 20px 15px;
  background: #ffd4cb;
}
.article-post .section-header .subtitle {
  color: #703323;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article-post .section-header h2 {
  color: #703323;
  font-weight: 300;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-post .text-content {
  padding: 20px;
}
.article-post .text-content .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 7px;
}
.article-post .text-content p {
  line-height: 1.7;
  letter-spacing: 0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-post .image-holder {
  width: 51.3%;
  display: none;
}
.article-post .image-holder img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}
.article-post.blue .section-header {
  background: #c7eff8;
}
.article-post.blue .section-header .subtitle {
  color: #00384d;
}
.article-post.blue .section-header h2 {
  color: #00384d;
}
.article-post.yellow .section-header {
  background: #ffd666;
}
.article-post.yellow .section-header .subtitle {
  color: #8c6700;
}
.article-post.yellow .section-header h2 {
  color: #8c6700;
}

/* Articles Slider Styles */
.articles-slider {
  margin: 0 -10px;
}
.articles-slider:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.articles-slider .slick-list {
  overflow: visible;
  padding-right: 35px;
}
.articles-slider .slick-track {
  display: flex;
}
.articles-slider .slick-slide {
  padding: 0 10px;
  height: auto;
}
.articles-slider .slick-arrow {
  width: 50px;
  height: 50px;
  background: none;
  border-radius: 100%;
  border: 0;
  position: absolute;
  top: calc(50% - 60px);
  transform: translateY(-50%);
  background: transparent;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.articles-slider .slick-arrow:before {
  width: 16px;
  height: 34px;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("https://23582109.fs1.hubspotusercontent-na1.net/hubfs/23582109/raw_assets/public/Pathcheck/images/arrow.svg");
}
.articles-slider .slick-arrow.slick-prev {
  left: 30px;
}
.articles-slider .slick-arrow.slick-prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.articles-slider .slick-arrow.slick-next {
  right: 30px;
}
.articles-slider .slick-arrow.slick-disabled {
  pointer-events: none;
}
.articles-slider .slick-dots {
  margin: 25px 0 0;
}

@media (max-width: 1023px) {
  .articles-slider .slick-arrow {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .articles-block {
    padding: 0 0 50px;
  }
  .article-post .textbox {
    width: 48.7%;
  }
  .article-post .section-header {
    padding: 30px 20px 20px;
  }
  .article-post .text-content p {
    -webkit-line-clamp: 5;
  }
  .article-post .image-holder {
    display: block;
  }
  .articles-slider {
    margin: 0 -10px;
  }
  .articles-slider .slick-list {
    padding-right: 20px;
  }
  .articles-slider .slick-slide {
    padding: 0 10px;
  }
  .articles-slider .slick-dots {
    margin: 30px 0 0;
  }
}
@media (min-width: 1024px) {
  .articles-block {
    padding: 0 0 94px;
  }
  .article-post .section-header {
    padding: 45px 60px 40px;
  }
  .article-post .text-content {
    padding: 40px 60px 30px;
  }
  .articles-slider {
    margin: 0 -35px;
  }
  .articles-slider .slick-list {
    padding-right: 0;
  }
  .articles-slider .slick-slide {
    padding: 0 35px;
  }
  .articles-slider .slick-dots {
    margin: 58px 0 0;
  }
  .articles-slider .slick-arrow:before {
    width: 22px;
    height: 44px;
  }
  .articles-slider .slick-arrow.slick-next {
    right: 40px;
  }
  .articles-slider .slick-arrow.slick-prev {
    left: 40px;
  }
}
@media (min-width: 1200px) {
  .article-post .section-header {
    padding: 75px 60px 56px;
  }
  .article-post .text-content {
    padding: 50px 60px 42px;
  }
}
@media (min-width: 1440px) {
  .articles-slider .slick-arrow.slick-prev {
    left: -25px;
  }
  .articles-slider .slick-arrow.slick-next {
    right: -25px;
  }
}
.plans-block {
  overflow: hidden;
  background: #f7f4ec;
  padding: 60px 0 30px;
}
.plans-block .container { 
  max-width: 1280px;
}
.plans-block .section-header {
  text-align: center;
  margin: 0 0 23px;
}
.plans-block .plans-holder {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.plans-block .column {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 25px;
}
.plans-block .column.col {
  width: 100%;
}

/* Plans Box Styles */
.plans-box {
  background: #00384d;
  border-radius: 5px;
  padding: 35px 20px;
  color: #fff;
  height: 100%;
  line-height: 1.5;
  position: relative;
}
.plans-box .icon-stars {
  position: absolute;
  top: 25px;
  right: 20px;
}
.plans-box .plans-head {
  padding: 4px 0 0;
  margin: 0 0 26px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}
.plans-box .plans-head p {
  color: #C2D9A0;
  margin: 0 0 21px;
}
.plans-box .subtitle {
  display: block;
  color: #C2D9A0;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 5px;
}
.plans-box .price {
  display: block;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 300;
  margin: 0 0 10px;
}
.plans-box .title {
  display: block;
  font-weight: 600;
  margin: 0 0 11px;
}
.plans-box .list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.plans-box .list li {
  display: flex;
  align-items: center;
  padding: 5px 0 15px;
}
.plans-box .list .icon {
  width: 40px;
/*  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; */
  margin: 0 8px 0 0;
}
.plans-box .list .text {
/*   flex-grow: 1;
  min-width: 0; */
  width: calc(100% - 40px);
}
.plans-box .cta_button {
  background: #C2D9A0;
  border-color: #C2D9A0;
  color: #00384D;
}
.plans-box .cta_button:hover {
  background: transparent;
  color: #fff;
}

.plans-box.blue .subtitle {
  color: #6edef9;
}
.plans-box.blue .plans-head p {
  color: #6edef9;
}
.plans-box.blue .cta_button {
  background: #6EDEF9;
  border-color: #6EDEF9;
  color: #00384D;
}
.plans-box.blue .cta_button:hover {
  background: transparent;
  color: #fff;
}

.plans-box.yellow .subtitle {
  color: #FFD666;
}
.plans-box.yellow .plans-head p {
  color: #FFD666;
}
.plans-box.yellow .cta_button {
  background: #FFD666;
  border-color: #FFD666;
  color: #00384D;
}
.plans-box.yellow .cta_button:hover {
  background: transparent;
  color: #fff;
}



@media (max-width: 767px) {
  .plans-box .btn {
    font-size: 14px;
    line-height: 16px;
    padding: 12px 25px 9px;
  }
}
@media (min-width: 768px) {
  .plans-block {
    padding: 55px 0;
  }
  .plans-block .column.col_2, .plans-block .column.col_3 {
    width: 50%;
  }
  .plans-box {
    font-size: 14px; 
  }
}
@media (min-width: 1024px) {
  .plans-block {
    padding: 93px 0 84px;
  }
  .plans-block .plans-holder {
    margin: 0 -15px;
  }
  .plans-block .column {
    padding: 15px;
  }
  .plans-box {
    padding: 45px 50px;
    font-size: 16px;
  }
  .plans-box .btn {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .plans-block .column.col_3 {
    width: 33.33%;
  }
}
.contact-block {
  overflow: hidden;
  padding: 60px 15px;
}
.contact-block .section-header {
  margin-bottom: 10px;
  overflow: hidden;
}
.contact-block input[type="text"]::placeholder,
.contact-block input[type="tel"]::placeholder, 
.contact-block input[type="email"]::placeholder, 
.contact-block input[type="search"]::placeholder, 
.contact-block input[type="password"]::placeholder, 
.contact-block textarea {
  opacity: 1;
  color: #00384d;
}
.contact-block textarea {
  height: 130px;
  resize: none !important;
}

.check-wrap {
  display: flex;
  align-items: center;
  padding: 10px 0 0;
  margin: 0 0 30px;
}

/* Custom Chckbox Styles */
.custom-checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.custom-checkbox input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.custom-checkbox input[type=checkbox]:checked + .checkbox-item {
  background: #00384d;
}
.custom-checkbox input[type=checkbox]:checked + .checkbox-item:before {
  opacity: 1;
}
.custom-checkbox .checkbox-item {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  border: 2px solid #00384d;
  position: relative;
  flex-shrink: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.custom-checkbox .checkbox-item:before {
  width: 13px;
  height: 8px;
  border: 2px solid #fff;
  content: "";
  display: block;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  margin-top: -4px;
  opacity: 0;
}
.custom-checkbox .lable-text {
  flex-grow: 1;
  min-width: 0;
  display: block;
  padding: 3px 0 0 10px;
}

@media (min-width: 768px) {
  .contact-block {
    padding: 75px 0;
  }
  .contact-block .section-header {
    width: 45%;
    padding: 13px 0 0;
    margin-bottom: 0;
  }
  .contact-block .contact-form {
    width: 52%;
  }
  .contact-block .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .contact-block {
    padding: 105px 0 75px;
  }
  .contact-block .section-header p {
    font-size: 20px;
  }
  .contact-block .contact-form {
    width: 48.65%;
  }
}
.general-block {
  overflow: hidden;
  border-top: 10px solid #fff;
  background: #c7efe8;
  position: relative;
  z-index: 1;
}
.general-block:nth-child(even) {
  background: #d6f3ee;
}
.general-block .section-header,
.general-block .textbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.general-block .section-header {
  padding: 40px 15px 60px;
}
.general-block .section-header .subtitle {
  color: #00384d;
}
.general-block .section-header h2 {
  margin-bottom: 0;
}
.general-block .textbox {
  position: relative;
  padding: 60px 15px 40px;
}
.general-block .textbox:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: #f7f4ec;
  z-index: -1;
  margin-left: -15px;
  margin-right: -15px;
}
.general-block .textbox p {
  margin: 0 0 30px;
}
.general-block .textbox .icon {
  width: 80px;
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translate(-50%, 0);
}
.general-block .textbox .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.general-block .buttons-wrap {
  display: flex;
  gap: 10px;
}


/* General Block Green Styles */
.green-theme .general-block {
  background: #c2d9a0;
}
.green-theme .general-block:nth-child(even) {
  background: #cfe4b0;
}
/* General Block Yellow Styles */
.yellow-theme .general-block {
  background: #ffd666;
}
.yellow-theme .general-block:nth-child(even) {
  background: #ffdf88;
}
.yellow-theme .general-block .subtitle,
.yellow-theme .general-block h2 {
  color: #703323;
}


@media (min-width: 768px) {
  .general-block .container {
    display: flex;
    justify-content: space-between;
  }
  .general-block .container {
    min-height: 450px;
  }
  .general-block .section-header {
    padding: 50px 0;
    width: 43%;
  }
  .general-block .textbox {
    width: 50%;
    padding: 50px 0;
    padding-left: 65px;
  }
  .general-block .textbox:before {
    right: auto;
    margin-left: 0;
    padding-right: 9999px;
    margin-right: -9999px;
  }
  .general-block .textbox .icon {
    left: -40px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media (min-width: 1024px) {
  .general-block .textbox {
    padding-left: 75px;
  }
}
@media (min-width: 1200px) {
  .general-block .container {
    min-height: 546px;
  }
  .general-block .section-header .subtitle {
    font-size: 32px;
  }
  .general-block .textbox {
    padding-left: 115px;
  }
  .general-block .textbox .icon {
    left: -50px;
    width: 100px;
  }
}
@media (min-width: 1440px) {
  .general-block .textbox {
    padding-left: 150px;
    padding-right: 25px;
  }
  .general-block .textbox .icon {
    left: -60px;
    width: 120px;
  }
}
.faq-block {
  overflow: hidden;
  padding: 60px 0;
}
.faq-block .container {
  max-width: 990px;
}
.faq-block .section-header {
  overflow: hidden;
  margin: 0 0 10px;
}
/* Faq Accordion Styles */
.faq-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-accordion li {
  margin: 0 0 18px;
  border-radius: 5px;
  background: #c7efe8;
}
.faq-accordion li.active .opener .plus:after {
  display: none;
}
.faq-accordion .opener {
  color: #00384d;
  display: flex;
  align-items: center;
  font-weight: 600;
  padding: 25px 17px 21px;
  font-size: 16px;
  line-height: 1.5;
}
.faq-accordion .opener .plus {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
  margin: 6px 15px 4px 0;
}
.faq-accordion .opener .plus:before, .faq-accordion .opener .plus:after {
  width: 13px;
  height: 3px;
  background: #00384d;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-accordion .opener .plus:after {
  width: 3px;
  height: 13px;
}
.faq-accordion .opener .text {
  flex-grow: 1;
  min-width: 0;
}
.faq-accordion .slide {
  overflow: hidden;
  display: none;
}
.faq-accordion .textb-holder {
  margin: 10px;
  background: #fff;
  padding: 20px;
  line-height: 1.7;
}
.faq-accordion .textb-holder a {
  color: #00384d;
}
.faq-accordion .textb-holder a:hover {
  text-decoration: underline;
}

/* Green Styles Accordion */
.green-theme .faq-accordion li {
  background: #c2d9a0;
}

/* Yellow Styles Accordion */
.yellow-theme .faq-accordion li {
  background: #ffd666;
}


@media (min-width: 768px) {
  .faq-block {
    padding: 105px 0;
  }
  .faq-block .section-header {
    margin: 0 0 30px;
  }
  .faq-accordion li {
    margin: 0 0 20px;
  }
  .faq-accordion .opener {
    font-size: 20px;
    padding: 39px 28px 31px;
  }
  .faq-accordion .opener .plus {
    margin-right: 20px;
    margin-bottom: 4px;
  }
  .faq-accordion .textb-holder {
    padding: 30px 50px;
  }
}
@media (min-width: 1200px) {
  .faq-block {
    padding: 150px 0;
  }
}
.testimonial-block {
  background: #f7f4ec;
  overflow: hidden;
  padding: 60px 0;
}
.testimonial-block .section-header {
  overflow: hidden;
  margin: 0 0 10px;
  text-align: center;
}

/* Testimonial Slider Styles */
.testimonial-slider {
  max-width: 620px;
  margin: 0 auto;
}
.testimonial-slider .slick-list {
  overflow: visible;
}
.testimonial-slider .slick-track {
  display: flex;
}
.testimonial-slider .slick-slide {
  padding: 5px;
  height: auto;
}

/* blockquote Styles */
.blockquote {
  background: #00384d;
  min-height: 320px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.blockquote q {
  quotes: none;
  margin: 10px 0;
}
.blockquote.green {
  background: #005453;
}
.blockquote.brown {
  background: #703323;
}
.blockquote.yellow {
  background: #ffd666;
}

@media (min-width: 768px) {
  .testimonial-block {
    padding: 80px 0;
  }
  .testimonial-block .section-header {
    margin: 0 0 30px;
  }
  .blockquote {
    padding: 25px 40px;
    font-size: 21px;
  }
}
@media (min-width: 1024px) {
  .blockquote {
    font-size: 24px;
    min-height: 383px;
  }
}
@media (min-width: 1200px) {
  .testimonial-block {
    padding: 95px 0;
  }
}
.single-post-block {
  overflow: hidden;
  background: #f7f4ec;
  padding: 40px 0;
}
.single-post-block .container {
  max-width: 1046px;
}

.single-post {
  overflow: hidden;
}
.single-post h1, .single-post h2, .single-post h3, .single-post h4, .single-post h5, .single-post h6 {
  margin: 30px 0;
}
.single-post h2 {
  font-size: 16px;
  font-weight: 600;
}
/* .single-post p {
  margin: 0 0 35px;
} */
.single-post p:last-child {
  margin-bottom: 20px;
}

/* Quote Box Styles */
.quote-box {
  background: #c7efe8;
  margin: 40px 0;
}
.quote-box .image {
  width: 100%;
}
.quote-box .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.quote-box blockquote {
  border: 0;
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  padding: 40px 20px 35px;
}
.quote-box.reverse {
  background: #ffd4cb;
  color: #703323;
}


@media (max-width: 767px) {
  .single-post {
    padding: 0 15px;
  }
}
@media (max-width: 388px) {
  .single-post {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .single-post-block {
    padding: 80px 0;
  }
  .single-post h2 {
    font-size: 20px;
  }
/*   .single-post p {
    margin: 0 0 55px;
  } */
  .quote-box {
    display: flex;
    margin: 60px 0;
  }
  .quote-box .image {
    width: 35.85%;
    flex-shrink: 0;
  }
  .quote-box blockquote {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    font-size: 20px;
    line-height: 1.8;
  }
  .quote-box.reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .quote-box blockquote {
    padding: 20px 30px;
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .quote-box blockquote {
    padding: 25px 60px;
    font-size: 28px;
  }
}
.footer {
  background: #00384d;
  padding: 38px 0 30px;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}
.footer .container {
  max-width: 1440px;
}
.footer .site-info {
  width: 100%;
}
.footer .site-info p {
  margin: 0 0 27px;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  overflow: hidden;
}
.footer .footer-links li {
  margin: 0 0 27px;
}
.footer .footer-links li a {
  color: #fff;
  text-decoration: underline;
}
.footer .footer-links li a:hover {
  opacity: 0.6;
}
.footer .poweredby-image {
  width: 134px;
  margin: 0 auto;
}
.footer .poweredby-image a {
  display: block;
}
.footer .poweredby-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .footer {
    text-align: left;
    padding: 20px 0;
  }
  .footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .site-info {
    width: auto;
    display: flex;
    align-items: center;
    padding: 4px 0 0;
  }
  .footer .site-info p {
    margin: 0;
  }
  .footer .footer-links {
    margin: 0;
    display: flex;
    align-items: center;
    margin-left: 15px;
    padding-left: 10px;
    border-left: 1px solid #fff;
  }
  .footer .footer-links li {
    padding: 0 7px;
    margin: 0;
  }
  .footer .poweredby-image {
    margin: 0;
    width: 100px;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 26px 0;
  }
  .footer .footer-links {
    margin-left: 49px;
    padding-left: 20px;
  }
  .footer .footer-links li {
    padding: 0 22px;
  }
  .footer .poweredby-image {
    width: 134px;
  }
}
@media (min-width: 1440px) {
  .footer .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .footer .site-info {
    padding-left: 20px;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}