/* 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);
  }
}
.content-wrapper {
  margin: 0 auto;
  /*   padding: 0 1rem; */
}
.banner-area .dnd-section,
.banner-area .row-fluid {
  padding: 0 !important;
  width: 100% !important;
}
@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.)
*/

@font-face {
  font-family: "Helvetica Regular";
  src: 
    url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/fonts/Helvetica.woff2) format("woff2"),
    url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/fonts/Helvetica.woff) format("woff"),
    url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/fonts/Helvetica.ttf) format("truetype"),
    url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/fonts/Helvetica.svg) format("svg");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Helvetica";
  src: 
    url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/fonts/Helvetica-Bold.woff2) format("woff2"),
    url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/fonts/Helvetica-Bold.woff) format("woff"),
    url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/fonts/Helvetica-Bold.ttf) format("truetype"),
    url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/fonts/Helvetica-Bold.svg) format("svg");
  font-style: normal;
  font-weight: normal;
}


body {
  line-height:1.75;
}

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

/* Paragraphs */

p {
  margin: 0 0 10px;
}

/* Anchors */

a {
  cursor: pointer;
  transition:all .4s;
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  line-height:1.2;
}
h3 {
  line-height: 1;
}

/* 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 {
  max-width:100%;
  vertical-align:middle;
}
.dnd-section[class*="force-full-width"] > .row-fluid {
  padding: 0;
}

@media(max-width: 767px) {
  body {
    font-size: 16px !important;
  }
}
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: 20px;
  line-height: 30px;
  font-family: 'Montserrat';
  font-weight: 400;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 20px;
  line-height: 30px;
  font-family: 'Montserrat';
  font-weight: 400;
  margin-bottom: 0.35rem;
}

/* 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;
  width: 100%;
  padding: 17px 21px;
  font-size: 20px;
  line-height: 30px;
  font-family: Montserrat,sans-serif;
  font-style: normal;
  font-weight: 400;
}

form textarea {
  resize: vertical;
  min-height: 226px;
}

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

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg,
.hs-error-msgs label{
  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 .4s;
  white-space: normal;
  padding: 16px 68px 16px;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
}

form input[type=submit]:hover,
form .hs-button:hover{
  box-shadow: 0 0 6px 1.5px #777;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
input:-internal-autofill-selected {
  background-color: transparent !important;
}
/* 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-group {
  position: relative;
  z-index:99
}
.header-top {
  padding: 44px 0 25px;
}
.header-main {
  background-color: #383838;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
}
.header-main .left-side {
  width: 80%;
  display: flex;
  align-items: center;
}
.header-main .right-side {
  width: 20%;
  text-align: right;
}
.header_logo img {
  width: 100% !important;
  max-width: 293px !important;
}
.custom-menu-primary .hs-menu-wrapper>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.custom-menu-primary .hs-menu-wrapper>ul>li {
  margin-right: 41px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:last-child {
  margin-right: 0px;
}
.custom-menu-primary .hs-menu-wrapper>ul>li:first-child{
  margin-right: 26px;
}
.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2){
  margin-right: 33px;
}
.custom-menu-primary .hs-menu-wrapper ul>li>a {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  position: relative;
  text-decoration: none;
  font-family: Helvetica;
  padding-bottom:5px;
}

.custom-menu-primary .hs-menu-wrapper ul>li>a:after {
  content: '';
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 0;
  transition: all .4s;
}

.custom-menu-primary .hs-menu-wrapper ul>li:hover>a:after{
  width:100%;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:first-child>a {
  border: 2px solid #FFFFFF;
  border-radius: 11px;
  background-color: transparent;
  color: #fff;
  padding: 15px 20px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:first-child>a:after{
  content:none;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:first-child>a:hover{
  background-color: #fff;
  color: #383838;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>a {
  border-radius: 11px;
  background-color: #fff;
  color: #383838 !important;
  padding: 17px 20px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2)>a:after{
  content:none;
}

.header-main .contact-btn .hs-button {
  border: 2px solid #FFFFFF;
  border-radius: 11px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  font-family: Helvetica;
  background-color: transparent;
  color: #fff;
  padding: 15px 27px;
  display:inline-block;
}

.header-main .contact-btn .hs-button:hover{
  background-color: #fff;
  color: #383838;
}


.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children {
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
  position: absolute;
  min-width: 236px;
  background-color: #383838;
  display: block;
  padding: 10px;
  display:none
}



.custom-menu-primary .hs-menu-wrapper ul.hs-menu-children-wrapper li a {
  font-size: 18px;
  line-height: 1;
  word-break: normal;
  display: inline-block;
  padding: 5px 0;
  margin: 0 5px;
}

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

.header-top-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* align-items: center; */
}
.header-top-inner .left-side {
  display: flex;
  justify-content: space-between;
  margin-bottom:10px;
  width:100%;
}

.header-top-inner .right-side {
  display: flex;
  text-align:right;
  justify-content: flex-end;
}
.header-top .hs-button {
  background-color: #EB5C2B;
  border-radius: 11px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  padding: 17px 24px;
  text-align: center;
  width: 100%;
  font-family: Helvetica;
}

.header-top .hs-button:hover{
  background: #d94216;
  box-shadow: 0 0 4px 1.5px #777;
  color: #fff;
}

.header-top-inner .right-side>div {
  margin-right: 45px;
}
.header-top-inner .right-side>div:last-child {
  margin-right: 0px;
}
.header-top .header-secondary-btn .hs-button:after{
  background-image: url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/images/whistle.png);
  background-repeat: no-repeat;
  background-size: cover;
  content:'';
  display: inline-block;
  height: 27px;
  vertical-align: middle;
  width: 30px;
  margin-left: 17px;
}
.header-top .header-secondary-btn .hs-button{
  padding: 13.5px 24px;
  min-width: 189px;
}
.header-top .header-primary-btn .hs-button {
  min-width: 218px;
}

.header-top .toggler-wrapper {
  display: none;
}

.header-search input.hs-search-field__input {
  background-color: #EB5C2B;
  border: none;
  border-radius: 11px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  outline: none;
  padding: 15px 24px 16px;
  width: 100%;
  font-family: Helvetica;
}

.header-search {
  margin-left: 61px;
  max-width: 100%;
  width: 414px;
}

.header-search input.hs-search-field__input::placeholder {
  color: #fff;
}
.header-search form button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 24px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 20px;
  border-radius: 0;
}
.header-search .hs-search-field__bar button svg {
  width: 31px;
  height: auto;
  color: #fff;
  fill: #fff;
  vertical-align: middle;
}

.header-search .hs-search-field--open .hs-search-field__suggestions {
  background: #fff;
  border-radius: 10px;
  left: 0;
  padding: 10px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 2;
}
button.navbar-toggler{
  display:none;
}

.custom-menu-primary .hs-item-has-children .child-trigger {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.custom-menu-primary .hs-item-has-children .child-trigger.active {
  transform: rotate(180deg);
}

.custom-menu-primary .hs-item-has-children .child-trigger svg {
  fill: #fff;
  font-size: 20px;
  width: 14px;
  height: 14px;
}



@media (min-width: 768px){
  .header-group .header-main {
    display: flex!important;
    overflow: visible!important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover>ul{
    display:block
  }


}
@media (max-width: 1200px){
  .header-top-inner .right-side>div {
    margin-right: 25px;
  }
  .header-search {
    margin-left: 25px;
  }
  .header-top-inner .left-side {
    padding-right: 15px;
  }
}
@media (max-width: 1100px){
  .header-top .hs-button {
    font-size: 16px;
  }

  .header-search input.hs-search-field__input {
    font-size: 16px;
  }
  .header-search .hs-search-field__bar button svg {
    width: 27px;
  }
  .header-top .header-secondary-btn .hs-button{
    min-width: unset;
  }
  .header-top .header-primary-btn .hs-button {
    min-width: unset;
  }
}
@media (max-width: 1024px){
  .custom-menu-primary .hs-menu-wrapper>ul>li {
    margin-right: 30px;
  }
}
@media (max-width: 991px){
  .header-search input.hs-search-field__input, .header-top .hs-button {
    padding: 17px 10px;
  }
  .header-top-inner .right-side>div {
    margin-right: 10px;
  }
  .header-search {
    margin-left: 10px;
  }
  .header-top-inner .left-side {
    padding-right: 10px;
  }
  .header-top .header-secondary-btn .hs-button:after {
    margin-left: 10px;
  }
  .header-search input.hs-search-field__input, .header-top .hs-button {
    padding: 17px 10px;
  }

  .header-top .header-secondary-btn .hs-button {
    padding: 16.5px 10px;
  }


  .header-top .header-secondary-btn .hs-button:after {
    height: 20px;
    width: 28px;
    background-size: 20px;
  }

  .header-search form button {
    padding: 15px 10px;
  }
  .header-search .hs-search-field__bar button svg {
    width: 24px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>a {
    font-size: 16px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li:nth-child(2) {
    margin-right: 16px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li:first-child {
    margin-right: 16px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li {
    margin-right: 16px;
  }
}

@media (max-width: 767px){

  .header-top{
    margin-bottom:10px;
  }

  .header-top-inner .left-side {
    width: 100%;
    padding-right: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom:0;
  }
  .header-top-inner .right-side {
    width: 100%;
  }
  .header-search {
    margin:20px 0;
    width: 100%;
  }

  .header-top .toggler-wrapper{
    display: block;
    text-align: right;
    width: 100%;
  }

  button.navbar-toggler {
    border-radius: 4px;
    display: block;
    margin-right: 15px;
    padding: 15px 15px;
    float: none;
    position: static;
    background-color: #eb5c2b;
    border: 1px solid #eb5c2b;
    width: auto;
    display: inline-block;
  }
  span.icon-bar {
    background: #fff;
    border-radius: 1px;
    display: block;
    height: 2.5px;
    width: 28px;
  }
  span.icon-bar {
    margin-top: 5px;
  }
  span.icon-bar:first-child {
    margin-top: 0;
  }
  .header-top-inner .right-side {
    justify-content: space-between;
  }
  .header-main {
    display: none;
    padding: 0;
  }
  .header-main {
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    margin: 0 15px;
    top:100%;
    z-index: 500;
  }
  .header-main .left-side {
    width: 100%;
    display: block;
  }

  .header-main .right-side {
    width: 100%;
    text-align: left;
  }

  .custom-menu-primary .hs-menu-wrapper>ul {
    display: block;
    width: 100%;
    text-align: left;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li {
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
  .header-main .contact-btn {
    padding: 0 15px 24px;
  }
  .custom-menu-primary {
    padding: 24px 15px 0;
  }

  .header-main .contact-btn .hs-button{
    font-size:16px;
  }

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

  .custom-menu-primary .hs-menu-wrapper ul.hs-menu-children-wrapper li a{
    font-size:16px;
  }

}

.header-top .flagBox ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: right;
  padding-right: 8px;
}
/* 
.header-top .flagBox {
  margin-left: 33px;
} */

.header-top .flagBox ul > li:not(:last-child) {
  margin-right: 33px;
}

.header-top .flagBox img {
  width: 25px;
}
.hs-enheader .header-top .custom-menu-primary img[alt="German"] {
  position: relative;
  top: -4px;
}
/* .header-top {
    padding: 25px 0 25px;
} */
.header-search > #hs_cos_wrapper_search_input {
  max-width: 100%;
  width: 414px;
  margin-left: 25px;
}

.header-search {
  display: flex;
  justify-content: space-between;
  width: auto;
  align-items: center;
}

.header-search .flagBox {
  margin-left: 25px;
}


@media(max-width:767px){
  .flagBox {
    padding-bottom: 10px;
  }
  .header-search {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  .header-search>#hs_cos_wrapper_search_input,
  .header-search .flagBox{
    margin-left: 0;
  }
}
footer.footer {
  background-image: url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/images/Artwork%2028.png);
  padding: 182px 0 70px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color:transparent;
  position:relative;
  background-position: initial;
}
footer.footer:before {
  background-color: #B1B9BF;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  top: 200px;
  width: 100%;
}
.footer-wrap {
  border-radius: 31px;
  background-color: #fff;
  position:relative;
}

.footer-top {
  background-color: #202124;
  border-radius: 31px;
}
.footer-inner {
  padding: 32px 37px;
}
.footer_logo {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.footer_logo h4 {
  color: #383838 !important;
  font-size: 18px;
  font-weight: 700;
  height: 100%;
  line-height: 20px;
  margin: 0;
  font-family: 'Montserrat';
  padding: 0 16px;
}
.footer_logo h4 span{
  color: #EB5C2B;
}
.footer_logo img {
  width: 100% !important;
  height: auto;
   max-width: 276px !important;
}
.footer_logo>div {
  width: 100%;
}
.footer_top_link ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.footer_top_link ul>li>a{
  color:#fff;
  text-decoration:none;
  font-size: 30px;
  font-weight: 700;
  font-family: Montserrat;
  line-height: 20px;
}

.footer-main .footer_inner {
  display: flex;
  padding: 40px 37px;
}
.footer_left {
  width: 28%;
  display: flex;
  flex-wrap: wrap;
  /*align-content: space-between;*/
  align-items: flex-start;
  align-content: flex-start;
}
.footer-btn-area {
  max-width: 276px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 43px;
}

.footer-btn-area .primary-btn {
  margin-bottom: 15px;
  width: 100%;
}
.footer-btn-area .hs-button{
  background-color:#EB5C2B;
  color:#fff;
  width: 100%;
  display: inline-block;
  border-radius: 11px;
  text-align: center;
  padding: 17px;
  font-family: Montserrat;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  border:none;
}

.footer-btn-area .hs-button:hover{
    background: #d94216;
    box-shadow: 0 0 6px 1.5px #777;
    color: #fff;
}


.footer-btn-area .contact-btn {
  max-width: 100%;
  width: 100%;
}
.footer-btn-area .whistle-btn {
  max-width: 80px;
  width: 100%;
}
.footer_right {
  width: 72%;
}
.footer_menu .hs-menu-wrapper>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* flex-wrap: wrap; 
  justify-content: space-between;
  column-gap: 15px;*/
}
.footer_menu .hs-menu-wrapper>ul>li {
  width: 33.33%;
}
.footer_menu .hs-menu-wrapper>ul>li>a {
  font-weight: 700;
  color: #383838;
  font-family: Montserrat;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  display: inline-block;
}
.footer_menu .hs-menu-wrapper>ul ul>li>a {
  font-weight: 400;
  color: #383838;
  font-family: Montserrat;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  display: inline-block;
}
.footer-btn-area .whistle-btn .hs-button:before{
  background-image: url(https://8987580.fs1.hubspotusercontent-eu1.net/hubfs/8987580/raw_assets/public/DTBDOutdoor_December2022/images/heart.png);
  background-repeat: no-repeat;
  background-size: cover;
  content:'';
  width: 41px;
  height: 34px;
  display: inline-block;
  vertical-align: middle;
}
.footer-btn-area .whistle-btn .hs-button {
  padding: 10px 5px;
}


.footer_menu .hs-menu-wrapper>ul ul>li>a:hover,
.footer_menu .hs-menu-wrapper>ul>li>a:hover{
text-decoration:underline
}


@media(min-width:768px){
  .footer_logo>div:first-child {
    max-width: 276px;
  }
}
@media (max-width: 1200px){
  .footer_logo>div {
    width: 100%;
  }
  .footer_logo h4 {
    padding: 0;
    margin-top: 30px;
  }
  .footer_left {
    width: 30%;
    padding-right: 20px;
  }
  .footer_right {
    width: 70%;
  }
}
@media (max-width: 1100px){
  .footer-btn-area .hs-button {
    font-size: 16px;
    padding: 17px 10px;
  }
  .footer_menu .hs-menu-wrapper>ul ul>li>a, .footer_menu .hs-menu-wrapper>ul>li>a {
    font-size: 16px;
  }
  .footer_top_link ul>li>a {
    font-size: 24px;
  }
  .footer-btn-area {
    flex-direction: column;
  }
  .footer-btn-area .contact-btn {
    margin-bottom: 15px;
  }
  .footer-btn-area .whistle-btn .hs-button {
    padding: 7.6px 5px;
}
}
@media (max-width: 991px){
  .footer_left {
    width: 25%;
  }
  .footer_right {
    width: 75%;
  }
  .footer-btn-area {
    width: 100%;
  }

  .footer-main .footer_inner {
    padding: 40px 20px;
  }
  .footer-inner{
    padding: 32px 20px;
  }
  .footer_menu .hs-menu-wrapper>ul>li {
    width: 30%;
  }
  .footer_menu .hs-menu-wrapper>ul {
    column-gap: 10px;
    justify-content: space-between;
  }
  .footer_top_link ul>li>a {
    font-size: 20px;
}
  .footer_menu .hs-menu-wrapper>ul>li {
    width: 45%;
    margin-bottom: 20px;
}
  .footer_menu .hs-menu-wrapper>ul>li:last-child {
    margin-bottom: 0px;
}
  .footer_right {
    width: 60%;
}
  .footer_left {
    width: 40%;
}
}
@media (max-width: 767px){
  
  footer.footer {
    padding-top: 100px;
    margin-top: 80px;
    background-size: auto;
}
  
  .footer_left {
    width: 100%;
    margin-bottom: 30px;
    justify-content: center;
  }
  
  .footer_right {
    width: 100%;
  }
  .footer-main .footer_inner {
    flex-wrap: wrap;
  }
  .footer_menu .hs-menu-wrapper>ul {
    flex-wrap: wrap;
    justify-content: unset;
    text-align: center;
  }
  .footer_menu .hs-menu-wrapper>ul>li {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer_menu .hs-menu-wrapper>ul>li:last-child {
    margin-bottom: 0px;
  }
  .footer_logo {
    margin-bottom: 30px;
    padding-right: 0;
    text-align: center;
  }
  .footer_top_link ul {
    flex-wrap: wrap;
    justify-content: unset;
    text-align: center;
  }
  .footer_top_link ul li{
    width: 100%;
    margin-bottom: 0;
  }
  .footer_top_link ul li:not(:first-child) {
    display: none;
}
  
  .footer_top_link ul li:last-child{
    margin-bottom: 0px;
  }
  .footer_top_link ul>li>a {
    font-size: 20px;
    line-height: 30px;
  }
  .footer_left {
    padding: 0;
}
  .footer-btn-area {
    align-items: center;
    padding-top: 30px;
}
  .footer-main .footer_inner {
    padding: 40px 15px;
}
}
/* 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;
}

.about-us-page p {
    line-height: 1.25 !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;
  }
}