/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.dnd-section[class*="full-width-section"]>.row-fluid {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.full-width-container .dnd-section > .row-fluid {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.full-width-container .dnd-section, 
.full-width-container .content-wrapper--vertical-spacing,
.full-width-container .dnd-section .dnd-column {
  padding: 0;
}
.overflow-hidden{overflow:hidden}
.dnd-section[class*=force-full-width-section]{padding:0}
.dnd-section[class*=force-full-width-section] .dnd-column{padding-left:0;padding-right:0}
.dnd-section[class*=force-full-width-section]>.row-fluid{padding-left:0;padding-right:0}
.content-wrapper{margin:0 auto}
.content-wrapper,.dnd-section>.row-fluid{margin:0 auto}
.content-wrapper,.dnd-section .dnd-column,.dnd-section>.row-fluid{padding:0 24px}
.slick-slider{outline:0}
.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-24px;margin-right:-24px}
.no-gutters{margin-right:0;margin-left:0}
.no-gutters>.col.no-gutters>[class*=col-]{padding-right:0;padding-left:0}
.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:24px;padding-left:24px}
@media (max-width: 768px) {
  .content-wrapper,.dnd-section .dnd-column,.dnd-section>.row-fluid{padding:0 20px}
  .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-20px;margin-right:-20px}
  .col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:20px;padding-left:20px}
}
.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
.order-first{-ms-flex-order:-1;order:-1}
.order-last{-ms-flex-order:13;order:13}
.order-0{-ms-flex-order:0;order:0}
.order-1{-ms-flex-order:1;order:1}
.order-2{-ms-flex-order:2;order:2}
.order-3{-ms-flex-order:3;order:3}
.order-4{-ms-flex-order:4;order:4}
.order-5{-ms-flex-order:5;order:5}
.order-6{-ms-flex-order:6;order:6}
.order-7{-ms-flex-order:7;order:7}
.order-8{-ms-flex-order:8;order:8}
.order-9{-ms-flex-order:9;order:9}
.order-10{-ms-flex-order:10;order:10}
.order-11{-ms-flex-order:11;order:11}
.order-12{-ms-flex-order:12;order:12}
.offset-1{margin-left:8.333333%}
.offset-2{margin-left:16.666667%}
.offset-3{margin-left:25%}
.offset-4{margin-left:33.333333%}
.offset-5{margin-left:41.666667%}
.offset-6{margin-left:50%}
.offset-7{margin-left:58.333333%}
.offset-8{margin-left:66.666667%}
.offset-9{margin-left:75%}
.offset-10{margin-left:83.333333%}
.offset-11{margin-left:91.666667%}
@media(min-width:480px){
  .col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .order-sm-first{-ms-flex-order:-1;order:-1}
  .order-sm-last{-ms-flex-order:13;order:13}
  .order-sm-0{-ms-flex-order:0;order:0}
  .order-sm-1{-ms-flex-order:1;order:1}
  .order-sm-2{-ms-flex-order:2;order:2}
  .order-sm-3{-ms-flex-order:3;order:3}
  .order-sm-4{-ms-flex-order:4;order:4}
  .order-sm-5{-ms-flex-order:5;order:5}
  .order-sm-6{-ms-flex-order:6;order:6}
  .order-sm-7{-ms-flex-order:7;order:7}
  .order-sm-8{-ms-flex-order:8;order:8}
  .order-sm-9{-ms-flex-order:9;order:9}
  .order-sm-10{-ms-flex-order:10;order:10}
  .order-sm-11{-ms-flex-order:11;order:11}
  .order-sm-12{-ms-flex-order:12;order:12}
  .offset-sm-0{margin-left:0}
  .offset-sm-1{margin-left:8.333333%}
  .offset-sm-2{margin-left:16.666667%}
  .offset-sm-3{margin-left:25%}
  .offset-sm-4{margin-left:33.333333%}
  .offset-sm-5{margin-left:41.666667%}
  .offset-sm-6{margin-left:50%}
  .offset-sm-7{margin-left:58.333333%}
  .offset-sm-8{margin-left:66.666667%}
  .offset-sm-9{margin-left:75%}
  .offset-sm-10{margin-left:83.333333%}
  .offset-sm-11{margin-left:91.666667%}
}
.clearfix::after{display:block;clear:both;content:""}
.d-none{display:none!important}
.d-inline{display:inline!important}
.d-inline-block{display:inline-block!important}
.d-block{display:block!important}
.d-table{display:table!important}
.d-table-row{display:table-row!important}
.d-table-cell{display:table-cell!important}
.d-flex{display:-ms-flexbox!important;display:flex!important}
.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}
.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}
.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}
.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}
.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}
.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}
.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}
.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}
.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}
.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}
.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}
.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}
.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}
.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}
.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}
.align-items-center{-ms-flex-align:center!important;align-items:center!important}
.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}
.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}
.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}
.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}
.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}
.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}

.float-left{float:left!important}
.float-right{float:right!important}
.float-none{float:none!important}
.position-static{position:static!important}
.position-relative{position:relative!important}
.position-absolute{position:absolute!important}
.position-fixed{position:fixed!important}
.position-sticky{position:-webkit-sticky!important;position:sticky!important}
.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}
.fixed-top{top:0}
.fixed-bottom{bottom:0}

.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0000);white-space:nowrap;border:0}
.w-25{width:25%!important}
.w-50{width:50%!important}
.w-75{width:75%!important}
.w-100{width:100%!important}
.w-auto{width:auto!important}
.h-25{height:25%!important}
.h-50{height:50%!important}
.h-75{height:75%!important}
.h-100{height:100%!important}
.h-auto{height:auto!important}
.mw-100{max-width:100%!important}
.mh-100{max-height:100%!important}
.m-0{margin:0!important}
.m-1{margin:.25rem!important}
.m-2{margin:.5rem!important}
.m-3{margin:1rem!important}
.m-4{margin:1.5rem!important}
.m-5{margin:3rem!important}
.p-0{padding:0!important}
.p-1{padding:.25rem!important}
.p-2{padding:.5rem!important}
.p-3{padding:1rem!important}
.p-4{padding:1.5rem!important}
.p-5{padding:3rem!important}
.m-auto{margin:auto!important}
.text-justify{text-align:justify!important}
.text-nowrap{white-space:nowrap!important}
.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.text-left{text-align:left!important}
.text-right{text-align:right!important}
.text-center{text-align:center!important}
@media(min-width:576px){
  .d-sm-none{display:none!important}
  .d-sm-inline{display:inline!important}
  .d-sm-inline-block{display:inline-block!important}
  .d-sm-block{display:block!important}
  .d-sm-table{display:table!important}
  .d-sm-table-row{display:table-row!important}
  .d-sm-table-cell{display:table-cell!important}
  .text-sm-left{text-align:left!important}
  .text-sm-right{text-align:right!important}
  .text-sm-center{text-align:center!important}
}
@media(min-width:769px){
  .col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-md-2-1{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}
  .col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-md-4-1{-ms-flex:0 0 40%;flex:0 0 40%;max-width:40%}
  .col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .order-md-first{-ms-flex-order:-1;order:-1}
  .order-md-last{-ms-flex-order:13;order:13}
  .order-md-0{-ms-flex-order:0;order:0}
  .order-md-1{-ms-flex-order:1;order:1}
  .order-md-2{-ms-flex-order:2;order:2}
  .order-md-3{-ms-flex-order:3;order:3}
  .order-md-4{-ms-flex-order:4;order:4}
  .order-md-5{-ms-flex-order:5;order:5}
  .order-md-6{-ms-flex-order:6;order:6}
  .order-md-7{-ms-flex-order:7;order:7}
  .order-md-8{-ms-flex-order:8;order:8}
  .order-md-9{-ms-flex-order:9;order:9}
  .order-md-10{-ms-flex-order:10;order:10}
  .order-md-11{-ms-flex-order:11;order:11}
  .order-md-12{-ms-flex-order:12;order:12}
  .offset-md-0{margin-left:0}
  .offset-md-1{margin-left:8.333333%}
  .offset-md-2{margin-left:16.666667%}
  .offset-md-3{margin-left:25%}
  .offset-md-4{margin-left:33.333333%}
  .offset-md-5{margin-left:41.666667%}
  .offset-md-6{margin-left:50%}
  .offset-md-7{margin-left:58.333333%}
  .offset-md-8{margin-left:66.666667%}
  .offset-md-9{margin-left:75%}
  .offset-md-10{margin-left:83.333333%}
  .offset-md-11{margin-left:91.666667%}
  .d-md-none{display:none!important}
  .d-md-inline{display:inline!important}
  .d-md-inline-block{display:inline-block!important}
  .d-md-block{display:block!important}
  .d-md-table{display:table!important}
  .d-md-table-row{display:table-row!important}
  .d-md-table-cell{display:table-cell!important}
  .d-md-flex{display:-ms-flexbox!important;display:flex!important}
  .d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}
  .flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}
  .flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}
  .flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}
  .flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}
  .flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}
  .flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}
  .flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}
  .justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}
  .justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}
  .justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}
  .justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}
  .justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}
  .align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}
  .align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}
  .align-items-md-center{-ms-flex-align:center!important;align-items:center!important}
  .align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}
  .align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}
  .align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}
  .align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}
  .align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}
  .align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}
  .align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}
  .align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}
  .align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}
  .align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}
  .align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}
  .align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}
  .align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}
  .align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}
  .float-md-left{float:left!important}
  .float-md-right{float:right!important}
  .float-md-none{float:none!important}
  .m-md-0{margin:0!important}
  .m-md-1{margin:.25rem!important}
  .m-md-2{margin:.5rem!important}
  .m-md-3{margin:1rem!important}
  .m-md-4{margin:1.5rem!important}
  .m-md-5{margin:3rem!important}
  .p-md-5{padding:3rem!important}
  .m-md-auto{margin:auto!important}
  .text-md-left{text-align:left!important}
  .text-md-right{text-align:right!important}
  .text-md-center{text-align:center!important}
}
@media(min-width:993px){
  .col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .order-lg-first{-ms-flex-order:-1;order:-1}
  .order-lg-last{-ms-flex-order:13;order:13}
  .order-lg-0{-ms-flex-order:0;order:0}
  .order-lg-1{-ms-flex-order:1;order:1}
  .order-lg-2{-ms-flex-order:2;order:2}
  .order-lg-3{-ms-flex-order:3;order:3}
  .order-lg-4{-ms-flex-order:4;order:4}
  .order-lg-5{-ms-flex-order:5;order:5}
  .order-lg-6{-ms-flex-order:6;order:6}
  .order-lg-7{-ms-flex-order:7;order:7}
  .order-lg-8{-ms-flex-order:8;order:8}
  .order-lg-9{-ms-flex-order:9;order:9}
  .order-lg-10{-ms-flex-order:10;order:10}
  .order-lg-11{-ms-flex-order:11;order:11}
  .order-lg-12{-ms-flex-order:12;order:12}
  .offset-lg-0{margin-left:0}
  .offset-lg-1{margin-left:8.333333%}
  .offset-lg-2{margin-left:16.666667%}
  .offset-lg-3{margin-left:25%}
  .offset-lg-4{margin-left:33.333333%}
  .offset-lg-5{margin-left:41.666667%}
  .offset-lg-6{margin-left:50%}
  .offset-lg-7{margin-left:58.333333%}
  .offset-lg-8{margin-left:66.666667%}
  .offset-lg-9{margin-left:75%}
  .offset-lg-10{margin-left:83.333333%}
  .offset-lg-11{margin-left:91.666667%}
  .d-lg-none{display:none!important}
  .d-xl-none{display:none!important}

  .m-lg-auto{margin:auto!important}
  .text-lg-left{text-align:left!important}
  .text-lg-right{text-align:right!important}
  .text-lg-center{text-align:center!important}
  .d-lg-block{display:block!important}
}
@media(min-width:1200px){
  .col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}
  .col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}
  .col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}
  .col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}
  .col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}
  .col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}
  .col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}
  .col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}
  .col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}
  .col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}
  .col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}
  .col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}
  .col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}
  .col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}
  .d-xl-block{display:block!important}
}
.text-lowercase{text-transform:lowercase!important}
.text-uppercase{text-transform:uppercase!important}
.text-capitalize{text-transform:capitalize!important}
.font-weight-light{font-weight:300!important}

.font-weight-bold{font-weight:700!important}

.text-white{color:#fff!important}
.text-primary{color:#007bff!important}
.visible{visibility:visible!important}
.invisible{visibility:hidden!important}
.position-absolute,.position-fixed,.position-relative{z-index:100}
@media (min-width:769px){
  .visible-phone{display:none!important}
}
@media (max-width:768px){
  .hidden-phone{display:none!important}
}
.f400{font-weight:400}
.regular{font-weight:500}
.semiBold{font-weight:600}
.Bold{font-weight:700}

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

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

body {
  /*   line-height: 1.2222; */
  overflow-wrap: break-word;
}

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

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

.body-container-wrapper img {
  border-radius: 2px;
}

/* Paragraphs */
.description *:last-child {
  margin-bottom: 0;
}
p {
  margin: 0 0 24px;
}
.medium {
  font-size: 16px;
  line-height: 1.3125;
}
.small {
  font-size: 14px;
  line-height: 1.28571428571;
}
/* Anchors */
a {
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Headings */

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

/* Lists */

ul,
ol {
  margin: 0 0 16px;
  padding-left: 20px;
}
ul li:not(:last-child),
ol li:not(:last-child) {
  margin: 0 0 16px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.valign-top {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.valign-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.valign-bottom {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.valign-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.dsk-left {
  text-align: left;
}
.dsk-left .line {
  margin-left: 0;
  margin-right: auto;
}
.dsk-left .cta-group {
  justify-content: flex-start;
}
.dsk-center {
  text-align: center;
}
.dsk-center .line {
  margin-left: auto;
  margin-right: auto;
}
.dsk-center .cta-group {
  justify-content: center;
}
.dsk-right {
  text-align: right;
}
.dsk-right .line {
  margin-left: auto;
  margin-right: 0;
}
.dsk-right .cta-group {
  justify-content: flex-end;
}
.dsk-center .bottom-row {
  justify-content: center;
}
.dsk-left .bottom-row {
  justify-content: flex-start;
}
.dsk-right .bottom-row {
  justify-content: flex-end;
}
.dsk-card-left {
  text-align: left;
}
.dsk-card-center {
  text-align: center;
}
.dsk-card-right {
  text-align: right;
}
.dsk-card-left .cta-group {
  justify-content: flex-start;
}
.dsk-card-center .cta-group {
  justify-content: center;
}
.dsk-card-right .cta-group {
  justify-content: flex-end;
}
@media(max-width: 992px) {
  .valign-tab-top {
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
  }
  .valign-tab-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .valign-tab-bottom {
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
  }
  .tab-left {
    text-align: left;
  }
  .tab-left .line {
    margin-left: 0;
    margin-right: auto;
  }
  .tab-left .cta-group {
    justify-content: flex-start;
  }
  .tab-center {
    text-align: center;
  }
  .tab-center .line {
    margin-left: auto;
    margin-right: auto;
  }
  .tab-center .cta-group {
    justify-content: center;
  }
  .tab-right {
    text-align: right;
  }
  .tab-right .line {
    margin-left: auto;
    margin-right: 0;
  }
  .tab-right .cta-group {
    justify-content: flex-end;
  }
  .tab-center .bottom-row {
    justify-content: center;
  }
  .tab-left .bottom-row {
    justify-content: flex-start;
  }
  .tab-right .bottom-row {
    justify-content: flex-end;
  }

  .tab-card-left {
    text-align: left;
  }
  .tab-card-center {
    text-align: center;
  }
  .tab-card-right {
    text-align: right;
  } 
  .tab-card-left .cta-group {
    justify-content: flex-start;
  }
  .tab-card-center .cta-group {
    justify-content: center;
  }
  .tab-card-right .cta-group {
    justify-content: flex-end;
  }
}
@media(max-width: 768px) {
  .mob-left {
    text-align: left;
  }
  .mob-left .line {
    margin-left: 0;
    margin-right: auto;
  }
  .mob-left .cta-group {
    justify-content: flex-start;
  }
  .mob-center {
    text-align: center;
  }
  .mob-center .line {
    margin-left: auto;
    margin-right: auto;
  }
  .mob-center .cta-group {
    justify-content: center;
  }
  .mob-right {
    text-align: right;
  }
  .mob-right .line {
    margin-left: auto;
    margin-right: 0;
  }
  .mob-right .cta-group {
    justify-content: flex-end;
  }
  .mob-center .bottom-row {
    justify-content: center;
  }
  .mob-left .bottom-row {
    justify-content: flex-start;
  }
  .mob-right .bottom-row {
    justify-content: flex-end;
  }

  .mob-card-left {
    text-align: left;
  }
  .mob-card-center {
    text-align: center;
  }
  .mob-card-right {
    text-align: right;
  }
  .mob-card-left .cta-group {
    justify-content: flex-start;
  }
  .mob-card-center .cta-group {
    justify-content: center;
  }
  .mob-card-right .cta-group {
    justify-content: flex-end;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
.cta-group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-group {
  margin-top: 32px;
}
.text-left .cta-group {
  -webkit-box-pack: start!important;
  -ms-flex-pack: start!important;
  justify-content: flex-start!important
}
.text-right .cta-group {
  -webkit-box-pack: end!important;
  -ms-flex-pack: end!important;
  justify-content: flex-end!important
}
.text-center .cta-group {
  -webkit-box-pack: center!important;
  -ms-flex-pack: center!important;
  justify-content: center!important
}
.cta-group .btn-wrapper {
  display: inline-block;
}
.cta-group .btn-primary-white-wrapper {
  position: relative;
  overflow: hidden;
}
.btn-primary-wrapper a,
.btn-primary-white-wrapper a,
.btn-secondary-wrapper a,
.btn-secondary-white-wrapper a,
.btn-tertiary-wrapper a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2222;
  text-align: center;
  text-decoration: none;
}
.btn-primary-wrapper.sm a,
.btn-primary-white-wrapper.sm a,
.btn-secondary-wrapper.sm a,
.btn-tertiary-wrapper.sm a{
  font-size: 16px;
  line-height: 1.3125;
}


@media (max-width: 479px){
  .cta-group .btn-wrapper {
    width: 100%; 
  }
}
/* Form */
.contact-banner-wrp .hbspt-form,
.hs_cos_wrapper_type_form, 
.hs_cos_wrapper_type_blog_subscribe, 
.hs_cos_wrapper_type_google_search, 
.hs_cos_wrapper_type_email_simple_subscription, 
.hs_cos_wrapper_type_password_prompt, 
.hs_cos_wrapper_type_module .widget-type-email_subscriptions, 
.hs_cos_wrapper_type_member_login, 
.hs_cos_wrapper_type_member_register, 
.hs_cos_wrapper_type_password_reset_request, 
.hs_cos_wrapper_type_password_reset{
  max-width: 767px;
  padding: 16px 18px;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
}
form select {
  background-image: url(//44165351.fs1.hubspotusercontent-na1.net/hubfs/44165351/raw_assets/public/Alta_Genetics_June2025/images/arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px 7px;
  background-position: 95% center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
h3.form-title:empty {
  display: none;
}
form {
  max-width: 767px;
}
form fieldset.form-columns-1 .input,
form fieldset.form-columns-2 .hs-form-field .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 .hs-form-field:first-child .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 {
  display: flex;
  column-gap: 24px;
}
form fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}
form fieldset .hs-input[type=radio],
form fieldset .hs-input[type=checkbox] {
  width: auto !important;
}
.hs-fieldtype-textarea.hs-input {
  vertical-align: middle;
}
@media(max-width: 992px) {
  form fieldset.form-columns-2 {
    flex-wrap: wrap;
  }
  form fieldset.form-columns-2 .hs-form-field {
    float: none;
    width: 100% !important;
  }
}
@media(max-width:479px) {
  form fieldset.form-columns-2 .hs-form-field:first-child .input,
  form fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 0 !important;
  }
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none;
  }
  .form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }
}
/* Form fields */
.hs-form-field {
  margin-bottom: 18px;
}
/* Labels */
.hs-form label {
  display: block;
  margin-bottom: 0.35rem;
/*   text-transform: capitalize; */
}
.hs-form label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21428571429;
  color: ;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 4px;
/*   text-transform: capitalize; */
}
.hs-form-field > label {
  margin-bottom: 4px;
}
.inputs-list.hs-error-msgs label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21428571429;
  margin-top: .5rem;
  color: red;
}
.hs-error-msgs label {
  color: red;
}
/* Help text - legends */
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;
  min-height: 35px;
  padding: 8px 4px;
  width: 100%;
  font-size: 16px;
  line-height: 1.1875;
  box-sizing: border-box;
  outline: none;
}
textarea.hs-input {
  height: auto;
}
.hs-input:focus {
  outline: none;
}
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;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  width: auto;
}
textarea.hs-input {
  min-height: 87px;
  padding: 8px 4px;
}
/* Inputs - datepicker */
.hs-dateinput {
  position: relative;
}
.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.fn-date-picker .pika-table thead th {
  color: #FFF;
}
.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}
.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}
/* Inputs - file picker */
form input[type=file] {
  background-color: transparent;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}
/* 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: #D82E91;
  margin-left: 4px;
}
.hs-input.invalid.error {
  border-color: red;
}
.hs-error-msg {
  color: #D82E91;
  margin-top: 0.35rem;
}
.hs-error-msgs label {
  color: red;
}
/* Submit button */
.btn-primary,
.btn-secondary,
form input[type=submit],
form .hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: normal;
  border-style: solid;
  border-width: 1px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2222;
  position: relative;
  text-decoration: none;
}
.hs-button,
.hs-button:hover,
.hs-button:focus {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2222;
  text-decoration: none;
}

form .hs-button, form .actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.arw-wrp {
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.swan {
  /*   border-radius: 50%;
  height: 28px;
  transition: all .3s ease;
  width: 28px;
  transform: translateX(0); */
}
.swan {
  transform: translateX(0);
  position: absolute;
  top: 5px;
  left: -1px;
  transition: all .3s ease;
}
.btn-primary-wrapper a:hover .swan,
.btn-primary-white-wrapper a:hover .swan,
form .actions:hover .swan,
.hs-button:hover .swan {
  transform: translateX(-28px);
}
.arrw {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 0;
  transform: translateX(28px);
  /*   background-color: #ff5c00; */
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary-wrapper a:hover .arrw,
.btn-primary-white-wrapper a:hover .arrw,
form .actions:hover .arrw,
form .hs-button:hover .arrw {
  transform: translateX(0);
  /*   background-color: #FF5C00; */
}
/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}
#hs-search-module .hs-input {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  form {
    max-width: 100%;
  }
}


.hs-form-checkbox-display, 
.hs-form-radio-display {
  align-items: center;
  display: inline-flex !important;
  position: relative;
}
.hs-form-checkbox-display input[type=checkbox], 
.hs-form-radio-display input[type=radio] {
  height: 12px;
  opacity: 0;
  visibility: hidden;
  width: 12px !important;
}
.hs-form-checkbox-display span,
.hs-form-radio-display span {
  align-items: center;
  display: inline-flex;
  font-weight: 400;
  margin-left: 2px;
}
.hs-form-radio-display input[type=radio]+span:before,
.hs-form-radio-display input[type=radio]:checked~span:after {
  border-radius: 100px;
}
.hs-form-checkbox-display input[type=checkbox]+span:before, 
.hs-form-radio-display input[type=radio]+span:before {
  border: 1px solid #0095DB;
  content: "";
  cursor: pointer;
  height: 12px;
  left: 0;
  position: absolute;
  width: 12px;
}
.hs-form-checkbox-display input[type=checkbox]+span:before, 
.hs-form-checkbox-display input[type=checkbox]:checked~span:after {
  border-radius: 2px;
}
.hs-form-checkbox-display input[type=checkbox]:checked~span:after, 
.hs-form-radio-display input[type=radio]:checked~span:after {
  background-color: #0095DB;
  content: "";
  cursor: pointer;
  display: block;
  height: 12px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
}
.hs-form-checkbox-display input[type="checkbox"]:checked~span:after {
  /*   content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  transform: rotate(45deg);
  top: 0;
  border: solid var(--secondary);
  border-width: 0 2px 2px 0;
  background-color: transparent; */
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

header.header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.header-row{border:1px solid #e5f4fc;border-radius:2px;box-shadow:0 4px 16px #0d19391A}
.header_top.bg-blue{z-index: 999;padding: 0px 18px;}
.header_bottom{padding:7px 18px 0;}
.gap-36{column-gap:36px}
.custom-top-nav .hs-menu-wrapper>ul{display:flex;column-gap:24px}
.custom-top-nav .hs-menu-wrapper>ul>li>a{ 
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-family: Fira Sans Condensed;
}
.custom-top-nav .hs-menu-wrapper>ul>li>a:hover {
  text-decoration: underline;
}
.custom-menu-primary .hs-menu-wrapper>ul>li>a{text-decoration:none}
.custom-menu-primary .hs-menu-wrapper>ul{display:flex;column-gap:36px}
button.search-button{
  height: 34px;
  width: 34px;
  text-align: center;
  display: flex;
  justify-content: center;
  background: 0 0;
  border-radius: 0 2px 2px 0;
  border: 1px solid transparent;
  cursor: pointer;
}
button.search-button svg{width:20px;height:auto;display:block}
.custom-menu-wrapper{width:100%}

.search_bar button{position:absolute;right:15px;background:0 0;border:none;padding:0;top:50%;transform:translateY(-50%)}
.search_bar button svg{width:20px;height:auto!important;display: block;}
button.search-button.active{background:#143c89}
button.search-button svg.close-search-icon{display:none}
button.search-button.active svg.close-search-icon{display:block}
button.search-button.active svg.search-icon{display:none}
.custom-menu-wrapper>div{
  width: 100%;
}
div#hamburger-1{display:none}
.hs-search-field__bar form input[type=text]{  
  border: 1px solid #143c89;
  border-radius: 2px;
  outline: 0;
  padding: 5px 10px;
  font-weight: 500;
  font-family: 'Fira Sans Condensed';
  color: #143C89;
  font-size: 18px;
}
.hs-search-field__bar form input[type=text]::-webkit-input-placeholder{color:#143c89;opacity:1}
.hs-search-field__bar form input[type=text]::-moz-placeholder{color:#143c89;opacity:1}
.hs-search-field__bar form input[type=text]:-ms-input-placeholder{color:#143c89;opacity:1}
.hs-search-field__bar form input[type=text]:-moz-placeholder{color:#143c89;opacity:1}
.search_input_wrapper ul.hs-search-field__suggestions {
  position: absolute;
  width: 100%;
  background: #fff;
  top: 100%;
}
.search_input_wrapper ul.hs-search-field__suggestions li#results-for {
  padding: 5px;
}
.search_input_wrapper ul.hs-search-field__suggestions li a {
  padding: 0 5px;
}
.custom-top-nav .hs-menu-wrapper>ul li,.custom-navigation>ul>li{
  margin: 0;
}
.line {
  background: transparent linear-gradient(90deg, #D82E91 0%, #F26D20 100%) 0% 0% no-repeat padding-box;
  max-width: 288px;
  height: 6px;
  margin-bottom: 32px;
}
.line.text-center {
  margin-left: auto;
  margin-right: auto;
}

@media(min-width: 993px){
  .search_bar{position:absolute;right:34px;left:auto;top:0;width:445px;display:none}
  .custom-menu-wrapper-mobile{display: none !important;}
  .header_top.header_top_mobile {display: none;}
}
@media(max-width: 1440px){
  header.header .content-wrapper {
    max-width: 100%;
  }
}

@media(max-width: 992px){
  header.header {top: 12px;}
  .header_top.header_top_mobile{display:none}
  .header-row{position:relative;z-index:9;background:#fff}
  .custom-menu-wrapper-desktop{display:none;}
  .header_bottom{padding:20px 24px;position:relative}
  div#hamburger-1{display:block;background:#e5f4fc;border-radius:2px;padding:8px;position:absolute;right:14px;cursor:pointer;width: 36px;height: 36px;}
  .custom-menu-wrapper-mobile{
    display: none;
  }
  .custom-menu-wrapper-mobile {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: calc(100vh);
    display: none;
    overflow-y: auto !important;
  }



  .custom-menu-wrapper {
    background: transparent linear-gradient(180deg, #f2f9fe 0, #fff 100%) 0 0 no-repeat padding-box;
    width: 100%;
    padding-top: 115px;
    padding-bottom: 0;
    height: 100vh;
  }
  .custom-menu-primary{      
    max-width: 614px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header_button,.header_top{display:none}
  .hamburger .line{width:20px;height:3px;background: var(--primary);display:block;margin:2px auto 4px;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}
  #hamburger-1.is-active .line:first-child{-webkit-transform:translateY(7px) rotate(45deg);-ms-transform:translateY(7px) rotate(45deg);-o-transform:translateY(7px) rotate(45deg);transform:translateY(7px) rotate(45deg)}
  #hamburger-1.is-active .line:nth-child(2){opacity:0}
  #hamburger-1.is-active .line:nth-child(3){-webkit-transform:translateY(-7px) rotate(-45deg);-ms-transform:translateY(-7px) rotate(-45deg);-o-transform:translateY(-7px) rotate(-45deg);transform:translateY(-7px) rotate(-45deg)}
  .header_bottom{z-index:99}
  .custom-menu-wrapper-row .hs_cos_wrapper {
    height: calc(100% - 260px);
    width: 100%;
  } 
  .custom-top-nav .hs-menu-wrapper>ul{row-gap: 12px;}
  .header_top.bg-blue{padding:16px 18px}
  .search_input_wrapper{max-width:575px;margin:0 auto}
  .custom-menu-wrapper-row{height:100%;
    /*     row-gap:48px */
  }
  .header_top.header_top_mobile{margin-top:0;margin-bottom:0;width: 100%;}
  .header_top.header_top_mobile>.row{row-gap:24px}
  .custom-top-nav .hs-menu-wrapper>ul{justify-content:center}
  .custom-top-nav .hs-menu-wrapper>ul>li>a{color:#0d1939}
  .custom-navigation ul li {
    margin: 0;
  }
}
/* @media only screen 
and (device-width: 428px) 
and (device-height: 926px) 
and (-webkit-device-pixel-ratio: 3) {
.custom-menu-wrapper-mobile {
height: calc(100vh - 88px);
}
}

@media only screen and (min-device-width: 414px)  and (max-device-width: 430px)  and (-webkit-device-pixel-ratio: 3) {
.custom-menu-wrapper-mobile {
height: calc(100vh - 88px);
}
} 
*/
@media (max-width: 992px) {
  .line {
    max-width: 192px;
  }
  header.header .custom-top-nav .hs-menu-wrapper>ul>li>a,
  header.header  .custom-top-nav .hs-menu-wrapper>ul>li>a:hover {
    color: #0D1939;
  }
  .search_input_wrapper ul.hs-search-field__suggestions {
    position: absolute;
    width: 100%;
    background: #fff;
    top: auto;
    bottom: 100%;
  }
  .search_input_wrapper  .hs-search-field__suggestions li {
    margin: 0 !important;
  }
  .search_input_wrapper  .hs-search-field__suggestions li a {
    padding: 5px !important;
    display: block;
  }
  .header_top.header_top_mobile {
    position: fixed;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  header.header .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .custom-logo img {
    max-width: 112px !important;
  }
  .hs-search-field__bar form input[type=text]{
    font-size: 18px;
  }
  .custom-top-nav .hs-menu-wrapper>ul {
    align-items: center;
    row-gap: 24px;
  }
  header.header {top: 10px;}
  .line {
    max-width: 96px;
  }
  .header_bottom {
    padding: 20px 14px;
  }
}

body.pop-open {
  overflow: hidden;
}
/* footer.footer .content-wrapper {
max-width: 1440px;
} */
footer.footer .footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:20px;
}
footer.footer .social-icons ul {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.footer .social-icons ul li a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 2px;
}
footer.footer .footer-bottom {
  padding: 24px 0;
}
footer.footer .copyright {
  font-size: 14px;
  font-weight: 400;
}
footer.footer .footer-terms a {
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Fira Sans Condensed';
}
footer.footer .footer-terms a:first-child {
  margin-right: 24px;
}
footer.footer .footer-top-row {
  display: flex;
}
footer.footer .footer-left {
  width: 25%;
  padding-right: 42px;
  border-right: 2px solid hwb(0deg 100% 0% / 20%);
}
footer.footer .footer-right {
  width: 75%;
  padding-left: 42px;
}
footer.footer .footer-image img{
  border-radius: 8px;
}
footer.footer .footer-top {
  padding: 56px 0;
}
footer.footer .footer-logo {
  max-width: 212px;
  width: 100%;
  margin-bottom: 40px;
}
footer.footer .footer-haading h6 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 22px;
}
footer.footer .footer-haading {
  margin-bottom: 12px;
}
footer.footer .footer-image {
  display: flex;
  gap:16px;
}
footer.footer .footer-image1,.footer-image2 {
  max-width: 136px;
  width: 100%;
}
footer.footer .footer-menu.footer-menu-1 {
  padding-bottom: 35px;
}
footer.footer .footer-menu .hs-menu-wrapper>ul {
  flex-wrap: nowrap;
}
footer.footer .footer-menu .hs-menu-wrapper>ul>li {
  width: 25%;
  padding:0 20px;
}
footer.footer .footer-menu .hs-menu-wrapper>ul>li ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Fira Sans Condensed';
}
footer.footer .footer-menu h6,
footer.footer .footer-menu .hs-menu-wrapper>ul>li>a {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  font-family: 'Fira Sans Condensed';
  display: inline-block;
  line-height: 1.2;
  text-decoration: none;
  margin: 0 0 16px;
}
footer.footer .footer-menu .hs-menu-wrapper>ul>li ul li:not(:last-child) {
  margin-bottom: 16px;
}
footer.footer .contact ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer.footer .contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
footer.footer .contact ul li:not(:last-child) {
  margin-bottom: 16px;
}
footer.footer .contact ul li a,.contact ul li address {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Fira Sans Condensed';
  line-height: 19px;
}

footer.footer .contact ul li svg {
  width: 15px;
  height: 15px;
}
footer .contact ul li svg path{
  fill: #fff; 
}
footer.footer .footer-menu.footer-menu-contact {
  display: flex;
}
footer.footer .contact {
  width: 25%;
  padding:0 20px;
}
footer.footer .footer-menu.footer-menu-contact>.hs_cos_wrapper {
  width: 50%;
}
footer.footer .footer-menu.footer-menu-contact .hs-menu-wrapper>ul>li {
  width: 50%;
  margin: 0;
}
footer.footer .footer-menu {
  margin-left: -20px;
  margin-right: -20px;
}
footer.footer .footer-right hr{
  margin-bottom: 32px;
}
footer.footer .footer-left hr {
  margin: 32px 0;
}
footer.footer select, footer.footer form input[type=text] {
  border-radius: 2px;
  padding: 12px;
  width: 100%;
  height: 42px;
}
footer.footer  form input[type=text]::placeholder {
  color: hsl(0deg 0% 100% / 66%);
  font-family: 'Fira Sans';
  font-size: 16px;
  line-height: 19px;
  font-weight:400;
}
footer.footer select::placeholder {
  color: hsl(0deg 0% 100% / 66%);
}
footer.footer .footer-search form {
  position: relative;
}
footer.footer form input[type=text] {
  padding-right: 74px;
  font-size: 16px;
  font-family: 'Fira Sans';
  font-weight: 400;
  color: #fff;
}
footer.footer .footer-search form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0px 2px 2px 0px;
  padding: 10px 12px;
  border: 0;
  font-size: 18px;
  font-weight: 500;
  font-family: Fira Sans Condensed;
}
footer.footer .footer-search {
  margin-bottom: 24px;
}
footer.footer .footer-search.mobile {
  display: none;
}
footer.footer .footer-country.mobile {
  display: none;
}
footer.footer .footer-top-row>hr {
  display: none;
  margin: 36px 0;
}
footer.footer select {
  font-size: 16px;
  line-height: 19px;
  color: hsl(0deg 0% 100% / 46%);
  font-family: 'Fira Sans';
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 -19.04 75.804 75.804" xmlns="http://www.w3.org/2000/svg" fill="%23ffffff"><g id="Group_67" transform="translate(-798.203 -587.815)"><path d="M798.2,589.314a1.5,1.5,0,0,1,2.561-1.06l33.56,33.556a2.528,2.528,0,0,0,3.564,0l33.558-33.556a1.5,1.5,0,1,1,2.121,2.121l-33.558,33.557a5.53,5.53,0,0,1-7.807,0l-33.56-33.557A1.5,1.5,0,0,1,798.2,589.314Z"/></g></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  cursor: pointer;
  line-height:1
}
footer.footer select option{
  color:#000 
}
footer.footer .footer-menu .hs-menu-wrapper>ul>li ul li a[target="_blank"] svg {
  display: inline-block;
}
footer.footer .footer-menu .hs-menu-wrapper>ul>li ul li a svg {
  display: none;
}
footer.footer  .footer-menu.footer-menu-1 ul a svg {
  width: 13px;
  height: 13px;
  fill: #fff;
  vertical-align: middle;
  margin-left: 5px;
}
footer.footer  .contact ul li address {
  font-style: normal;
}
footer.footer .social-icons ul li a svg {
  width: 20px;
  height: 20px;
}
footer.footer a:hover {
  text-decoration: underline !important;
}
footer.footer .social-icons ul li {
  margin: 0;
}
footer.footer  .hs-search-field--open .hs-search-field__suggestions {
  background-color: #ffffff;
  padding: 5px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
footer.footer  .hs-search-field--open .hs-search-field__suggestions li {
  color: var(--primary);
}
footer.footer .footer-menu .hs-menu-wrapper>ul>li>a[href="javascript:;"], 
footer.footer .footer-menu .hs-menu-wrapper>ul>li>a[href=""],
footer.footer .footer-menu .hs-menu-wrapper>ul>li>a[href="javascript:;"]:hover, 
footer.footer .footer-menu .hs-menu-wrapper>ul>li>a[href=""]:hover{
  cursor: text;
  text-decoration: none !important;
}
@media (max-width:991px){
  footer.footer .footer-terms {
    width: 50%;
  }
  footer.footer .footer-bottom-row {
    flex-wrap: wrap;
    gap: 32px;
  }
  footer.footer .copyright {
    order: 3;
    width: 100%;
    text-align: center;
  }
  footer.footer .footer-left {
    width: 50%;
    padding-right: 25px;
  }
  footer.footer .footer-right {
    width: 50%;
    padding-left: 25px;
  }
  footer.footer .footer-menu .hs-menu-wrapper>ul>li {
    width: calc(50% - 12px);
    padding: 0;
  }
  footer.footer .footer-menu .hs-menu-wrapper>ul {
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 36px;
  }
  footer.footer .footer-menu {
    margin: 0;
  }
  footer.footer .footer-right hr {
    display: none;
  }
  footer.footer .contact {
    width: 50%;
    padding: 0;
  }
  footer.footer .footer-menu.footer-menu-contact>.hs_cos_wrapper {
    width: 100%;
  }
  footer.footer .footer-menu.footer-menu-contact {
    flex-wrap: wrap;
    gap: 36px;
  }
  footer.footer .footer-menu.footer-menu-contact .hs-menu-wrapper>ul>li {
    width: calc(50% - 12px);
  }
  footer.footer .footer-top {
    padding: 48px 0;
  }
  footer.footer .footer-logo {
    margin-bottom: 30px;
  }
}
@media (max-width:767px){
  footer.footer .footer-top-row {
    flex-direction: column;
  }
  footer.footer .footer-left {
    border: 0;
    width: 100%;
    padding: 0;
  }
  footer.footer .footer-right {
    width: 100%;
    padding: 0;
  }
  footer.footer .footer-menu .hs-menu-wrapper>ul {
    flex-wrap: wrap !important;
    flex-direction:row;
  }
  footer.footer .footer-left hr {
    margin: 36px 0;
  }
  footer.footer .footer-logo {
    margin-bottom: 36px;
  }
  footer.footer .footer-top {
    padding: 36px 0;
  }
  footer.footer .footer-bottom-row {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }
  footer.footer .social-icons {
    order: 1;
  }
  footer.footer .footer-terms {
    order: 2;
  }
  footer.footer .footer-search {
    display: none;
  }
  footer.footer .footer-country {
    display: none;
  }
  footer.footer .footer-search.mobile {
    display: block;
  }
  footer.footer .footer-country.mobile {
    display: block;
  }
  footer.footer .footer-top-row>hr {
    display: block;
    margin: 36px 0;
  }
  footer.footer .footer-terms{
    width:100%;
  }
}
/* 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;
  }
}

/* .hero-banner .bg-section {
background-size: 60%;
} */

.t1-genetic-Dairy .image-left-hero-banner h1.title {
  font-weight: 400;
}

.t1-genetic-Dairy .image-left-hero-banner h1.title strong {
  font-weight: bold;
}
.t2-genetic-plans ol li,
.t2-genetic-plans ul li{
  font-weight:bold;
}
.t2-genetic-plans ul li::marker,.t2-genetic-plans ol li::marker,.t2-beef-x-dairy ol li::marker,.t2-beef-x-dairy ul li::marker {
  color: var(--secondary);
}
.t1-genetic-Dairy .image-left-hero-banner .svg_element {
    top: -12vw !important;
}

.t1-genetic-Dairy .image-left-hero-banner .banner_image {
    height: 37.5vw !important;
}
@media (max-width:991px){
  .t2-beef-x-dairy .slider-for .description p{
    font-size: 18px !important;
  }
  .t1-genetic-Dairy .image-left-hero-banner .svg_element {
    top: 0 !important;
}
}
@media (max-width:767px){
  
  .body-container-t2-training-programs .image-left-hero-banner .svg_element {
    top: -1% !important;
    left: auto !important;
    right: -150px !important;
  }
  .body-container-t2-training-programs .content-column .description-text h4 {
    font-size: 18px;
  }

  .t1-Beef-x-Dairy .background_graphics.visible-phone {
    top: -52% !important;
  }
  .t1-Beef-x-Dairy .image-left-hero-banner .svg_element{
    top: -57vw  !important;
    right: -120px !important;
  }
  .t1-Beef-x-Dairy .multi-column-content img.bg-shape{
    left: -169vw !important;
  }
}