/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}
@font-face {
	font-family: icomoon;
	src: url(https://25078740.fs1.hubspotusercontent-eu1.net/hubfs/25078740/raw_assets/public/Livxp_September2024/fonts/icomoon.56c40c34a2a59d317a4e36e428bcab44.eot);
	src: url(https://25078740.fs1.hubspotusercontent-eu1.net/hubfs/25078740/raw_assets/public/Livxp_September2024/fonts/icomoon.56c40c34a2a59d317a4e36e428bcab44.eot) format("embedded-opentype"),
		url(https://25078740.fs1.hubspotusercontent-eu1.net/hubfs/25078740/raw_assets/public/Livxp_September2024/fonts/icomoon.44af8fc4a1375ed9700fde15f3fd4333.ttf) format("truetype"),
		url(https://25078740.fs1.hubspotusercontent-eu1.net/hubfs/25078740/raw_assets/public/Livxp_September2024/fonts/icomoon.2578fa623136aaa130ae1c479f56760f.woff) format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: block
}

[class*=" icon_"],[class*=" icon_"]:before,[class^=icon_],[class^=icon_]:before {
    font-family: icomoon!important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}


/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
.dnd-section[class*="force-full-width-section"],
[class*="force-full-width-section"]>.row-fluid,
.dnd-section[class*="force-full-width-section"] .dnd-column{
  padding: 0;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
	margin-bottom:15px;
}
.hs-button{
	margin:10px;
	font-weight:bold;
}
form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.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: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

.header .dnd-section {
	padding: 0;
}

/* Header container */

header.header {
	box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
	z-index: 99;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
}

header {
	padding: 10px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,.4);
	z-index: 3;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0
}

@media(min-width: 768px) {
	header {
		padding:0
	}
}

header .flexHeader {
	display: flex;
	align-items: center;
	max-height: 80px
}

@media(min-width: 768px) {
	header .flexHeader {
		justify-content:space-between
	}
}

header .hdMenu {
	font-size: 18px;
	width: 30px;
	height: 30px;
	padding: 5px
}

@media(min-width: 768px) {
	header .hdMenu {
		display:none
	}
}

header .cmyLogo {
	margin-right: 15px;
	margin-left: 10px;
	width: 78px
}

@media(min-width: 768px) {
	header .cmyLogo {
		display:block;
		margin: 0;
		width: auto;
		min-width: 100px;
		max-width: 100px;
		padding: 6px 0
	}
}

@media(min-width: 1336px) {
	header .cmyLogo {
		min-width:125px;
		max-width: 125px;
		padding: 10px 0
	}
}

header .cmyLogo a,header .cmyLogo img {
	display: block;
	border: none
}

header .cmyLogo a img,header .cmyLogo img img {
	max-width: 100%
}

header .hdNav {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	transform: translateX(-100%);
	opacity: 0;
	transition: all .4s ease-in-out
}

@media(min-width: 768px) {
	header .hdNav {
		transform:none;
		transition: none;
		z-index: 0;
		display: block;
		background: none;
		position: relative;
		width: 100%;
		height: auto;
		opacity: 1;
		padding-left: 30px
	}
}

header .hdNav.show {
	opacity: 1;
	transform: translateX(0);
	overflow: hidden;
	background: rgba(0,0,0,.5)
}

@media(min-width: 768px) {
	header .hdNav.show {
		opacity:1;
		overflow: inherit;
		background: none
	}
}

header .hdNav.show .navOverlap {
	width: 75%;
	max-width: 350px;
	height: 100%;
	background: #fff;
	overflow: auto
}

@media(min-width: 768px) {
	header .hdNav.show .navOverlap {
		width:auto;
		max-width: inherit;
		height: auto;
		background: none;
		overflow: inherit
	}
}

header .hdNav .hdAccess {

	background: #1d032d;
	background-image: linear-gradient(90deg,#1d032d,#51099b 50%,#a72855),url(/img/bg/menuBg.png);
	background-position: 100% 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode: lighten;
	padding: 25px 20px 70px;
	position: relative;
	border-top: 4px solid #ee9842;
	border-image-source: linear-gradient(90deg,#ea0d5a,#ee9842);
	border-image-slice: 1
}

@media(min-width: 768px) {
	header .hdNav .hdAccess {
		display:none
	}
}

header .hdNav .hdAccess .regProvider {
	background: rgba(253,95,102,.2);
	text-transform: uppercase;
	font-weight: 500;
	padding: 15px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	font-size: 13px;
	z-index: 1
}

header .hdNav .hdAccess .regProvider a {
	color: inherit;
	text-decoration: none
}

header nav {
	font-size: 14px;
	font-weight: 300;
	padding: 15px
}

@media(min-width: 768px) {
	header nav {
		font-size:13px;
		background: none;
		padding: 0
	}
}

@media(min-width: 1336px) {
	header nav {
		font-size:14px
	}
}

header nav ul {
	display: flex;
	flex-wrap: wrap
}

@media(min-width: 768px) {
	header nav ul {
		flex-wrap:nowrap
	}
}

header nav ul li {
	width: 100%;
	padding: 0
}

@media(min-width: 768px) {
	header nav ul li {
		width:auto;
		padding: 0 18px
	}

	header nav ul li:first-child {
		padding-left: 15px
	}

	header nav ul li:last-child {
		padding-right: 0
	}


}

header nav ul li a {
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	position: relative
}

@media(min-width: 768px) {
	header nav ul li a {
		padding:0 4px;
		display: inline-block
	}
}

header nav ul li a.active {
	font-weight: 500
}

@media(min-width: 768px) {
	header nav ul li a.active:before {
		content:"";
		position: absolute;
		left: 0;
		bottom: -6px;
		width: 100%;
		height: 5px;
		border-radius: 4px;
		background: hsla(0,0%,100%,.35)
	}
}

@media(min-width: 768px) {
	header .accessBox {
		margin-left:5px;
	}
}

header .accessBox a:first-child {
	margin-right: 10px
}

header .accessBox a:last-child {
	margin-right: 0
}

header .accessBox .btn {
	font-size: 14px;
	padding-right: 10px;
	padding-left: 10px
}

header .accessBox .btn b {
	font-size: 18px
}

@media(min-width: 768px) {
	header .accessBox .btn {
		padding-right:18px;
		padding-left: 18px
	}
}

header .regWrap {
	position: relative;
	display: inline-block;
	vertical-align: middle
}

header .regWrap .regLink {
	margin-right: 0!important
}

header .regWrap .regLink b {
	font-size: 12px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px
}

header .regWrap .regMenu {
	position: absolute;
	right: 10px;
	top: 50px;
	min-width: 200px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 2px 2px 8px rgba(0,0,0,.25);
	padding: 8px 10px;
	display: none;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity .4s ease-in-out .2s
}

header .regWrap .regMenu:before {
	content: "";
	bottom: 100%;
	left: 86%;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border: 5px solid hsla(0,0%,100%,0);
	border-bottom-color: #fff;
	margin-left: -5px
}

header .regWrap .regMenu ul li {
	padding: 0;
	line-height: 1.5;
	border-bottom: 1px solid #eee
}

header .regWrap .regMenu ul li:last-child {
	border-bottom: none
}

header .regWrap .regMenu ul li a {
	display: block;
	text-decoration: none;
	cursor: pointer;
	padding: 6px 10px;
}

header .regWrap .regMenu ul li a:hover {
	opacity: .8
}

header .regWrap .regMenu ul li:last-child {
	padding-bottom: 0
}

header .regWrap .regMenu.show {
	transform: translateY(0);
	opacity: 1;
	display: block
}

header .userLinks {
	position: relative;
	font-size: 14px;
	font-weight: 300
}

@media(min-width: 768px) {
	header .userLinks {
		font-size:14px;
		margin-left: 5px;
		border-left: 1px solid hsla(0,0%,100%,.15)
	}
}

header .userLinks .userInfo {
	margin-bottom: 15px
}

@media(min-width: 768px) {
	header .userLinks .userInfo {
		margin-bottom:0;
		margin-left: 15px
	}
}

header .userLinks .userInfo .userImg {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border: 2px solid hsla(0,0%,100%,.2);
	overflow: hidden;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	background: #fff
}

@media(min-width: 768px) {
	header .userLinks .userInfo .userImg {
		width:36px;
		height: 36px
	}
}

@media(min-width: 1336px) {
	header .userLinks .userInfo .userImg {
		width:46px;
		height: 46px
	}
}

header .userLinks .userInfo .userImg img {
	max-width: 100%;
	height: 100%;
	display: block;
	object-fit: cover
}

header .userLinks .userInfo .userName {
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	max-width: calc(100% - 70px);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden
}

@media(min-width: 768px) {
	header .userLinks .userInfo .userName {
		display:none
	}

	header .userLinks .userMenu {
		position: absolute;
		right: -10px;
		top: calc(100% + 6px);
		min-width: 200px;
		background: #fff;
		border-radius: 12px;
		box-shadow: 2px 2px 8px rgba(0,0,0,.25);
		padding: 8px 10px;
		display: none;
		opacity: 0;
		transform: translateY(-10px);
		transition: opacity .4s ease-in-out .2s
	}

	header .userLinks .userMenu:before {
		content: "";
		bottom: 100%;
		left: 86%;
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border: 5px solid hsla(0,0%,100%,0);
		border-bottom-color: #fff;
		margin-left: -5px
	}

	header .userLinks .userMenu.show {
		transform: translateY(0);
		opacity: 1;
		display: block
	}
}

header .userLinks .userMenu ul li {
	padding: 5px 0
}

@media(min-width: 768px) {
	header .userLinks .userMenu ul li {
		padding:0;
		line-height: 1.5;
		border-bottom: 1px solid #fcfcfc
	}

	header .userLinks .userMenu ul li:last-child {
		border-bottom: none
	}
}

header .userLinks .userMenu ul li a {
	display: block;
	padding: 10px;
	text-decoration: none;
	cursor: pointer
}

header .userLinks .userMenu ul li a:hover {
	opacity: .8
}

@media(min-width: 768px) {
	header .userLinks .userMenu ul li a {
		padding:6px 10px;
	}
}

header .userLinks .userMenu ul li:last-child {
	padding-bottom: 0
}

@media(min-width: 768px) {
	header .userLinks .userMenu ul li:last-child {
		display:block;
		margin-top: 10px;
		border-top: 1px solid rgba(57,76,94,.15)
	}

	header .userLinks .userMenu ul li:last-child a {
		color: rgba(57,76,94,.85)
	}
}

header .hdGlobal {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	overflow: inherit
}

@media(min-width: 768px) {
	header .hdGlobal {
		position:absolute;
		right: 25px;
		top: 10px;
		max-width: 400px
	}
}

@media(min-width: 768px) {
	header .hdGlobal {
		position:relative;
		right: inherit;
		top: inherit;
		overflow: inherit;
		display: flex
	}
}

header .hdGlobalLoggedIn {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	overflow: inherit
}

@media(min-width: 768px) {
	header .hdGlobalLoggedIn {
		position:absolute;
		right: 25px;
		top: 10px;
		width: 20%;
		max-width: 450px
	}
}

@media(min-width: 768px) {
	header .hdGlobalLoggedIn {
		position:relative;
		right: inherit;
		top: inherit;
		overflow: inherit;
		display: flex
	}
}


@media(min-width: 768px) {
	header .langLink {
		position:relative;
		right: inherit;
		top: inherit;
		overflow: inherit
	}
}

header .langLink .langInfo {
	margin-bottom: 0;
	margin-right: 15px;
	font-size: 22px;
	position: relative
}

header .langLink .langInfo .icon_lang {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%)
}

header .langLink .langInfo span {
	display: block;
	font-weight: 400;
	padding-left: 0;
	padding-right: 20px;
	font-size: 14px
}

header .langLink .langInfo .icon_arrow_down {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	font-size: 10px
}

header .langLink .langInfo.active .icon_arrow_down {
	transform: translateY(-50%) rotate(180deg)
}

header .langLink .langMenu {
	position: absolute;
	right: 0;
	top: calc(100% + 18px);
	min-width: 150px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 2px 2px 8px rgba(0,0,0,.25);
	padding: 15px 20px;
	display: none;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity .4s ease-in-out .2s;
	font-size: 14px;
}

@media(min-width: 768px) {
	header .langLink .langMenu {
		min-width:250px;
		right: -25px
	}
}

header .langLink .langMenu:before {
	content: "";
	bottom: 100%;
	left: 68%;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border: 5px solid hsla(0,0%,100%,0);
	border-bottom-color: #fff;
	margin-left: -5px
}

header .langLink .langMenu.show {
	transform: translateY(0);
	opacity: 1;
	display: block
}

header .langLink .langMenu .radioList li {
	padding-top: 12px;
	padding-bottom: 12px;
	min-height: 14px;
	min-height: 40px
}

header .langLink .langMenu .radioBlock p {
	font-size: inherit;
	border: none;
	padding: 0 0 0 30px;
	color: inherit
}

header .langLink .langMenu .radioBlock p span {
	opacity: .5;
	font-size: 12px
}

header .langLink .langMenu .radioBlock p:after,header .langLink .langMenu .radioBlock p:before {
	right: inherit;
	left: 0
}

header .langLink .langMenu .radioBlock p:after {
	left: 3px
}

header .hdBar {
	width: 100%;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end
}

@media(min-width: 576px) {
	header .hdBar {
		justify-content:space-between;
		text-align: inherit
	}
}

@media(min-width: 768px) {
	header .hdBar {
		border-right:1px solid hsla(0,0%,100%,.15);
		padding: 0 25px 0 0
	}
}

header .hdBar .searchAll {
	position: relative;
	min-width: 192px;
	width: 100%
}

@media(min-width: 768px) {
	header .hdBar .searchAll {
		min-width:280px
	}
}

header .hdBar .searchAll input {
	font-size: 12px;
	border-radius: 6px;
	border: none;
	box-shadow: none;
	width: 100%;
	font-family: Poppins,sans-serif;
	font-weight: 300;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: hsla(0,0%,100%,.2);
	outline: none;
	padding: 10px 35px 10px 15px
}

header .hdBar .searchAll input::placeholder {
	color: hsla(0,0%,100%,.85)
}

header .hdBar .searchAll button {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 14px
}

header .hdBar .findBox {
	padding-right: 20px;
	border-right: 1px solid hsla(0,0%,100%,.2)
}

header .hdBar .findBox .findIcon,header .hdBar .notifBox .notifIcon {
	font-size: 22px;
	position: relative;
	cursor: pointer
}

header .hdBar .notifBox .notifIcon {
	margin-left: 20px
}

header .hdBar .notifBox .notifIcon-mark {
	position: absolute;
	right: 2px;
	top: 2px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fbb44f;
	display: block;
	border: 1px solid #a72855
}

header .mobileSearch {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 12px 20px;
	transform: translateY(-100%);
	transition: all .4s ease-in-out;
	background: #1d032d;
	background: linear-gradient(90deg,#1d032d,#51099b 50%,#a72855)
}

header .mobileSearch.show {
	transform: translateY(0)
}

header .mobileSearch input {
	font-size: 14px;
	border-radius: 6px;
	border: none;
	box-shadow: none;
	width: 100%;
	font-family: Poppins,sans-serif;
	font-weight: 300;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: hsla(0,0%,100%,.2);
	outline: none;
	padding: 10px 35px 10px 15px
}



header .mobileSearch button {
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 18px
}

.containerBox.content-wrapper.flexHeader {
	padding: 0 15px;
}
.header .hs-button  {
	padding: 11.5px 24px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	border-radius: 30px;
}
.hs-button  {
	padding: 11.5px 24px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	border-radius: 30px;
}
.header .hs-button, .hs-button {
	text-decoration: none;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a {
	font-weight: 600;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a {
	padding: 10px;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li {
	padding: 0;
}
header .hdGlobal > div {
	display: flex;
	align-items: center;
}

.hs-language-switcher__button {
	background: transparent;
	border: 0;
	padding: 0;
}

.header__language-switcher--label-current {
	display: none;
}
.icon_lang:before {
	content: "";
}
.icon_arrow_down:before {
	content: "";
}

header  button.hs-language-switcher__button {
	color: #fff;
}

header  #hs_cos_wrapper_language-switcher .hs-language-switcher__icon--dropdown {
	display: none;
}

header .langLink .langInfo span {
	padding-right: 0;
}

header  button.hs-language-switcher__button svg {display: none;}

header  .userName b {
	color: #fff;
}

header  header .langLink .langInfo .icon_lang {
	left: -26px;
}

header  header .langLink .langInfo .icon_arrow_down {
	right: -17px;
}

header  span.hs-language-switcher__current-language:before {
	content: "";
	font-family: icomoon !important;
	speak: never;
	font-feature-settings: normal;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 22px;
	margin-right: 10px;
	position: relative;
	top: 4px;
}

header  span.hs-language-switcher__current-language:after {
	content: "";
	font-family: icomoon !important;
	speak: never;
	font-feature-settings: normal;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 10px;
	margin-left: 10px;
}
header  svg.hs-language-switcher__icon--dropdown {
	display: none !important;
}
header svg.hs-language-switcher__icon--dropdown {
	display: none !important;
}

header ul.hs-language-switcher__menu.visible {
	right: 0;
	top: calc(100% + 18px);
	min-width: 150px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, .25);
	padding: 15px 20px;
	transform: translateY(-10px);
	transition: opacity .4s ease-in-out .2s;
	font-size: 14px;
	color: #000;
	border: 0 !important;
}

header #hs_cos_wrapper_language-switcher .hs-language-switcher__item {
	background: transparent;
}
header ul.hs-language-switcher__menu.visible {
	padding: 0;
	text-align: left;
}

header #hs_cos_wrapper_language-switcher .hs-language-switcher__item {
	padding: 10px 10px;
}
@media(max-width:910px) and (min-width: 768px){
    header nav ul li {
        padding: 0 10px;
        width: auto;
    }
}
@media(max-width:850px) and (min-width: 768px){
	header nav ul li {
		padding: 0 3px;
		width: auto;
	}
}
@media (min-width: 991px) {
	header .hdGlobal {
		width: 100%;
	}
}
@media(max-width:767px){
	.icon_menu:before {
		content: "";
		color: #fbb44f;
	}

	.header .custom-menu-primary .hs-menu-wrapper > ul > li > a,
	.header .custom-menu-primary .hs-menu-wrapper > ul > li ul li a{
		text-decoration: none;
		padding: 15px 20px;
		display: block;
		color: #394c5e;
		position: relative;
	}

	.header .custom-menu-primary .hs-menu-wrapper>ul li a:hover,
	.header .custom-menu-primary .hs-menu-wrapper > ul > li:hover > a {
		color: #394c5e;
	}
	header nav {
		padding: 0;
	}
	.header .custom-menu-primary .hs-menu-wrapper>ul ul li a {
		padding: 15px 20px;
	}

	.header .custom-menu-primary .hs-menu-wrapper>ul ul {
		display: none;
	}
	.child-trigger {
		position: absolute;
		width: 30px;
		height: 30px;
		right: 0;
		top: 5px;
		font-size: 24px;
		cursor:pointer;
	}

	.custom-menu-primary .hs-menu-wrapper > ul > li {
		position: relative;
	}

	.child-trigger:before {
		content: '+';
		padding-left: 0;
	}

	.child-open .child-trigger:before {
		content: '-';
	}
	header .hdGlobal {
		width: 100%;
	}
	header .cmyLogo {
		width: 100px;
	}
	#hs_cos_wrapper_language-switcher .hs-language-switcher__current-language{
		display:block !important;
	}
	header .langLink .langInfo span {
		font-size: 11px;
	}
	header span.hs-language-switcher__current-language:before {
		font-size: 16px;
		margin-right: 4px;
	}
	.header .hs-button, .hs-button {
		font-size: 10px;
	}
	header span.hs-language-switcher__current-language:after {
		margin-left: 4px;
	}
	.hs-language-switcher__item {
		padding: 0 !important;
	}

	.hs-language-switcher__item a {
		font-size: 12px;
	}

	#hs_cos_wrapper_language-switcher .hs-language-switcher__menu.hs--align-center {
		padding: 0;
	}
	#hs_cos_wrapper_language-switcher .hs-language-switcher__menu {
		width: auto !important;
	}
	#hs_cos_wrapper_language-switcher .hs-language-switcher__menu.hs--align-right {
		left: 0 !important;
		right: auto !important;
		transform: translateX(0) !important;
	}
	header .hdNav.show .navOverlap {
		background: linear-gradient(301.76deg, #1D032D -27.62%, #51099B 17.67%, #A72855 58.47%);
	}

	.header .custom-menu-primary .hs-menu-wrapper>ul>li ul li a, 
	.header .custom-menu-primary .hs-menu-wrapper>ul>li>a {
		color: #fff;
	}

	.child-trigger:before {
		color: #fff;
	}

	.header .custom-menu-primary .hs-menu-wrapper>ul li a:hover, 
	.header .custom-menu-primary .hs-menu-wrapper>ul>li:hover>a {
		color: #fff;
	}

	.custom-menu-primary .hs-menu-wrapper > ul ul {
		background: transparent !important;
	}
}

@media(max-width:400px){
	.header .hs-button {
		padding: 6.5px 14px;
	}
	header .langLink .langInfo {
		margin: 0;
	}

	header .langLink .langInfo span {
		padding: 0;
	}
	header .cmyLogo {
		width: 140px;
	}
	#hs_cos_wrapper_language-switcher .hs-language-switcher__menu {
		width: auto !important;
	}
}




header  span.hs-language-switcher__current-language:before {
	content: "";
	font-family: icomoon !important;
	speak: never;
	font-feature-settings: normal;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 22px;
	margin-right: 10px;
	position: relative;
	top: 4px;
}

header  span.hs-language-switcher__current-language:after {
	content: "";
	font-family: icomoon !important;
	speak: never;
	font-feature-settings: normal;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 10px;
	margin-left: 10px;
}
header  svg.hs-language-switcher__icon--dropdown {
	display: none !important;
}
header svg.hs-language-switcher__icon--dropdown {
	display: none !important;
}

header ul.hs-language-switcher__menu.visible {
	right: 0;
	top: calc(100% + 18px);
	min-width: 150px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, .25);
	padding: 15px 20px;
	transform: translateY(-10px);
	transition: opacity .4s ease-in-out .2s;
	font-size: 14px;
	color: #000;
	border: 0 !important;
}

header #hs_cos_wrapper_language-switcher .hs-language-switcher__item {
	background: transparent;
}
header ul.hs-language-switcher__menu.visible {
	padding: 0;
	text-align: left;
}

header #hs_cos_wrapper_language-switcher .hs-language-switcher__item {
	padding: 10px 10px;
}
header .header__language-switcher--label-current {
    display: block;
    font-size: 12px;
    color: #fff;
    position: relative;
    top: -6px;
}

header .header__language-switcher--label-current:before {
    content: "";
    font-family: icomoon !important;
    speak: never;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

header .header__language-switcher--label-current:after {
    content: "";
    font-family: icomoon !important;
    speak: never;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    margin-left: 10px;
}

header .globe_class {
    background: none !important;
    width: 104px;
    position: absolute;
    top: 4px;
    z-index: 9;
}

 header .header__language-switcher .lang_list_class {
    background: transparent;
    padding: 0;
    border-radius: 25px;
    border: 0;
}

header ul.lang_list_class li a {
    padding: 16px 20px !important;
    color: #000 !important;
    display: block;
    font-size: 14px;
}

header .lang_list_class li {
    padding: 0;
}

header .lang_list_class li {
    padding: 0 !important;
}

header .lang_list_class li {border: 0 !important;
}

header .globe_class:hover .lang_list_class {
    background: transparent !important;
}

header .header__language-switcher .lang_list_class li:hover {
    background: #fff;
}
header .globe_class {
    height: 40px;
}
header .header__language-switcher .lang_list_class {
    min-width: 160px;
    text-align: left;
    border-radius: 15px;
    overflow: hidden;
    top: 36px;
}
footer {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	background-color: #1d032d;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	/* position: absolute; */
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 40px 0 0;
}

@media(min-width: 1200px) {
	footer {
		background-position:50%
	}
}

footer .footWrap {
	padding: 0 15px
}

@media(min-width: 992px) {
	footer .footWrap {
		display: flex;
		align-items: center;
		padding: 15px;
		margin: 0 auto
	}
}

footer .copyRight {
	background: #301445;
	padding: 10px 0;
	text-align: center;
	display: block;
	color: #8d8da0;
	font-size: 9px
}

@media(min-width: 1336px) {
	footer .copyRight {
		font-size:12px
	}
}

footer .footLeft {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid hsla(0,0%,100%,.15)
}

@media(min-width: 992px) {
	footer .footLeft {
		padding:0;
		display: block;
		width: 18%;
		max-width: 240px;
		border-bottom: none;
	}
}

footer .footLeft .cmyLogo {
	display: block;
	min-width: 100px;
	padding: 5px 0;
	max-width: 134px
}

footer .footLeft .cmyLogo a,footer .footLeft .cmyLogo img {
	display: block;
	border: none
}

footer .footLeft .cmyLogo a img,footer .footLeft .cmyLogo img img {
	max-width: 100%
}

footer .footLeft .footSocial {
	max-width: 130px;
	padding: 10px 0;
	text-align: center;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

footer .footLeft .footSocial a {
	color: #8e8ea7;
	font-size: 22px;
	margin: 0 8px;
	text-decoration: none
}

@media(min-width: 1336px) {
	footer .footLeft .footSocial a {
		font-size:24px;
		margin: 0 8px
	}
}

footer .footLeft .footSocial a:hover {
	opacity: .85
}

footer .footRight {
	font-size: 12px;
	text-align: center;
	padding: 11px 0
}

@media(min-width: 576px) {
	footer .footRight {
		padding:11px
	}
}

@media(min-width: 992px) {
	footer .footRight {
		text-align:left;
		padding: 0 60px
	}
}

@media(min-width: 1200px) {
	footer .footRight {
		max-width:700px;
		width: 56%;
	}
}

@media(min-width: 1336px) {
	footer .footRight {
		font-size:14px;
		border-left: 1px solid hsla(0, 0%, 100%, .15);
	}
}

footer .footRight nav {
	font-weight: 300
}

footer .footRight nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center
}

@media(min-width: 992px) {
	footer .footRight nav ul {
		flex-wrap:nowrap;
		justify-content: inherit
	}
}

footer .footRight nav ul li {
	padding: 4px 10px
}

@media(min-width: 576px) {
	footer .footRight nav ul li {
		padding:0 20px
	}
}

@media(min-width: 992px) {
	footer .footRight nav ul li {
		padding:0 30px
	}
}

footer .footRight nav ul li:last-child {
	padding-right: 0
}

footer .footRight nav ul li:first-child {
	padding-left: 0
}

footer .footRight nav ul li a {
	text-decoration: none;
	display: block;
	color: #fbb44f
}

footer .footRight nav ul li a.active {
	font-weight: 500
}

footer .footRight p {
	padding-top: 20px;
	color: hsla(0,0%,86.7%,.7);
	line-height: 1.5
}

@media(min-width: 576px) {
	footer .footRight p {
		width:100%;
		margin: 0 auto
	}
}

@media(min-width: 768px) {
	footer .footRight p {
		width:70%
	}
}

@media(min-width: 992px) {
	footer .footRight p {
		width:auto
	}
}

footer .footRight p {
	font-size: 14px;
}

footer .footRight nav ul li:last-child {
	padding: 0;
}

footer .footRight nav .hs-menu-wrapper > ul > li > a {color: #C4C4C4;}

footer .footRight nav .hs-menu-wrapper > ul li a {
	margin-bottom: 18px;
}

.footer .form-wrapper .form-inner {
	background: rgba(255,255,255,0.1);
	padding: 30px;
	border-radius: 15px;
}

.footer .form-wrapper {
	width: 50%;
}

.footer .hs-form-field {
	margin: 0;
}

.footer form .hs-button, 
.footer form input[type=submit] {
	margin: 0;
}

.footer form .hs-button, 
.footer form input[type=submit] {
}

.footer  form {
	position: relative;
}

.footer .hs_submit.hs-submit {
	position: absolute;
	right: 10px;
	top: 53px;
}

.footer form input[type=text], 
.footer form input[type=email], 
.footer form input[type=password], 
.footer form input[type=tel], 
.footer form input[type=number], 
.footer form input[type=file],
.footer form select,
.footer form textarea {
	border-radius: 46px;
	font-size: 14px;
	line-height: 21px;
	padding: 15px;
	border: 0;
	color: #c4c4c4;
}

.footer .copyright {
	background: #301445;
	padding: 10px 0;
	text-align: center;
	display: block;
	color: #8d8da0;
	font-size: 12px;
}

.footer .copyright small {
	font-size: 12px;
	color: #8D8DA0;
}

.footer .footWrap.content-wrapper {
	padding-bottom: 46px;
}
footer .footLeft .footSocial a {
	font-size: 18px;
}
footer .footRight nav .hs-menu-wrapper>ul li a {
	margin-bottom: 18px;
	text-transform: uppercase;
}

footer.footer {
	position: relative;
	z-index: 9;
}
footer .footRight nav ul li {
	padding-left: 0;
}
@media(max-width:1094px){
	.footer .hs_submit.hs-submit {
		position: absolute;
		right: 10px;
		top: 73px;
	}

}
@media(max-width:991px){
	.footer .form-wrapper {
		width: 100%;
	}

	footer .footRight {
		margin: 30px 0;
	}
	.footer .hs_submit.hs-submit {
		top: 52px;
	}
	footer .footRight nav ul li {
		padding: 0;
	}
	footer .footRight nav .hs-menu-wrapper > ul > li {
		margin: 0 10px;
	}
    footer .footLeft .footSocial {
    justify-content: center;
    max-width: 100%;
}
}
@media(max-width:767px){
	footer .footRight nav .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
		flex-direction: row;
	}
  footer .footLeft .footSocial {
    justify-content: center;
    max-width: 100%;
}
}
@media(max-width:389px){
	.footer .hs_submit.hs-submit {
		top: 75px;
	}
}
@media(max-width:400px){
	footer .footLeft {
		flex-direction: column;
	}
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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

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

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