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

/* Mobile layout */

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

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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}

.row-fluid {
	width: 100%
}

.row-fluid:after,
.row-fluid:before {
	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%;
	-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%
}

.row-fluid .span11 {
	width: 91.489361693%
}

.row-fluid .span10 {
	width: 82.97872339599999%
}

.row-fluid .span9 {
	width: 74.468085099%
}

.row-fluid .span8 {
	width: 65.95744680199999%
}

.row-fluid .span7 {
	width: 57.446808505%
}

.row-fluid .span6 {
	width: 48.93617020799999%
}

.row-fluid .span5 {
	width: 40.425531911%
}

.row-fluid .span4 {
	width: 31.914893614%
}

.row-fluid .span3 {
	width: 23.404255317%
}

.row-fluid .span2 {
	width: 14.89361702%
}

.row-fluid .span1 {
	width: 6.382978723%
}

.container-fluid:after,
.container-fluid:before {
	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%
	}

	.row-fluid:after,
	.row-fluid:before {
		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%;
		-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%
	}

	.row-fluid .span11 {
		width: 91.436464082%
	}

	.row-fluid .span10 {
		width: 82.87292817100001%
	}

	.row-fluid .span9 {
		width: 74.30939226%
	}

	.row-fluid .span8 {
		width: 65.74585634900001%
	}

	.row-fluid .span7 {
		width: 57.182320438000005%
	}

	.row-fluid .span6 {
		width: 48.618784527%
	}

	.row-fluid .span5 {
		width: 40.055248616%
	}

	.row-fluid .span4 {
		width: 31.491712705%
	}

	.row-fluid .span3 {
		width: 22.928176794%
	}

	.row-fluid .span2 {
		width: 14.364640883%
	}

	.row-fluid .span1 {
		width: 5.801104972%
	}
}

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

	.row-fluid:after,
	.row-fluid:before {
		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%;
		-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%
	}

	.row-fluid .span11 {
		width: 91.45299145300001%
	}

	.row-fluid .span10 {
		width: 82.905982906%
	}

	.row-fluid .span9 {
		width: 74.358974359%
	}

	.row-fluid .span8 {
		width: 65.81196581200001%
	}

	.row-fluid .span7 {
		width: 57.264957265%
	}

	.row-fluid .span6 {
		width: 48.717948718%
	}

	.row-fluid .span5 {
		width: 40.170940171000005%
	}

	.row-fluid .span4 {
		width: 31.623931624%
	}

	.row-fluid .span3 {
		width: 23.076923077%
	}

	.row-fluid .span2 {
		width: 14.529914530000001%
	}

	.row-fluid .span1 {
		width: 5.982905983%
	}
}

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

.clearfix:after {
	clear: both
}

.hide {
	display: none
}

.show {
	display: block
}

.invisible {
	visibility: hidden
}

.hidden {
	display: none;
	visibility: hidden
}

.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
	}
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

.content-wrapper {
  max-width: ;
}
.dnd-section,
.content-wrapper--vertical-spacing {
  padding: ;
}
.dnd-section > .row-fluid {
  max-width: ;
}

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

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

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
.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.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.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;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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 {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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;
  }
}

body{
  margin:0px;
  padding:0px;
}
button, input, optgroup, select, textarea {
    font-family: 'Roboto' !important;
}
.row>* {
    padding-right: 10px;
    padding-left: 10px;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0px 15px;
    width: 100%;
}
header.header.header--no-navigation .container-fluid.content-wrapper:first-child {
    margin: 0px;
    padding: 0px;
    display: none;
}

header.header.header--no-navigation .header__container.content-wrapper {
    margin: 0px;
}

header .row {
    justify-content: space-between;
}

header .row .container-fluid.content-wrapper {
    margin: 0px;
}

header.header.header--no-navigation .header__container.content-wrapper .header__logo {
    top: 10px;
    position: relative;
}

header.header.header--no-navigation .menu__link {
    font-size: 17px;
    font-weight: 600;
   color: #fff;
}
.row {display: flex;flex-wrap: wrap;}
.col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}
.col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
}
.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
.col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}
.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}
.col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}
.col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
}
.col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}
.col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}
.col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
}

.container-fluid.body-container.body-container--home {
  padding: 0;
}
.span12.widget-span.widget-type-cell.dnd-column {
  padding: 0;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  height: 90px;
  padding: 0 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color .4s;
  -o-transition: background-color .4s;
  transition: background-color .4s;
}
header .navbar-brand {
  max-width: 205px;
  width: 15%;
}
header #navbarSupportedContent {
  width: 65%;
}
header #navbarSupportedContent span {
  width: 100%;
}
header #navbarSupportedContent ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-align: center;
}
header #navbarSupportedContent ul li {
  display: inline-block;
}
header #navbarSupportedContent ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  padding: 0px 20px;
  font-weight: 400;
}

header .group-btns {
  width: 20%;
  text-align: right;
}

header .group-btns .btn {
  margin: 0px 10px;
  padding: 7px 20px;
}

header .group-btns .btn a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
}

header .group-btns .sig-up.btn {
  background: #ff0076;
}

.here-section {
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
  background-size: cover;
}

.here-section .heading {
  color: #fff;
  font-size: 45px;
}

.here-section .heading span span {
  font-weight: 300;
}

.here-section .heading span {
  color: #fff;
  font-weight: bold;
}

.here-section .text-fields {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  line-height: 26px;
  margin: 25px 0px;
}

.here-section .col-txt {
  padding-right: 200px;
  margin: 50px 0px;
}

.here-section .row {
  align-items: center;
}

.here-section 
.promo__links svg {
  height: 22px;
  fill: #fff;
  padding-right: 5px;
  margin-right: 5px;
}
.here-section .promo__links a {
  display: flex;
  text-decoration: none;
  margin: 0 40px 0 0;
  width: auto;
  flex-wrap: wrap;
}

.here-section .promo__links .hs_cos_wrapper {
  font-size: 18px;
  color: #fff;
  text-decoration: none !important;
}

.here-section .promo__links .promo-bx {
  display: flex;
  flex-wrap: wrap;
}

body>.container-fluid {
  padding: 0px !important;
}
.progress-bar {
  background-color: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 40px;
  height: 24px;
  overflow: visible;
}
.progress-bar:before {
  content: '4M Max';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  font-size: 13px;
  font-weight: 300;
  color: #000;
}
.progress-bar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 100%;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-image: -webkit-gradient(linear,left top,right top,from(#ff0076),to(#fb58a3));
  background-image: -webkit-linear-gradient(left,#ff0076,#f383b7);
  background-image: -o-linear-gradient(left,#18d6f2 0,#10cb6c 100%);
  background-image: linear-gradient(90deg,#ff61aa 0,#ff0076);
}
.ico__bar-progress {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.progress-bar__metka {
  position: absolute;
  top: -30px;
  font-size: 14px;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
}
.progress-bar__metka.has_after:after {
  background-color: rgba(255,255,255,.7);
}
.progress-bar__metka {
  position: absolute;
  top: -30px;
  font-size: 14px;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
}
.progress-bar__metka.has_after:after {
  background-color: rgba(255,255,255,.7);
}
.progress-bar__metka:after {
  content: '';
  position: absolute;
  bottom: -35px;
  z-index: 1;
  left: 50%;
  width: 1px;
  height: 30px;
}
.progress-bar__notice {
  position: absolute;
  bottom: -30px;
  left: 5%;
  font-size: 12px;
  color: #fff;
  font-weight: 300;
  letter-spacing: .6px;
}
.col-rytbx {
  background-color: rgb(18 18 43 / 45%);
  padding: 45px 25px 60px;
  text-align: center;
}

.col-rytbx h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
}

.col-rytbx p {
  font-size: 18px;
  color: #fff;
}

.col-rytbx #countdown {
  margin: 30px 0px;
}

.col-rytbx #countdown ul {
  margin: 0px 0px 50px;
  padding: 0;
  list-style: none;
  display: inline-block;
  width: 100%;
}

.col-rytbx #countdown ul li {
  display: inline-block;
  padding: 0px 10px;
  color: #fff;
  font-size: 16px;
}

.col-rytbx #countdown ul li span {
  display: block;
  background: #ff0076;
  font-size: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 2px;
  color: #fff;
  margin: 0px auto 5px auto !important;
}

.col-rytbx .ico__text {
  font-size: 18px;
  color: #fff;
  margin: 25px 0;
  display: inline-block;
  font-weight: 300;
}

.col-rytbx  .payments {
  margin: 20px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.col-rytbx .payments img {
  margin: 0px 10px;
}
.col-rytbx .btn {
  background: #ff0076;
  color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  display:inline-block;
  font-weight: 600;
  margin: 10px 0px 20px;
}
.aboutus-sec {
  padding: 100px 0px 0px;
  text-align: center;
}

body .h5 {
  font-size: 18px;
  text-transform: uppercase;
  color: #ff0076;
  margin: 0;
}

body .h2 {
  font-size: 34px;
  color: #222;
  margin: 10px 0px 20px;
  font-weight: 600;
}

.aboutus-sec .text-fields {
  max-width: 1000px;
  margin: 0 auto;
}

body .p {
  font-size: 17px;
  line-height: 26px;
  color: #383838;
  font-weight:300;
}

.logos-bx {
  margin: 80px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
}

.logos-bx .logo {
  width: 20%;
  padding: 0px 15px;
}
.video-bxs {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center  center;
  padding: 100px 0px;
  width: 100%;
  position: relative;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.video-bxs iframe {
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
}
.video-bxs .oembed_container {
  width: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}
.services-sec {
  padding:100px 0px;
  text-align: center;
}
body .h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #000;
}
.services-sec .box-col {
  box-shadow: 0 0 20px #d9d9d98c;
  padding: 50px 30px;
  border-radius: 2px;
}
.services-sec .col-md-6.col-lg-3 {
  margin: 20px 0px 0px;
}
.services-sec .text-fields {
  margin-bottom: 30px;
}
.video-bxs::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 82%);
  left: 0;
  top: 0;
}
.static-data {
  padding: 120px 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.static-data .h2 {
  color: #fff;
  margin: 30px 0px 0px;
}
.data__num {
  position: relative;
  margin-top: 30px;
}
.data__num-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.data__num-value {
  font-size: 120px;
  line-height: 90px;
  color: #fff;
  font-weight: 700;
  margin-right: 24px;
}
.data__num-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 34px;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.data-field {
  font-size: 18px;
  color: #ffffff;
  font-weight: 300;
  text-transform: uppercase;
}
.static-data .row {
  align-items: center;
}
.road-map {
  padding: 100px 0px;
}

.road-map .text-fields {
  text-align: center;
  margin-bottom:50px;
}

.road__item {
  position: relative;
  padding-left: 106px;
  margin-bottom: 30px;
}
.road__item:before {
  content: '';
  position: absolute;
  top: 11px;
  border-bottom: 1px solid #e2e2e2;
  left: 40px;
  width: 47px;
}
.road__item-metka {
  width: 17px;
  height: 17px;
  border: 2px solid #ff0076;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}
.road__item-title {
  position: absolute;
  left: -230px;
  text-align: right;
  width: 200px;
  top: -1px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
}
.road__item:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 8.5px;
  width: 1px;
  border-left: 1px solid #ff0076;
  height: -webkit-calc(100% + 30px);
  height: calc(100% + 30px);
}
.road__item:last-child {
  margin-bottom: 0;
}
.road__item-active .road__item-metka {
  width: 31px;
  height: 31px;
  border: 2px solid #ff0076;
  position: absolute;
  top: -5px;
  left: -7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.road__item-active .road__item-metka:after {
  content: '';
  display: block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background-color: #ff0076;
}
.road__item-active:after {
  border-left: 1px dashed #c6c6c6;
}

.road__item:last-child::after {
  display: none;
}
/**Team**/
.team_section {
  max-width: 100%;
  padding: 100px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
.team_section .text-fields {
  max-width: 100%;
  text-align: center;
  margin-bottom: 45px;
}

.team_section .colbox {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  align-items: center;
  padding: 30px 20px;
  background: #ffffff1f;
  border-radius: 5px;
  box-shadow: 0 0 20px #00000061;
}
.team_section .team_image {
  max-width: 100%;
  width: 40%;
}
.team_section .img_team img {
  width: 100%;
  max-width: 100px !important;
}
.team_section .team_info {
  width: 60%;
  padding-left: 10px;
}
.team_section .team_info .name_team {
  max-width: 100%;
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}
.team_section .team_info .position_team {
  color: #ff0076;
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0px;
}
.team_section .social_team {
  max-width: 100%;
}
.team_section .social_team ul {
  list-style: none;
  max-width: 100%;
  padding: 0;
}
.team_section .social_team ul li {
  margin: 0 auto;
  padding: 4px;
  display: inline;
}
.team_section .social_team ul li a {
  display: inline-block;
}
.team_section .social_team ul li a svg {
  height: 22px;
  fill: #fff;
}

.team_section .text-fields .h2 {
  color: #fff;
}

.team_section .img_team {
  padding-right: 10px;
}
.team_section .col-md-6.col-lg-3 {
  margin-top: 15px;
}
.token-sec {
  background: #fcfcfd;
  border-top: 1px solid #eee;
  padding: 100px 0px;
  border-bottom: 1px solid #eee;
}

.token-sec .text-fields {
  text-align: center;
  margin-bottom: 50px;
}

.token-sec .row {
  align-items: center;
  justify-content: center;
}

.token-sec .textbx {
  text-align: center;
  max-width: 1050px;
  margin: 0 auto 40px auto;
}
.token-sec .col-bx ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.token-sec .col-bx ul li {
  line-height: 36px;
  font-size: 17px;
  color: #000;
  font-weight: 400;
}

.token-sec .col-bx ul li span {
  font-weight: 600;
  padding-right: 15px;
}

.token-sec  h2 {
  font-size: 24px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}

.token-sec p {
  font-size: 17px;
  line-height: 24px;
  color: #000;
  font-weight: 300;
}

.token__info-list .btn {
  padding: 0px;
  margin: 0px;
}

.token__info-list .btn a {
  background: #ff0076;
  color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 20px;
  display: inline-block;
  text-decoration: none;
  border-radius: 2px;
}
.statistic_section {
  max-width: 100%;
  padding: 100px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  background-attachment: fixed;
}
.statistic_section .text-fields {
  max-width: 100%;
  text-align: center;
}
.statistic_section .text-fields .h2 {
  color: white;
}
.statistic_section .counter_section {
  max-width: 100%;
  padding-top: 50px;
}
.statistic_section .counter_section .counter_content {
  max-width: 100%;
}
.statistic_section .counter_section .counter_content ul {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.statistic_section .counter_section .counter_content ul li {
  max-width: 100%;
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}
.statistic_section .counter_section .counter_content ul li h4 {
  font-size: 20px;
  color: white;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 500;
  line-height: 1.67;
  margin: 0;
}
.statistic_section .counter_section .counter_content ul li .counter_section_1 .section_number {
  color: #5874cf;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.67;
}
.statistic_section .counter_section .counter_content ul li .counter_section_2 .section_number {
  color: #f09790;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.67;
}
.statistic_section .counter_section .counter_content ul li .counter_section_3 .section_number {
  color: #16bf86;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.67;
}
.statistic_section .counter_section .counter_content ul li .counter_section_4 .section_number  {
  color: #8761a8;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.67;
}
.faq-section {
  padding: 100px 0px;
}
.faq-section .heading-section {
  max-width: 100%;
}
.accordion-list {
  margin:0;
  list-style:none
}
.accordion-list,
.accordion-list li {
  position:
    relative;
  display:
    block;
  width:100%;
  height:
    auto;
  padding: 0px;
}
.accordion-list li {
  background-color:#fff;
  padding:0;
  margin:0 auto 15px;
  border:1px solid #eee;
  border-radius:5px;
  cursor:pointer
}
.accordion-list li:last-child {
  margin-bottom:0
}
.accordion-list li.active h3:after {
  transform:rotate(180deg)
}
.faq-section .text-fields {
  text-align: center;
}
.faq-section .faq-bx {
  max-width: 100%;
  padding-top: 50px;
}
.accordion-list li h3 {
  color: #fff;
  position:
    relative;
  display:
    block;
  width:100%;
  height:
    auto;
  padding:20px;
  cursor:
    pointer;
  font-size:20px;
  background: #1a1f64;
  line-height: 30px;
  margin:0;
  font-weight: 500;
  user-select: none;
}
.accordion-list li h3:after {
  content:"";
  position:absolute;
  right:20px;
  top:20px;
  transition:all .3s ease-in-out;
  font-size:18px;
  width:25px;
  height:25px;
  background-image:url(//6273723.fs1.hubspotusercontent-na1.net/hubfs/6273723/raw_assets/public/Marketplace/Mobile%20Landing%20Page/Images/arrow-icon.svg);
  background-repeat:no-repeat
}

.accordion-list li h3.active::after {
  transform: rotate(180deg);
}
.accordion-list li div.answer {
  position:relative;
  width:100%;
  height:auto;
  margin:0;
  padding:20px;
  font-size:17px;
  cursor:pointer;
  display:none;
  color: #000;
}
.accordion-list li div.answer p {
  position:
    relative;
  display:
    block;
  font-weight:300;
  padding:10px 0 0;
  cursor:
    pointer;
  line-height: 28px;
  font-size: 17px;
}
.footer {
  max-width: 100%;
  padding-top: 120px;
  padding-bottom: 0px !important;
}
footer .footer_1 {
  max-width: 100%;
}
footer .footer_1 h5 {
  margin: 30px 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  color: white;
}
footer .footer_2 {
  padding: 0 50px;
}
footer .footer_2 h3 {
  margin: 0 0 30px;
  font-size: 24px;
  color: white;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
footer .footer_2 ul {
    columns: 2;
}
footer .footer_2 .footer_menu {
  max-width: 100%;
}
footer .footer_2 .footer_menu ul {
    display: inline-block;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    width: 100%;
}
/* footer .footer_2 .footer_menu ul li {
  display: inline-block;
  width: 50%;
  position: relative;
  padding-left: 20px;
} */
footer .footer_2 .footer_menu ul li {
  position: relative;
}
footer .footer_2 .footer_menu ul li a:hover {
  color:gray; 
}
footer .footer_2 .footer_menu ul li a {
  text-decoration: none;
  font-size: 17px;
  color: white;
  line-height: 35px;
}
footer .footer_3 {
  max-width: 100%;
}
footer .footer_3 h3 {
  font-size: 24px;
  color: white;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 50px;
  position: relative;
}
footer .footer_3 .address_footer {
  max-width: 100%;
}
footer .footer_3 .address_footer h6 {
  font-size: 17px;
  color: white;
  font-weight: 400;
  padding-bottom: 14px;
}
footer .footer_3 .address_footer ul {
  padding: 0;
  list-style: none;
  max-width: 100%;
}
footer .footer_3 .address_footer ul li {
  line-height: 30px;
  font-size: 17px;
  color: white;
  font-weight: 500;
}
footer .footer_3 .address_footer ul li a {
  text-decoration: none;
  font-weight: 400;
  color: white;
}
footer .footer_3 .address_footer ul li a:hover {
  color: gray; 
}
footer .copyright {
  max-width: 100%;
  padding-top: 30px;
  text-align: center;
  margin-top: 80px;
  border-top: 1px solid #d9d9d9;
}
footer .copyright h3 {
  font-size: 15px;
  color: white;
  font-weight: 300;
  margin: 0;
  line-height: 1.2;
  padding-bottom: 30px;
}
footer .footer_logo img {
  width: 200px;
}
#button {
  display: flex;
  background-color: #ff0076;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#button::after {
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  background-color: #1a1f64;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
#button svg {
  height: 18px;
  fill: white;
}
header.not-transparent {
  background: #1a1f64;
  transition: all .4s ease;
  position: fixed;
  top: 0;
  left: 0;
}
header #navbarSupportedContent ul li a.active {
  color: #ff0076;
}
.content-wrapper--vertical-spacing, .dnd-section {
    padding: 0 !important;
}
.road-map .row {
    justify-content: center;
}
header.header nav ul li a {
    color: #fff;
    font-size: 16px;
}
.header__container.content-wrapper.teskOk {
    width: 100% !important;
    max-width: 100%;
}
@media only screen and (max-width: 991px) {
	.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    width: 100%;
    max-width: 100%;
}

header.header.header--no-navigation {
}

nav.menu.menu--mobile {
    display: none;
}
section#road-map {
    padding-left: 120px;
    padding-right: 0px;
}
.here-section .col-txt {
    padding: 0px;
}

.navbar-light .navbar-toggler {
    background: #fff;
}

header #navbarSupportedContent {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1f64;
}

header #navbarSupportedContent ul li a {
    color: #fff;
}

header #navbarSupportedContent ul li {
    width: 100%;
    text-align: left;
    padding: 7px 0px;
    border-bottom: 1px solid #ddd;
}

header #navbarSupportedContent ul {
    padding: 20px 0px;
}

header #navbarSupportedContent ul li:last-child {
    border: 0;
}

.statistic_section .counter_section .counter_content ul li {
    width: 100%;
    margin: 20px 0px;
}

.here-section .heading {
    font-size: 30px;
    line-height: 38px;
}

.here-section .promo__links a {
    margin: 10px 0px;
}

.col-rytbx h2 {
    font-size: 20px;
}

.col-rytbx #countdown ul li {
    margin: 10px;
}

.col-rytbx .btn {
    font-size: 16px;
}

.col-rytbx {
    padding: 35px 15px 50px;
}

.col-rytbx .ico__text {
    font-size: 16px;
}

.col-rytbx .payments img {
    margin: 5px;
}

.here-section {
    padding-bottom: 60px;
    padding-top: 80px;
    text-align: center;
}


header .group-btns {display: none;}

header .navbar-brand {
    width: 50%;
}
    
.here-section .promo__links .promo-bx {
    justify-content: center;
}

.aboutus-sec {
    padding: 60px 0px 0px;
}

.h5 {
    font-size: 12px;
}

.h2 {
    font-size: 24px;
}

.p {
    font-size: 16px;
}

.logos-bx .logo {
    width: 50%;
    margin: 20px 0px;
}

.logos-bx {
    margin: 30px 0px;
}

.video-bxs {
    padding: 60px 0px;
}

.services-sec {
    padding: 60px 0px;
}

.h3 {
    font-size: 20px;
}

.static-data {
    padding: 80px 0px;
}

.data-num {
    margin-top: 40px;
}

.data__num-value {
    font-size: 80px;
}

.data__num-name {
    font-size: 29px;
}

.data__num-name {
    font-size: 30px;
}

.road-map {
    padding: 60px 0px;
}

.statistic_section {
    padding: 60px 0px;
}

.statistic_section .counter_section {
    padding: 0;
}

.statistic_section .counter_section .counter_content ul {
    padding: 0px;
    margin: 30px 0  0px;
}

.section_number {
    font-size: 30px !important;
    line-height: normal !important;
}

.token-sec {
    padding: 60px 0px;
}


.token__info-list {
    margin-top: 40px;
}

.team_section {
    padding: 60px 0px;
}

.faq-section {
    padding: 60px 0px;
}

footer {
    padding-top: 70px;
}

footer .footer_2 {
    padding: 30px 0px;
}

footer .copyright {
    margin-top: 50px;
}

}

@media only screen and (min-width: 992px) and (max-width: 1024px) {

header #navbarSupportedContent ul li a {
  padding: 0 10px;
  font-size: 15px;
}
header .group-btns .btn {
  padding: 5px 10px;
}
.here-section .col-txt {
  padding-right: 50px;
}
.col-rytbx .payments img {
  margin: 0 1px;
}
.here-section .heading {
  font-size: 38px;
}
.data__num-value {
  font-size: 90px;
}
.statistic_section .counter_section .counter_content ul li h4 {
  font-size: 17px;
}
.statistic_section .counter_section .counter_content ul li {
  padding-right: 0px;
}
.col-md-6.col-lg-3 {
  width: 50%;
}
footer .col-lg-4 {
  width: 50%;
}
footer .col-lg-5 {
  width: 50%;
}
footer .col-lg-3 {
  width: 50%;
}

header .group-btns .btn a {
    font-size: 15px;
}

header .group-btns {
    width: 25%;
}
}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {
header #navbarSupportedContent ul li a {
    font-size: 16px;
    padding: 0 10px;
}
header .group-btns .btn a {
    font-size: 15px;
}
header .group-btns {
    width: 22%;
}
header .group-btns .btn {
    margin: 0 5px;
    padding: 7px 15px;
}
.here-section .col-txt {
    padding-right: 70px;
}

}

@media only screen and (max-width: 1024px) {
.menu__link {
    font-size: 14px !important;
}

header .row {
    justify-content: center !important;
}

header .row .container-fluid.content-wrapper {
    margin: 0px;
}

header.header.header--no-navigation {
    padding-top: 64px;
    height: 120px;
}

section.here-section {
    padding-top: 130px;
}
}
@media only screen and (max-width: 1500px) {
.container {
    max-width: 1170px !IMPORTANT;
}
}
    @media screen and (max-width: 767px) {
        header.header.header--no-navigation .header__container.content-wrapper {
            padding-bottom: 60px;
        }

        .road__item {
            padding-left: 50px !important;
        }

        .token-sec .text-fields {
            margin-bottom: 18px;
        }

        .faq-section .faq-bx {
            padding-top: 17px !important;
        }

        .accordion-list li h3 {
            font-size: 18px !important;
        }

        .here-section .promo__links svg {
            padding-left: 10px;
        }
      header.header {
    padding: 10px;
}

header.header .header__container.content-wrapper.teskOk {
    display: flex;
    justify-content: space-between;
}

header.header .header__container.content-wrapper.teskOk .header--toggle.header__search--toggle {
    display: none !important;
}

.header__logo--main {
    width: auto !important;
    margin: 0 !important;
}

header.header .header--toggle.header__navigation--toggle {
    position: absolute;
    right: 0;
    top: -40px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3px;
}
        header.header .header__container.content-wrapper.teskOk .header__close--toggle.show {
            display: none;
        }

        header.header .header__container.content-wrapper.teskOk .header__row-2 {
            padding: 0px !important;
        }

        .header__language-switcher--toggle.open:after, .header__navigation--toggle.open:after, .header__search--toggle.open:after {
            display: none;
        }

        .header__navigation.header--element.open {top: 100%;margin-top: 20px;height: auto !important;min-height: auto;}

        .header__navigation.header--element.open a.menu__link {
            color: #000 !important;
        }

        .header__navigation.header--element.open nav.menu.menu--mobile {
            display: block !important;
        }

        header.header .header--toggle.header__navigation--toggle {
            margin: 0px;
        }

    }

    @media only screen and (max-width: 1024px) {
        header .row {
            padding-bottom: 40px;
        }

        .here-section .promo__links svg {
            padding-left: 10px;
        }
    }

@media only screen and (max-width: 1024px) and (min-width: 768px) {

.menu__item--depth-1 {
    padding: 0 5px;
}
      
}