/* Theme base styles */

/* Theme variable settings
This is where the theme settings are pulled into css variables to be used across the rest of the theme css
*/









:root {
	/* Theme Variable Styles */
	--body: #151F2C;
	--primary: #FF2828;
	--secondary: #2AA8FF;
	--tertiary: #004D99;
	--primary-background: #DCF0FD;
	--secondary-background: #F4FAFE;
	--white: #fff;
	--black: #000;
	--bold: 600;
	--medium: 500;
	--regular: 400;
	--light: 300;
	--h1-color: var(--body);
	--h2-color: var(--body);
	--h3-color: var(--body);
	--h4-color: var(--body);
	--h1-weight: 700;
	--h2-weight: 700;
	--h3-weight: 400;
	--h4-weight: 700;
	--body-size: 1.0rem;
	--h1-size: 3.375rem;
	--h1-mobile-size: 2.0rem;
	--h2-size: 2.0rem;
  --h2-mobile-size: 1.625rem;
	--h3-size: 1.25rem;
	--h3-mobile-size: 1.25rem;
	--h4-size: 0.875rem;
	--h4-mobile-size: 0.875rem;
	--label-color: #014261;
	--help-color: #FF0201;
	--form-background-color: #F4FAFE;
	--form-border-color: ;
	--container: 1240px;
	--container-small: 1000px;
}

/* Venn LWH 20240818 change for Randle */
.body-container--blog-post p {
  margin: 0 0 1.5em !important;
}

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}
.dnd-section:last-child {
    padding-bottom: 0px;
}
.container--small {
	max-width: var(--container-small);
	margin: 0 auto;
	padding: 0 20px;
}

.dnd-section,
.content-wrapper--vertical-spacing {
	padding: 30px 0;
}

.dnd-section > .row-fluid {
	max-width: var(--container);
	margin: 0 auto;
}

div[class*="max-width-section-centering"] > .row-fluid {
	padding: 0 20px;
}

@media screen and (min-width: 768px) {
	.container,
	.container--small{
		padding: 0 40px;
	}
	
	div[class*="max-width-section-centering"] > .row-fluid {
		padding: 0 40px;
	}
	
	.dnd-section,
	.content-wrapper--vertical-spacing {
		padding: 40px 0;
	}
}

@media screen and (min-width: 1380px) {
	.container,
	.container--small{
		padding: 0;
	}
	
	div[class*="max-width-section-centering"] > .row-fluid {
		padding: 0;
	}
}

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

/* Font Family */


@font-face {
  font-family: Gotham Medium;
  src: url("https://8982807.fs1.hubspotusercontent-na1.net/hubfs/8982807/Website%20Redesign%202023/Fonts/Gotham-Medium.otf");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Gotham Ultra;
  src: url("https://8982807.fs1.hubspotusercontent-na1.net/hubfs/8982807/Website%20Redesign%202023/Fonts/Gotham-Ultra.otf");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Codec Pro;
  src: url("https://8982807.fs1.hubspotusercontent-na1.net/hubfs/8982807/Website%20Redesign%202023/Fonts/CodecPro-Thin.otf");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Codec Pro;
  src: url("https://8982807.fs1.hubspotusercontent-na1.net/hubfs/8982807/Website%20Redesign%202023/Fonts/CodecPro-Regular.otf");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}


html {
  font-size: var(--body-size);
}

body {
  font-family: 'Codec Pro', sans-serif;
  background: #fff;
  line-height: 1.4;
  word-break: break-word;
  font-weight: 400;
  font-style: normal;
}

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


@media screen and (max-width:767px){
  .body-wrapper .row-fluid-wrapper {
    overflow-x: clip;
  }
}
/* Custom Font Family */


/* Paragraphs */

p {
  font-size: 1rem;
  color: var(--body);
  margin: 0 0 2.5em;
}

/* Anchors */

a {
  color: var(--secondary);
  cursor: pointer;
  text-decoration: none;
}

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

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--body);
  margin: 0 0 1.4rem;
}

h1, .h1 { 
  font-family: 'Gotham Ultra', sans-serif;
  font-size: var(--h1-mobile-size); 
  font-weight: var(--h1-weight);
  color: var(--h1-color);
  margin: 0 0 30px;
  line-height: 1.07;
}

h2, .h2 { 
  font-family: 'Gotham Ultra', sans-serif;
  font-size: var(--h2-mobile-size); 
  font-weight: var(--h2-weight);
  color: var(--h2-color);
  margin: 0 0 20px;
  line-height: 1.15;
}

h3, .h3 { 
  font-family: 'Codec Pro', sans-serif;
  font-size: var(--h3-mobile-size); 
  font-weight: var(--h3-weight);
  color: var(--h3-color);
  margin: 0 0 16px;
}

h4, .h4 { 
  font-family: 'poppins', sans-serif;
  font-size: var(--h4-mobile-size); 
  font-weight: var(--h4-weight);
  color: var(--h4-color);
  text-transform: uppercase;
  margin: 0 0 12px;
}

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

  h2, .h2 { 
    font-size: var(--h2-size); 
  }

  h3, .h3 { 
    font-size: var(--h3-size); 
  }

  h4, .h4 { 
    font-size: var(--h4-size); 
  }
}

/* Lists */

ul,
ol {
  color: var(--body);
  margin: 0 0 1.4rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Horizontal rules */

hr {
  border: none;
  color: #CCC;
  height: 1px;
}

/* Image alt text */

img {
  font-size: 14px;
  word-break: normal;
  display: block;
}
.btn {
  display: inline-block;
  font-family: 'poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  background: transparent;
  border: none;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  white-space: normal;
  cursor: pointer;
  border-radius: 10rem;
  
}
.btn:hover,
.btn:focus {
  text-decoration: none;
}

.btn span {
  display: block;
  position: relative;
  border-radius: 200px;
  padding: 11px 24px 10px 24px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}


.btn.btn--primary span:before,
.btn.btn--secondary span:before,
.btn.btn--primary span:after,
.btn.btn--secondary span:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 200px;
  pointer-events: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.btn.btn--primary span:before {
  outline: 2px solid var(--primary);
}

.btn.btn--primary span:after {
  outline: 4px solid var(--primary);
  opacity: 0;
  visibility: hidden;
}

.btn.btn--secondary span:before {
  outline: 2px solid var(--secondary);
}

.btn.btn--secondary span:after {
  outline: 4px solid var(--secondary);
  opacity: 0;
  visibility: hidden;
}

.btn.btn--primary:hover span:after,
.btn.btn--primary:focus span:after,
.btn.btn--secondary:hover span:after,
.btn.btn--secondary:focus span:after {
  opacity: 1;
  visibility: visible;
}


/* Primary Button Styles*/
.btn.btn--primary {
  color: var(--body);
  margin-left:2px;
  margin-right:2px;
}

.btn.btn--primary span {
  padding: 11px 24px 10px 24px;
}

@media screen and (max-width:767px){
  .btn.btn--primary span {
    margin-bottom: 2px;
  }
}
.btn.btn--primary:hover span,
.btn.btn--primary:focus span {
  padding: 11px 32px 10px 16px;
}

.btn.btn--primary svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  width: 7px;
  opacity: 0;
  visibility: hidden;	
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.btn.btn--primary:hover svg,
.btn.btn--primary:focus svg {
  right: 16px;
  opacity: 1;
  visibility: visible;
}	


/* Secondary Button Styles*/
.btn.btn--secondary {
  color: var(--body);
  margin-left:4px;
  margin-right:4px;
}


/* Tertiary Button Styles*/
.btn.btn--tertiary {
  color: var(--tertiary);

}

.btn.btn--tertiary span {
  padding: 4px 8px 2px 8px;
}

.btn.btn--tertiary:hover span,
.btn.btn--tertiary:focus span {
  background-color: var(--primary-background);
}



.btn--white span:before {
  outline: 2px solid #FF2828;
  border-radius: 200px;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 100%;
}

.btn--white span:after {
  opacity: 0;
  outline: 4px solid #FF2828;
  visibility: hidden;
  border-radius: 200px;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 100%;
}

.btn--white:hover span:after {
  opacity: 1;
  visibility: visible;
}

.btn.btn--white span {
  color: #ffffff;
  padding:11px 34px 10px 24px;
}


.btn.btn--white svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  width: 7px;
  opacity: 0;
  visibility: hidden;	
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  
}
.btn.btn--white svg path{
  stroke:#fff;
}

.btn.btn--white:hover svg,
.btn.btn--white:focus svg {
  right: 16px;
  opacity: 1;
  visibility: visible;
}
/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form .hs-form-field {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 14px 0;
}

.hs-form-field > label > span:first-child {
  color: var(--label-color);
}

/* Label Styles */
.hs-form-field > label {
  display: block;
  text-transform: capitalize;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 4px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.hs-form-field > label span:first-child {
  color: var(--body);
}


/* Form Input Styles */
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background-color: transparent;
  
  background-color: var(--form-background-color);
  
  border: 2px solid var(--secondary-background);
  
  
  
  border-radius: 4px;
  display: inline-block;
  font-size: 1.125rem;
  padding: 11px 10px 10px 10px;
  width: 100%!important;
  height: 42px;
}

form textarea {
  height: 180px;
}

form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: #8ea8b9;
}

form fieldset {
  max-width: 100% !important;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  outline: 2px solid var(--secondary);
}

form fieldset.form-columns-2 > div {
  width: 100%!important;
}

form fieldset .input {
  margin-right: 0!important;
}

@media (min-width: 481px) {
  form .hs-form-field {
    margin: 12px 0;
  }

  form fieldset.form-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}


/* Inputs - checkbox/radio */
form .hs-fieldtype-radio .hs-form-radio-display,
form .hs-fieldtype-checkbox .hs-form-checkbox-display {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 12px;
}

form .hs-fieldtype-radio .hs-form-radio-display {
  grid-template-columns: 10px 1fr;
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"],
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"] {
  position: relative;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  margin: 1px 0 0;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid var(--secondary);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"] {
  width: 12px !important;
  height: 12px;
  border-radius: 50%;
  outline: 2px solid var(--secondary);
  border: 3px solid #fff;
  margin: 3px 0 0
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"]:checked {
  background-color: var(--tertiary);
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:checked {
  background-color: var(--primary-background);
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--tertiary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-40%);
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .3s;
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:checked:before {
  opacity: 1;
  visibility: visible;
}

form .hs-fieldtype-radio .hs-form-radio-display span,
form .hs-fieldtype-checkbox .hs-form-checkbox-display span {
  display: inline-block;
  font-size: 1rem;
}

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 12px 0;
}

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

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

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

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

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

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

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: var(--help-color);
}

.hs-error-msg {
  color: var(--help-color);
  margin-top: 0.35rem;
}

/* Submit button */
form .hs-submit .actions {
  display: inline-block;
  position: relative;
}

form input[type=submit],
form .hs-button {
  position: relative;
  display: inline-block;
  font-family: 'poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--body);
  line-height: 1;
  text-transform: uppercase;
  background: transparent;
  border: none;
  text-align: center;
  border-radius: 200px;
  padding: 12px 24px 10px 24px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  white-space: normal;
  cursor: pointer;
  border-radius: 10rem;
  
}

form .hs-submit .actions:before,
form .hs-submit .actions:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 200px;
  outline: 2px solid var(--primary);
  pointer-events: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

form .hs-submit .actions:after {
  outline: 4px solid var(--primary);
  opacity: 0;
  visibility: hidden;
}

form .hs-submit .actions:hover:after,
form .hs-submit .actions:focus:after {
  opacity: 1;
  visibility: visible;
}
.hs_submit.hs-submit {
    margin-top: 20px;
}
/* Captcha */

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

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}

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

/* Header DND sections */
body.navOpen {
  overflow: hidden;
}

body.navOpen:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.body-wrapper > div:first-child {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 101;
}

header {
  position: relative;
  -webkit-box-shadow: 0px 8px 24px #151F2C12;
  box-shadow: 0px 8px 24px #151F2C12;
  z-index: 100;
}

header .header__row {
  display: flex;
  align-items: center;
  column-gap: 40px;
  padding: 12px 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header.header--fixed .header__row {
  padding: 8px 0;
}

header .header__row .header__row-logo,
header .header__row .header__row-logo > div,
header .header__row .header__row-logo > div > span {
  line-height: 0;
}

header .header__row .header__row-logo a img {
  max-width: 160px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header.header--fixed .header__row .header__row-logo a img {
  max-width: 120px;
}

header .header__row .header__row-nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

header .header__row .header__row-nav nav {
  display: none;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 20px 20px 50px;
  max-height: calc(100vh - 90px);
  overflow-y: scroll;
}

header.header--fixed .header__row .header__row-nav nav {
  max-height: calc(100vh - 64px);
}

header .header__row .header__row-nav nav > ul[role="menu"] {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

header .header__row .header__row-nav nav > ul a {
  display: inline-block;
  font-family: 'poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--body);
  text-transform: uppercase;
}

header .header__row .header__row-nav nav > ul a:hover,
header .header__row .header__row-nav nav > ul a:focus {
  text-decoration: none;
}

header .header__row .header__row-nav nav > ul > li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .header__row .header__row-nav nav > ul > li[aria-expanded="true"] {
  border-color: var(--secondary);
  overflow: hidden;
  -webkit-box-shadow: 0px 6px 18px #151F2C10;
  box-shadow: 0px 6px 18px #151F2C10;
}

header .header__row .header__row-nav nav > ul > li > a {
  position: relative;
  display: inline-block;
  padding: 14px;
  opacity: .65;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
header .header__row .header__row-nav nav>ul>li>a.no-link-menu:after {
  display: none;
}

header .header__row .header__row-nav nav > ul > li[aria-expanded="true"] > a {
  opacity: 1;
}

header .header__row .header__row-nav nav > ul > li > a:after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .header__row .header__row-nav nav > ul > li[aria-expanded="true"] > a:after {
  width: calc(100% - 28px);
}

header .header__row .header__row-nav nav > ul > li > .menu-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  opacity: .65;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .header__row .header__row-nav nav > ul > li[aria-expanded="true"] > .menu-indicator {
  opacity: 1;
  transform: rotate(180deg);
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav {
  display: none;
  width: 100%;
  padding: 10px 14px 14px;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav.hs-menu__subnav-megamenu {
  padding: 0;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav:not(.hs-menu__subnav-megamenu) ul[role="menu"] {
  display: flex;
  flex-direction: column;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-left {
  padding: 10px 14px;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-left ul li a {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 4px 0;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-left ul li + li a {
  margin-top: 8px;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-right {
  background-color: var(--primary-background);
  padding: 16px 14px;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-right ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 12px;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav ul li a {
  padding: 6px 0;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav ul li + li a {
  margin-top: 10px;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-right ul li + li a {
  margin-top: 0;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav > a {
  font-weight: 700;
  margin-top: 10px;
}

header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-right > a {
  display: block;
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  margin: 14px -8px -8px;
}

header .header__row .header__row-nav nav .mobile-btn-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
  padding: 30px 0 0;
}

header .header__row .header__row-nav nav .mobile-btn-row .btn {
  width: fit-content;
}

.hamburger{
  position: relative;
  display:flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: space-between;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  padding: 10px 0 10px 10px;
  cursor: pointer;
}

.hamburger:after {
  content: '';
  position: absolute;
  top: 0;
  right: -4px;
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body.navOpen .hamburger:after {
  opacity: 1;
  visibility: visible;
}

.hamburger-slice{
  width: 100%;
  height: 4px;
  border-radius: 20px;
  background-color: var(--body);
}

.hamburger-slice.mid {
  width: calc(100% - 10px);
}

.hamburger .top-anim{
  animation: top-k 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .top-anim-r{
  animation: top-k-r 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .mid-anim{
  animation: mid-k 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .mid-anim-r{
  animation: mid-k-r 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .bot-anim{
  animation: bot-k 0.2s;
  animation-fill-mode: forwards;
}

.hamburger .bot-anim-r{
  animation: bot-k-r 0.2s;
  animation-fill-mode: forwards;
}
header .header__row .header__row-nav nav>ul>li.hs-item-has-children ul li a:hover,
header .header__row .header__row-nav nav>ul>li .hs-menu__subnav a:last-child:hover{
  color:#000000;
}
header .header__row .header__row-nav nav>ul>li.hs-item-has-children ul li a {
  position: relative;
}
header .header__row .header__row-nav nav>ul>li.hs-item-has-children ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
header .header__row .header__row-nav nav>ul>li.hs-item-has-children ul li a:hover:after {
  width: 100%;
}


@keyframes top-k{
  from {
    width: 100%;
    transform:rotate(0deg) translate(0,0);
  }
  to {
    width: 30px;
    transform: rotate(45deg) translate(11px,6px);
  }
}

@keyframes top-k-r{
  from{
    transform:rotate(45deg) translate(12px,12px);
  }
  to{
    transform:rotate(0deg) translate(0,0);
  }
}
@keyframes mid-k{
  from {
    opacity:1;
  }
  to {
    opacity:0;
  }
}
@keyframes mid-k-r{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}

@keyframes bot-k{
  from {
    width: 100%;
    transform:rotate(0deg) translate(0,0);
  }
  to {
    width: 30px;
    transform: rotate(-45deg) translate(11px,-6px);
  }
}

@keyframes bot-k-r{
  from {
    transform:rotate(-45deg) translate(12px,-12px);
  }
  to {
    transform:rotate(0deg) translate(0,0);
  }
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
  header .header__row {
    padding: 14px 0;
  }
  header.header--fixed .header__row {
    padding: 10px 0;
  }
  header .header__row .header__row-logo a {
    display: inline-block;
    padding-bottom: 4px;
  }
  header .header__row .header__row-nav nav {
    display: block!important;
    position: relative;
    bottom: initial;
    transform: none;
    left: initial;
    width: 100%;
    padding: 0;
    max-height: initial;
    overflow-y: unset;
  }
  header .header__row .header__row-nav nav > ul[role="menu"] {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 14px;
  }
  header .header__row .header__row-nav nav > ul > li.hs-item-has-children {
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 0;
  }
  header .header__row .header__row-nav nav > ul > li[aria-expanded="true"],
  header .header__row .header__row-nav nav > ul > li:hover {
    border-color: var(--secondary);
    overflow: visible;
    -webkit-box-shadow: 0px 6px 18px #151F2C10;
    box-shadow: 0px 6px 18px #151F2C10;
  }
  header .header__row .header__row-nav nav > ul > li > a {
    font-size: .938rem;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 14px 10px 12px;
    z-index: 1;
  }
  header .header__row .header__row-nav nav > ul > li.hs-item-has-children > a {
    position: relative;
    padding: 14px 32px 12px 10px;
  }
  header .header__row .header__row-nav nav > ul > li.hs-item-has-children[aria-expanded="true"] > a {
    background-color: #fff;
  }
  header .header__row .header__row-nav nav > ul > li:hover > a,
  header .header__row .header__row-nav nav > ul > li:focus > a {
    opacity: 1;
  }
  header .header__row .header__row-nav nav > ul > li > a:after {
    bottom: 10px;
    left: 10px;
  }
  header .header__row .header__row-nav nav > ul > li:hover > a:after {
    width: calc(100% - 20px);
  }
  header .header__row .header__row-nav nav > ul > li[aria-expanded="true"] > a:after {
    width: calc(100% - 42px);
  }
  header .header__row .header__row-nav nav > ul > li > .menu-indicator {
    position: absolute;
    top: 17px;
    right: 10px;
    width: auto;
    height: auto;
    padding: 2px 0 0;
    z-index: 1;
  }
  header .header__row .header__row-nav nav > ul > li > .menu-indicator img {
    max-width: 12px;
  }
  header .header__row .header__row-nav nav > ul > li .hs-menu__subnav {
    display: flex!important;
    flex-direction: column;
    position: absolute;
    bottom: 3px;
    transform: translateY(calc(100% + 30px));
    left: -1px;
    min-width: 220px;
    background-color: #fff;
    border: 1px solid var(--secondary);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0px 6px 18px #151F2C10;
    box-shadow: 0px 6px 18px #151F2C10;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: -1;
  }
  header.header--fixed .header__row .header__row-nav nav > ul > li .hs-menu__subnav {
    bottom: 3.5px;
  }
  header .header__row .header__row-nav nav > ul > li .hs-menu__subnav:not(.hs-menu__subnav-megamenu) {
    border-top-left-radius: 0;
  }
  header .header__row .header__row-nav nav > ul > li .hs-menu__subnav.hs-menu__subnav-megamenu {
    flex-direction: row;
    left: -100px;
    min-width: 680px;
  }
  header .header__row .header__row-nav nav > ul > li[aria-expanded="true"] .hs-menu__subnav {
    transform: translateY(100%);
    opacity: 1;
    visibility: visible;
  }
  header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-left,
  header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-right {
    padding: 16px;
  }
  header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-right {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding-bottom: 10px;
  }
  header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-left ul li + li a {
    margin-top: 12px;
  }
  header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav .megamenu-right > a {
    font-weight: 700;
    background-color: transparent;
    padding: 6px 0;
    margin: 16px 0 0
  }
  header .header__row .header__row-nav nav > ul > li .hs-menu__subnav:not(.hs-menu__subnav-megamenu) ul[role="menu"] {
    display: flex;
    flex-direction: column;
  }
  header .header__row .header__row-nav nav > ul > li .hs-menu__subnav:not(.hs-menu__subnav-megamenu) ul[role="menu"] > li > a {
    padding: 7px 0 2px;
  }
  header .header__row .header__row-nav nav > ul > li .hs-menu__subnav:not(.hs-menu__subnav-megamenu) ul[role="menu"] > li + li > a {
    margin-top: 12px;
  }
  header .header__row .header__row-nav nav > ul > li > .hs-menu__subnav > a {
    font-weight: 700;
    text-align: center;
    margin-top: 12px;
  }
  header .header__row .header__row-nav nav .mobile-btn-row {
    display: none;
  }
}

@media (min-width: 1200px) {
  header .header__row .header__row-logo a img {
    max-width: 160px;
  }
  header.header--fixed .header__row .header__row-logo a img {
    max-width: 130px;
  }
  header .header__row .header__row-nav nav > ul[role="menu"] {
    column-gap: 20px;
  }
  header .header__row .header__row-nav nav > ul > li > a {
    font-size: 1rem;
  }
}
/* Footer Styles */
footer .footer-top {
	background-color: #fff;	
	padding: 40px 0;
}

footer .footer-top .footer-top__row {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}

footer .footer-top .footer-top__row .footer-top__row-logo,
footer .footer-top .footer-top__row .footer-top__row-logo > div,
footer .footer-top .footer-top__row .footer-top__row-logo > div > span {
	line-height: 0;
}

footer .footer-top .footer-top__row .footer-top__row-logo a img {
	width: 100%!important;
	max-width: 240px;
	margin: 0 auto;
}

footer .footer-top .footer-top__row .widget-type-simple_menu {
	margin: 30px 0;
}

footer .footer-top .footer-top__row .widget-type-simple_menu ul[role="menu"] {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

footer .footer-top .footer-top__row .widget-type-simple_menu ul[role="menu"] li a {
	display: inline-block;
	font-family: 'poppins', sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--body);
	text-transform: uppercase;
}

footer .footer-top .footer-top__row .widget-type-simple_menu ul[role="menu"] li a:hover,
footer .footer-top .footer-top__row .widget-type-simple_menu ul[role="menu"] li a:focus {
	text-decoration: none;
}

footer .footer-top .footer-top__row .menu-info {
	display: none;
}

footer .footer-bottom {
	background-color: var(--primary-background);
	padding: 14px 0;
}

footer .footer-bottom .social-links {
	gap: 14px;
}

footer .footer-bottom .social-links .social-links__link {
	display: inline-block;
	padding: 6px;
	line-height: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

footer .footer-bottom .social-links .social-links__link:hover {
	transform: translateY(-4px);
}

@media (min-width: 991px) {
	footer .footer-top {
		padding: 60px 0 50px;
	}
	footer .footer-top .footer-top__row {
		display: grid;
		grid-template-columns: 200px 1fr;
		column-gap: 60px;
		align-items: flex-start;
	}
	footer .footer-top .footer-top__row .footer-top__row-menu .menu-back-to-top {
		display: none;
	}
	footer .footer-top .footer-top__row .widget-type-simple_menu {
		margin: 0;
	}
	footer .footer-top .footer-top__row .widget-type-simple_menu ul[role="menu"] {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		column-gap: 20px;
		row-gap: 30px;
	}
	footer .footer-top .footer-top__row .widget-type-simple_menu ul[role="menu"] li a {
		font-size: 1rem;
	}
	footer .footer-top .footer-top__row .menu-info {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		margin-top: 80px;
	}
	footer .footer-top .footer-top__row .menu-info > div span * {
		margin-bottom: 4px;
	}
	footer .footer-bottom {
		padding: 20px 0;
	}
}

@media (min-width: 1200px) {
	footer .footer-top .footer-top__row {
		grid-template-columns: 240px 1fr;
		column-gap: 80px;
	}
}

@media (min-width: 1400px) {
	footer .footer-top .footer-top__row {
		column-gap: 120px;
	}
}
html, body {
    scroll-behavior: smooth;
}


/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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