/* 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.
 */


/**
 * 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%;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}
.dnd-section {
  padding:40px 15px;
}
.dnd-section .dnd-column {
  padding: 0 15px;
}
.dnd-section[class*=force-full-width]{
  padding: 0;
}
.dnd-section[class*=force-full-width] .dnd-column {
  padding:0;
}
@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  .dnd-section {
    padding:40px 20px;
  }
  .content-wrapper {
    margin: 0 auto;
    padding: 0 20px;
  }
}

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

body {
  line-height:1.75;
  word-break: break-word;background: #F5F5F5;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-word;
}
.skiplink {
    background-color: #33475b;
    color: #fff;
    display: block;
    left: 0;
    padding: 6px;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
}
/* Paragraphs */

p {
  margin: 0 0 16px;
}
p:last-child {
  margin: 0;
}
/* Anchors */

a {
  cursor: pointer;
  font-weight:500;
  text-decoration: underline;
}

/* Headings */

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6{
  margin: 0 0 12px;
  line-height:1;
}
h1{
  line-height:1.12068965517;
}
h3.form-title,
.h2,h2{
  line-height:0.9;
}
h5{
  line-height:1.21739130435;
}
p+h3{
  padding-top: 12px;
}
p+h6{
  padding-top: 12px;
}
h6,.h6{
  line-height:1.1;
}

/* Lists */

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

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

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

ul li::marker,
ol li::marker{
  font-weight: 700;
}
ol li,
ul li {
  margin-bottom: 8px;
}
ol,
ul {
  padding-left: 48px;
  margin-bottom: 28px;
}
/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 3px solid;
  font-size: 19px;
  margin: 28px 39px 19px 50px;
  padding-left: 18px;
  padding-top: 40px;
  position: relative;
  line-height: 1.57894736842;
}
blockquote:after {
  content:"";
  width:30px;
  height:24px;
  position:absolute;
  left:17px;
  top:0;
  background-image:url(https://cts.coloradotimesystems.com/hubfs/CTS%20Website%20%20Assets/Blog/quote-icon.svg);
  background-size:cover;background-position:center;
}

svg {
  vertical-align: middle;
}
/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
a{
  transition:.4s;
}
img {
  max-width:100%;
  height:auto;
  vertical-align:middle;
}

.manuals-row td:first-child {
  width: 100%
}
.manuals-row td:last-child {
  white-space: nowrap
}
.manuals-row td:last-child a {
  word-break: keep-all
}
.manuals-row .hs-button {
  font-size: 20px;
  margin-right: 20px;
  padding: 10px 20px
}
@media (max-width:767px){
  blockquote {
    margin-left:20px;
    margin-right:20px;
    font-size:16px
  }
  ol, ul {
    padding-left: 25px;
  } 
  .manuals-row .hs-button {
    font-size: 16px;
    padding: 10px
  }
}
::-webkit-file-upload-button,
button,
input[type="submit"],
.hs-button{
  border-style:solid;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
  font-family: 'Barlow Condensed';
  font-size: 22px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  white-space: normal !important;
}

.hs-button.outline {
    box-shadow: none;
}
form {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 40px;
}
.hs-form-field { 
  margin-bottom: 10px;
}
.hs-search-field form label {
    width: 100%;
}
fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}
form label {
  display: block;
  font-style: normal;
  font-weight: 500;
  margin-bottom:5px;
}
.submitted-message {
  text-align: center;
}
h3.form-title {
  text-align: center;
  margin-bottom: 30px;
}
form legend {
  font-size: 90%;
  padding-bottom: 5px;
}
.hs-input,
input[type=text],
input[type=search],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
  border: none;
  display: block;
  outline: none;
  border-style:solid;
  min-height: 44px;
  padding: 6px 10px;
  width: 100%!important;
  line-height: 2;
}

input::placeholder,
.hs-input::placeholder{
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
  color: #2D2D2D;
}
.hs_submit.hs-submit {
  margin-top: 12px;
}
form ul li input[type=checkbox], ul.inputs-list input[type=checkbox], ul.inputs-list input[type=radio] {
    display: block!important;
    opacity: 0;
    position: absolute;
}
select{
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8.50781L7.60156 7.87891L12.8516 2.62891L13.4805 2L12.25 0.769531L11.6211 1.39844L7 6.01953L2.35156 1.39844L1.75 0.769531L0.492188 2L1.12109 2.62891L6.37109 7.87891L7 8.50781Z' fill='%232D2D2D'/%3E%3C/svg%3E%0A");
  background-position: right 10px center;
  background-repeat: no-repeat;
  appearance: none;
  font-size:14px;
  font-style: italic;
}
.legal-consent-container .hs-form-booleancheckbox-display input {
  margin-right: 8px;
  margin-top: 3px;
}
.legal-consent-container, .legal-consent-container p, .legal-consent-container span{
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
::-webkit-file-upload-button {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  height: 100%;
  font-style: normal;
  padding: 10px 20px !important;
  box-shadow: none;
  border-top-left-radius: 0 !important;
  line-height: 21px;
  border-bottom-left-radius: 0 !important;
}

input[type=file] {
  position: relative;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
}
select option{
  font-style: normal;
}
textarea.hs-input {
  min-height: 132px;
}
h3.form-title:empty {
  margin: 0;
}
fieldset.form-columns-2>div {
  width: Calc(50% - 14px)!important;
}
fieldset.form-columns-2 {
  display: flex;
  justify-content: space-between;
}
fieldset.form-columns-3>div {
  width: Calc(33.3337% - 18.6666666667px) !important;
}
fieldset.form-columns-1>div {
  width: 100%;
}
.hs-dependent-field .field {
  width: 100% !important;
}

fieldset.form-columns-3 {
  display: flex;
  justify-content: space-between;
}
.input {
  margin: 0 !important;
}
form fieldset {
  max-width: 100% !important;
}
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}
form .inputs-list input, form .inputs-list span {
  vertical-align: middle;
}
form input[type=checkbox], form input[type=radio] {
  cursor: pointer;
  min-height:auto;
  margin-right: 15px;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  margin-bottom: 12px;
  min-height: 80px;
  overflow: auto;
  padding: 10px 0 0 12px;
}
.fn-date-picker .pika-button {
  box-shadow: none;
  border-radius: 0;
  padding: 10px !important;
  text-align: center !important;
}

.fn-date-picker .pika-table {
  margin: 10px 0;
}
form input[type=checkbox], form input[type=radio] {
  appearance: none;
  background: #EEEEEE;
  border-radius: 2px;
  display: inline-block !important;
  height: 16px;
  width: 16px !important;
  padding: 0 !important;
}
form input[type=checkbox]:checked, form input[type=radio]:checked{
  appearance: auto;
}
form input[type=radio] {
  border-radius:30px;
}
.hs-dateinput {
  position: relative;
}
.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right:15px;
  top: 50%;
  transform: translateY(-50%);
}
.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;
}
form .hs-richtext img {
  max-width: 100% !important;
}
.legal-consent-container .hs-form-booleancheckbox-display > span, .legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}
.hs-form-required {
  color:red;
}
.hs-input.invalid.error {
  border-color: #FFD6DD;
  background: #FFD6DD;
}
.hs-error-msg {
  color:#FF0404;
}
ul.no-list.hs-error-msgs label {
  color:#FF0404;
}
ul.no-list.hs-error-msgs.inputs-list label {
  color:#FF0404;
  margin: 5px 0;
}
.hs_error_rollup {
  padding: 0 0 15px 0;
}
.legal-consent-container label {
  font-weight: 400;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
  display: block;
  margin-left:0px!important;
  line-height: 1.5;
}
.legal-consent-container .hs-form-booleancheckbox-display>span p {
  margin: 0 !important;
}
.legal-consent-container li {
  margin: 0 !important;
}
ul.no-list.hs-error-msgs.inputs-list label {
  font-weight: 700;
}
ul.no-list.hs-error-msgs.inputs-list li {
  margin: 0;
}
.legal-consent-container .hs-richtext {
  margin-bottom: 10px;
}
.legal-consent-container .field.hs-form-field {
  margin-bottom: 13px !important;
}
.legal-consent-container .hs-richtext+.hs-richtext {
  padding-top: 6px;
}
.legal-consent-container {
  padding-bottom: 11px;
}

form ul li input[type=checkbox]+span,
ul.inputs-list input[type=radio]+span,
ul.inputs-list input[type=checkbox]+span {
  padding-left: 27px;
  position: relative;
  display: block;
  cursor: pointer;
}
form ul li input[type=checkbox]+span:after,
ul.inputs-list input[type=radio]+span:after,
ul.inputs-list input[type=checkbox]+span:after {
  position: absolute;
  content: "";
  left: 0;
  width: 16px;
  height: 16px;
  top: 3px;
  background-color: rgba(238, 238, 238, 1.0);
  border-radius: 2px;
}
ul.inputs-list.multi-container {
  padding-bottom: 7px;
}
ul.inputs-list li {
  margin-top: 0;
  margin-bottom: 9px;
}
ul.inputs-list input[type=radio]+span:after{
  border-radius: 16px;
  width: 20px;
  height: 20px;
  background: #EEEEEE;
}
form ul li input[type=checkbox]+span:after{
  top:7px;
}
form ul li input[type=checkbox]:checked+span:after,
ul.inputs-list input[type=checkbox]:checked+span:after {
  background: #93D5EA;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1L3.5 6.5L1 4' stroke='#0F549D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  background-repeat: no-repeat;
}
ul.inputs-list input[type=radio]:checked+span:after { 
  background: #93D5EA;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='#0F549D'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  border:none;
  background-repeat: no-repeat;
}
ul.inputs-list.multi-container {
  padding-bottom: 7px;
}
.legal-consent-container .hs-richtext:last-child {
  margin: 0;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
  padding-left: 24px !important;
}
@media(max-width:767px){
  fieldset.form-columns-3>div,fieldset.form-columns-2>div {
    width: 100% !important;
  }
  ::-webkit-file-upload-button {
    font-size: 15px;
    padding: 10px 12px !important;
  }
  fieldset.form-columns-3,fieldset.form-columns-2 {
    display: block;
  }
  .legal-consent-container .hs-form-booleancheckbox-display>span {
    display: block;
  }
  .header-wrapper .menu .hs-menu-wrapper>ul>li:last-child>a, .hs-button, ::-webkit-file-upload-button, button, input[type=submit] {
    font-size: 18px;
  }
}
/* Table */

table {
  border-collapse: collapse;
  margin:1.6rem 0;
  overflow-wrap: break-word;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  width:100%;
  border-radius: 4px;
  overflow:hidden;
}

/* Table cells */

td,
th {
  vertical-align: middle;
  border:none !important;
  padding:12px 20px;
  text-align:left;
  font-weight:500;
}
thead th {text-transform:uppercase; padding: 15px 20px 10px;}
tr:nth-child(even) td{background:#EEEEEE}

/* Table header */

thead th {
  vertical-align: middle;
}

@media (max-width:991px){
  th{font-size:18px; padding:12px 10px;}
  td{font-size:14px;padding:10px}
}
@media (max-width:767px){
  thead th{font-size:16px; padding: 15px 10px 10px;}
  td{font-size:12px;padding:10px}
}

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

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  transition:.4s;
}
.no-banner header.header {
    min-height: 103px;
}
@media(max-width:991px){
  .header-wrapper {
    overflow: auto;
    max-height: 100vh;
  }
}
body .mfp-close:hover{background:none !important;}
/* 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;
}

/* 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;
}









.pagination {
  flex-wrap: wrap;
  padding: 10px 20px
}
.pagination, .pagination a {
  border-radius: 4px;
  display: flex;
  justify-content: center
}
.pagination a {
  align-items: center;
  color: #bfbfbf;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 5px;
  min-height: 35px;
  min-width: 41px;
  padding: 5px 15px;
  text-decoration: none
}
.pagination a.active {
  color: #fff;
  pointer-events: none
}
.pagination a:hover {
  color: #fff
}
.pagination a.next, .pagination a.prev {
  background: transparent!important;
  color: inherit!important
}
.pagination a.prev {
  margin-left: 0;
  margin-right: 40px;
  min-width: 0;
  padding: 0
}
.pagination a.next {
  margin-left: 40px;
  margin-right: 0;
  min-width: 0;
  padding: 0
}
.pagination a.disabled {
  pointer-events: none
}
.pagination a.disabled path {
  fill: #bfbfbf
}
.pagination-wrapper {
  padding: 20px 0;
}





.hs-search-field form {
  display: flex;
  flex-wrap: wrap;
}

.hs-search-field input {
  max-width: Calc(100% - 50px);
  border-radius: 0 !important;
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.hs-search-field button {
  width: 50px;
  border-radius: 0 !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  height: 50px;
  box-shadow: none;
}
.hs-search-field ul a {
  background: transparent !important;
}
.hs-search-field button svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
}
.hs-search-field ul:empty{
  display:none;
}
.hs-search-field ul {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  list-style: none;
  box-shadow: 0 4px 30px rgb(0 0 0 / 15%);
  border:none !important;
  margin-top: 40px;
}
.hs-search-field li#results-for {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 15px;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
}
.breadcrumb-menu {
  padding: 10px 0;
}
.breadcrumb-menu a.hs-breadcrumb-label {
  text-decoration: none;
}
.breadcrumb ul li {
  padding: 5px 0;
  float: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #6C6C6C;
  margin: 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 !important;
}
.breadcrumb svg {
  vertical-align: middle;
  width: auto;
  display: block;
}
.breadcrumb .hs-breadcrumb-menu-divider:before {
  display: none !important;
}
.breadcrumb span.hs-breadcrumb-menu-divider path {
  fill: currentColor;
}
.breadcrumb span.hs-breadcrumb-menu-divider {
  margin-left: 28px;
  margin-right: 20px;
}
@media(max-width:767px){
  .breadcrumb ul li {
    font-size: 14px;
    line-height:1.5;
  }
  .breadcrumb span.hs-breadcrumb-menu-divider {
    margin-left: 14px;
    margin-right: 14px;
  }
  .breadcrumb span.hs-breadcrumb-menu-divider svg {
    width: 15px;
  }
}



.video-box{display:flex;flex-wrap:wrap}
.video-box .box{
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow:hidden;
  width:Calc(33.3333% - 6.66666666667px);
  margin-right:10px;
  margin-top:10px;
}
.video-box .box:nth-child(3n){
  margin-right:0;
}
.video-box .box:nth-child(-n+3){
  margin-top:0;
} 
.video-box .box img{object-fit:cover;width:100%}
.video-box .thumb{position:relative;
    position: relative;
    padding-bottom: 64%;
    background-position: center;
    background-size: cover;}
.popup-youtube{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  border: 4px solid #93D5EA;
  background: rgba(45, 45, 45, 0.5);
  border-radius:50%;
  width:76px;
  height:76px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-box .title{padding:20px;font-weight:300}

@media (max-width:1024px){
  .content .inner{
    padding:25px;
  }
  .popup-youtube{width:50px;height:50px}
}
@media(max-width:991px){
  .video-box .box{
    width:Calc(50% -5px);
    margin-right:10px !important;
    margin-top:10px !important;
  }
  .video-box .box:nth-child(2n){
    margin-right:0 !important;
  }
  .video-box .box:nth-child(-n+2){
    margin-top:0 !important;
  }
}

@media (max-width:600px){
  .video-box .box{width:100% !important;margin:15px 0 !important;}
  .video-box .title{padding:20px}
}

/* 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;
  }
}