/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


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

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

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

body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/

main {
  display: block;
}

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

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

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
* Remove the gray background on active links in IE 10.
*/

a {
  background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/

img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

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

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 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;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
* 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, IE 10+, and Firefox.
*/

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/

template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.page-center,
.dnd-section > .row-fluid {
  padding-left: 15px;
  padding-right: 15px;
}


@media (max-width: 1699px) {

  .page-center,
  .dnd-section > .row-fluid, .content-wrapper {
/*     max-width: 1170px !important; */
    max-width: 1040.56875px !important; 
  }

}

@media (max-width: 1199px) {

  .page-center,
  .dnd-section > .row-fluid, .content-wrapper {
    max-width: 970px !important;
  }

}

@media (max-width: 991px) {

  .page-center,
  .dnd-section > .row-fluid, .content-wrapper {
    max-width: 750px !important;
  }

}

@media (max-width: 767px) {

  .page-center,
  .dnd-section > .row-fluid, .content-wrapper {
    max-width: 100% !important;
  }

}

.dnd-section > .row-fluid,
.content-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {

  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */


@font-face {
  font-family: 'Coves Light';
  font-weight: normal;
  font-style: normal;
  src: url('https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/CovesLight.eot') format('embedded-opentype');
  src: url('https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/CovesLight.woff') format('woff'),
    url('https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/CovesLight.ttf') format('truetype');
}

@font-face {
  font-family: 'Coves Bold';
  font-weight: normal;
  font-style: normal;
  src: url('https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/CovesBold.eot') format('embedded-opentype');
  src: url('https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/CovesBold.woff') format('woff'),
    url('https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/CovesBold.ttf') format('truetype');
}

@font-face { 
  font-family: "Visual Composer Starter Font"; 
  src: url("https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/visual-composer-starter-font.eot") format("embedded-opentype"), 
    url("https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/visual-composer-starter-font.ttf") format("truetype"),
    url("https://5889165.fs1.hubspotusercontent-na1.net/hubfs/5889165/Irisbond%20March%202021/Fonts/visual-composer-starter-font.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}

[class*=" vct-icon-"]:before,
[class^=vct-icon-]:before {
  font-family: "Visual Composer Starter Font"!important;
  font-style: normal!important;
  font-weight: 400!important;
  font-variant: normal!important;
  text-transform: none!important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {}

body {
  font-size: 100%;
  line-height: 1.7;
  letter-spacing: 0.01rem;
}

@media (max-width: 767px) {

  body {
    line-height: 1.4;
  }

}

p {}

a {
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover, a:focus {
  text-decoration: none;
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #39F;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #39F;
  text-shadow: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 15px 0;
  line-height: 1.25;
}

.custom_header ul,
.custom_footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 700;
}
code {
  vertical-align: bottom;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {}

/* TODO */
mark {}

sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */


form {
  max-width: 700px;
}

@media (max-width: 767px) {

  form {
    max-width: 100%;
  }

}

.body-container-wrapper form {
  margin-bottom: 30px;
}


h3.form-title {
  padding: 15px;
  font-size: 30px;
  letter-spacing: 0.01rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hs-form-field > label,
.field > label {
  display: block;
  margin-bottom: 4px;
}

input[type="text"],
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"],
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"],
input[type="email"], 
input[type="url"], 
input[type="search"],
input[type="tel"], 
input[type="color"], 
input[type="file"],
textarea, 
select {
  width: 100%;
  border: 1px solid;
  font-family: inherit;
  line-height: inherit;
  padding: 10px 2px;
  text-align: center;
  font-size: 16px;
}

input[type="text"]:focus,
input[type="password"]:focus, 
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus,
input[type="month"]:focus, 
input[type="time"]:focus, 
input[type="week"]:focus, 
input[type="number"]:focus,
input[type="email"]:focus, 
input[type="url"]:focus, 
input[type="search"]:focus,
input[type="tel"]:focus, 
input[type="color"]:focus, 
input[type="file"]:focus,
textarea:focus, 
select:focus {

}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {}

.hs-input::-webkit-input-placeholder {}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

.hs-button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
  text-decoration: none !important;
  display: inline-block;
  margin: 15px 0;
  outline: 0;
  white-space: normal;
  border: 1px solid;
  font-family: inherit;
  line-height: inherit;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hs-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.hs-button.primary:focus,
input[type="submit"]:focus,
input[type="button"]:focus {

}

.hs-button.primary:active,
input[type="submit"]:active,
input[type="button"]:active {

}

ul.hs-error-msgs {
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hs-error-msgs label {
  color: #dc3232 !important;
  font-weight: normal;
  display: block;
  font-size: 16px;
}

.submitted-message {
  overflow: visible !important;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  text-align: left;
  white-space: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}

@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.custom-menu-primary .navigation-primary > ul.submenu > li > a.menu-link {
  font-family: "Coves Bold" !important;

}

.custom_header ul{
  float: right;
  padding-top: 7px;

  
  
}


.custom_header ul li{
  float: left;
  padding-left: 7px;

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */

.custom_header_lp {
  padding-bottom: 22px;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.header_container_wrapper {
  min-height: 90px;
}
path.search-icon-path {
    fill: #777;
}
.custom_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header__container {
  padding-left: 15px;
  padding-right: 15px;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  padding: 10px 15px;
}
.header_logo__social {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.header_logo {
  float: left;
  padding: 0;
  font-size: 18px;
  line-height: 20px;
  width: 150px;
}
.header_logo a {}
.header_logo a img {
  width: auto !important;
}

div#hs_cos_wrapper_header_social_icons {
  float: left;
  margin-top: 8px;
}

.navbar-toggle {
  display: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 0;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 0;
  background-color: #333;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

.vct-cart-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 35px;
}
.vct-cart-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
.vct-cart-wrapper a svg {
  width: 20px;
}

.header_search__form {
  min-width: 310px;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 9;
  line-height: 1;
}
.header_search__form > label {
  width: calc(100% - 36px);
  max-width: 100%;
  font-weight: normal;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.header_search__form .search__submit {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  background: 0 0;
  border: 0;
  box-shadow: none!important;
  opacity: 1;
  padding: 0!important;
  margin: 0;
  line-height: 0;
  outline: 0;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  position: absolute;
}
.header_search__form .search__submit .search__icon {
  width: 36px;
  padding-top: 6px;
  display: inline-block;
  color: #666;
  background: #ededed;
  box-shadow: none;
  outline: 0;
  margin: 0;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 0;
  line-height: 1;
  height: 36px;
  text-transform: capitalize;
  vertical-align: middle;
  -webkit-transition: background-color .1s ease-in-out;
  -moz-transition: background-color .1s ease-in-out;
  -o-transition: background-color .1s ease-in-out;
  transition: background-color .1s ease-in-out;
}
.header_search__form .search__submit .search__icon svg {
  width: 22px;
  display: inline;
}
.header_search__form .search__submit .search__icon svg path {
  fill: #555;
}
.header_search__form .search__submit .search__icon:hover {
  background: #dcdcdc;
}
.header_search__form .search__input {
  background: #fff !important;
  color: #333 !important;
  padding: 0 12px;
  outline: 0;
  font-size: 14px;
  height: 36px;
  line-height: 1;
  border: solid 1px #ccc !important;
  border-right: 0;
  font-family: arial;
  width: 100%;
  text-align: left;
}
.search__close {
  cursor: pointer;
  display: none;
  height: 20px;
  position: absolute;
  right: -22px;
  width: 20px;
  z-index: 99999;
  top: calc(100% + 7px);
}
.search__close:before {
  border-left: 2px solid #848484;
  content: '';
  height: 20px;
  left: 9px;
  position: absolute;
  -webkit-transform: rotate(
    -45deg
  );
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(
    -45deg
  );
}
.search__close:after {
  border-left: 2px solid #848484;
  content: '';
  height: 20px;
  left: 9px;
  position: absolute;
  -webkit-transform: rotate(
    45deg
  );
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(
    45deg
  );
}






@media (min-width: 768px) {

  .header_logo {
    width: auto;
    padding: 0 15px;
    margin-left: -15px;
  }

  .vct-cart-wrapper {
    float: right;
  }

  .vct-cart-wrapper a {
    height: 55px;
  }

}

@media (min-width: 992px) {

  .header__wrapper {
    display: block;
  }

  .header_logo__social {
    max-width: 28%;
    float: left;
  }

}

@media (min-width: 1024px) {

  .custom_header {
    padding-left: 40px;
    padding-right: 40px;
  }

}

@media (max-width: 1300px) {

  div#hs_cos_wrapper_header_social_icons {
    display: none !important;
  }


}

@media (max-width: 1170px) and (min-width: 1120px) {

  .vct-cart-wrapper {
    margin-right: 0;
  }

}

@media (max-width: 1119px) and (min-width: 992px) {

  .vct-cart-wrapper {
    margin-right: 0;
  }

  .custom-menu-primary .navigation-primary > ul.submenu > li > a.menu-link {
    padding: 0.15em 0.6em !important;
  }

  .custom-menu-primary .navigation-primary > ul.submenu > li.has-submenu > a {
    padding-right: 1.5em !important;
  }

  .custom-menu-primary .navigation-primary > ul.submenu > li.has-submenu > a:before {
    right: 3px !important;
  }

}

@media (max-width: 1024px) {

  .header_logo a img {
    width: 250px !important;
  }
body {
    overflow-x: hidden;
}
}

@media (max-width: 991px) {

  .navbar-toggle {
    display: block;
  }

  a.menu-link.search__icon svg path {
    fill: #848484;
  }

  .header_search__form {
    min-width: auto;
    right: 15px;
  }

  .search__close {
    right: -10px;
  }

}

@media (max-width: 767px) {

  .header_logo a img {
    width: 210px !important;
    margin-top: 9px;
    max-width: none;
  }
  .custom_header_lp {
    padding-bottom: 5px;
  }
  .custom_header .custom-menu-primary .navigation-primary>ul ul {
    padding: 0 !important;
    background-color: transparent;
  }
  .child-open {
    top: 6px !important;
  }
  .header_search__form {
    width: 93%;
}
}

@media (max-width: 400px) {

  .header_logo a img {
    max-width: 100%;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */


.custom_footer {
  font-size: 14px;
  line-height: 1.7;
}
.footer-widget-area {
  padding: 45px 0 15px 0;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
#footer .footer_content {
  max-width: 630px;
  border-top: solid thin #343434;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  text-align: center;
}
#footer .copyright {
  font-size: 18px;
  margin-bottom: 10px;
}
#footer .copyright p {
  margin: 0;
}
.menu-footer_menu-en-container {
  overflow: hidden;
}
#footer ul {
    float: none;
    width: 370px;
    text-align: center;
    margin: 0 auto;
}

#footer ul li {
  text-align: center;
  color: #343434;
  padding: 0px 10px;
  margin: 0 auto;
  font-family: "Coves Light",Arial,sans-serif;
  font-size: 18px;
  float: left;
  list-style: none;
  border-right: 1px solid #343434;
}
#footer ul li:last-child {
  border-right: 0px solid #343434;
}
#footer a {
  line-height: 1.2;
}

.footer-bottom {
  display: none;
}
#footer .footer-right-block {
  margin-bottom: 10px;
}
#footer .footer-socials ul {
  padding: 0;
  margin: 0;
  text-align: center;
}
#footer .footer-socials ul li {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 5px;
}
#footer .footer-socials ul li a {
  display: block;
  line-height: 1;
  font-size: 25px;
  color: #777;
  border-bottom: none;
}
#footer .footer-socials ul li a span {
  color: #343434;
}




@media (min-width: 992px) {

  #footer .copyright {
    margin-bottom: 5px;
  }

}
@media (max-width: 991px) {
#footer .footer_content {
  margin: 0 auto;
}
}
@media (max-width: 767px) {

  .footer__container {
    max-width: 90% !important;
  }

  #footer .footer_content {
    max-width: 100%;
  }

  #footer .copyright {
    width: 100%;
    text-align: center;
  }

  #footer ul {
    display: block;
    clear: both;
    width: 100%;
  }

  #footer ul li {
    text-align: center;
    float: none;
    border-right: 0px solid #343434;
  }

  .footer-bottom {
    display: block;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* ============== Comman Styles ===================== */

.blog_html {}

/* Blog Post and Listing Body Class */
.blog {}

.hs_blog_wrapper {}

/* Blog Columns Wrapper */
.blog .content-wrapper {}

.blog .blog-content {}

.blog .blog-sidebar {}

.custom-byline {}
.custom-byline > span {}
.custom-byline > span:first-child {}
.custom-byline a {}
.custom-byline a:hover {}
.custom-byline .meta-author {}
.custom-byline .meta-author a.author-link {}
.custom-byline .meta-author a.author-link:hover {}
.custom-byline .custom-date {}
.custom-byline .meta-category {}
.custom-byline .meta-category a.topic-link {}
.section.post-body ul li::marker {
  color: #009BDB;
}
span.custom-date a {
  color: #343434;
}
span.custom-date a:hover {
  color: #009BDB
}
/* =====================================
Blog Listing 
===================================== */

/* Blog Listing */
.hs-blog-listing {}

.hs-blog-listing .hs_blog_wrapper {
  padding-top: 121px;
} 

/* Blog Columns Wrapper */
.hs-blog-listing .content-wrapper {}

.hs-blog-listing .blog-content {}

.hs-blog-listing .blog-sidebar {}

.hs-blog-header {
  padding-top: 44px;
  padding-bottom: 32px;
}
.hs-blog-header h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: none;
  text-align: center;
}
.hs-blog-header h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01rem;
  line-height: 1.1;
  margin-bottom: 0.625rem;
  text-transform: none;
  text-align: center;
}
.hs-blog-header hr {
  width: 160px;
  border: 0;
  border-top: 4px solid #009bdb;
  margin-top: 50px;
}


/* Use this to style the main wrapper for the blog listing pages */
.blog-listing-wrapper {}
.blog-listing-wrapper .post-listing {
  margin-right: -30px;
}

/* Blog Post Title */
.blog-listing-wrapper .post-listing .post-item .post-header h2,
h2.post-listing-simple {}
.blog-listing-wrapper .post-listing .post-item .post-header h2 a,
h2.post-listing-simple a {}
.blog-listing-wrapper .post-listing .post-item .post-header h2 a:hover,
h2.post-listing-simple a:hover {}

.blog-listing-wrapper .post-listing .post-item .post-body h2,
h2.post-listing-simple {
  margin: 0;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.3;
  font-family: Roboto;
  font-weight: 500;
  color: #555555;
}
.blog-listing-wrapper .post-listing .post-item .post-body h2 a,
h2.post-listing-simple a {}
.blog-listing-wrapper .post-listing .post-item .post-body h2 a:hover,
h2.post-listing-simple a:hover {}


/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item-wrapper {
  float: left;
  width: 33.33333333%;
  padding-right: 30px;
  padding-bottom: 30px;
  vertical-align: top;
}
.blog-listing-wrapper .post-listing .post-item {
  position: relative;
  overflow: hidden;
}
.blog-listing-wrapper .post-listing .post-item .post-header {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  position: relative;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform .5s ease;
  -moz-transition: -moz-transform .5s ease;
  -o-transition: -o-transform .5s ease;
  transition: transform .5s ease;
}
.blog-listing-wrapper .post-listing .post-item.no-image .post-header {
  min-height: 250px;
}
.blog-listing-wrapper .post-listing .post-item:hover .post-header {
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  transform: translateY(-20%);
}
.blog-listing-wrapper .post-listing .post-item .post-body {
  display: block;
  -webkit-transition: bottom .5s ease;
  -o-transition: bottom .5s ease;
  transition: bottom .5s ease;
  bottom: -100%;
  z-index: 1000;
  position: absolute;
  width: 100%;
}
.blog-listing-wrapper .post-listing .post-item:hover .post-body {
  bottom: 0;
}
.blog-listing-wrapper .post-listing .post-item.no-image .post-body {
  bottom: 0;
}
.blog-listing-wrapper .post-listing .post-item .post-body:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.blog-listing-wrapper .post-listing .post-item .post-body .post-body-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background-color: #fff;
}
.blog-listing-wrapper .post-listing .post-item .post-body .post-content {
  margin-bottom: 1.5rem;
  font-size: 14px;
  line-height: 1.2;
  font-family: Roboto;
  font-weight: 400;
  color: #555555;
}
.blog-listing-wrapper .post-listing .post-item .post-body .post-content p {
  margin: 0;
}

.custom-byline-listing {}
.custom-byline-listing > span {}
.custom-byline-listing > span:first-child {}
.custom-byline-listing > span:last-child {}
.custom-byline-listing a {}
.custom-byline-listing a:hover {}
.custom-byline-listing .meta-author {}
.custom-byline-listing .meta-author a.author-link {}
.custom-byline-listing .meta-author a.author-link:hover {}
.custom-byline-listing .custom-date {}
.custom-byline-listing .meta-category {}
.custom-byline-listing .meta-category a.topic-link {}
.custom-byline-listing .meta-category a.topic-link:hover {}
.custom-byline-listing .meta-comments {}
.custom-byline-listing .meta-comments a:hover {}

/* Post Featured Image on Listings Page */
.hs-blog-listing .hs-featured-image-wrapper {
  opacity: 0;
  visibility: hidden;
}
.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link {}
.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
  border-width: 0;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: 100%;
  display: inline-block !important;
  float: none;
  margin: 0;
}

/* Read More Link */
.more-link-wrapper {}
a.more-link {}
a.more-link:hover {}


/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato, sans-serif;
  margin: 2rem 0;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

/* Numbered Pagination */
.blog-pagination {}
.blog-pagination > div {}
.blog-pagination-left {}
.blog-pagination-right {}
.blog-pagination-center {}
.blog-pagination-center a {}
.blog-pagination a {}
.blog-pagination a:hover,
.blog-pagination a:focus {}
.blog-pagination a.elipses {}
.blog-pagination a.active {}
.blog-pagination a.next-link {}
.blog-pagination a.prev-link {}
.blog-pagination a.next-link,
.blog-pagination a.prev-link {}
.blog-pagination a.next-link:hover,
.blog-pagination a.prev-link:hover {}


/*============= Search Results ==============*/

ul.hs-search-results__listing {}

ul.hs-search-results__listing li {}
ul.hs-search-results__listing li .hs-search-results__title {}
ul.hs-search-results__listing li .hs-search-results__title .hs-search-highlight {}
ul.hs-search-results__listing li .hs-search-results__title:hover {}
p.hs-search-results__description {}


/* =====================================
Blog Post 
===================================== */

/* Blog Post */
.hs-blog-post {}

.hs-blog-post .hs_blog_wrapper {
  padding-top: 45px;
}

/* Blog Columns Wrapper */
.hs-blog-post .content-wrapper {}

.hs-blog-post .blog-content {
  width: 83.33333333%;
  margin-left: 16.6666%;
  padding-left: 15px;
  padding-right: 15px;
}

.hs-blog-post .blog-sidebar {}

/* Use this to style the main wrapper for the blog post pages */
.blog-post-wrapper {}

/* Blog Title */
.hs-blog-post .post-header h1 {
  color: #343434;
  font-size: 42px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01rem;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 1rem;
  text-transform: none;
}

/* Use this to set up different styling for your blog posts */
.blog-post-wrapper .post-header {}
.blog-post-wrapper .post-body {}
.blog-post-wrapper .post-body img {
  max-width: 100%;
}   
.blog-post-wrapper .custom-post-footer {}

/* Featured Image on Post Page */
.hs-blog-post .hs-featured-image-wrapper {}
.hs-blog-post .hs-featured-image-wrapper .hs-featured-image-link {}
.hs-blog-post .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
  border-width: 0;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: 100%;
  display: inline-block !important;
  float: none;
  margin: 0;
}

.custom-byline-post {
  font-size: 18px;
  font-weight: 500;
  color: #777;
  margin-bottom: 5px;
}
.custom-byline-post > span {}
.custom-byline-post > span:first-child {}
.custom-byline-post > span:last-child {}
.custom-byline-post a {}
.custom-byline-post a:hover {}
.custom-byline-post .meta-author {}
.custom-byline-post .meta-author a.author-link {}
.custom-byline-post .meta-author a.author-link:hover {}
.custom-byline-post .custom-date {}
.custom-byline-post .meta-category {}
.custom-byline-post .meta-category a.topic-link:hover {}
.custom-byline-post .meta-comments {}
.custom-byline-post .meta-comments a:hover {}


/*============ Post Pagination =============*/
.custom-post-pagination .post-pagination-wrapper {}
.custom-post-pagination .post-pagination-wrapper a {}
.custom-post-pagination .post-pagination-wrapper a:hover {}
.custom-post-pagination .post-pagination-wrapper a.previous-posts-link {}
.custom-post-pagination .post-pagination-wrapper a.next-posts-link {}

/* Comment Section */
.comment-date {
  display: block !important;
}

.nav-links.post-navigation {
  margin-top: 1.625rem;
  padding-top: 2.25rem;
  border-top: 1px solid #eee;
}
.nav-links.post-navigation .col-md-5 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.nav-next,
.nav-previous {
  margin-bottom: 1.625rem;
}
.nav-links.post-navigation a .meta-nav {
  font-size: 14px;
  font-style: italic;
  color: #777;
  line-height: 1;
  display: block;
}
.nav-links.post-navigation a .post-title {
  font-size: 22px;
  font-weight: 700;
  color: #343434;
  border-bottom: 1px solid #333;
  border-bottom-color: #343434;
}
.nav-links.post-navigation a:hover .post-title {
  border-bottom-color: transparent;
}


@media (min-width: 992px) {

  .nav-links.post-navigation .col-md-5 {
    width: 41.66666667%;
    float: left;
  }

  .nav-links.post-navigation .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .nav-next, 
  .nav-previous {
    margin-bottom: 0;
  }

}

/* =====================================
Blog Sidebar 
===================================== */

.blog .blog-sidebar {}

/* Blog Modules */
.blog-sidebar .widget_sidebar {
  margin-bottom: 30px;
}
.blog-sidebar .widget_sidebar h3 {}
.blog-sidebar .widget_sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar .widget_sidebar ul li {}
.blog-sidebar .widget_sidebar ul li a {}
.blog-sidebar .widget_sidebar ul li a:hover {}
.blog-sidebar .widget_sidebar ul li a .filter-link-count {
  display: none;
}


/* =============== Blog Author Page and Author Bio =============== */

.hs-blog-listing .hs-author-profile {
  border-bottom: 1px solid #ccc;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
}
.hs-blog-post .hs-author-profile {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 20px 0 20px 0;
  margin: 20px 0 20px 0;
}
.hs-author-profile .hs-author-profile:after {
  content: '';
  display: block;
  clear: both;
}

/* Author Avatar */
.hs-author-profile .hs-author-avatar {
  float: left;
  margin-right: 15px;
  max-width: 100px;
}
.hs-author-profile .hs-author-avatar img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  max-width: 100%;
}

/* Author Bio Wrapper*/
.hs-author-profile .hs-author-bio {
  overflow: hidden;
}

/* Author Name */
.hs-author-profile h2.hs-author-name {
  margin: 0 0 10px 0;
}

/* Author Social Follow Me */
.hs-author-profile .hs-author-social-section {}
.hs-author-profile .hs-author-social-label {}
.hs-author-profile .hs-author-social-links {}
.hs-author-profile .hs-author-social-link {}
.hs-author-profile .hs-social-facebook {}
.hs-author-profile .hs-social-linkedin {}
.hs-author-profile .hs-social-twitter {}
.hs-author-profile .hs-social-google-plus {}


/* =============== Blog Comment Form =============== */

.section.post-footer {
  margin-top: 50px;
}
.section.post-footer .hs-richtext {}
.section.post-footer .hs-richtext h3 {}
.section.post-footer .hs-richtext p {}

/* Label */
.section.post-footer .hs-form-field > label {}
.section.post-footer .hs-error-msgs label {}
.section.post-footer label {}

/* Inputs */
.section.post-footer input[type="text"],
.section.post-footer input[type="email"],
.section.post-footer textarea {}

.section.post-footer input[type="text"]:focus,
.section.post-footer input[type="email"]:focus,
.section.post-footer textarea:focus {}

.section.post-footer input[type="text"] {}
.section.post-footer input[type="text"]:focus {}
.section.post-footer input[type="email"] {}
.section.post-footer input[type="email"]:focus {}
.section.post-footer input[type="submit"] {}
.section.post-footer input[type="submit"]:hover {}

.section.post-footer textarea {}
.section.post-footer textarea:focus {}

.section.post-footer input[type="checkbox"] {}

.section.post-footer .grecaptcha-badge {
  margin: 0 !important;
}

.full_link {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

/* ==========================================================================
8. MISCELLANEOUS                                      
========================================================================== */


/* Styles that do not fit into any of the available sections above can go here. */

.post-content h1 {
  font-size: 28px;
}

.blog-listing-wrapper .post-listing .post-item .post-body h2, h2.post-listing-simple {
    font-size: 19px;


}
/* ==========================================================================
9. MEDIA QUERIES                              
========================================================================== */


@media (max-width: 991px) {

  .hs-blog-post .blog-content {
    width: 100%;
    margin-left: 0;
  }

}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-listing-wrapper .post-listing .post-item.no-image .post-body {
    bottom: auto;
    top: 70px;
  } 
  .blog-listing-wrapper .post-listing .post-item {
    z-index: 9;
  }
  .blog-listing-wrapper .post-listing .post-item .post-body{
    bottom: -150%;
  }
}
@media (max-width: 767px) {

  .hs-blog-header h1 {
    font-size: 36px;
  }

  .hs-blog-header h3 {
    font-size: 23px;
  }

  .blog-listing-wrapper .post-listing .post-item-wrapper {
    float: none;
    width: 100%;
    padding-right: 0;
  }

  .blog-listing-wrapper .post-listing {
    margin-right: 0;
  }

  .hs-blog-post .post-header h1 {
    font-size: 36px;
  }

}


@media (max-width: 479px) {

  .hs_recaptcha.hs-recaptcha.field.hs-form-field > div {
    max-width: 300px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .checkbox-row span.fakelabel span {
    float: none !important;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 20px;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  width: 100%;
  max-width: 650px;
  background-color: #cde3cc;
  border: 1.5px solid #4f7d24;
  border-radius: 6px;
  font-size: 1rem;
  color: #4f7d24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

.hs_cos_wrapper_type_password_prompt input[type="password"] {
  height: auto !important;
  margin: 0 !important;
}

.hs_cos_wrapper_type_email_simple_subscription input[type="email"] {
  width: 100% !important;
}

.hs_cos_wrapper_type_email_subscriptions h1,
.hs_cos_wrapper_type_email_subscriptions h2 {
  font-size: 30px;
}

label[for="hs-login-widget-remember"] {
  display: inline-block;
}

.hs_cos_wrapper_type_member_login .hs-form-field label,
.hs_cos_wrapper_type_member_register .hs-form-field label,
.hs_cos_wrapper_type_password_reset .hs-form-field label {
  padding: 5px 0;
}


@media (max-width: 479px) {

  .hs_cos_wrapper_type_email_simple_subscription h1 {
    font-size: 35px;
  }

  .hs_cos_wrapper_type_email_subscriptions_confirmation h2 {
    font-size: 28px;
  }

  .hs_cos_wrapper_type_email_subscriptions h1,
  .hs_cos_wrapper_type_email_subscriptions h2 {
    font-size: 25px;
  }

}