/* Theme base styles */

/* Settings
This is where most settings/variables go.
*/

/* CSS Variables
-------------------------------------------- */

:root {
  --c-main: #2E3033;
	--c-blue: #0A2342;
	--c-red: #DD1F26;
  --c-sky-blue: #33BEFF;
  --c-grey-light: #F5F5F5;
	--c-light-blue: #F5FCFF;
	--c-highlight: #ee00a7;
  --c-grey: #D9D9D9;
  --c-black: #000000;
  --c-white: #fff;
	--body-background: var(--c-white);
	--global-weight-normal: 400;
	--global-weight-bold: 700;

	--font-heading: "Raleway", serif;
	--font-body: 'Roboto', sans-serif;

	--width-content: 75rem;
	--width-wide: 200rem;
	--width-nav: 160rem;
	--width-medium: 120rem;
	--width-narrow: 96rem;
}

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

/* Basic hiding classes */
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

/* Screen reader visibility classes */
/* Need a "hide-for-sr" class? Add aria-hidden='true' to the element */
.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Only display the element when it's focused */
.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Landscape and portrait visibility */
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}

@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}
/* Alignment */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

@media (min-width:) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-justify {
    text-align: justify;
  }
}

@media (min-width:) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-justify {
    text-align: justify;
  }
}

@media (min-width:) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-justify {
    text-align: justify;
  }
}

@media (min-width:) {
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-justify {
    text-align: justify;
  }
}

@media (min-width:) {
  .text-xxl-left {
    text-align: left;
  }
  .text-xxl-right {
    text-align: right;
  }
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-justify {
    text-align: justify;
  }
}

/* Other */
.text-capitalize {
  text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-wrap {
  word-wrap: break-word !important;
}
/* Spacing */

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 2rem !important;
}
.mt-2 {
  margin-top: 4rem !important;
}
.mt-3 {
  margin-top: 6rem !important;
}
.mt-4 {
  margin-top: 8rem !important;
}
.mt-5 {
  margin-top: 10rem !important;
}
.mt-6 {
  margin-top: 12rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 2rem !important;
}
.mb-2 {
  margin-bottom: 4rem !important;
}
.mb-3 {
  margin-bottom: 6rem !important;
}
.mb-4 {
  margin-bottom: 8rem !important;
}
.mb-5 {
  margin-bottom: 10rem !important;
}
.mb-6 {
  margin-bottom: 12rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 2rem !important;
}
.pt-2 {
  padding-top: 4rem !important;
}
.pt-3 {
  padding-top: 6rem !important;
}
.pt-4 {
  padding-top: 8rem !important;
}
.pt-5 {
  padding-top: 10rem !important;
}
.pt-6 {
  padding-top: 12rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 2rem !important;
}
.pb-2 {
  padding-bottom: 4rem !important;
}
.pb-3 {
  padding-bottom: 6rem !important;
}
.pb-4 {
  padding-bottom: 8rem !important;
}
.pb-5 {
  padding-bottom: 10rem !important;
}
.pb-6 {
  padding-bottom: 12rem !important;
}

/* Popups */
.full-popup {
  position: fixed;
  padding: 0 !important;
  left: 0;
  right: 0;
  max-height: 85vh;
  z-index: 999;
  overflow-y: hidden;
  overflow-x: hidden;
  top: 10vh;
  transition: top 0.5s;
}
.full-popup.active .full-popup__inner {
  animation-name: fullpopup;
  animation-duration: 0.3s;
}
@keyframes fullpopup {
  from {
    translate: 100vw 0;
  }
  to {
    translate: 0 0;
  }
}
.full-popup::after {
  content: "";
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
}
.full-popup__inner {
	max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 1rem 2rem 2rem 2rem;
}
.full-popup__close {
  position: sticky;
  text-align: right;
  top: 1rem;
  left: 100%;
  margin-right: -1rem;
  font-family: sans-serif;
  font-size: 30px;
  font-weight: 400;
  z-index: 999;
}
.full-popup form fieldset p {
  font-size: 14px;
}
.full-popup .hbspt-form .submitted-message {
	background: none;
	border: none;
}
body:has(.full-popup.active) {
  overflow: hidden;
}
@media(min-width: 992px) {
	.full-popup .hbspt-form form .input>ul[role='checkbox'],
	.full-popup form input>ul[role="checkbox"] {
		grid-template-columns: 1fr 1fr;
	}
}
@media(min-width: 1300px) {
  .full-popup__inner {
    padding: 2rem 4rem 4rem;
  }
  .full-popup__close {
    top: 2rem;
    margin-right: -2rem;
  }
}
/* Responsive embed container */
.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}

.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.responsive-embed.portrait,
.flex-video.portrait {
  padding-bottom: 177.77%;
}

.responsive-embed.square,
.flex-video.square {
  padding-bottom: 100%;
}
/* Missing Template at Path: \'APA_July2025\/css\/_macros.css\' */

/* <div class="breakpoint-indicator"></div> */

.breakpoint-indicator {
  background-color: #333;
  var(--c-inv);
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.6rem 1rem;
  border-radius: 0 0.5rem 0 0;
  position: fixed;
  bottom: 0;
  left: 0;
/*   z-index: 10000; */
  z-index: 999999 !important;
}

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

/* Normalize
-------------------------------------------- */

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

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

main {
  display: block;
}

/* 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 {
  border-style: none;
}

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Set box-sizing globally to handle padding and border widths */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Default body styles */
body {
  margin: 0;
  padding: 0;
  background: var(--body-background);
  font-family: var(--font-body);
  font-size: var(--global-font-size);
  font-weight: var(--global-weight-normal);
  line-height: var(--global-lineheight);
  color: var(--c-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  /* Get rid of gap under images by making them display: inline-block; by default */
  display: inline-block;
  vertical-align: middle;

  /* Grid defaults to get images and embeds to work properly */
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

.hs-search-results__featured-image-wrapper {
  flex-basis: 25% !important;
  min-width: 25% !important;
}

#hs_cos_wrapper_search_results .hs-search-results__title {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.3;
  display: block;
}

#hs_cos_wrapper_search_results .hs-search-results__message {
  margin-bottom: 2em !important;
}

.hs-search-results__pagination {
  padding-top: 20px;
}

#hs_cos_wrapper_search_results .hs-search-results__pagination {
    flex-wrap: wrap;
}

@media (max-width: 767px){
  #hs_cos_wrapper_search_results .hs-search-results__featured-image-wrapper {
    margin-bottom: 25px !important;
  }

  #hs_cos_wrapper_search_results .hs-search-results__title {
    margin-bottom: 10px;
  }
}

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

/* Base
-------------------------------------------- */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  color: var(--c-main);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  background-color: var(--body-background);
  letter-spacing: 0.18px;

}


/* Layout
-------------------------------------------- */
/* .site-main {
  overflow: hidden;
} */

.sticky .site-main {
  padding-top: 147px;
}

@media (max-width: 1300px) {
  .sticky .site-main {
    padding-top: 146px;
  }
}

@media (max-width: 1199px) {
 .sticky .site-main {
    padding-top: 82px;
  }
}
.container {
  width: 100%;
  max-width: calc(var(--width-content) + clamp(15px, 3vw, 20px));
  margin-left: auto;
  margin-right: auto;
  padding-right: clamp(15px, 3vw, 20px);
  padding-left: clamp(15px, 3vw, 20px);
}
.container--narrow {
  max-width: var(--width-narrow);
}
.container--wide {
  max-width: var(--width-wide);
}
.container--medium {
  max-width: var(--width-medium);
}

.video-wrap {
  width: 100%;
  height: 0;
  padding: 56.25% 0 0;
  position: relative;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

section {
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
}
@media (min-width: 992px) {
  section {
    padding: 6rem 0;
  }
}

/* Helpers
-------------------------------------------- */

/* Background Colors */

.bg-white {
  background-color: var(--c-inv);
}
.bg-main {
  background-color: var(--c-main);
  color: var(--c-inv);
}
.bg-second {
  background-color: var(--c-second);
  color: var(--c-inv);
}
.bg-third {
  background-color: var(--c-third);
  color: var(--c-second);
}
.bg-light {
  background-color: var(--c-light);
}
.bg-super-light {
  background-color: var(--c-super-light);
}
.bg-dark {
  background-color: var(--c-dark);
  color: var(--c-inv);
}
.bg-theme-01 {
  background: var(--c-main);
  color: var(--c-inv);
  a:not(.btn) {
    color: var(--c-inv);
  }
}
.bg-theme-02 {
  background: var(--c-second);
  color: var(--c-inv);
  a:not(.btn) {
    color: var(--c-inv);
  }
}
.bg-theme-03 {
  background: var(--c-third);
  color: var(--c-main);
  a:not(.btn) {
    color: var(--c-main);
  }
}

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

/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* Paragraphs */
p {
  margin-bottom: 1em;
}

/* Emphasized text */
em,
i {
  font-style: italic;
  line-height: inherit;
}

/* Strong text */
strong,
b {
  font-weight: var(--global-weight-bold);
  line-height: inherit;
}

/* 375px - 1440px */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--font-heading);
   color: var(--c-blue);
   margin-top: 0;
  margin-bottom: .5em;
  --min-w: 37.5;
  --max-w: 120;
  --min-fs: 1;
  --max-fs: 6;
  --slope: calc( ( var(--max-fs) - var(--min-fs) ) / ( var(--max-w) - var(--min-w) ) );
  --y-axis-inter: calc( calc( var(--min-w) * -1 ) * var(--slope) + var(--min-fs) );
  font-size: clamp( calc( var(--min-fs) * 1rem ), calc( var(--y-axis-inter) * 1rem ) + calc( var(--slope) * 100vw ) , calc( var(--max-fs) * 1rem ) );
}

p:first-child,
ul:first-child,
ol:first-child,
h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child,
h6:first-child, .h6:first-child {
  margin-top: 0;
}

.h1_big {
  --min-fs: 3.5;
  --max-fs: 7.5;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1, .h1 {
  --min-fs: 3.125;
  --max-fs: 4.5;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2, .h2 {
  --min-fs: 2.5;
  --max-fs: 3.125;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h3, .h3 {
  --min-fs: 1.75; 
  --max-fs: 2.25; 
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h4, .h4 {
  --min-fs: 1.5;
  --max-fs: 1.75;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h5, .h5 {
  --min-fs: 1.375;
  --max-fs: 1.5;
  font-weight: 700;
  font-style: normal;
  line-height: 1.27;
  letter-spacing: -0.02em;
}
h6, .h6 {
  --min-fs: 1.125;
  --max-fs: 1.25;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Links */
a {
  color: var(--c-blue);
  text-decoration: underline;
  overflow-wrap: break-word;
  font-weight: 500;
  font-style: Italic;
}


a:hover,
a:focus {
  color: var(--c-red);
}

a img {
  border: 0;
}

/* Horizontal rule */
hr {
  clear: both;
  height: 0;
  margin: 3.6rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 0.1rem solid var(--c-blue);
  border-left: 0;
}
hr.hr--mini {
  max-width: 10rem;
}

/* Lists */
ul,
ol,
dl {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-position: inside;
}

/* List items */
li {
  font-size: inherit;
  list-style-position: initial;
}

/* Unordered lists */
ul {
  margin-left: 1.2em;
  list-style-type: disc;
}

/* Ordered lists */
ol {
  margin-left: 1.2em;
}

/* Nested unordered/ordered lists */
ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.2em;
  margin-top: 0;
  margin-bottom: 0;
}

/* ul > li::marker {
color: red;
} */


@media (min-width: 768px) {
  ul.columns-2, 
  ol.columns-2,
  ul.columns-3, 
  ol.columns-3 {
    column-gap: 7rem;
  }
  ul.columns-2, 
  ol.columns-2 {
    column-count: 2;
  }
  ul.columns-3, 
  ol.columns-3 {
    column-count: 3;
  }
}

.list-unstyled {
  margin-left: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* prevent line breaks */
  border: 0;
}

/* Colors */

.color-white {
  color: var(--c-inv);
}

.color-inv {
  color: var(--c-inv);
}

.color-main {
  color: var(--main);
}

.color-second {
  color: var(--second);
}

.color-third {
  color: var(--third);
}

.bg-red {
  background-color: var(--c-red);
}

.bg-blue {
  background-color: var(--c-blue);
}

.bg-light-blue {
    background-color: #33BEFF0D;
}

.bg-white {
  background-color: var(--c-white);
}
.hs-button,
.btn,
.cta_button {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 8px 15px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--c-white);
  background-color: var(--c-blue);
  border: 2px solid var(--c-blue);
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-style: inherit;
      display: inline-flex;
    align-items: center;
}

.hs-button:hover,
.hs-button:focus,
.btn:hover,
.btn:focus {
  background-color: var(--c-white);
  border: 2px solid var(--c-blue);
  color: var(--c-blue);
}

.btn svg, 
.btn svg,
.btn:hover svg, 
.btn:focus svg{
  transition: all 0.3s ease;
}

.btn:hover svg, 
.btn:focus svg {
  transform: rotate(45deg);
}

.btn--second {
  background-color: var(--c-third);
}
.btn--second:hover,
.btn--second:focus {
  color: var(--c-main);
  background-color: var(--c-third);
}

.btn--expanded {
  width: 100%;
}

.btn--large {
  font-size: 2.2rem;
}

.btn--small {
  font-size: 1.4rem;
}


.btn-primary{
  background-color: var(--c-white);
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.btn-primary:hover,
.btn-primary:focus{
  background-color: var(--c-sky-blue);
  border-color: var(--c-sky-blue);
  color: var(--c-blue);
}

.btn-primary:hover svg path,
.btn-primary:focus svg path {
  fill: var(--c-blue);
}

.btn-secondary{
  background-color: var(--c-sky-blue);
  border-color: var(--c-sky-blue);
  color: var(--c-blue);
}

.btn-secondary:hover,
.btn-secondary:focus{
  background-color: var(--c-blue);
  border-color: var(--c-blue);
  color: var(--c-white);
}

.btn-secondary svg path{
  fill: var(--c-white);
}



/* .btn-secondary:hover svg path,
.btn-secondary:hover svg path{
fill: var(--c-white);
} */


.btn-tertiary{
  background-color: var(--c-blue);
  border-color: var(--c-blue);
  color: var(--c-white);
}

.btn-tertiary:hover,
.btn-tertiary:focus{
  background-color: var(--c-white);
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.btn-tertiary svg path {
  fill: var(--c-sky-blue);
}

.btn-tertiary:hover svg path,
.btn-tertiary:focus svg path {
  fill: var(--c-red);
} 


/*  */



.btn-accent{
  background-color: var(--c-white);
  border-color: var(--c-sky-blue);
  color: var(--c-blue);
}

.btn-accent:hover,
.btn-accent:focus{
  background-color: var(--c-sky-blue);
  border-color: var(--c-sky-blue);
  color: var(--c-blue);
}

.btn-normal{
  background-color: transparent;
  border-color: transparent;
  color: var(--c-blue);
  align-items: center;
  display: flex;
  /*   justify-content: center; */
  line-height: normal;
  padding: 8px 15px;
}

.btn-normal:hover,
.btn-normal:focus{
  background-color: transparent;
  border-color: transparent;
  color: var(--c-sky-blue);
}

/* .btn-normal:before {
content: "";
background-image: url(https://46540864.fs1.hubspotusercontent-na1.net/hubfs/46540864/APA_July2025/theme/arrow.svg);
width: 30px;
height: 30px;
background-size: 30px;
display: inline-block;
vertical-align: middle;
margin-right: 10px;
transition: all 0.3s ease;
}

.btn-normal:hover:before {
transform: rotate(45deg);
} */

.btn-icon {
  display: inline-block;
  height: 30px;
  margin-right: 10px;
  transition: all .3s ease;
  vertical-align: middle;
  width: 30px;
}

.btn-normal .btn-text:after {
  content: "";
  background: var(--c-blue);
  height: 2px;
  width: 100%;
  display: block;
  margin: 0 0 0 auto;
}

.btn-normal:hover .btn-text:after {
  background: var(--c-sky-blue);
} 

.btn-normal .btn-icon {
  margin-right: 10px;
}

.bg-blue .btn-tertiary:not(.bg-color-item .btn) {
  background-color: transparent;
  border-color: var(--c-white);
  color: var(--c-white);
}

.bg-blue .btn-tertiary:hover:not(.bg-color-item .btn),
.bg-blue .btn-tertiary:focus:not(.bg-color-item .btn) {
  background-color: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-blue);
}

.bg-blue .btn-secondary:hover:not(.bg-color-item .btn), 
.bg-blue .btn-secondary:focus:not(.bg-color-item .btn){
  border-color: var(--c-white);
}

.bg-red .btn-primary:not(.bg-color-item .btn) {
  border-color: var(--c-white);
}

.bg-red .btn-primary:hover:not(.bg-color-item .btn),
.bg-red .btn-primary:focus:not(.bg-color-item .btn){
  border-color: var(--c-sky-blue);
}

.bg-blue .btn-normal:not(.bg-color-item .btn) {
  color: var(--c-white);
}

.bg-blue .btn-normal .btn-text:not(.bg-color-item .btn):after {
  background: var(--c-white);
}

.bg-blue .btn-normal .btn-icon svg path:not(.bg-color-item .btn svg path) {
  fill: var(--c-white);
}

.bg-blue .btn-normal:hover:not(.bg-color-item .btn),
.bg-blue .btn-normal:focus:not(.bg-color-item .btn) {
  color: var(--c-sky-blue);
}

.bg-blue .btn-normal .btn-text:not(.bg-color-item .btn):after{
  background: var(--c-sky-blue);
}

.bg-blue .btn-normal .btn-text:hover:not(.bg-color-item .btn):after {
  background: var(--c-sky-blue);
}

.bg-red .btn-normal:not(.bg-color-item .btn.btn-normal) {
  color: var(--c-white);
}

.bg-red .btn-normal .btn-text:not(.bg-color-item .btn.btn-normal .btn-text):after {
  background: var(--c-white);
}

.bg-red .btn-normal .btn-icon svg path:not(.bg-color-item .btn.btn-normal svg path) {
  fill: var(--c-white);
}

.bg-red .btn-normal:hover:not(.bg-color-item .btn.btn-normal), 
.bg-red .btn-normal:focus:not(.bg-color-item .btn.btn-normal) {
  color: var(--c-light-blue);
}

.bg-red .btn-normal:hover .btn-text:not(.bg-color-item .btn.btn-normal .btn-text):after,
.bg-red .btn-normal .btn-text:not(.bg-color-item .btn.btn-normal .btn-text):after{
  background:  var(--c-light-blue);
}
/* Forms
-------------------------------------------- */
form {
  font-family: var(--font-heading);
  font-weight: 600;
}

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%;
  margin-bottom: 1rem;
  padding: 15px 10px;
  border: 1px solid #D9D9D9;
  font-family: Raleway;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--c-blue);
  letter-spacing: -0.02em;
  background: var(--c-white);
}

textarea {
  min-height: 10rem;
}

.hs-button {
  cursor: pointer
}

/* Inputs List */

.hs-form ul.inputs-list {
  margin: 0 0 1rem 0;
  padding: 0;
  list-style: none;
}
.hs-form .hs-form-field ul.inputs-list .hs-input {
  position: relative;
  top: 0px;
  width: auto !important;
  margin: 0 0.5rem 0 0;
  height: auto;
  display: inline-block;
}

/* Error */

.hs-input.invalid {
  border-color: red;
}
.hs-error-msgs {
  position: relative;
  top: -1rem;
  margin: 0;
  padding: 0 0 0 1.5rem !important;
  list-style: none;
  color: red;
  font-size: 1.4rem;
}
.hs-error-msgs:after {
  position: absolute;
  content: '▴';
  top: 0;
  left: 0;
  line-height: normal;
}

form label {
  font-weight: 800;
  margin-bottom: 5px;
  display: block;
  color: var(--c-blue);
}

form .hs-form-booleancheckbox > label {
  font-weight: 600;
}

/* Captcha */

.hs_recaptcha {
  margin-bottom: 2rem;
}

/* Fix Column Layouts */

.hs-form fieldset {
  max-width: inherit !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field,
.hs-form fieldset.form-columns-2 .hs-form-field,
.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 100% !important;
}
.hs-form fieldset.form-columns-1 .hs-form-field .input,
.hs-form fieldset.form-columns-2 .hs-form-field .input,
.hs-form fieldset.form-columns-3 .hs-form-field .input {
  margin-right: 0 !important;
}
/* .hs-form fieldset.form-columns-1 .hs-form-field .hs-input, */
.hs-form fieldset.form-columns-2 .hs-form-field .hs-input,
.hs-form fieldset.form-columns-3 .hs-form-field .hs-input {
  width: 100% !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field input[type="radio"].hs-input,
.hs-form fieldset.form-columns-2 .hs-form-field input[type="radio"].hs-input,
.hs-form fieldset.form-columns-3 .hs-form-field input[type="radio"].hs-input {
  width: auto !important;
}


.hs-form-booleancheckbox> .hs-form-booleancheckbox-display {
  display: flex;
}

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

form .hs-form-booleancheckbox > label {
  font-weight: 600;
}

form.hs-form .hs-form-booleancheckbox> .hs-form-booleancheckbox-display>input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

form .hs-form-booleancheckbox> .hs-form-booleancheckbox-display {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 30px;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 16px;
  color: #000;
}

form .hs-form-checkbox> .hs-form-checkbox-display {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 30px;
  cursor: pointer;
}

form .hs-form-booleancheckbox> .hs-form-booleancheckbox-display:before,
form .hs-form-checkbox> .hs-form-checkbox-display:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 100%;
  box-sizing: border-box;
}

form .hs-form-booleancheckbox-display input[type="checkbox"]:checked + span::before,
form .hs-form-checkbox-display input[type="checkbox"]:checked + span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  background: #007bff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

form .hs-form-checkbox> .hs-form-checkbox-display:before,
form .hs-form-checkbox-display input[type="checkbox"]:checked + span::before {
  border-radius: 0;
}

form.hs-form .hs-form-field ul.inputs-list .hs-input {
  display: none;
}


form.hs-form .hs-error-msgs.inputs-list label {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 8px;
  color: var(--c-red);
  font-weight: 500;
}

input#hs-pwd-widget-password {
    height: auto !important;
    margin-top: 0 !important;
}

@media (min-width: 480px) {
  .hs-form fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(1) {
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(2) {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hs-form fieldset.form-columns-3 .hs-form-field:nth-of-type(3) {
    padding-left: 0.75rem;
  }
}



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

/* Navigation Skipper */

.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 4rem;
  padding: 1rem;
  color: var(--c-white) !important;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  border-right: 1px solid var(--c-white);
  border-bottom: 1px solid var(--c-white);
  border-bottom-right-radius: 0.8rem;
  background-color: var(--c-blue);
  transform: translateY(-100%);
  transition: transform 1s ease-in, background-color 0.5s ease-out;
  z-index: 100;
}
.skip-to-content:focus {
  transform: translateY(0);
  transition: transform 0.1s ease-out, background-color 0.5s ease-out;
}
.skip-to-content:hover {
  background-color: #861018;
}





.site-header {  
  width: 100%;
  z-index: 101;
  background: var(--c-blue);
  top: 0;
  transition: all 0.3s ease;
}

.sticky .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 0.3s ease;
}

.sticky .site-header-right-bottom {
  border-top: none;
}

.sticky .site-header-right {
  justify-content: center;
}

.sticky .site-header-right-top {
  display: none;
}

.site-header-logo {
  background: var(--c-white);
  box-shadow: 12px 4px 7.2px 0px #FFFFFF08;
  border-bottom-right-radius: 40px;
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header-left {
  width: 170px;
}

.site-header-right {
  width: calc(100% - 140px);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.site-header-inner {
  display: flex;
  /* flex-wrap: wrap; */
  margin: 0 -15px;
  justify-content: space-between;
}

.site-header-inner>div {
  padding: 0 15px;
}

.site-header__btns {
  display: flex;
  flex-wrap: wrap;
}

.site-header_search {
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

.site-header_btn_search_wrap {
  display: none;
}

.site-header_btn_search_wrap.active {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9;
  max-width: 400px;
  width: 100%;
}

.site-header-right-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 19px 0;
  position: relative;
}

.site-header_btn_search, .site-header_btn_secondary, 
.site-header_btn_primary, .site-header__cart,
.site-header__phone {
  margin-left: 20px;
}

.site-header_btn_secondary {}

.site-header_btn_secondary .btn-secondary {
  padding: 5px 20px;
}


.site-header_btn_secondary .btn-secondary:hover,
.site-header_btn_secondary .btn-secondary:focus {
  background-color: transparent;
  border-color: var(--c-sky-blue);
}

.site-header_btn_primary .btn-accent {
  padding: 5px 20px;
  background-color: transparent;
  color: var(--c-white);
}

.site-header_btn_primary .btn-accent:hover,
.site-header_btn_primary .btn-accent:focus{
  background-color: var(--c-sky-blue);
  color: var(--c-blue);
  border-color: var(--c-sky-blue);
}

.site-header__cart {
  position: relative;
  color: var(--c-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: normal;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.site-header_cart {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--c-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: normal;
  vertical-align: middle;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-style: normal;
}
.site-header_cart.current {
  text-decoration: underline;
  text-decoration-color: var(--c-red);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px; 
}

span.cart_icon {
  margin-right: 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.site-header_cart[aria-expanded="true"] span.cart_icon {
  color: var(--c-sky-blue);
}
.site-header_cart span.cart__count {
  display: none;
  position: absolute;
  top: -4px;
  left: 20px;
  color: var(--c-main);
  background-color: var(--c-white);
  padding: 1px 4px;
  border-radius: 100px;
}
.site-header_cart[aria-expanded="true"] span.cart__count {
  display: block;
}

.site-header__btns .site-header__phone {
  margin-right: 0;
}
.site-header__phone a {
  color: var(--c-sky-blue);
  font-weight: 700;
  font-style: normal;
  text-decoration-color: transparent;
}

.site-header_btn_search_icon {
  line-height: 0;
  cursor: pointer;
}

.site-header_btn_search_icon.active svg path {
  fill: var(--c-red);
}

.site-header_btn_search {
  display: flex;
  align-items: center;
}

.site-header-right-bottom {
  border-top: 1px solid var(--c-white);
}

.site-header-search button.hs-search-field__button {
  display: none;
}

.site-header-search input[type="search"] {
  max-width: 400px;
  width: 100%;
  margin: 0;
  border: none;
  padding: 17px 10px 17px 0;
}

.site-header-search input[type="search"]:focus {
  outline: none;
}

.site-header-search {
  display: flex;
  flex-wrap: wrap;
  background: var(--c-white);
  align-items: center;
  padding: 0 15px;
  box-shadow: 0px 2px 15px 0px #0000001A;
}

.site_search_icon {
  width: 19px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.site_search_icon:after {
  background: var(--c-main);
  height: 19px;
  width: 2px;
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
}

.site_search_icon + div {
  width: calc(100% - 19px);
  padding-left: 20px;
}

.site-header-search .hs-search-field {
  position: static;
}

.site-header-search .hs-search-field__suggestions-container {
  flex-basis: 100%;
  position: absolute;
  top: 100%;
  background: var(--c-white);
  width: calc(100% + 2px);
  left: 0;
  right: 0;
  border: 1px solid var(--c-main);
  padding: 0px;
  margin: 0 -1px;
}

.site-header-search .hs-search-field__suggestions .results-for, 
.site-header-search .hs-search-field__suggestions a {
  padding: 10px;
}


.site-header-search input::-webkit-input-placeholder {
  color: #D1D3D3;
}

.site-header-search input::-moz-placeholder {
  color: #D1D3D3;
}

.site-header-search input:-moz-placeholder {
  color: #D1D3D3;
}

.site-header-search input:-ms-input-placeholder {
  color: #D1D3D3;
}

.site-header-search input::placeholder {
  color: #D1D3D3;
}

@media (max-width: 1199px) {
  .site-header.has-open-mobile-menu[data-scroll-direction="down"] {
    transform: translateY(0%);
  }
}




/* Header Secondary */


@media (min-width: 1200px) {

}


/* Secondary Nav */

.secondary-nav {
  display: flex;
  align-items: center;
}
.secondary-nav__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.secondary-nav__link {
  display: block;
  padding: 0;
  color: var(--c-white);
  text-decoration: none;
  font-family: Raleway;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  font-style: normal;
}
.secondary-nav__link:hover,
.secondary-nav__link:focus {
  color: var(--c-white);
}

.secondary-nav__item {
  margin-right: 20px;
  padding: 0;
  position: relative;
}

.secondary-nav__item:last-child {
  margin-right: 0;
}

.secondary-nav__item:after {
  content: "";
  display: flex;
  background: var(--c-red);
  width: 100%;
  height: 2px;
  bottom: -8px;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.secondary-nav__item.secondary-nav__item--has-children {
  display: flex;
  position: relative;
}

.secondary-nav__item:hover:after, 
.secondary-nav__item.is-open:after {
  opacity: 1;
  visibility: visible;
}

.secondary-nav__dropdown {
  background: var(--c-white);
  list-style: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  text-align: left;
  top: 100%;
  transform: translateY(2rem);
  transition: opacity .15s ease-out, visibility .15s ease-out, transform .15s ease-out;
  visibility: hidden;
  z-index: 13;
  box-shadow: 0px 2px 15px 0px #0000001A;
  padding: 20px 15px;
  white-space: nowrap;
  min-width: 120px;
}

.secondary-nav__dropdown-item:not(:last-child) {
  margin-bottom: 8px;
}

.secondary-nav__dropdown li a {
  color: var(--c-main);
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-transform: capitalize;
  font-style: normal;
  font-family: var(--font-heading);
}

.secondary-nav__dropdown li:first-child > a {
  border-top: 0;
}

.secondary-nav__dropdown li a:hover,.secondary-nav__dropdown li a:focus {
  color: var(--c-red);
}

.secondary-nav__list>li.is-open .secondary-nav__dropdown {
  opacity: 1;
  transform: translateY(8px);
  visibility: visible
}

.secondary-nav__list > .secondary-nav__item--has-children.is-open .main-nav__button svg {
  transform: scaleY(-1)
}


/* Header Main */

.site-header__main {
  display: flex;
  border-bottom: 1px solid var(--c-main);
}
@media (min-width: 1200px) {
  .site-header__main {
    padding: 1.2rem 0;
  }
}
.container--nav {
  max-width: var(--width-nav);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.site-header__logo {
  line-height: 0;
  max-width: 25rem;
}

.site-header__menu {
  display: none;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  .site-header__menu {
    display: flex;
  }
}



/* Main Nav */

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav__item {
  display: flex;
  margin-left: 16px;
  position: relative;
}

.main-nav__item:after {
  content: "";
  display: flex;
  background: var(--c-sky-blue);
  width: 100%;
  height: 2px;
  bottom: 0px;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.main-nav__item:hover:after,
.main-nav__item.is-open:after {
  visibility: visible;
  opacity: 1;
}

.main-nav__item:first-child {
  margin-left: 0;
}
.main-nav__item--has-children {
  position: relative;
}

.main-nav__link {
  display: block;
  padding: 23px 0;
  color: var(--c-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: -0.36px;
}

.main-nav__link:hover {
  color: var(--c-white);
}

.main-nav__item--has-children .main-nav__link {
  padding-right: 0;
}
/*
.main-nav__link.active-branch,
.main-nav__link.active-node {
}
*/
.main-nav__link:hover,
.main-nav__link:focus {
  color: var(--c-white);
}

.main-nav__button {
  cursor: pointer;
  align-items: center;
  background-color: transparent;
  border: none;
  display: flex;
  padding: 0 0 0 5px;
  color: var(--c-main);
}
.main-nav__button svg {
  transition: transform 0.3s ease-out;
}

.main-nav__list > li.is-open .main-nav__button svg {
  transform: scaleY(-1);
}

.main-nav__dropdown {
  background: var(--c-white);
  list-style: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  text-align: left;
  top: 100%;
  transform: translateY(2rem);
  transition: opacity .15s ease-out, visibility .15s ease-out, transform .15s ease-out;
  visibility: hidden;
  z-index: 13;
  box-shadow: 0px 2px 15px 0px #0000001A;
  padding: 20px 15px;
  white-space: nowrap;
}

.main-nav__dropdown-item:not(:last-child) {
  margin-bottom: 8px;
}

.main-nav__dropdown-link {
  color: var(--c-main);
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  text-transform: capitalize;
  font-style: normal;
  font-family: var(--font-heading);
}

.main-nav__dropdown-link:hover, 
.main-nav__dropdown-link:focus {
  color: var(--c-red);
}
.main-nav__dropdown-item:first-child .main-nav__dropdown-link {
  border: none;
}
/*
.main-nav__dropdown-link.active-branch,
.main-nav__dropdown-link.active-node {
}
*/
.main-nav__dropdown-link:hover,
.main-nav__dropdown-link:active,
.main-nav__dropdown-link:focus {
  color: var(--c-red);
}

.main-nav__list > li.is-open .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1300px) and (min-width: 1200px) {
  .main-nav__link {
    font-size: 17px;
  }

  /*   .main-nav__dropdown,
  .secondary-nav__dropdown{
  min-width: 250px;
}
  */
  .main-nav__item--has-children:last-child > ul.main-nav__dropdown {
    right: 0;
    left: auto;
  }

}
/* Mobile Navigation */

.mobile-nav {
  position: relative;
  line-height: 0;
}
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav__toggle {
  width: 55px;
  height: 28px;
  position: relative;
  border: none;
  border-radius: 0%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.mobile-nav__toggle span {
  display: block;
  width: 55px;
  height: 4px;
  border-radius: 4px;
  background: var(--c-red);
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  transition: all 0.15s ease-out;
}
.mobile-nav__toggle span:nth-child(1) {
  top: 0;
}
.mobile-nav__toggle span:nth-child(2) {
  right: 0;
  width: 43px;
  transform: rotate(0);
  transition: all .5s;
  top: 12px;
}
.mobile-nav__toggle span:nth-child(3) {
  top: 24px;
}

.mobile-nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

.mobile-nav__toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

.mobile-nav__menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: calc(100% - 40px);
  transform: translateY(2rem);
  opacity: 0;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  max-height: calc(100vh - 81px);
  overflow-y: auto;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  background: var(--c-white);
  box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .15);
  padding: 35px 30px;
  z-index: 99;
}
.mobile-nav__menu:not(.is-open) {
  display: none;
}
.mobile-nav__menu.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--font-barlow);
  font-size: 1.6rem;
  line-height: 1.1;
}

.mobile-nav__item--has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.mobile-nav__link {
  display: block;
  padding: 0 0;
  color: var(--c-blue);;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 2.5;
  letter-spacing: 0.18px;
  text-transform: capitalize;
  font-style: normal;
  width: calc(100% - 45px);
}
.mobile-nav__link:hover,
.mobile-nav__link:focus {
  color: var(--c-red);
}

.mobile-nav__submenu-toggle {
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
  width: 45px;
  height: 45px;
}
.mobile-nav__submenu-toggle svg {
  transition: transform 0.15s ease-out;
}
.mobile-nav__submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-nav__submenu-toggle[aria-expanded="true"] svg path {
  fill: var(--c-blue);;
}

.mobile-nav__submenu {
  padding: 0 0 0 20px;
  margin: 0;
  list-style: none;
  border: none;
  transition: height 0.15s ease-out;
  width: 100%;
}
.mobile-nav__submenu:not(.is-open) {
  display: none;
}

.mobile-nav__submenu-link {
  display: block;
  color: var(--c-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-style: normal;
  padding: 10px 0 10px 0;
}
.mobile-nav__submenu-link:hover,
.mobile-nav__submenu-link:focus {
  color: var(--c-red);
}

.mobile-nav__login {
  padding: 2rem;
}

.mobile-subnav__list {
  border-top: 1px solid #D9D9D9;
  padding-top: 10px;
  margin-top: 10px;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.mobile-subnav__list .mobile-nav__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  line-height: 2.9;
  letter-spacing: 0;
  text-transform: uppercase;
  font-style: normal;
  color: var(--c-main);
}

.mobile-nav__submenu-toggle {
  width: 40px;
  height: 40px;
}

.mobile-subnav__list .mobile-nav__link:hover {
  color: var(--c-red);
}

/* HS Tools Menu */

div.hs-tools-menu {
  top: -3px !important;
  min-height: 30px !important;
}
div.hs-tools-menu.hs-collapsed img.hs-sprocket {
  width: 24px !important;
  right: 3px !important;
}


@media (max-width: 1199px) {
  .site-header-logo {
    padding: 15px;
    border-bottom-right-radius: 28px;
  }

  .site-header-left {
    width: 130px;
  }

  .site-header-right-top, .site-header-right-bottom {
    display: none;
  }

  .site-header-right {
    width: auto;
    justify-content: center;
  }

}

@media (min-width: 1200px) {
  .mobile_btn_search_wrapper,
  .site-header-mobile-nav{
    display: none;
  }
}

@media (max-width: 1199px) {
  .mobile-nav {
    position: static;
  }

  .mobile_btn_search_wrap,
  .mobile_btn_back_icon{
    display: none;
  }

  .site-header-right {
    flex-direction: row;
    align-items: center;
  }

  .mobile_btn_search_wrapper {
    margin-right: 30px;
  }

  .mobile_btn_search {
    cursor: pointer;
  }

  .mobile_btn_search_icon {
    line-height: 0;
  }

  .mobile-nav__btns {
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
  }

  .site-header_btn_primary .btn-accent {
    color: var(--c-blue);
  }

  .site-header_btn_secondary .btn-secondary:hover, 
  .site-header_btn_secondary .btn-secondary:focus {
    color: var(--c-blue);
  }

  .site-header_btn_primary.mobile-nav_btn_primary {
    margin-left: 0;
  }

  .mobile_btn_search.active .mobile_btn_search_icon {
    visibility: hidden;
    opacity: 0;
    height: 0;
  }

  .mobile_btn_search.active .mobile_btn_back_icon {
    display: flex;
  }

  .mobile_btn_search div {
    transition: all 0.3s ease;
  }

  .mobile_btn_search_wrap.active {
    display: flex;
    position: absolute;
    top: 100;
    left: 0;
    right: 0;
    z-index: 99;
    width: calc(100% - 30px);
    margin: 0 auto;
  }

  .site-header-inner {
    position: relative;
  }

  .mobile-search {
    width: 100%;
  }

  .mobile_btn_search_wrap .hs-search-field__form {
    width: 100%;
    display: block;
  }

  .site-header-search input[type="search"] {
    max-width: 100%;
  }

  .site-header-search .hs-search-field__suggestions-container {
    border: none;
  }
}

@media (max-width: 767px) {
  .mobile-nav__menu {
    padding: 20px;
    width: calc(100% - 30px);
  }

  .mobile-nav__toggle span {
    width: 45px;
  }

  .mobile-nav__toggle span:nth-child(2) {
    width: 35px;
  }

  .mobile_btn_search_wrapper {
    margin-right: 20px;
  }
}
/* LP Header */

.site-header-container.header_lp {
    height: 120px;
}

.header_lp .mobile-nav {
    display: none;
}

.header_lp .site-header__main>.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
/*     -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; */
}
.site-footer__bottom {
  background: #fff;
  padding: 15px 30px;
}

.site-footer__bottom_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 -15px;
}

.site-footer__socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.site-footer__socials ul li {
  line-height: normal;
  margin: 0 5px;
}

.site-footer__socials ul li a svg {
  display: block;
}

.site-footer__socials ul li a:hover svg path {
  fill: var(--c-sky-blue);
}

.site-footer__socials, .site-footer__legal {
  padding: 0 15px;
}

.site-footer__legal {
  font-family: Raleway;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--c-main);
  letter-spacing: -0.28px;
  line-height: normal;
}

.site-footer__legal a {
  margin-right: 10px;
  font-style: normal;
  text-decoration: none;
  color: var(--c-main);
}

.site-footer__legal a:hover {
  color: var(--c-red);
}

.site-footer__bg {
  background: #F5FCFF;
  padding: 50px 0px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  margin-top: 50px;
}

.site-footer_middle_cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}

.site-footer_middle_cols>div {
  padding: 0 15px;
  row-gap: 15px;
}

.site-footer_middle_btn {
  display: flex;
  flex-wrap: wrap;
}

.site-footer_middle_btn>div:not(:last-child) {
  margin-right: 20px;
}

.site-footer_middle_btn span.btn-icon {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
  line-height: 0;
  margin-top: -3px;
}

.site-footer_middle_btn span.btn-icon svg {
  display: inline-block;
}

.site-footer_middle_btn .btn {
  padding: 9px 15px;
}


.site-footer_middle_btn .btn:hover span.btn-icon svg, 
.site-footer_middle_btn .btn:focus span.btn-icon svg {
  transform: none;
}

.site-footer__middle {
  padding-top: 50px;
}

.site-footer_middle_btn .btn.btn-primary:hover,
.site-footer_middle_btn .btn.btn-primary:focus {
  background-color: var(--c-blue);
  border-color: var(--c-blue);
  color: var(--c-white);
}

.site-footer_middle_btn .btn.btn-primary:hover svg path,
.site-footer_middle_btn .btn.btn-primary:focus svg path {
  fill: var(--c-sky-blue);
}

.site-footer__top_inner {
  display: flex;
  margin: 0 -15px;
  justify-content: space-between;
}

.site-footer-logodesc {
  width: 30%;
}

.site-footer__top_inner>div {
  padding: 0 15px;
}

.site-footer-col.site-footer-menu {
  width: 15%;
}

.site-footer-col.site-footer-downloads {
  width: 25%;
}

.site-footer-col.site-footer__contact {
  width: 22%;
}

.site-footer-logo img {
  display: block;
  margin-bottom: 15px;
}

.site-footer-desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42;
  font-family: var(--font-heading);
  letter-spacing: -0.28px;
}

.site-footer-col h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  color: var(--c-main);
  margin-bottom: 20px;
}

.site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav ul li {
  margin-bottom: 5px;
}

.site-footer__nav ul li a {
  text-decoration: none;
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.36px;
  text-transform: capitalize;
  color: var(--c-blue);
}

.site-footer__nav ul li a:hover {
  color: var(--c-blue);
  text-decoration: underline;
  color: inherit;
}

.site-footer-downloads ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-downloads ul li {
  margin-bottom: 20px;
}

.site-footer-downloads ul li a {
  text-decoration: none;
  vertical-align: middle;
  display: flex;
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.5;
  align-items: center;
}

.site-footer-downloads ul li a .download-icon {
  margin-right: 10px;
}

.site-footer-downloads ul li a .download-icon svg {
  display: block;
}

.site-footer__contact p {
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.28px;
  position: relative;
  padding-left: 40px;
}

.footer-address-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
}

.site-footer__contact a {
  font-style: normal;
  text-decoration: none;
}

.site-footer__contact a:hover {
  text-decoration: underline;
}


@media (max-width: 1024px){
  .site-footer__bottom_inner {
    flex-direction: column;
  }

  .site-footer__socials {
    padding-bottom: 20px;
  }
}

@media (max-width: 991px){

  .site-footer-logodesc {
    width: 25%;
  }

  .site-footer-col.site-footer-menu {
    width: 18%;
  }

  .site-footer-col.site-footer-downloads {
    width: 25%;
  }

  .site-footer-col.site-footer__contact {
    width: 28%;
  }
}

@media (min-width: 768px){
  .site-footer__contact h3.h6 {
    display: none;
  }
}
@media (max-width: 767px){
  .site-footer__socials {
    padding-bottom: 15px;
  }

  .site-footer__legal a {
    display: block;
    margin: 0 0 14px 0;
    text-align: center;
  }

  .site-footer__legal a {
    margin-bottom: 10px;
  }

  .site-footer__bottom {
    padding-top: 25px;
  }

  .site-footer_middle_cols {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-footer_middle_btn {
    flex-direction: column;
    align-items: center;
  }

  .site-footer_middle_btn>div {
    margin: 0 0 20px 0 !important;
    row-gap: 0;
  }

  .site-footer_middle_img {
    padding-top: 15px !important;
  }

  .site-footer__top_inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-footer-logodesc {
    width: 100%;
  }

  .site-footer-logo {
    text-align: center;
  }

  .site-footer-logo img {
    margin: 0 auto 15px;
  }

  .site-footer__top_inner>div {
    padding-bottom: 30px;
  }

  .site-footer-col.site-footer-menu {
    width: 100%;
    text-align: center;
  }

  .site-footer-col.site-footer-downloads {
    width: 100%;
    text-align: center;
  }

  .site-footer-downloads ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer-col h3 {
    margin-bottom: 20px;
  }

  .site-footer-col.site-footer__contact {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer__contact p {
    display: inline-block;
    margin-bottom: 20px;
  }

  .site-footer__contact p br {
    display: none;
  }

  .site-footer__middle {
    padding-top: 0;
  }

  .site-footer__legal {
    text-align: center;
    line-height: 1.5;
  }


}

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

.blog-header {
  background: var(--c-second);
  color: var(--c-inv);
}
.blog-header h1 {
  margin: 0 0 .25rem;
}
/* blog index  */
.blog-index > .container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
}
.blog-index .post-item {
  padding: 2rem;
}
.blog-index .post-item:nth-child(even) {
  background: var(--c-super-light);
}
.blog-index .hs-featured-image-wrapper {
  margin-bottom: 2rem;
}
.blog-sidebar-topic-filter h3 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}
.blog-sidebar-topic-filter ul {
  padding: 1rem 0;
  margin: 0;
  list-style: none;
}
.blog-pagination {
  padding: 2rem 0;
}
.blog-pagination .blog-pagination__link {
  display: inline-block;
  padding: .25em .5em;
  background: var(--c-super-light);
  width: 2.5em;
  text-align: center;
}
.blog-pagination .blog-pagination__link:hover,
.blog-pagination .blog-pagination__link--active {
  background: var(--c-highlight);
  color: var(--c-inv);
}
.blog-sidebar {
  padding: 2rem 0;
}
.blog-subscribe,
.blog-sidebar-subscribe {
  background-color: var(--c-third);
  padding: 2rem 1rem;
  border-radius: 1rem;
  color: var(--c-inv)
}
.blog-sidebar-topic-filter {
  padding: 2rem 1rem;
  font-weight: bold;
}
.blog-sidebar-topic-filter li {
  border-bottom: 1px solid var(--c-grey-light);
  padding: .125rem 0;
}
.blog-sidebar-search {
  background-color: var(--c-highlight);
  padding: 3rem 1rem 2rem;
  border-radius: 1rem;
}
.blog-social-share {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .blog-index > .container {
    grid-template-columns: 2fr 1fr;
    column-gap: 6rem;
  }
}
/* blog post  */
.blog-post > .container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
}
.blog-post-inner {
  padding: 2rem 0;
}
.blog-post .hs-featured-image-wrapper {
  margin-bottom: 2rem;
}
.blog-post .a2a_kit a {
  display: inline-block;
}
.blog-post-subscribe {
  background-color: var(--c-second);
  color: var(--c-inv);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
}
@media (min-width: 992px) {
  .blog-post > .container {
    grid-template-columns: 2fr 1fr;
    column-gap: 6rem;
  }
}


/* Blog CSS */

.bl__top-content {
  display: flex;
  justify-content: space-between;
  margin: 0 -15px 40px;
}

.bl__top-content>div {
  padding: 0 15px;
}

.bl__top-heading {
  width: 70%;
}

.bl__top-count {
  width: 30%;
  text-align: right;
}

.bl__top-count p,
.bl__top-heading h4{
  margin: 0;
}

.blog-listing {
  overflow: hidden;
}

.bl__card {
  width: 50%;
  padding: 0 10px 10px;
  margin-bottom: 40px;
}

.bl__carousel {
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}

.bl__card_inner {
  box-shadow: 0px 2px 6px 2px #0000000D;
}

.bl__card:hover .bl__card_inner {
  box-shadow: 2px 3px 12px 0px #D9D9D9;

}

.bl__card-image_wrap {
  background: var(--c-blue);
  padding: 20px;
  position: relative;
}

.bl__card_icon {
  position: absolute;
  right: -21px;
  bottom: -10px;
  width: 125px;
  height: 62px;
  z-index: 3;
}

.bl__card_icon svg path {
  shape-rendering: unset;
}

.bl__card_icon svg {
  width: 125px;
  height: 62px;
}

.bl__card-image_wrap:after {
  content: "";
  background: var(--c-red);
  width: 100%;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.bl__card-image {
  position: relative;
  z-index: 2;
  background: rebeccapurple;
  border-top-right-radius: 100px;
}

.bl__card-image img {
  border-top-right-radius: 100px;
}

.bl__card-content-wrap {
  padding: 30px;
}

.bl__card_title a {
  font-style: normal;
  text-decoration: none;
  font-weight: bold;
}

.bl__card_title {
  line-height: 1.35;
}

.bl__card-content-wrap hr {
  margin: 30px 0 20px;
  border-color: #D9D9D9;
}

.bl_card_btn {
  text-align: right;
}

.bl_card_btn .btn{
  justify-content: flex-end;
  display: inline-block;
}

.bl_card_btn .btn span.btn-text {
  display: inline-block;
}

.bl_card_btn .btn-normal:after {
  bottom: 6px;
  position: relative;
}


.bl_card_btn span.btn-icon {
  margin-right: 6px;
}

.blog-listing__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.blog-listing__pagination-link {
  display: inline-flex;
  margin: 0 9px;
}

.blog-pagination-number-link {
  border: 2px solid #0A2342;
  border-radius: 100px;
  padding: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-style: normal;
  color: var(--c-blue);
}

.blog-pagination-number-link:hover,
.blog-pagination-number-link:focus {
  color: var(--c-blue);
}

.blog-listing__pagination-link--active, 
.blog-listing__pagination-link--active:hover,
.blog-listing__pagination-link--active:focus {
  border-color: #D9D9D9;
  color: #D9D9D9;
}

.blog-pagination__prev-link--disabled svg path {
  fill: #D9D9D9;
}

.blog-pagination__prev-link--disabled,
.blog-listing__pagination-link--active{
  cursor: auto;
}

.blog-pagination-number-link:hover,
.blog-pagination-number-link:focus {
  background: var(--c-blue);
  color: var(--c-white);
}

.blog-listing__pagination-link--active:hover, 
.blog-listing__pagination-link--active:focus {
  border-color: #D9D9D9;
  color: #D9D9D9;
  background: transparent;
}

.blog-post-cols {
  display: flex;
  gap: 40px;
}

.blog-post-left-col {
  width: 60%;
}

.blog-post-right-col {
  width: 40%;
}

.bpost-related-post {
  position: sticky;
  top: 140px;
  padding: 32px;
  box-shadow: 0px 16px 32px -4px rgb(12 12 13 / 10%);
}

.bpost-related-post-title h3 {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 5px;
  margin: 0;
}

.bpost-related-post-item>a {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  font-style: normal;
}

.related-post-icon, .related-post-icon svg {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.related-post-link {
  width: calc(100% - 50px);
  padding-right: 15px;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.3;
}

.bpost-related-post-item {
  margin: 25px 0;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 25px;
}

.bpost-related-post-items {
  padding-top: 10px;
}

.bpost-related-post-item>a:hover svg {
  transform: rotate(45deg);
}

.bpost-related-post-item:last-child {
  padding-bottom: 0;
  border: none;
  margin-bottom: 0;
}

.blog-post__back_btn {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}

.back_btn-icon, .back_btn-icon svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.blog-post__back_btn:hover svg {
  transform: rotate(-45deg);
}

span.back_btn-icon {
  margin-right: 10px;
}

.back_btn-link a {
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
}

.blog-post__date_wrap,
.blog-post-image{
  margin-bottom: 30px;
}

.blog-post-image img {
  width: 100%;
}



@media (max-width: 991px){
  .bl__card-content-wrap {
    padding: 20px;
  }

  .bl__card-image_wrap:after {
    height: 40px;
  }

  .bl__card-image_wrap {
    padding: 15px;
  }

  .bl__card-image, .bl__card-image img {
    border-top-right-radius: 70px;
  }

  .blog-post-cols {
    flex-direction: column;
    gap: 0;
  }

  .blog-post-left-col,.blog-post-right-col {
    width: 100%;
  }

  .blog-post__back_btn,
  .blog-post__date_wrap, .blog-post-image{
    margin-bottom: 20px;
  }

  .blog-post-right-col {
    padding-top: 20px;
  }

  .bpost-related-post {
    position: static;
  }
}

@media (min-width: 768px){

}
@media (max-width: 767px){
  .bl__card {
    width: 100%;
    margin-bottom: 25px;
  }


  .bl__card_icon svg {
    height: 42px;
    width: 105px;
  }

  .bl__card_icon {
    height: 42px;
    width: 105px;
    bottom: -6px;
    right: -24px;
  }

  .bl__card-image img {
    width: 100%;
  }

  .bl__card-image, .bl__card-image img {
    border-top-right-radius: 100px;
  }

  .bl__card_icon {
    display: none;
  }

  .bl__card-content-wrap hr {
    margin: 20px 0;
  }

  .bl__top-content {
    margin-bottom: 25px;
  }

  .blog-pagination-number-link {
    width: 40px;
    height: 40px;
  }

  .related-post-icon, .related-post-icon svg {
    width: 40px;
    height: 40px;
  }

  .bpost-related-post {
    padding: 20px;
  }

  .related-post-link {
    width: calc(100% - 40px);
  }
}

@media (max-width: 479px){
  .bl__card-image, .bl__card-image img {
    border-top-right-radius: 50px;
  }
}
/* Products Page */
.products-single__hero,
.products-single__breadcrumbs>*,
.products-single__breadcrumbs a,
.products-single__title {
  color: white;
}
.products-single__breadcrumbs {
  text-transform: uppercase;
  font-weight: 300;
}
.products-single__breadcrumbs a {
  text-decoration: none;
  font-style: normal;
  font-weight: 300;
}
.products-single__top .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.products-single__top .products-single__top-image {
  margin-top: clamp(-6rem, -9vw, -3rem);
  padding: 2rem;
  background-color: white;
}
.products-single__top .products-single__top-image img {
  width: 100%; 
}
.products-single__specs section {
  padding: 2rem 0;
}
.products-single__specs>div:last-child section {
  padding-bottom: clamp(2rem, 6vw, 4rem); 
}
.products-single__specs .simple-accordion__desc span {
  display: block;
}
.products-single__specs .simple-accordion__desc span.products-single__sku {
  display: inline; 
}
.products-single .attribute-btn {
  margin-bottom: 0.5rem;
}
.products-single .attribute-btn.active {
  background-color: var(--c-white);
  border: 2px solid var(--c-blue);
  color: var(--c-blue);
}
.products-single .products-single__cart-buttons {
  margin-top: 2rem;
}
.product-quantity {
  display: inline-block;
  border: 2px solid var(--c-blue);
  border-radius: 100px;
  background-color: white;
  z-index: 1;
  position: relative;
}
.product-quantity__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 100px;
}
.product-quantity .product-quantity__adjust {
  margin: 0;
  padding: 8px 0px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  line-height: normal;
  text-transform: uppercase;
  color: var(--c-blue);
  background: transparent;
  overflow: hidden;
  font-style: inherit;
}
.product-quantity .product-quantity__decrement {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  padding-left: 15px;
  padding-right: 5px;
}
.product-quantity .product-quantity__increment {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  padding-left: 5px;
  padding-right: 15px;
}
.product-quantity .product-quantity__input { 
  border-radius: 100px;
  padding: 8px 12px;
}

.products-listing__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.products-listing__filter {
  width: 100%;
}

.products-listing__products {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
}
.products-listing__product {
  display: flex;
  align-items: center;
  margin: 0 1rem;
  border: 1px solid var(--c-grey);
}
a.products-listing__product {
  text-decoration: none;
  font-style: normal;
}
.products-listing__product img {
  object-fit: contain; 
  aspect-ratio: 1; 
  width: 8rem;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 10px;
  border-right: 1px solid var(--c-grey);
}
.products-listing__product p {
  padding: 0 10px;
  letter-spacing: -1px;
  margin-bottom: 0;
  line-height: 1.3;
}
.products-listing__pagination {
  text-align: center;
  margin-top: 2rem;
}
.products-listing__pagination button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.products-listing__pagination button[disabled]:hover,
.products-listing__pagination button[disabled]:focus {
  background-color: var(--c-white);
  border-color: var(--c-blue);
  color: var(--c-blue);
}
.products-listing .products-listing__cat-hide {
  display: none; 
}
.products-listing .products-listing__cat-hide.products-listing__cat-show {
  display: block;
}
/* for previewing in editor */
.hs-inline-edit .products-listing .products-listing__cat-hide {
  display: block;
}

@media(min-width: 992px) {
  .products-single__top .container {
    grid-template-columns: 1fr 1fr;
  }
  .products-single__top .products-single__top-image {
    order: 2;
    margin-top: -9rem;
  }
  .products-single__top .products-single__top-content {
    order: 1;
  }
  .products-single__specs>div:last-child section {
    padding-bottom: 6rem; 
  }
  .products-listing__filter {
    width: 33.33%;
    padding: 0 1rem;
  }
  .products-listing__products {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* Cart */
.cart__display {
  background-color: var(--c-grey-light);
}

.cart__display-cols {
  display: flex; 
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.cart__display-cols>div {
  width: 100%;
  background-color: var(--c-white);
  padding: 2rem;
  height: 100%;
  box-shadow: 0px 0px 8px 0px var(--c-grey);
}

.cart__display .cart__buttons {
  margin-top: 1rem; 
}

.cart__product {
  display: flex;
  flex-wrap: nowrap;
  padding: 8px 0;
}

.cart__product-thumb {
  margin-right: 8px;
}

.cart__product-quantity {
  display: inline-block;
  border: 2px solid var(--c-main);
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 8px;
  height: 50px;
}
.cart__product-quantity>* {
  background: transparent;
  border: none;
  padding: 12px 10px;
}
.cart__product-quantity>*:first-child {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  cursor: pointer;
}
.cart__product-quantity>*:last-child {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  cursor: pointer;
}
.cart__product-remove-btn {
  display: inline-block;
}
.cart__product-remove-btn .btn:hover svg,
.cart__product-remove-btn .btn:focus svg {
  transform: none;
}
@media(min-width: 992px) {
  .cart__display-cols>div {
    width: 48%;
    width: calc(50% - 1rem);
  }
}


.cart__popup {
  max-width: 620px; 
  transition: box-shadow 0.5s ease-in;
  box-shadow: 0px 0px 0px 0px var(--c-grey);
}
.cart__popup.active {
  box-shadow: 0px 0px 16px 0px var(--c-grey);
}
.cart__popup .full-popup__inner {
  padding: 2rem;
}
.cart__popup .full-popup__close {
  top: 0;
  border-width: 1px;
}
.cart__popup .cart__msg {
  background-color: var(--c-blue);
  color: var(--c-white);
  padding: 8px 15px;
}
.cart__popup hr {
  margin: 1.4rem auto;
}
.cart__product-thumb img {
  object-fit: contain;
  aspect-ratio: 1;
  width: 8rem;
  height: 8rem;
}
@media (min-width: 1300px) {
  .cart__popup .full-popup__inner {
    padding: 2rem;
  }
  .cart__popup .full-popup__close {
    top: 0;
  }
}

/* VVeani
Vye Viewport Animations - because it is light weight and we should be using it on most blocks
*/

/**Styling scrollable elements*/

.vveani {
	opacity: 0;
	transition: opacity 500ms;
  }

  .vveani.scrolled {
	opacity: 1;
  }

  .scrolled.fade-in {
	animation: fade-in 1s ease-in-out both;
  }

  .scrolled.fade-in-bottom {
	animation: fade-in-bottom 1s ease-in-out both;
  }

  .scrolled.slide-left {
	animation: slide-in-left 1s ease-in-out both;
  }

  .scrolled.slide-right {
	animation: slide-in-right 1s ease-in-out both;
  }

.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

  /* Tone down the animation to avoid vestibular motion triggers like scaling or panning large objects. */
  @media (prefers-reduced-motion) {
	  .vveani {
		opacity: 1 !important;
	  }
	  .scrolled {
		animation: none !important;
	  }
	}

  /* ----------------------------------------------
   * Generated by Animista on 2021-2-11 23:32:31
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info.
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */

  @keyframes slide-in-left {
	0% {
	  -webkit-transform: translateX(-100px);
	  transform: translateX(-100px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }

  @keyframes slide-in-right {
	0% {
	  -webkit-transform: translateX(100px);
	  transform: translateX(100px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	  opacity: 1;
	}
  }

  @keyframes fade-in-bottom {
	0% {
	  -webkit-transform: translateY(50px);
	  transform: translateY(50px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	  opacity: 1;
	}
  }

  @keyframes fade-in {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }
@-webkit-keyframes cosmo-slide-in-top {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	80% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
  }

  /* @media (max-width: 768px) {
	  .vveani { opacity: 1 !important; }
  } */