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

/**
 * 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 15px;
}
.dnd-section > .row-fluid {
   margin: 0 auto;
}
.dnd-section .dnd-column {
   padding: 0 15px;
}

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

body {
   line-height: 1.6;
   overflow-wrap: break-word;
   background-color: #fcfdff;
}

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 20px;
}

/* Anchors */

a {
   cursor: pointer;
   transition: all 0.3s ease;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
   margin: 0 0 20px;
}

h1{
   line-height: 1.1;
}

h2{
   line-height: 1.2;
}
/* 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 {
   word-break: normal;
   max-width: 100%;
   height: auto;
   display: inline-block;
   vertical-align: middle;
}
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: 22px;
}

/* Labels */

form label {
   display: block;
   font-size: 0.875rem;
   margin-bottom: 5px;
}
.body-container-wrapper .hs-form {
   margin-bottom: 20px;
}

.hs-form-field>label {
   font-style: normal;
   font-weight: 600;
   font-size: 16px;
   line-height: 30px;
}

.hs-search-module form input[type=text] {
   margin-bottom: 20px;
}

/* 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%;
   min-height: 64px;
   outline:none;
}

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

ul.no-list.hs-error-msgs.inputs-list>li>label,
.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
*/

/* .hd_header {
   margin-top: 119.98px;
} */
.header.hd_inner {
   position: absolute;
   top: 0;
   left: 0;
   z-index: 999;   
   width: 100%;
}
.header {
   font-family: 'Inter';
   font-weight: 400;
}
.header .row-fluid [class*=span] {
   min-height: 0;
}
.header__top {
   background-color: #F0F1F0;
   padding: 1px 0;
   font-size: 12px;
   line-height: 130.02%;
}
.header__middle {
   display: flex;
   max-width: 1450px;
   margin: 0 auto;
}
.header__column {
   display: flex;
   width: 100%;
   align-items: center;
}

.header_logo {
   padding: 10px 15px;
}
.header_logo a {
   display: flex;
   align-items: center;
   justify-content: center;
   /*width: 86px;*/
}
.header_logo img {
   width: 100%;
}
.header__navigation {
   display: flex;
   /*    align-items: center; */
   font-family: 'Inter';
   font-size: 0.8rem;
   line-height: 0.8rem;
   width: 100%;
}
.header__navigation nav {
   height: 100%;
}
.header__navigation > div { 
   margin-right: auto;
}
.header .search_trigger {
   background: #000;
   border: 0;
   border-radius: 0;
   cursor: pointer;
   margin-left: 1.6rem;
   padding: 0;
   text-align: center;
   width: 3.6rem;
   height: 3.6rem;
}

.header__search__wrapper {
   position: fixed;
   background-color: #333333db;
   width: 100%;
   height: 100%;
   top: 0;
   z-index: 999;
   padding: 20px;
   overflow: hidden;
}

.header__search__wrapper .content-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   height: calc(100vh - 40px);
   overflow-y: auto;
   max-width: 1270px;
}

.header__search__wrapper .search_trigger_close {
   background-color: transparent;
   border: 0;
   position: absolute;
   top: 25px;
   right: 30px;
   padding: 1rem;
}

.header__search__wrapper .search_trigger_close svg {
   width: 50px;
   height: 50px;
}

.header__search__wrapper .header__search {
   width: 100%;
}

.header__search__wrapper input.hs-search-field__input {
   border: 1px solid #DADADA;
   border-radius: 52px;
   padding: 30px 35px;
}

.header__search__wrapper input.hs-search-field__input::placeholder {
   color: #8c8c8c;
   opacity: 1;
}

.header__search__wrapper .hs-search-field__suggestions {
   border: 0;
   padding: 20px;
   color: #fff;
}

.header__search__wrapper .hs-search-field__suggestions a {
   color: #fafafa;
   background-color: transparent;
}

.header__search__wrapper .hs-search-field__suggestions a:hover {
   color: #ffffff;
}

.header__search__wrapper .hs-search-field  .hs-search-field__suggestions {
   width: calc(100% - 197px);
   margin: 0 auto;
   border: 0;
}

.header__search__wrapper .hs-search-field .hs-search-field__suggestions li {
   padding: 2px 0;
}

.header__search__wrapper .hs-search-field .hs-search-field__suggestions li:first-child {
   padding-top: 10px;
}

.header__search__wrapper .hs-search-field .hs-search-field__suggestions li a:hover {
   background-color: transparent;
}

.header--toggle {
   display: none;
   background: #000;
   border: 0;
   border-radius: 0;
   cursor: pointer;
   height: 3.6rem;
   margin-left: 0;
   padding: 0;
   text-align: center;
   width: 3.6rem;
   font-size: 30px;
}
.header .search_trigger {
   position: relative;
}
button.search_trigger .tooltiptext {
   visibility: hidden;
   width: 120px;
   background-color: black;
   color: #fff;
   text-align: center;
   border-radius: 6px;
   padding: 5px 0;
   position: absolute;
   z-index: 1;
   right: 0;
   bottom: -36px;
   font-weight: 400;
}
button.search_trigger:hover .tooltiptext {
   visibility: visible;
}
button.search_trigger span.tooltiptext:before {
   content: "";
   position: absolute;
   display: block;
   width: 0px;
   left: 70%;
   top: 0;
   border: 8px solid transparent;
   border-top: 0;
   border-bottom: 9px solid #000;
   transform: translate(-70%, calc(-100% - 0px));
}
/* Search Result */
.hs-search-results__listing a {
   color: #4372d6;
}
.hs-search-results__listing a:hover {
   color: #db6664;
}
.hs-search-results__pagination:before,
.hs-search-results__pagination:after {
   content: '';
   display: table;
   clear: both;
}
.hs-search-results__pagination {
   padding-top: 40px;
}
.hs-search-results__listing li {
   margin-bottom: 30px;
}
.hs-search-results__listing .hs-search-results__description {
   padding-top: 0;
}
/* End */

.menu--desktop .menu__wrapper>li:last-child ul {
   left: auto;
   right: 0;
}

@media (max-width: 1402px) and (min-width: 1201px) {
   .header .search_trigger {
	  margin-left: 0.5rem;
   }

   .header__navigation {
	  font-size: 0.7rem;
   }
}

@media (max-width: 1200px) and (min-width: 1081px) {
   .header .search_trigger {
	  height: 3.6rem;
   }

   .header_logo {
	  padding: 0.393rem 15px;
   }

   .header .search_trigger {
	  margin-left: 0.6rem;
   }
}
@media (max-width: 1080px) {   

   .header_logo {
	  padding: 4px 15px 4px;
   }

   .header__middle {
	  position: relative;
   }

   .header__navigation {
	  font-size: 16px;
	  line-height: 1;
   }   

   .header__search__wrapper input.hs-search-field__input {
	  padding: 18px 35px;
	  min-height: auto;
   }

   .header__search__wrapper .search_trigger_close {
	  padding: 0;
	  right: 20px;
	  top: 20px;
   }

   .header__search__wrapper .search_trigger_close svg {
	  height: 35px;
	  width: 35px;
   }

}

@media (max-width: 991px) {
   .header--toggle {
	  display: block;
   }
   .header .search_trigger {
	  margin-left: 4px;
   }
   .hd_header .header__navigation > div {
	  margin: 0;
   }
   .hd_header .header__navigation {
	  justify-content: flex-end;
   }

}

@media (max-width: 767px) {
   .header--toggle,
   .header .search_trigger {
	  width: 57.59px;
	  height: 57.59px;
   }
}


.header {
   position: relative;
}
.header__search__wrapper {
   position: absolute;
   top: 100%;
   background: #1F1F1F;
   padding: 0;
   height: auto;
   z-index: 9;
}
.header__search__wrapper .hs-search-field {
   padding: 12px 0 10px;
   min-height: 3.2rem;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}
.header__search__wrapper .hs-search-field .hs-search-field__bar {
   width: 100%;
}
.header__search__wrapper .cstm_search_btn {
   cursor: pointer;
   text-align: center;
   transition: all .15s linear;
   white-space: normal;
   display: inline-block;
   border: 0;
   position: absolute;
   color: #fff;
   text-decoration: none;
   background: #DA251F;
   border-radius: 0;
   top: 0;
   right: 0;
   padding: 0;
   width: 3.6rem;
   height: 3.2rem;
}
.header__search__wrapper .cstm_search_btn svg {
   height: auto;
   width: auto;
}
.search_trigger.active .search_icon {
   display: none;
}
.search_trigger:not(.active) .search_open_icon {
   display: none;
}
.header__search__innr {
   max-width: 1450px;
   margin: 0 auto;
   padding-left: 15px;
}
.header__search__wrapper input.hs-search-field__input {
   border-radius: 0;
   padding: 11px 16px 13px;
   color: #8C8C8C;
   font-weight: 400;
   font-size: 14px;
   line-height: 130.02%;
   border: none;
   min-height: auto;
   display: block;
   width: calc(100% - 84px);
   margin-left: auto;
   margin-right: calc(3.6rem + 12px);
}
.header__search__wrapper .hs-search-field__suggestions {
   padding: 0;
}
.topHeader .content-wrapper {
   max-width: 1450px !important;
   padding: 0px 20px;
}
.toggleClass > span {
   font-family: 'Poppins';
}
@media (max-width: 1200px) {
   .header__search__wrapper input.hs-search-field__input {
	  width: calc(100% - 69.6px);
   }
   .header__search__wrapper .hs-search-field .hs-search-field__suggestions {
	  width: calc(100% - 177px);
   }
   .header__search__wrapper .hs-search-field {
	  min-height: 3.6rem;
	  padding: 8px 0 7px;
   }
   .header__search__wrapper .cstm_search_btn {
	  height: 57.59px;
	  width: 57.59px;
   }
/* 
   .hd_header {
	  margin-top: 105.58px;
   } */
}

@media (max-width: 767px) {  
   .header__search__wrapper .hs-search-field .hs-search-field__suggestions {
	  width: calc(100% - 27px);
   }
}

@media (max-width: 407px) {
/*    .hd_header {
	  margin-top: 121.55px;
   } */
}
.header.header-v2 {
   font-size: 18px;
   line-height: 1.77;
}

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

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

.header-v2 .justify-content-between {
   -ms-flex-pack: justify!important;
   justify-content: space-between!important;
}

.header-v2 .align-items-center {
   -ms-flex-align: center!important;
   align-items: center!important;
}

.header-v2 .row {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   margin-left: -15px;
   margin-right: -15px;
}

.header-v2 .justify-content-between {
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.header-v2 .align-items-center {
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}

.header-v2 .header__container>.row {
   width: calc(100% + 30px);
}

.header-v2 .col {
   -ms-flex-preferred-size: 0;
   -ms-flex-positive: 1;
   flex-basis: 0;
   flex-grow: 1;
   max-width: 100%;
}

.header-v2 .d-flex {
   display: -ms-flexbox!important;
   display: flex!important;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

.header-v2 .row>.col {
   padding: 0 15px;
}

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

.header-v2 .header__logo {
   margin-right: 26px;
}

.header-v2 a {
   text-decoration: none;
}

.header-v2 .header__logo img {
   height: auto !important;
   max-width: 120px !important;
   vertical-align: unset;
}

.header-v2 .header_buttons, 
.header-v2 .header_buttons .button_wrapper {
   align-items: center;
   display: flex;
}

.header-v2 .cst-bnt-desk {
   position: relative;
}

.header-v2 .header_buttons .button_item:not(:last-child) {
   margin-right: 10px;
}

.header-v2 .header_buttons .button_wrapper a.primary.btn, 
.header-v2 .header_buttons .button_wrapper a.secoundary.btn {
   border-radius: 18px;
   font-family: Poppins;
   font-size: 14px;
   font-weight: 600;
   line-height: 21px;
   margin-left: 8px;
   padding: 7px 20px;
   text-transform: uppercase; 
}

.header-v2 .header_buttons .button_wrapper a.primary.btn {
   background: #fff;
   border: 1px solid #e20;
   color: #e20;
   display: inline-block;
}   

.header-v2 .header_buttons .button_wrapper a.primary.btn, 
.header-v2 .header_buttons .button_wrapper a.secoundary.btn {
   letter-spacing: 0;
}

.header-v2 .header_buttons .button_wrapper a.primary.btn:hover {
   background: #d0122d;
   color: #fff;
}

.header-v2 .header_buttons .button_wrapper a.secoundary.btn {
   background: #e20;
   color: #fff;
}

.header-v2 .header_buttons .button_wrapper a.secoundary.btn:hover {
   background: #fff;
   color: #e20;
}

.header-v2 .header_buttons .button_wrapper a.secoundary.btn{
   border: 1px solid #e20;
}

.header-v2 .header_buttons a.primary.arrow.btn, 
.header-v2 .header_buttons a.secoundary.arrow.btn {
   padding-right: 33px!important;
   position: relative;
}

.header-v2 .header_buttons a.primary.arrow.btn:after, 
.header-v2 .header_buttons a.secoundary.arrow.btn:after {
   background-repeat: no-repeat;
   content: "";
   height: 16px;
   margin: 0 7px;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 14px;
}

.header-v2 .header_buttons a.primary.arrow.btn:hover:after, 
.header-v2 .header_buttons a.secoundary.arrow.btn:after {
   background-image: url(//6212555.fs1.hubspotusercontent-na1.net/hubfs/6212555/raw_assets/public/SportsCare_December2022%20Theme/images/arrow-icon.svg);
}

.header-v2 .header_buttons a.secoundary.arrow.btn:hover:after {
   background-image: url(//6212555.fs1.hubspotusercontent-na1.net/hubfs/6212555/raw_assets/public/SportsCare_December2022%20Theme/images/arrow-red.svg);
}

.header-v2 .searchButton {
   background: transparent!important;
   border: 1px solid #e20!important;
   border-radius: 18px!important;
   cursor: pointer;
   display: inline-block;
   font-family: Poppins;
   font-size: 14px;
   font-weight: 600;
   height: 35px;
   line-height: 21px;
   margin-bottom: 0;
   margin-left: 8px;
   padding: 0!important;
   text-align: center;
   text-transform: uppercase;
   transition: all .15s linear;
   white-space: normal;
   width: 35px;
}

.header-v2 .cst-mob-search form button svg, 
.header-v2 .searchButton svg, 
.header-v2 .searchDesktop form button svg {
   vertical-align: middle;
}

.header-v2 .hs-search-field form button path {
   stroke: rgb(160, 165, 177);
   opacity: 0.8;
}

.header-v2 .searchDesktop {
   border-radius: 10px;
   opacity: 0;
   position: absolute;
   right: 0;
   top: 50px;
   transform: translateY(30px);
   transition: all .3s ease-in-out;
   visibility: hidden;
   width: 450px;
   z-index: 99;
}

.header-v2 .header .col {
   -ms-flex-preferred-size: 0;
   -ms-flex-positive: 1;
   flex-basis: 0;
   flex-grow: 1;
   max-width: 100%;
}

.header-v2 .header_buttons {
   justify-content: end;
   padding: 10px 0;
   position: relative;
}

.header-v2 .hs-search-field form {
   background: #000;
   border-radius: 5px;
   color: #202833;
   font-family: Poppins,sans-serif!important;
   padding: 10px;
   position: relative;
   width: 100%;
}

.header-v2 .hs-search-field form:before {
   border-bottom: 10px solid #000;
   border-left: 10px solid transparent;
   border-right: 10px solid transparent;
   content: "";
   height: 0;
   position: absolute;
   right: 7px;
   top: -9px;
   width: 0;
}

.header-v2 .hs-search-field input.hs-search-field__input {
   padding: 6px;
   height: auto;
   min-height: auto;
   border-color: #d7d7d7;
   border-radius: 4px;
   color: #303030;
}

.header-v2 .hs-search-field form button {
   background: transparent;
   border: 0;
   padding: 0;
   position: absolute;
   right: 20px;
   top: 18px;
}

.header-v2 .hs-search-field form button svg {
   height: 15px;
   vertical-align: middle;
}

.header-v2 ul.hs-search-field__suggestions:empty {
   display: none;
}

.header-v2 ul.hs-search-field__suggestions {
   background: #fff;
   border-color: #fff!important;
   box-shadow: 0 4px 10px rgba(0,0,0,.25), 0 -1px 4px rgba(0,0,0,.13);
   left: 0;
   padding: 10px 0;
   position: absolute;
   right: 0;
   top: 100%;
   z-index: 5555;
}

.header-v2 ul.hs-search-field__suggestions #results-for {
   font-weight: 700;
   padding: 0 15px;
}

header.header.header-v2 {
   font-size: 18px;
   line-height: 1.77;
}

.header-v2 ul.hs-search-field__suggestions li a {
   padding: 10px 15px;
   color: #313131;
}

.header-v2 ul.hs-search-field__suggestions li a:hover {
   background-color: rgba(0,0,0,.1);
   outline: none;
}

.header-v2 .searchDesktop.active {
   opacity: 1;
   transform: translateY(0);
   visibility: visible;
}

.header-v2 .header-bottom-menu {
   background: #333;
}

.header-v2 .content-wrapper {
   max-width: 1280px;
   padding: 0 15px;
}

.header-v2 .header_menu .menu.menu--desktop {
   display: block;
}

.header-v2 .header_menu .menu.menu--desktop>ul {
   display: block;
   list-style: none;
   margin: 0;
   padding: 0;
   gap: initial;
}

.header-v2 .header_menu .menu.menu--desktop>ul>li {
   position: relative;
}

.header-v2 .header_menu .menu.menu--desktop>ul>li>a {
   align-items: center;
   border-bottom: 3px solid transparent;
   display: inline-block;
   display: flex;
   font-size: 14px;
   font-weight: 600;
   height: 100%;
   line-height: 21px;
   padding: 12px 17px;
   text-transform: uppercase;
   -webkit-transition: all .15s linear;
   -moz-transition: all .15s linear;
   -o-transition: all .15s linear;
   transition: all .15s linear;
   color: #fff;
}

.header-v2 .header_menu .menu.menu--desktop>ul>li>a:hover {
   background-color: #d0122d;
   border-color: #fff;
}

.header-v2 .header_menu .menu.menu--desktop>ul>li>.menu__child-toggle svg path {
   stroke: #fff;
}

.header-v2 .header_menu .menu.menu--desktop>ul>li>.menu__child-toggle {
   margin-left: 12px;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   font-size: 0;
   right: 10px;
   transition: all .15s ease-in-out;
}

.header-v2 .header_menu .menu.menu--desktop>ul>li ul .menu__link, 
.header-v2 .header_menu .menu.menu--desktop>ul>li ul a {
   font-weight: 400;
   font-size: 14px;
   line-height: 1.77;
}

@media (min-width: 1101px){
   .header-v2 #mobileTrigger, 
   .header-v2 .visible-phone {
      display: none!important;
   }

   .header-v2 .header_menu_wrapper {
      display: block!important;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul{
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
   }

   .header-v2  .header_menu .menu.menu--desktop>ul>li{
      margin-right: 5px;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li.menu__item--has-submenu>a {
      padding-right: 30px;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li:last-child {
      margin-right: 0;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li ul{
      background: #333;
      box-shadow: none!important;
      left: 0;
      min-width: 250px;
      position: absolute;
      text-align: left;
      display: none;
      width: auto;
      z-index: 99;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li ul a, 
   .header-v2 .header_menu .menu.menu--desktop>ul>li ul .menu__link{
      background-color: transparent;
      color: #fff;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li ul path {
      stroke: #fff;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li ul ul {
      position: absolute;
      left: 100%;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li:hover>ul,
   .header-v2 .header_menu .menu.menu--desktop>ul>li:focus-visible>ul,
   .header-v2 .header_menu .menu.menu--desktop>ul>li:focus-within>ul,
   .header-v2 .header_menu .menu.menu--desktop>ul>li ul li:hover>ul,
   .header-v2 .header_menu .menu.menu--desktop>ul>li ul li:focus-visible>ul,
   .header-v2 .header_menu .menu.menu--desktop>ul>li ul li:focus-within>ul{
      display: block;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li ul ul {
      position: absolute;
      left: 100%;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li ul .menu__link:hover, 
   .header-v2 .header_menu .menu.menu--desktop>ul>li ul a:hover {
      background-color: #d0122d;
   }

   .header-v2 .mobile_btn_wrpr {
      display: none;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li ul .menu__child-toggle {
      position: absolute;
      top: 0;
      right: 10px;
      width: 25px;
      height: 45px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      pointer-events: none;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li ul li {
      padding-right: 0;
   }

}

@media  (max-width:1260px){
   .header-v2 .header_menu .menu.menu--desktop>ul>li ul .menu__link, .header-v2 .header_menu .menu.menu--desktop>ul>li ul a {
      font-weight: 400;
      font-size: 18px;
      line-height: 1.77;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li>a {
      padding: 12px 5px;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li.menu__item--has-submenu>a {
      padding-right: 15px;
   }

   .header-v2 .header_menu .menu.menu--desktop>ul>li>.menu__child-toggle {
      right: 0;
      margin-right: 0;
   }
}

@media (max-width:1100px){
   .header-v2 .menu--mobile{
      display:block;
   }
   .header-v2 .hs-search-field form:before{
      display:none;
   }

   .header-v2 .mobiletrigger {
      align-items: center;
      border-radius: 100px;
      display: flex;
      flex-direction: column-reverse;
      height: 40px;
      justify-content: center;
      line-height: 40px;
      margin-left: auto;
      margin-right: 15px;
      padding: 0 5px;
      width: 40px;
   }

   .header-v2 .mobiletrigger i {
      border-bottom: 2px solid #fff;
      display: block;
      transition: all .3s ease;
      width: 100%;
   }

   .header-v2 .mobiletrigger i.second {
      margin: 7px 0;
   }

   .header-v2 .header_menu_wrapper {
      display: none;
   }

   .header-v2 .hs-search-field input.hs-search-field__input {
      padding: 10px;
      font-size: 16px;
      line-height: 1;
      color: rgba(0,0,0,0.8);
      border-radius: 0;
      border-color: rgba(0,0,0,.8);
   }

   .header-v2 .hs-search-field input.hs-search-field__input::placeholder {
      color: rgba(0,0,0,.4);
   }

   .header-v2 .hs-search-field form button {
      font-size: 0;
      top: 50%;
      transform: translateY(-50%);
   }

   .header-v2 .hs-search-field form button svg {
      height: 20px;
      width: 20px;
   }

   .header-v2 .hs-search-field form button path {
      opacity: 0.8;
      fill: rgb(160, 165, 177);
      stroke: initial;
   }

   .header-v2 .header_menu {
   }

   .header-v2 .header_menu .menu.menu--desktop {
      display: none;
   }

   .header-v2 .header_menu .menu.menu--mobile>ul {
      display: block;
      background-color: transparent;
      position: static;
   }

   .header-v2 .header_menu .menu.menu--mobile>ul li {
      position: relative;
      width: 100%;
      display: block;
   }

   .header-v2 .header_menu .menu.menu--mobile>ul li a {
      align-items: center;
      border-bottom: 3px solid transparent;
      display: flex;
      -webkit-transition: all .15s linear;
      -moz-transition: all .15s linear;
      -o-transition: all .15s linear;
      transition: all .15s linear;
      padding: 12px 10px;
      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: 21px;
      text-transform: uppercase;
      color: #fff;
      font-family: Poppins;
      text-decoration: none;
   }

   .header-v2 .hs-search-field form {
      padding: 10px 0;
      position: relative;
      background-color: transparent;
   }

   .header-v2 .menu__child-toggle {
      background-color: transparent;
      border-left: 1px solid #d2d2d2;
      cursor: pointer;
      height: 40px;
      line-height: 40px;
      margin-left: 12px;
      right: 0;
      text-align: center;
      width: 40px;
      position: absolute;
      top:0;
   }

   .header-v2 .menu__child-toggle path {
      stroke: #fff;
      opacity: 1;
   }

   .header-v2 .header_buttons {
      display: none;
   }

   .header-v2 .hidden-phone {
      display: none;
   }

   .header-v2 {
      font-size: 18px;
      line-height: 1.77;
   }

   .header-v2 .header__logo img {
      vertical-align: unset;
   }

   .header-v2 .menu__item--open>.menu__submenu {
      display: none;
   }

   .header-v2 .header_menu .menu.menu--mobile>ul ul li a,
   .header-v2 .header_menu .menu.menu--mobile>ul ul li .menu__link{
      background-color: transparent;
      font-size: 12px;
      line-height: 1.5;
      padding: 12px 10px;
      text-transform: initial;
      font-weight: 400;
      border: none;
      color: #fff;
   }

   .header-v2 .header_menu .menu.menu--mobile>ul ul {
      padding-left: 0;
   }

   .header-v2 .header_menu .menu.menu--mobile>ul>li>a:hover {
      background-color: #d0122d;
   }

   .header-v2 .open_child>.menu__child-toggle svg {
      transform: rotate(-180deg);
   }

   .header-v2 .mobile_btn_wrpr .header_buttons {
      display: block;
   }

   .header-v2 .header_buttons .button_wrapper {
      flex-wrap: wrap;
   }

   .header-v2 .header_buttons .button_item {
      width: 100%;
      margin: 0 0 10px!important;
   }

   .header-v2 .header_buttons .button_wrapper a.primary.btn, 
   .header-v2 .header_buttons .button_wrapper a.secoundary.btn {
      padding: 5px 20px;
      font-size: 14px;
      font-weight: 600;
      line-height: 21px;    
   }

   .header-v2 .searchButton {
      display: none;
   }

   .header-v2 .header_menu .menu.menu--mobile>ul ul {
      background-color: transparent;
   }

   .header-v2 .header_menu .menu.menu--mobile>ul ul {
      padding-left: 15px;
   }

   .header-v2 .menu--mobile .menu__submenu{
      display:none;
   }

}

@media (max-width:479px){
   .header-v2 .dnd-section .dnd-column {
      padding: 0 10px;
   }

   .header-v2 .topHeader .content-wrapper {
      padding: 0;
   }

   .header-v2 .header_buttons a.primary.arrow.btn:after, 
   .header-v2 .header_buttons a.secoundary.arrow.btn:after {
      right: 0;
   }

   .header-v2 .header_buttons .button_wrapper a.primary.btn, 
   .header-v2 .header_buttons .button_wrapper a.secoundary.btn {
      display: inline-block;
      text-align: center;
   }

}
.header.header a {
   text-decoration: none;
}
.header__logo {
   /*    opacity: 0.6; */
}
img {
   vertical-align: inherit !important;
}
.header_buttons a.secoundary.arrow.btn {
   white-space: nowrap;
}


header.header .row-fluid>div {
   min-height: 0;
}
header.header {
   background-color: #fff;
   box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.11);
   position: relative;
}
.header__logo {
   margin-right: 26px;
   padding-bottom: 5px;
   padding-top: 5px;
}

.custom-menu-primary .menu__wrapper {
   height: 100%;
   padding:0;
}
.custom-menu-primary .menu__wrapper {
   display: flex;
}
.custom-menu-primary>div, .custom-menu-primary nav {
   height: 100%;
}
.custom-menu-primary .menu__wrapper>li{
   padding: 0 22px;
   height: 100%;;
}
.custom-menu-primary .menu__wrapper>li>a {
   font-size: 15px;
   font-weight: 500;
   line-height: 22px;
   text-transform: uppercase;
   display: flex;
   color: #6D6D6D;
}
.custom-menu-primary .menu__wrapper>li:hover>a {
   color: #EE2200;
}
.custom-menu-primary .menu-submenu>.menu-item>a,
.custom-menu-primary .menu-submenu>.menu-item>span {
   display: block;
   padding: 5px 20px;
   width: 100%;
}
.custom-menu-primary .menu-submenu>.menu-item>a {
   border-bottom: 1px solid #d2d2d2;
}
.custom-menu-primary .menu-submenu>.menu-item>a {
   font-size: 15px;
   font-weight: 500;
   line-height: 22px;
}
.header__logo img {
   max-width: 120px;
   height: auto;
   vertical-align: unset;
   display: block;
}

.child-trigger {
   display: none;
}
.header_search form:before {
   background: #afafaf;
   content: "";
   display: block;
   height: 15px;
   left: 16px;
   position: absolute;
   top: 13px;
   width: 1px;
   opacity: 0.5;
}
.header_search form input {
   background: #f0f0f0 !important;
   border: 1px solid #fff !important;
   border-radius: 40px !important;
   box-shadow: inset 2px 3px 0 rgb(0 0 0 / 10%);
   color: hsla(0,0%,43%,.3) !important;
   display: block;
   font-size: 11px;
   font-weight: 500;
   line-height: 16px;
   outline: none;
   padding: 0.7rem;
   padding-left: 25px;
   width: 280px;
}
ul.hs-search-field__suggestions {
   position: absolute;
   background: #fff;
   top: 100%;
   z-index: 5;
   left: 0;
   right: 0;
   padding: 10px 0;
   border-color: #fff !important;
   box-shadow: 0 4px 10px rgb(0 0 0 / 25%), 0 -1px 4px rgb(0 0 0 / 13%);
}
ul.hs-search-field__suggestions:empty {
   display: none;
}
ul.hs-search-field__suggestions li#results-for {
   padding: 0 15px;
}

ul.hs-search-field__suggestions li a {
   padding: 10px 15px;
}
.header_search form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
   color: rgb(109 109 109 / 30%);
}
.header_search form input::-moz-placeholder { /* Firefox 19+ */
   color: rgb(109 109 109 / 30%);
}
.header_search form input:-ms-input-placeholder { /* IE 10+ */
   color: rgb(109 109 109 / 30%);
}
.header_search form input:-moz-placeholder { /* Firefox 18- */
   color: rgb(109 109 109 / 30%);
}
.header_search form>button {
   padding: 0;
   background: #333333;
   border-radius: 18px;
   height: 25px;
   width: 25px;
   text-align: center;
   line-height: normal;
   position: absolute;
   top: 8px;
   right: 10px;
   border-color: #333333;
}
.header_search form>button svg {
   display: block;
   margin: 0 auto;
}
.header_search {
   padding-right: 21px;
}
.header_buttons {
   border-left: 0px solid #d2d2d2;
   padding: 17px 0 17px 20px;
}
.header_buttons .button_item:not(:last-child) {
   margin-right: 10px;
}

/* Header Navigation Bottom */
.header_menu_wrapper nav>ul {
   margin: 0;
}
.header_menu_wrapper nav>ul>li {
   position: relative;
}
.header_menu_wrapper nav>ul>li.menu-item--has-submenu>a {
   padding-right: 36px;
}
.header_menu_wrapper nav>ul>li>a {
   font-weight: 600;
   font-size: 14px;
   line-height: 21px;
   text-transform: uppercase;
   display: inline-block;
   padding: 12px 23px;
   border-bottom: 3px solid transparent;
   height: 100%;
   display: flex;
   align-items: center;
   -webkit-transition: all .15s linear;
   -moz-transition: all .15s linear;
   -o-transition: all .15s linear;
   transition: all .15s linear;
}
.header_menu_wrapper .menu-child-toggle svg path {
   stroke: #fff;
   opacity: 1;
}
.header_menu_wrapper .menu-submenu {
   border-radius: 0!important;
   box-shadow: none!important;
   left: 0;
   position: absolute;
   right: 0;
   text-align: left;
   min-width: 250px;
   padding:0;
}
.header_menu_wrapper .menu-submenu>li>a {
   padding: 10px;
   display: block;
}
.header_search form {
   padding: 0;
}
ul.menu__wrapper.no-list {
   padding: 0;
}

.header_menu_wrapper .menu-submenu , .menu-submenu {
   padding: 0;
}
/*=========================== Search ======================================*/
.searchDesktop {
   border-radius: 10px;
   opacity: 0;
   position: absolute;
   top: 50px;
   transform: translateY(30px);
   transition: all .3s ease-in-out;
   visibility: hidden;
   width: 450px;
   z-index: 99;
   right: 0;
}
.searchDesktop.active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0px);
}
.header-v2 .column-2 {
   position: relative;
}
.searchDesktop form {
   background: #000;
   padding: 10px;
   width: 100%;
   position: relative;
   border-radius: 5px;
   font-family: Poppins,sans-serif!important;
   color: #202833;
}
.searchDesktop form:before {
   border-bottom: 10px solid #000;
   border-left: 10px solid transparent;
   border-right: 10px solid transparent;
   content: "";
   height: 0;
   position: absolute;
   top: -9px;
   width: 0;
   right: 7px;
}
.searchDesktop form button {
   padding: 0;
   position: absolute;
   background: transparent;
   border: 0;
   right: 20px;
   top: 18px;
   line-height: 1;
   font-size: inherit;
}
.searchDesktop form button svg {
   height: 15px;
   vertical-align: middle;
}
.searchDesktop input.hs-search-field__input {
   padding: 6px;
   font-size: 16px;
   height: 39px;
   line-height: 1.5;
}
.active-menu header.header-v2 {
   margin-bottom: 53px;
}
.cst-bnt-desk {
   position: relative;
}
/* Header Navigation Bottom End */

@media (min-width: 768px){
   .header_menu_wrapper nav>ul {
	  display: flex;
	  flex-wrap: wrap;
   }
   .header_menu_wrapper{
	  display: block !important;  
   }
   .custom-menu-primary .col.header_buttons, 
   .custom-menu-primary .header_search {
	  display: none;
   }
   .custom-menu-primary {
	  border-left: 1px solid #d2d2d2;
	  border-right: 1px solid #d2d2d2;
   }
   .custom-menu-primary .menu__wrapper>li{
	  align-items: center;
	  display: flex;
   }
   .custom-menu-primary .menu-submenu>.menu-item.menu-item--depth-2 .menu-child-toggle {
	  margin: 0;
	  position: absolute;
	  right: 10px;
	  top: 50%;
	  transform: translateY(-50%) rotate(-90deg);
   }
   .header_menu_wrapper nav>ul>li {
	  margin-right: 15px;
   }
   .header_menu_wrapper nav>ul>li>a:hover {
	  border-color: #fff;
   }

   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item {
	  position: relative;
	  z-index: 23;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  opacity: 0;
	  position: absolute;
	  transition: none;
	  visibility: hidden;
	  background: #FEFEFE;
	  border: 4px solid #979797;
	  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.25);
	  border-radius: 8px;
	  width: 550px;
	  padding: 0;
	  list-style: none;
	  margin: 0;
	  top: 67px;
	  left: 50%;
	  transform: translateX(-50%);
	  padding: 20px;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item > a.menu-link {
	  transition: color .5s ease;
	  display: flex;
	  align-items: center;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item > a.menu-link span.text {
	  margin-right: 10px;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item:hover>ul.cst-child-emnu-wrapper {
	  opacity: 1;
	  visibility: visible;
	  transition: all .2s ease-in;
   }
   /*    .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper:before {
   content: '';
   width: 15px;
   height: 15px;
   position: absolute;
   background-image: url(https://6212555.fs1.hubspotusercontent-na1.net/hubfs/6212555/ActiveSG%20Circle%202023Theme/images/Rectangle%20532.svg);
   background-repeat: no-repeat;
   background-position: center;
   top: -15px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 23;
} */
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a {
	  display: flex;
	  align-items: center;
   }

   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp h3 {
	  font-family: 'Poppins';
	  font-style: normal;
	  font-weight: 600;
	  font-size: 14px;
	  line-height: 21px;
	  color: #333333;
	  margin: 0 0 5px;
	  display: flex;
	  align-items: center;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a:hover .cst-con-grp h3 {
	  color: #EE2200;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp h3 {
	  font-family: 'Poppins';
	  font-style: normal;
	  font-weight: 600;
	  font-size: 14px;
	  line-height: 21px;
	  color: #333333;
	  margin: 0;
	  display: flex;
	  align-items: center;
	  transition: all .5s ease;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp h3 span {
	  margin-right: 10px;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col> li > a:hover .cst-con-grp h3 i {
	  opacity: 1;
	  left: 0;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp h3 i {
	  position: relative;
	  top: 0;
	  opacity: 0;
	  left: -15px;
	  transition: all .5s ease;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp .cst-btm-con {
	  font-family: 'Poppins';
	  font-style: normal;
	  font-weight: 400;
	  font-size: 13px;
	  line-height: 20px;
	  color: #656565;
   }

   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col>li {
	  padding: 0 15px;
	  padding-left: 0;
	  margin-bottom: 10px;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col>li>a .cst-img {
	  width: 70px;
	  text-align: center;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  display: flex;
	  align-items: flex-start;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col {
	  width: 50%;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li>a > .cst-con-grp {
	  padding-left: 15px;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li:last-child {
	  margin-bottom: 0;
   } 
   #mobileTrigger {
	  display: none!important;
   }
   .visible-phone {
	  display: none!important;
   }
   .header_top-menu.hidden-phone {
	  display: flex;
   }
   /*--------------    Explore more menu updated style -------------*/
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  transform: none;
	  width: 750px;
	  left: 0;
	  max-width: 100%;
	  box-sizing: border-box;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item {
	  position: static;
   }
   .header__container.content-wrapper,
   .content-wrapper.bottom-header {
	  position: relative;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>a {
	  position: relative;
	  height: 100%;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>a:before {
	  content: '';
	  width: 15px;
	  height: 15px;
	  position: absolute;
	  background-image: url(https://6212555.fs1.hubspotusercontent-na1.net/hubfs/6212555/ActiveSG%20Circle%202023Theme/images/Rectangle%20532.svg);
	  background-repeat: no-repeat;
	  background-position: center;
	  top: calc(100% - 10px);
	  left: 50%;
	  transform: translateX(-50%);
	  z-index: 23;
	  transition: none;
	  opacity: 0;
	  visibility: hidden;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item:hover>a:before {
	  opacity: 1;
	  visibility: visible;
	  transition: all .2s ease-in;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li>a > .cst-con-grp {
	  width: calc(100% - 70px);
   }
   .header_menu_wrapper nav > ul ul > li > .menu-child-toggle svg {
	  transform: rotate(-90deg);
   }
}

@media (max-width: 1200px){
   .header_search {
	  padding-right: 15px;
   }
   .header_buttons {
	  padding: 17px 0 15px 15px;
   }  
}
@media (max-width: 1200px) and (min-width: 768px) {  
   .header_menu_wrapper nav>ul>li {
	  margin-right: 0;
   }    
   .header_menu_wrapper nav>ul>li>a {
	  padding: 12px 5px;
	  font-size: 12px;	  
   }
   .header_menu_wrapper nav>ul>li.menu-item--has-submenu>a {	  
	  padding-right: 30px;	  
   }
}
@media (max-width: 991px) and (min-width: 768px) {
   .header_menu_wrapper nav>ul>li>a {	
	  font-size: 11px;
   }
   .header_menu_wrapper nav>ul>li.menu-item--has-submenu>a {
	  padding-right: 22px;
   }
   .header_menu_wrapper .menu-child-toggle svg {
	  width: 9px;
   }

   .header_menu_wrapper .menu-child-toggle {
	  right: 6px !important;
   }
}

@media (max-width: 860px) and (min-width: 768px) {
   .header_menu_wrapper nav>ul>li>a {
	  padding: 12px 5px;
	  font-size: 10px;
   }
   .header_menu_wrapper nav>ul>li.menu-item--has-submenu>a {
	  padding-right: 18px;
   }
   .header_menu_wrapper .menu-child-toggle svg {
	  width: 8px;
   }

   .header_menu_wrapper .menu-child-toggle {
	  right: 5px !important;
   }
}

@media (max-width: 767px){

   .col__left {
	  justify-content: space-between;
	  width: 100%;
	  position: relative;
	  margin-bottom: 20px;
   }
   .col.col__right {
	  flex-wrap: wrap;
	  width: 100%;
	  display: none !important;
   }
   .header_search form input {
	  width: 100%;
   }
   .header_search {
	  padding-right: 0;
	  width: 100%;
   }

   .custom-menu-primary .menu__wrapper>li {
	  padding: 0;
	  width: 100%;
   }   
   .custom-menu-primary {
	  background: #FFFFFF;
	  left: 0;
	  position: absolute;
	  right: 0;
	  top: 100%;
	  z-index: 55;
	  display: none;
   }
   .menu_trigger {
	  align-items: center;
	  background: #e20;
	  cursor: pointer;
	  display: flex;
	  flex-direction: column-reverse;
	  height: 40px;
	  justify-content: center;
	  margin-left: auto;
	  margin-right: 0;
	  position: absolute;
	  right: 15px;
	  top: 50%;
	  transform: translateY(-50%);
	  width: 40px;
	  padding: 0 5px;
   }
   .menu_trigger i {
	  border-bottom: 2px solid #fff;
	  display: block;
	  transition: all .3s ease;
	  width: 100%;
   }   
   .menu_trigger i.line.second {
	  margin: 7px 0;
   }
   .custom-menu-primary .menu__wrapper>li>a {
	  display: block;
	  line-height: 1.875;
	  padding: 5px 15px;
   }
   .custom-menu-primary .menu-submenu {
	  background-color: #fff;
	  display: none;
	  padding:0;
   }
   .custom-menu-primary .menu__wrapper>li:first-child>a {
	  border-top: 1px solid #d2d2d2;
	  border-bottom: 1px solid #d2d2d2;
   }
   .custom-menu-primary .header_search {
	  padding: 20px 15px;
   }
   .header_buttons {
	  border: none;
	  padding: 15px
   }

   .menu-child-toggle.child-open svg {
	  transform: rotate(-180deg);
   }

   .header_menu_wrapper {
	  display: none;
   }
   .header_menu_wrapper nav>ul>li {
	  position: relative;
	  width: 100%;
   }  
   .header_menu_wrapper .menu-submenu {
	  position: static;
	  display: none;
   }
   .header_menu_wrapper nav>ul>li>a {
	  font-size: 12px;
	  line-height: 1.5;
	  padding: 12px 10px;
   }
   .header_menu_wrapper .menu-submenu>li>a {
	  color: rgba(253,253,253,1.0);
	  display: block;
	  font-size: 12px;
	  line-height: 1.5;
	  padding: 12px 10px;
   }
   .mobiletrigger {
	  align-items: center;
	  border-radius: 100px;
	  display: flex;
	  flex-direction: column-reverse;
	  height: 40px;
	  justify-content: center;
	  width: 40px;
	  margin-left: auto;
	  margin-right: 0;
	  line-height: 40px;
	  padding: 0 5px;
	  margin-right: 15px;
   }
   .mobiletrigger i {
	  border-bottom: 2px solid #fff;
	  display: block;
	  transition: all .3s ease;
	  width: 100%;
   }
   .mobiletrigger i.second {
	  margin: 7px 0;
   } 
   nav.cst-hdr-top-menu>ul>li.menu-item {
	  position: relative;
	  z-index: 23;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {

	  position: absolute;
	  transition: all .5s ease-in;

	  background: #FEFEFE;
	  border: 4px solid #979797;
	  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.25);
	  border-radius: 8px;
	  width: 550px;
	  padding: 0;
	  list-style: none;
	  margin: 0;
	  top: 67px;
	  left: 50%;
	  padding: 20px;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item > a.menu-link {
	  transition: color .5s ease;
	  display: flex;
	  align-items: center;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item > a.menu-link span.text {
	  margin-right: 10px;
   }

   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper:before {
	  content: '';
	  width: 15px;
	  height: 15px;
	  position: absolute;
	  background-image: url(https://6212555.fs1.hubspotusercontent-na1.net/hubfs/6212555/ActiveSG%20Circle%202023Theme/images/Rectangle%20532.svg);
	  background-repeat: no-repeat;
	  background-position: center;
	  top: -15px;
	  left: 50%;
	  transform: translateX(-50%);
	  z-index: 23;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a {
	  display: flex;
	  align-items: center;
   }

   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp h3 {
	  font-family: 'Poppins';
	  font-style: normal;
	  font-weight: 600;
	  font-size: 14px;
	  line-height: 21px;
	  color: #333333;
	  margin: 0 0 5px;
	  display: flex;
	  align-items: center;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a:hover .cst-con-grp h3 {
	  color: #EE2200;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp h3 {
	  font-family: 'Poppins';
	  font-style: normal;
	  font-weight: 600;
	  font-size: 14px;
	  line-height: 21px;
	  color: #333333;
	  margin: 0;
	  display: flex;
	  align-items: center;
	  transition: all .5s ease;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp h3 span {
	  margin-right: 10px;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col> li > a:hover .cst-con-grp h3 i {
	  opacity: 1;
	  left: 0;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp h3 i {
	  position: relative;
	  top: 0;
	  opacity: 0;
	  left: -15px;
	  transition: all .5s ease;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col > li > a .cst-con-grp .cst-btm-con {
	  font-family: 'Poppins';
	  font-style: normal;
	  font-weight: 400;
	  font-size: 13px;
	  line-height: 20px;
	  color: #656565;
   }

   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col>li {
	  padding: 0 15px;
	  padding-left: 0;
	  margin-bottom: 10px;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col>li>a .cst-img {
	  width: 70px;
	  text-align: center;
	  line-height: 0;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  display: none;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper > .cst-split-col {
	  width: 50%;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li>a > .cst-con-grp {
	  padding-left: 15px;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li:last-child {
	  margin-bottom: 0;
   }
   .col__left {
	  justify-content: flex-start;
   }
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu > ul {
	  margin: 0;
   }
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu > ul > li:hover > a {
	  color: #EE2200;
   }
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu > ul > li > a {
	  display: flex;
	  font-size: 15px;
	  font-weight: 500;
	  line-height: 22px;
	  text-transform: uppercase;
	  color: #6D6D6D;
	  align-items: center;
	  display: flex;
	  transition: color .5s ease;
   }
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu > ul> li > a  {
	  align-items: center;
	  border-left: 1px solid #d2d2d2;
	  border-right: 1px solid #d2d2d2;
	  display: flex;
	  padding: 0 20px;
	  height: 100%;
   }
   .col__left {
	  justify-content: flex-start;
	  margin: 0;
	  border-bottom: 1px solid #d2d2d2;
   }
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu {
	  height: 100%;
   }
   .hidden-phone {
	  display: none!important;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item {
	  position: static;
   }

   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  top: 101%;
	  left: 0;
	  transform: none;
	  width: 100%;
	  border: 0;
	  border-radius: 0;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper:before{
	  display: none!important;
   }
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu>ul>li,
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu>ul {
	  height: 100%;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  opacity: 1;
	  visibility: visible;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  display: none;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col {
	  width: 50%;
	  float: left;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li {
	  padding: 0;
   }

   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  padding: 0;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li {
	  margin: 0;
	  padding: 5px 15px;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  box-shadow: none;
   }
   .col__left .header_icon-atbe.visible-phone {
	  display: flex;
	  align-items: center;
	  margin-left: auto;
   }
   /*    new */
   .cst-hdr-top-grp {
	  display: block !important;
   }  
   nav.cst-hdr-top-menu>ul>li.menu-item>a.menu-link>span>img {
	  max-width: 100px !important;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>a.menu-link {
	  align-items: center;
	  border-left: 1px solid #d2d2d2;
	  border-right: 1px solid #d2d2d2;
	  color: #6d6d6d;
	  display: flex;
	  font-size: 15px;
	  font-weight: 500;
	  height: 100%;
	  line-height: 22px;
	  padding: 0 20px;
	  text-transform: uppercase;
	  transition: color .5s ease;
   }
   nav.menu.cst-hdr-top-menu {
	  height: 100%;
   }
   ul.menu__wrapper.no-list.visible-phone.clearfix {
	  height: 100%;
   }
   ul.menu__wrapper.no-list.visible-phone.clearfix > li {
	  height: 100%;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col {
	  padding: 10px 0;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li>a .cst-con-grp h3 span {
	  font-family: Poppins!important;
	  font-size: 14px!important;
	  letter-spacing: 0;
   }

   /*    New style */
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li>a > .cst-con-grp {
	  width: calc(100% - 70px);
   }
   .cst-hdr-top-grp.visible-phone {
	  display: block !important;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  transition: none !important;
	  /*       max-height: calc(100vh - 135px);
	  overflow-y: auto;
	  overflow-x: hidden; */
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col {
	  padding: 0;
   }
   /*    New style */


   /*    new */

}

@media(max-width:479px){
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col {
	  width: 100%;
	  float: none;
   }
   .header__logo {
	  margin-right: 10px;
   }
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu>ul>li>a {
	  padding: 0 10px;
	  font-size: 13px;
   }
   .header__logo img {
	  height: auto;
	  max-width: 90px;
	  width: 100%!important;
   }
}

.header_buttons {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: end;
   padding: 10px 0 !important;
}
.header_buttons .button_wrapper {
   display: flex;
   align-items: center;
}
.searchButton {
   background: transparent!important;
   border: 1px solid #e20!important;
   border-radius: 18px!important;
   cursor: pointer;
   display: inline-block;
   font-family: Poppins;
   font-size: 14px;
   font-weight: 600;
   height: 35px;
   line-height: 21px;
   margin-left: 8px;
   padding: 0!important;
   text-align: center;
   text-transform: uppercase;
   transition: all .15s linear;
   white-space: normal;
   width: 35px;
   margin-bottom: 0;
}
.searchButton svg {
   vertical-align: middle;
}   
.header_buttons .button_wrapper a.secoundary.btn {
   border-radius: 18px;
   font-family: Poppins;
   font-size: 14px;
   font-weight: 600;
   line-height: 21px;
   margin-left: 8px;
   padding: 7px 20px;
   text-transform: uppercase;
}
.header_buttons .button_wrapper a.primary.btn {
   border-radius: 18px;
   font-family: Poppins;
   font-size: 14px;
   font-weight: 600;
   line-height: 21px;
   margin-left: 8px;
   padding: 7px 20px;
   text-transform: uppercase;
}
.header_buttons a.primary.arrow.btn,
.header_buttons a.secoundary.arrow.btn{
   position: relative;
   padding-right: 33px !important;
}
.header_buttons a.primary.arrow.btn:after,
.header_buttons a.secoundary.arrow.btn:after{
   content: "";
   height: 16px;
   margin: 0 7px;
   position: absolute;
   top: 50%;
   width: 14px;
   background-repeat: no-repeat;
   transform: translateY(-50%);
}
.header_buttons a.primary.arrow.btn:after{ 
   background-image: url(data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 7.58333V11.0833C10.5 11.3928 10.3771 11.6895 10.1583 11.9083C9.9395 12.1271 9.64275 12.25 9.33333 12.25H2.91667C2.60725 12.25 2.3105 12.1271 2.09171 11.9083C1.87292 11.6895 1.75 11.3928 1.75 11.0833V4.66667C1.75 4.35725 1.87292 4.0605 2.09171 3.84171C2.3105 3.62292 2.60725 3.5 2.91667 3.5H6.41667' stroke='%23e20' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.75 1.75H12.25V5.25' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.8335 8.16667L12.2502 1.75' stroke='%23e20' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E);
}
.header_buttons a.primary.arrow.btn:hover:after{
   background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 7.58333V11.0833C10.5 11.3928 10.3771 11.6895 10.1583 11.9083C9.9395 12.1271 9.64275 12.25 9.33333 12.25H2.91667C2.60725 12.25 2.3105 12.1271 2.09171 11.9083C1.87292 11.6895 1.75 11.3928 1.75 11.0833V4.66667C1.75 4.35725 1.87292 4.0605 2.09171 3.84171C2.3105 3.62292 2.60725 3.5 2.91667 3.5H6.41667' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.75 1.75H12.25V5.25' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.8335 8.16667L12.2502 1.75' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.header_buttons a.secoundary.arrow.btn:after {
   background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 7.58333V11.0833C10.5 11.3928 10.3771 11.6895 10.1583 11.9083C9.9395 12.1271 9.64275 12.25 9.33333 12.25H2.91667C2.60725 12.25 2.3105 12.1271 2.09171 11.9083C1.87292 11.6895 1.75 11.3928 1.75 11.0833V4.66667C1.75 4.35725 1.87292 4.0605 2.09171 3.84171C2.3105 3.62292 2.60725 3.5 2.91667 3.5H6.41667' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.75 1.75H12.25V5.25' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.8335 8.16667L12.2502 1.75' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.header_buttons a.secoundary.arrow.btn:hover:after {
   background-image: url(data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 7.58333V11.0833C10.5 11.3928 10.3771 11.6895 10.1583 11.9083C9.9395 12.1271 9.64275 12.25 9.33333 12.25H2.91667C2.60725 12.25 2.3105 12.1271 2.09171 11.9083C1.87292 11.6895 1.75 11.3928 1.75 11.0833V4.66667C1.75 4.35725 1.87292 4.0605 2.09171 3.84171C2.3105 3.62292 2.60725 3.5 2.91667 3.5H6.41667' stroke='%23e20' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.75 1.75H12.25V5.25' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.8335 8.16667L12.2502 1.75' stroke='%23e20' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E);
}
.cst-header-tabber-grp .cst-icon {
   margin: 0 10px!important;
}
.cst-header-tabber-grp .cst-icn-btn-grp .tab-text {
   color: #333;
   display: block;
   font-family: Poppins;
   font-size: 14px;
   font-style: normal;
   font-weight: 600;
   line-height: 21px;
   margin: 0 5px 0 0;
   min-height: 1px;
   min-width: 0;
}
.cst-header-tabber-grp .cst-icn-btn-grp .tab-text {
   margin-left: 0;
}
/* body.show-body{
opacity:1;
}
body{
opacity:0;
background-color:#fff;
} */
.text-add .cst-header-tabber-grp .cst-icn-btn-grp .tab-text {
   min-width: 102px;
   text-align: center;
   margin-left: 0;
}
.cst-mob-search form {
   padding: 10px 0;
   position: relative;
}
.cst-mob-search form input[type=text] {
   padding: 10px;
   border-color: #cfcdcd;
   background-color: #FFF;
   border: 1px solid;
   border-radius: 3px;
   display: inline-block;
   font-size: 16px;
   width: 100%;
   outline: 0;
   line-height: 1;
   -webkit-box-shadow: none;
   -moz-box-shadow: none;
   box-shadow: none;
   color: rgba(0, 0, 0, 0.8);
   -webkit-transition: all 0.2s ease-out;
   -o-transition: all 0.2s ease-out;
   -moz-transition: all 0.2s ease-out;
   transition: all 0.2s ease-out;
   font-family: Poppins;
   min-height: auto;
}
.cst-mob-search form button svg {
   width: 20px;
   height: 20px;
}
.cst-mob-search form button {
   background: transparent;
   border: 0;
   padding: 0;
   position: absolute;
   right: 17px;
   top: 21px;
   font-size: 24px;
   margin: 0;
}
.cst-mob-search form input[type=text]::placeholder {
   color: rgba(0, 0, 0, 0.4);
}
.cst-header-tabber-grp .cst-icn-btn-grp .cst-icon {
   position: relative;
}
.cst-header-tabber-grp .cst-icn-btn-grp .cst-icon img {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}
.cst-header-tabber-grp .cst-icn-btn-grp .tab-text {
   margin-left: 0!important;
}

/* new-css */

.hdr_v3 .toggleClass > span {
   font-family: 'Poppins';
}

.header.hdr_v3 .dnd-section .dnd-column {
   padding: 0;
}
header.header.hdr_v3 {
   font-family: Poppins,sans-serif;
}


header.header.hdr_v3 {
   font-family: Poppins,sans-serif;
}

.cst-bnt-desk {}

.header_menu_wrapper nav>ul>li>a {
   padding: 12px 5px;
}

.searchDesktop input.hs-search-field__input {
   min-height: auto;
}

@media (max-width:1024px) and (min-width:768px){
   .header_buttons{
	  padding: 6px 0!important;
   }
}

@media (min-width: 768px){
   .header_menu_wrapper .menu-submenu{

	  background: #333;
   }
   .menu-submenu.menu-submenu--level-3, .menu-submenu.menu-submenu--level-4 {
	  top: 0;
	  left: 100%;
   }

   .header_menu_wrapper .menu-submenu>li>a {
	  color: #fff;
   }

   .header_menu_wrapper .menu-submenu>li>a:hover {
	  background-color: #d0122d;
   }

   .header_menu_wrapper nav>ul>li:last-child>.menu-submenu {
	  right: 0 !important;
	  left: auto;
   }

}

/* new-end */

@media (min-width:768px){
   .cst-header-tabber-grp .cst-icn-btn-grp {
	  width: 40px;
   }
   body.text-add .cst-header-tabber-grp .cst-icn-btn-grp {
	  width: 175px;
   }
   .cst-header-tabber-grp .cst-icn-btn-grp {
	  cursor: pointer;
	  transition: all .5s linear .5s!important;
   }
   .text-add header.header .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item {
	  z-index: 24;
   }
   .active-icon .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item {
	  z-index: 24;
   }
}
@media (max-width:1400px) and (min-width:768px){
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  left: 0;
	  transform: none;
   }
   .custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper:before {
	  left: 20px;
	  transform: none;
   }
}
@media (max-width:990px) and (min-width:768px){
   .header_buttons .button_wrapper a.primary.btn, .header_buttons .button_wrapper a.secoundary.btn {
	  padding: 4px 10px;
	  font-size: 12px;
	  white-space: nowrap;
   }
   .header_buttons .button_wrapper a.primary.btn {
	  margin-left: 0;
   }
   body.text-add .cst-header-tabber-grp .cst-icn-btn-grp {
	  flex-wrap: wrap;
	  align-items: center;
	  justify-content: center;
   }
   .col.col__left.d-flex {
	  max-width: 45%;
   }
   .custom-menu-primary .menu__wrapper>li {
	  padding: 0 10px;
   }
   .col.col__right.d-flex.align-items-center.hidden-phone {
	  max-width: 55%;
   }
   .cst-header-tabber-grp .cst-icon {
	  margin-bottom: 5px!important;
   }
}

@media (max-width:767px){
   .col.header_buttons.visible-phone > div {
	  width: 100%;
   }
   .button_wrapper .searchButton.button {
	  display: none;
   }
   .header_buttons .button_wrapper > div {
	  margin: 0!important;
   }
   .header_menu_wrapper nav>ul>li>a {
	  font-family: 'Poppins';
	  font-style: normal;
	  font-weight: 600;
	  font-size: 14px;
	  line-height: 21px;
	  text-transform: uppercase;
	  color: #FDFDFD;
	  padding: 12px 10px;
   }
   .header_buttons .button_wrapper {
	  flex-wrap: wrap;
   }
   .header_buttons .button_wrapper>div {
	  width: 100%;
	  margin: 0 0px 10px!important;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  z-index: 23;
   }
   .col.header_buttons.visible-phone {
	  padding: 0;
   }
}
@media (max-width:479px){
   .header_buttons .button_wrapper a.primary.btn, 
   .header_buttons .button_wrapper a.secoundary.btn {
	  padding: 5px 18px;
   }
   .header__logo {
	  display: flex;
	  align-items: center;
   }
   .cst-hdr-top-grp.visible-phone .menu.cst-hdr-top-menu>ul>li>a {
	  font-size: 12px;
	  padding: 0 10px;
	  margin-right: 10px;
	  white-space: nowrap;
   }
}

/* Extras */
.header .dnd-section > .row-fluid {
   max-width: 1280px;
   padding: 0 15px;
}
.topHeaderGrp .topHeaderRight img {
   vertical-align: unset;
}

.header .content-wrapper {
   max-width: 1280px;
   padding: 0 15px;
}
.header .row {
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
}
.header .justify-content-between {
   -ms-flex-pack: justify !important;
   justify-content: space-between !important;
}
.header .align-items-center {
   -ms-flex-align: center !important;
   align-items: center !important;
}
.header .row {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   margin-left: -15px;
   margin-right: -15px;
}
.header .justify-content-between {
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}
.header .align-items-center {
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}
.header > .header__container > .row:before, .header > .header__container > .row:after {
   display: none;
}
.header .col {
   -ms-flex-preferred-size: 0;
   flex-basis: 0;
   -ms-flex-positive: 1;
   flex-grow: 1;
   max-width: 100%;
}
.header .d-flex {
   display: -ms-flexbox !important;
   display: flex !important;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}
.header .row > .col {
   padding: 0 15px;
}
header.header {
   font-size: 18px;
   line-height: 1.77;
}
.custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper>.cst-split-col>li>a .cst-img img {
   vertical-align: unset;
}
.header__logo img {
   vertical-align: unset;
}
.header .header__container > .row {
   width: calc(100% + 30px);
}
.header .header-bottom-menu {
   background: rgba(51, 51, 51, 1.0);
}
.header_menu_wrapper nav>ul>li>a {
   color: rgba(255, 255, 255, 1.0);
}
.header_menu_wrapper nav>ul>li>a:hover {
   background-color: rgba(208, 18, 45, 1.0);
}
.searchDesktop input.hs-search-field__input {
   border-color: rgba(215, 215, 215, 1.0);
   color: rgba(48, 48, 48, 1.0);
   border-radius: 4px;
}
.searchDesktop input.hs-search-field__input::-webkit-input-placeholder {
   color: #202833;
}
.header_buttons .button_wrapper a.primary.btn {
   border: 1px solid #e20;
   background: #fff !important;
   color: #e20 !important;
   display: inline-block;
}
.header_buttons .button_wrapper a.primary.btn:hover {
   background: #d0122d !important;
   color: #fff !important;
}
.header_buttons .button_wrapper a.secoundary.btn {
   background: #e20;
   color: #fff;
   border: 1px solid rgba(0, 0, 0, 0.1);
   display:inline-block;
}
.header_buttons .button_wrapper a.secoundary.btn:hover {
   background: #fff;
   border: 1px solid #e20;
   color: #e20;
}
.header_buttons .button_wrapper a.primary.btn,
.header_buttons .button_wrapper a.secoundary.btn {
   letter-spacing: 0;
}
.custom-menu-primary nav.cst-hdr-top-menu>ul>li.menu-item>a.menu-link>span>img,
nav.cst-hdr-top-menu>ul>li.menu-item>a.menu-link>span>img {
   display: block;
}
/* .custom-menu-primary {
display: none;
}
*/
.fa, .fab, .fal, .far, .fas {
   -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
   display: inline-block;
   font-style: normal;
   font-variant: normal;
   text-rendering: auto;
   line-height: 1;
}
.fa, .far, .fas {
   font-family: "Font Awesome 5 Free";
}
.fa, .fas {
   font-weight: 900;
}
.fa-angle-down:before {
   content: "\f107";
}
@media (max-width: 800px) and (min-width: 768px) {
   .header_buttons .button_item:not(:last-child) {
	  margin-right: 0;
   }
}
@media (min-width: 768px) {
   .header_menu_wrapper .menu-child-toggle {
	  position: absolute;
	  top: 50%;
	  right: 10px;
	  transform: translateY(-50%);
	  font-size: 0;
   }
   .header_menu_wrapper nav>ul>li>ul {
	  background: #333;
	  right: auto !important;
   }
   .header_menu_wrapper nav>ul>li>ul>li>a {
	  color: #fff;
   }
   .header_menu_wrapper nav>ul>li>ul>li>a:hover {
	  background-color: #d0122d;
   }
}

@media (max-width: 767px) {
   .header .hidden-phone {
	  display: none!important;
   }
   .header .col.col__right {
	  display: none!important;
	  flex-wrap: wrap;
	  width: 100%;
   }
   .header .row > div {
	  width: 100%;
	  max-width: 100%;
   }
   .header .col__left {
	  border-bottom: 1px solid #d2d2d2;
	  justify-content: flex-start;
	  margin: 0;
	  position: relative;
   }
   .header__logo {
	  margin-left: 0;
	  width: auto;
   }
   .header_menu_wrapper .content-wrapper {
	  max-height: calc(100vh - 159px);
	  overflow-x: hidden;
	  overflow-y: auto;
   }
   nav.cst-hdr-top-menu>ul>li.menu-item>ul.cst-child-emnu-wrapper {
	  max-height: calc(100vh - 118px);
	  overflow-x: hidden;
	  overflow-y: auto;
   }
}

@media (max-width: 479px) {
   .topHeader .content-wrapper {
	  padding: 0 !important;
   }

   .toggleClass .underline {
	  margin-right: 5px !important;
   }

   .toggleClass span {
	  margin-right: 6px !important;
   }

   span.toggleClass_in {
	  margin-right: 0 !important;
   }

   header.header .dnd-section > .row-fluid {
	  padding: 0 10px;
   }

   .toggleClass, .toggleClass a {
	  font-size: 11px;
   }

   .topHeader {
	  padding-top: 9px;
	  padding-bottom: 9px;
   }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

footer.footer {
   padding: 62px 0 41px;
   /*    border-top: 10px solid #306FB6; */
}
.footer_top_row {
   margin: 0 -15px;
}
footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
   display: block !important;
   opacity: 1 !important;
   visibility: visible !important;
   position: static !important;
}

footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li>ul li>a {
   display: inline-block;
   font-size: 14px;
   line-height: 20px;
   margin-top: 10px;
   text-decoration: none;
   white-space: normal;
}
footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li>ul>li.hs-item-has-children>a,
footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li>a{
   font-weight: 700;
   font-size: 15px;
   letter-spacing: 1px;
   text-transform: uppercase;
   text-decoration: none;
   white-space: normal;
   margin-top: 0;
   line-height: 16px;
}
footer.footer .footer_links .hs-menu-wrapper>ul>li>a{
   font-size: 12px;
   font-weight: 400;
   line-height:16px;
   text-decoration: none;
   position: relative;
   white-space: normal;
}
footer.footer .footer_links .hs-menu-wrapper>ul>li:not(:last-child) {
   margin-right: 40px;
}
.footer_bottom-menu .hs-menu-wrapper>ul>li > a:after , .footer-bottom-left .hs-menu-wrapper>ul>li > a:after {
   background-image: url(https://6212555.fs1.hubspotusercontent-na1.net/hubfs/6212555/SportsCare_December2022%20Theme/image/arrow-up-right-1.png);
   background-repeat: no-repeat;
   content: "";
   height: 13px;
   margin: 0 5px;
   position: absolute;
   top: 4px;
   width: 13px;
}
.footer_bottom-menu .hs-menu-wrapper>ul>li:first-child > a:after {
   display: none;
}
.footer_copyright {
   display: flex;
   align-items: center;
}
footer.footer .footer_copyright p {
   font-weight: 400;
   font-size: 12px;
   line-height:16px;
}
footer.footer .footer_bottom_row {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
}
footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li {
   margin-bottom: 30px;
}
footer.footer .footer_bottom {
   margin-top: 35px;
}
footer.footer  .footer_social ul,
footer.footer .footer_btright_links ul {
   margin: 0;
   padding: 0;
   list-style: none;
}
footer.footer  .footer_social ul li,
footer.footer .footer_btright_links ul li {
   display: inline-block;
}
footer.footer .footer_btright_links ul li a {
   font-style: normal;
   font-weight: 400;
   font-size: 12px;
   line-height: 16px;
}
footer.footer .ft_bt_links {
   text-align: right;
}
footer.footer .footer_btright_links ul li:not(:last-child) {
   margin-right: 15px;
}
footer.footer .footer_social ol li a i {
   font-size: 20px;
}
footer.footer .footer_social ol li:not(:last-child) {
   margin-right: 15px;
}
footer.footer .footer_menu_wraper .hs-menu-wrapper ul {
   position: static !important;
   opacity: 1 !important;
   visibility: visible !important;
}
footer.footer .footer_social {
   padding: 0 15px;
}
footer.footer .footer_btright_links {
   padding: 0 15px;
}
footer.footer  .social_share {
   margin-bottom: 15px;
}
footer.footer .social_share ol li span.label {
   display: none;
}
footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li {
   padding: 0 15px;
}
footer.footer .social_share ol li {
   display: inline-block;
}
.backtoTop {
   background: url(//6212555.fs1.hubspotusercontent-na1.net/hubfs/6212555/raw_assets/public/SportsCare_December2022%20Theme/images/top-arrow.png) no-repeat center #636e77;
   width: 40px;
   height: 40px;
   position: fixed;
   right: 50px;
   bottom: 50px;
   z-index: 5;
   transition: opacity .5s;
   opacity: 0;
   cursor: pointer;
   border: 1px solid #fff;
}
.backtoTop.show {
   opacity: 1;
}



footer.footer .social_share ol {
   margin: 0;
   padding: 0;
   list-style: none;
}
@media (min-width: 768px){
   footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li {
	  width: 16.666%;
	  padding: 0 15px;
   }  
   footer.footer .footer_menu_wraper .hs-menu-wrapper >ul>li>ul li.hs-item-has-children {
	  margin-top: 15px;
   }
   footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li>a {
	  margin-bottom: 10px;
	  display: inline-block;
	  vertical-align: top;
   }
}
@media(min-width:993px){
   .footer_links {
	  padding: 0px 15px;
	  width: 33.33%;
   }
   .footer_copyright {
	  padding: 0px 15px;
	  width: 44.33%;
   }
   .footer_bottom-menu {
	  padding: 0px 15px;
	  width: 22.33%;
   }

   .footer_bottom-menu.footer_links {
	  justify-content: space-evenly;
	  display: flex;
	  align-items: center;
   }

   .footer_copyright {
	  justify-content: center;
   }
}
@media (max-width: 992px) and (min-width: 768px){
   footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li {
	  width: 20%;
   }
}
@media screen and (max-width: 1023px) {
   .backtoTop {
	  right: 10px;
	  bottom: 10px;
   }
}
@media(max-width:992px){
   .footer_copyright, .footer_links {
	  width: 100%;
	  margin-bottom: 20px;
	  display: block;
	  text-align: center;
   }

   .footer_links .hs-menu-wrapper ul {
	  justify-content: center;
   }

   .footer_bottom-menu {
	  margin-bottom: 0;
   }
}
@media (max-width: 767px){
   footer.footer .ft_bt_links,
   footer.footer .footer_bottom {
	  margin-top: 20px;
   }
   footer.footer .footer_links .hs-menu-wrapper>ul {
	  -webkit-box-orient: unset;
	  -webkit-box-direction: unset;
	  -ms-flex-direction: unset;
	  flex-direction: unset;
	  -webkit-box-pack: center;
	  -ms-flex-pack: center;
	  justify-content: center;
   }
   footer.footer .footer_links, 
   footer.footer .footer_copyright {
	  text-align: left;
	  width: 100%;
   }
   footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li {
	  margin-bottom: 15px;
   }
   footer.footer .ft_bt_links {
	  text-align: center;
   }
   footer.footer .footer_links .hs-menu-wrapper>ul {
	  display: block;
   }

   footer.footer .footer_links .hs-menu-wrapper>ul>li:not(:last-child) {
	  margin-right: 0;
	  margin-bottom: 5px;
   }

   .footer_links .hs-menu-wrapper ul {
	  justify-content: left;
   }
   footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li.hs-item-has-children>ul > li {
	  margin-bottom: 10px;
   }

   footer.footer .footer_menu_wraper .hs-menu-wrapper>ul>li.hs-item-has-children>ul {
	  margin-top: 10px;
   }
}
footer.footer.footer-v2 {
   background-color: #000;
   padding: 0;
   font-size: 18px;
   line-height: 1.77;
}

.footer-v2 .top-sec {
   padding-bottom: 40px;
}
.footer-v2 .copyright-sec {
   font-weight: 400;
   font-size: 12px;
   line-height: 21px;
   color: #fff;
}
.footer-v2 .copyright-sec .c-main {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}
.footer-v2 .copyright-sec p:last-child {
   margin-bottom: 0;
   font-weight: 400;
   font-size: 12px;
   line-height: 21px;
   color: #fff;
}
.footer-v2 .social-wrapper {
   display: flex;
   flex-wrap: wrap;
}

.footer-v2 .copyright-sec .c-right-main p {
   margin: 0;
   font-family: 'Poppins';
   font-style: normal;
   font-weight: 500;
   font-size: 14px;
   line-height: 32px;
   color: #939393;
}

.footer-v2  .copyright-sec .social-share .icons {
   height: 27px;
   width: 27px;
}

.footer-v2  .social-wrapper .icons {
   margin-left: 10px;
}

.footer-v2  .copyright-sec .c-right-main p a {
   color: #939393;
   text-decoration: none;
}

.footer-v2  .bottom-sec>.content-wrapper {
   padding: 30px 0;
}

.footer-v2  .bottom-sec {
   background: #1e1e1e;
   padding-top: 40px;
}

.footer-v2  .bottom-sec .s-img {
   text-align: center;
}

.footer-v2  .bottom-sec .s-img img {
   max-width: 133px;
   max-height: 71px;
}

.footer-v2  .bottom-sec .f-logos .logos .item {
   max-width: 107px;
   max-height: 53px;
}

.footer-v2  .bottom-sec .f-logos .logos {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 800px;
   margin: 0 auto;
   align-items: baseline;
}

.footer-v2  .bottom-sec .f-logos .logos .item img {
   vertical-align: middle;
}

.footer-v2  .bottom-sec .f-logos .logos {
   padding: 10px 0;
}
.footer-v2 .footer-row {
   padding-top: 40px;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   padding-bottom: 50px;
}
.footer-v2 .footer-form {
   padding-top: 60px;
   padding-bottom: 60px;
   border-bottom: 2px solid hsla(0,0%,91%,.2);
}
.footer-v2  .footer-form > .content-wrapper {
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
}
.footer-v2 .footer-content {
   width: 100%;
   max-width: 620px;
   padding-top: 60px;
   margin-right: auto;
   padding-bottom: 25px;
   clear: right;
   text-align: left;
}

.footer-v2 .footer-content h6 {
   line-height: 1.6;
   margin-bottom: 8px;
   font-size: 20px;
   font-family: Poppins;
}

.footer-v2 .footer-content p {
   font-size: 14px;
   line-height: 1.42857142857;
   margin: 0 0 15px;
}

.footer-v2  .top-sec .f-menu ul li a {
   font-size: 14px;
   line-height: 1.14285714286;
   text-transform: capitalize;
}
.footer-v2 .top-sec .f-menu {
   max-width: 100%;
   margin-bottom: 45px;
}

.footer-v2 .top-sec .f-menu ul {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   width: 100%;  
   margin: 0 auto;
}

.footer-v2 .top-sec .f-menu .hs_cos_wrapper {
   display: block;
   width: 100%;
}

.footer-v2 .top-sec .f-menu ul li a {  
   color: #d7d7d7;
   font-family: Poppins;
   font-size: 16px;
   font-style: normal;
   font-weight: 700;
   letter-spacing: 1px;
   line-height: 1.14285714286;
   text-decoration: none;
   text-transform: capitalize;
   margin-bottom: 14px;
   display: block;
}
.footer-v2 .top-sec .f-menu ul li a:hover {
   color: #ffffff;
}
.footer-v2 .f-bottom-menu-right .hs-menu-wrapper ul {
   justify-content: flex-end;
}

.footer-v2 .f-bottom-menu-right {
   margin-bottom: 8px;
}

.footer-v2 .f-bottom-menu .hs-menu-wrapper ul li:not(:last-child) {
   margin-right: 32px;
}

.footer-v2 .f-bottom-menu ul li a {
   font-weight: 400;
   font-size: 12px;
   line-height: 16px;
   text-decoration: none;
   color: #d7d7d7;
   position: relative;
   display: inline-block;
   font-family: Poppins !important;
}
.footer-v2 .f-bottom-menu ul li a:hover {
   color: #ffffff;
}

.footer-v2 .top-sec .f-menu ul ul {
   position: static;
   display: block !important;
   opacity: 1 !important;
}

.footer-v2 .top-sec .f-menu ul ul li a {
   color: #d7d7d7;
   font-family: Poppins;
   font-size: 14px;
   font-style: normal;
   font-weight: 400;
   letter-spacing: 1px;
   line-height: 1.14285714286;
   text-decoration: none;
   text-transform: capitalize;
   white-space: initial;
}

.footer-v2 .top-sec .f-menu ul ul li {
   margin-bottom: 14px;
}

.footer-v2 .f-bottom-menu-left ul>li>a:after, 
.footer-v2 .f-bottom-menu.f-bottom-menu-right .hs-menu-wrapper ul>li>a:after {
   background-image: url(//6212555.fs1.hubspotusercontent-na1.net/hubfs/6212555/raw_assets/public/SportsCare_December2022%20Theme/images/external-link.svg);
   background-repeat: no-repeat;
   content: "";
   height: 16px;
   margin: 0 10px;
   position: absolute;
   top: 0;
   width: 14px;
}
.footer-v2 .f-bottom-menu.f-bottom-menu-left .hs-menu-wrapper ul>li {
   margin-right: 45px;
}

.footer-v2 .f-bottom-menu.f-bottom-menu-right .hs-menu-wrapper ul>li {
   margin-right: 24px;
}

.footer-v2 .top-sec .top-title {
   text-align: center;
   margin: 0 0 53px;
   color: #fff;
}
.footer-v2 .footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.footer-v2 .form-wrap form {
   font-family: Montserrat,sans-serif;
   font-style: normal;
   font-weight: 400;
   text-decoration: none;
   display: flex;
   align-items: start;
   position: relative;
   max-width: 1026px;
   margin: 0 auto;
   width: 100%;
}

.footer-v2 .form-wrap form .actions input.hs-button.primary.large {
   margin: 0;
   text-align: center;
   padding: 11px 26px;
   background: #EC0319;
   border-radius: 4px;
   font-family: 'Poppins';
   font-style: normal;
   font-weight: 500;
   font-size: 16px;
   line-height: 26px;
   color: #FFFFFF;
   border: 0;
   white-space: nowrap;
}

.footer-v2 .form-wrap form .form-columns-2 {
   width: 100%;
   display: flex;
}

.footer-v2 .form-wrap form .form-columns-2 .hs-richtext {
   display: none;
}

.footer-v2 .form-wrap form .hs-form-field>label {
   display: none;
}

.footer-v2 .form-wrap form .hs-form-field input {
   height: auto;
   background: #fff;
   border: 1px solid rgba(0,0,0,.3);
   border-radius: 4px;
   color: #939393;
   font-family: Poppins;
   font-size: 14px;
   font-weight: 500;
   letter-spacing: 0;
   line-height: 32px;
   outline: none;
   padding: 7px 30px;
   text-align: left;
   min-height: auto;
}

.footer-v2 .form-wrap form .hs-form-field input::placeholder {
   color: #939393;
}

.footer-v2 .form-wrap form .form-columns-2 .hs-form-field {
   margin-bottom: 0;
}

.footer-v2 .top-sec .border {
   border: 0;
   opacity: 0.2;
   border-top: 1px solid rgba(232, 232, 232, 0.75);
   max-width: 1026px;
   margin: 0 auto;
   width: 100%;
}

.footer-v2 .form-wrap form .form-columns-2 .hs-form-field .input {
   margin-right: 20px;
}

.footer-v2 .bottom-sec>.content-wrapper {
   padding-top: 0;
}

.footer-v2  .copyright-sec .social-share .icons svg path:first-child {
   stroke: #6B6B6B;
}

.footer-v2  .copyright-sec .social-share .icons svg path:not(:first-child) {
   fill: #6B6B6B;
}

.footer-v2  .copyright-sec .social-share .icons:hover svg path:first-child {
   stroke: #dddddd;
}

.footer-v2  .copyright-sec .social-share .icons:hover svg path:not(:first-child) {
   fill: #dddddd;
}

.footer-v2 .form-wrap form .hs_error_rollup {
   display: none;
}

.footer-v2 .form-wrap form ul.no-list {
   text-align: left;
}

@media (max-width: 1200px) {
   .footer-v2 .f-logo {
      width: 100%;
      margin-top: 25px;
   }  
}

@media (max-width:1024px){
   .footer-v2 .top-sec .f-menu .hs-menu-wrapper>ul>li {
      padding-right: 10px;
      width: 20%;
   }

   .footer-v2 .top-sec .f-menu .hs-menu-wrapper>ul {
      justify-content: flex-start;
   }
}

@media (max-width:991px) {
   .footer-v2  .copyright-sec .c-main {
      flex-direction: column;
      justify-content: center;
      align-items: center;
   }
   .footer-v2 .top-sec .f-menu ul li:not(:last-child) {
      margin-bottom: 18px;
   }
   .footer-v2 .top-sec .top-title {
      font-size: 30px;
      line-height: 30px;
   }
   .footer-v2 .bottom-sec>.content-wrapper {
      padding-left: 15px;
      padding-right: 15px;
   }
   .footer-v2 .f-bottom-menu.f-bottom-menu-left .hs-menu-wrapper ul>li {
      margin-right: 40px;
   }
}

@media (max-width:767px) {
   .footer-v2 .form-wrap form {
      flex-direction: column;
   }
   .footer-v2 .footer-form>.content-wrapper {
      text-align: left;  
   }
   .footer-v2 .form-wrap form .form-columns-2 {
      flex-direction: column;
   }
   .footer-v2 .form-wrap form {
      flex-direction: column;      
   }
   .footer-v2 .form-wrap form .form-columns-2 .hs-form-field {
      width: 100%;
      float: none;
   }
   .footer-v2  .copyright-sec .c-right-main p {
      line-height: 22px;
      margin-bottom: 15px;
   }
   .footer-v2 .form-wrap form .form-columns-2 .hs-form-field .input {
      margin-right: 0;
   }
   .footer-v2 .form-wrap form .form-columns-2 .hs-form-field {
      margin-bottom: 20px;
   }
   .footer-v2 .bottom-sec .f-logos .logos .item {
      margin-right: 10px;
      margin-bottom: 15px;
   }  
   .footer-v2 .footer-content {            
      width: 100%;
      padding-bottom: 16px;
   }
   .footer-v2 .f-bottom-menu .hs-menu-wrapper ul li:not(:last-child) {
      margin-right: 0;
   }
   .footer-v2 .f-bottom-menu.f-bottom-menu-left .hs-menu-wrapper ul>li {
      margin-right: 28px;
   }
   .footer-v2 .top-sec .f-menu {
      max-width: 100%;
      margin-bottom: 18px;
   }
   .footer-v2 .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
   }
   .footer-v2  .copyright-sec {
      margin-top: 8px;      
   }
   .footer-v2 .f-bottom-menu-right, .footer-v2 .f-bottom-menu-left {
      margin-bottom: 12px;
   }
   .footer-v2 .f-bottom-menu-right {
      margin-bottom: 0;
   }

   .footer-v2 .top-sec .f-menu .hs-menu-wrapper>ul>li {
      width: 100%;
      padding-right: 0;
   }

}

@media (max-width:600px) {
   .footer-v2 .bottom-sec .f-logos .logos .item {
      margin-bottom: 15px;
   }
}


@media (max-width:479px) {
   .footer-v2 .bottom-sec .f-logos .logos {
      flex-direction: column;
      align-items: center;
   }
}


.footer-v2 .form-wrap form .actions input.hs-button.primary.large {
   background: #ec0319;
   border: 0;
   border-radius: 4px;
   margin: 0;
   padding: 11px 26px;
   text-align: center;
   white-space: nowrap;
   font-family: 'Poppins';
   font-style: normal;
   font-weight: 500;
   font-size: 16px;
   line-height: 26px;
   color: #F3F4F3;
}

/* Extras */
.footer-v2 .top-sec,
.footer-v2 .footer-form {
   background-color: rgba(0, 0, 0, 1.0);
}

.footer-v2 .footer-form .top-title,
.footer-v2 .footer-content h6,
.footer-v2  {
   color: rgba(255, 255, 255, 1.0);
}

.footer-v2 .content-wrapper {
   max-width: 1280px;
   padding: 0 15px;
}

.footer-v2 .row {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
}

.footer-v2 .row > div {
   padding: 0 15px;
}

.footer-v2  {
   font-size: 18px;
   line-height: 1.77;
}

.footer-v2 .footer-form .top-title {
   font-size: 22px;
   line-height: 1.2;
   margin: 0 0 15px;
}

.footer-v2  .hs-error-msg {
   font-weight: 500;
   font-family: sans-serif;
}

@media (max-width: 1260px){
   .header-v2 .header_menu .menu.menu--desktop>ul>li>.menu__child-toggle {
      background-color: transparent;
      width: auto;
      margin-left: 0;
   }
}

@media (max-width: 767px) {
   .footer-v2 .hs-menu-wrapper.hs-menu-flow-horizontal ul {
      flex-direction: column;
   }
   .footer-v2 .row > div {
      width: 100%;
      max-width: 100%;
   }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
p:last-of-type{margin-bottom:0}.align-right{text-align:right}.align-left{text-align:left}.text-center{text-align:center}.banner-section .dnd-section{padding:0!important}.position-relative,.position_relative{position:relative}.flex_row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.mb20{margin-bottom:20px}.btn_item a{display:inline-block;padding:15px 40px;border-radius:38px;color:#fff;font-size:16px;line-height:30px;font-weight:600;}.btn_outline_primary a:hover,.btn_outline_secondary a:hover,.btn_outline_tertiary a:hover{background:#fff;border:1px solid #fff}.btn_primary a{background:#DA251F;border:1px solid #DA251F}
.btn_primary a:hover{background: #fff;border: 1px solid #da251f;color:#da251f;}
.btn_secoundary a{background:#da251f;color:#fff}.btn_secoundary a:hover{background:#fff;color:#da251f}.btn_dark a:hover{background:#fff;color:#000}.btn_dark a{background:#000;color:#fff}.btn_tertiary a{background:#1f1f1f;color:#fff}.btn_tertiary a:hover{background:#fff;color:#1f1f1f}.btn_outline_primary a{background:0 0;border:1px solid #db6664;color:#db6664}.btn_outline_primary a:hover{color:#db6664}.btn_outline_secondary a{background:0 0;border:1px solid #da251f;color:#da251f}.btn_outline_secondary a:hover{color:#da251f}.btn_outline_tertiary a{background:0 0;color:#1f1f1f;border:1px solid #1f1f1f}.btn_outline_tertiary a:hover{color:#1f1f1f}.btn_outline_white a{border:1px solid #fffF}.btn_outline_dark a:hover{border:1px solid #db6664;color:#db6664}.btn_outline_dark a{border:1px solid #1f1f1f;color:#1f1f1f;font-weight:600;}
.btn_outline_white a:hover{
   color: #db6664;
   background: #fff;
   border-color: #fff;
}
.banner-section .dnd-section .dnd-column {
   padding: 0;
}

[class*="force-full-width-section"] {
   padding: 0;
}

[class*="force-full-width-section"].dnd-section .dnd-column {
   padding-left: 0;
   padding-right: 0;
}
.row{
   margin-left: -15px;
   margin-right: -15px;
}

.description.lead p {
   font-weight: 600;
}
@media (max-width: 767px){
   .btn_item a {
      padding: 8px 25px;
   }
}
@media (max-width: 479px){
   .btn_item a {
      padding: 8px 20px;
   }
}

.sitemap .hs-menu-wrapper>ul {
   display: block;
   margin: 0 -15px 0;
   column-count: 3;
}

.sitemap .hs-menu-depth-1 {
   display: flex;
   flex-direction: column;
   padding: 0 15px;
   break-inside: avoid-column;
}

.sitemap .hs-menu-depth-1.hs-item-has-children {
   margin-bottom: 25px;
}

.sitemap .hs-menu-wrapper a {
   font-size: 18px;
   display: inline-block;
   margin-bottom: 10px;
   margin-top: 5px;
}

.sitemap .hs-menu-depth-1>a {
   color: #EA413B;
   font-weight: 600;
   font-size: 20px;
   line-height: 2;
}

.sitemap .hs-menu-depth-2>a {
   font-weight: 600;
}

.sitemap .hs-menu-depth-2>ul {
   margin-left: 5px;
}

.sitemap .hs-menu-depth-2 ul a {
   display: flex;
   margin: 0;
}

.sitemap .hs-menu-depth-2 ul a:before {
   content: '>';
   margin-right: 10px;
   font-weight: 700;
   color: rgb(48 52 59 / 50%);
}

@media (max-width: 1024px) {
   .sitemap .hs-menu-wrapper>ul {
      column-count: 2;
   }
}

@media (max-width: 767px) {
   .sitemap .hs-menu-wrapper>ul {
      column-count: 1;
   }
}

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