/* 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: 0px;
  width: 100%;
}

/* Desktop layout */

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

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

.dnd-section[class*=background-color]{
position:relative;
}
.dnd-section .dnd-column {
  padding: 0 40px;
}
.dnd-section[class*=force-full-width]{
  padding: 0;
}
.dnd-section[class*=force-full-width] .dnd-column {
  padding:0;
}
@media (max-width:1280px) {
  .dnd-section .dnd-column {
    padding: 0 20px;
  }
  .content-wrapper {
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media (max-width:767px) {
  .dnd-section .dnd-column {
    padding: 0 15px;
  }
  .content-wrapper {
    margin: 0 auto;
    padding: 0 15px;
  }
}

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

body {
  line-height:1.625;
  word-break: break-word;
}
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-word;
}
body {
  overflow-x: hidden;
}
.skiplink {
  background-color: #33475b;
  color: #fff;
  display: block;
  left: 0;
  padding: 6px;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}
.show-for-sr {
  clip: rect(0,0,0,0)!important;
  border: 0!important;
  height: 1px!important;
  overflow: hidden!important;
  padding: 0!important;
  position: absolute!important;
  white-space: nowrap!important;
  width: 1px!important;
}
/* Paragraphs */

p {
  margin: 0 0 16px;
}
p:last-child {
  margin: 0;
}
/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */
h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6{
  margin: 0 0 20px;
  line-height:1.2;
}
h1,.h1{
  line-height:1;
  margin-bottom:30px;
  letter-spacing: -1.6px;
}
.h2,h2{
  line-height:1.1;
}
h4,.h4{
  line-height:1.5;
}
h5,.h5{
  line-height:1.45833333333;
}
h6,.h6{
  line-height:1.5;
}
b, strong {
  font-weight: 700;
}
/* 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;
}

ul li::marker,
ol li::marker{
  font-weight: 700;
}
ol li,
ul li {
  margin-bottom: 8px;
}
ol,
ul {
  padding-left: 24px;
  margin-bottom: 28px;
}
/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

svg {
  vertical-align: middle;
}
/* Horizontal rules */

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

/* Image alt text */
a{
  transition:.4s;
  text-underline-position: from-font;
}
img {
  max-width:100%;
  height:auto;
  vertical-align:middle;
}

blockquote {
  border-left: 1px solid #1BA7A1;
  padding-left: 30px;
  margin-left: 30px;
}

@font-face {
  font-family:"Helvetica Neue";
  src: local('HelveticaNeue-Light-08'),local('HelveticaNeue-Light-08'),url(https://142729344.fs1.hubspotusercontent-eu1.net/hubfs/142729344/raw_assets/public/Garner%20Osborne%20Theme%202023/fonts/HelveticaNeue-Light-08.ttf);
  font-weight:300;
  font-display: swap;
}
@font-face {
  font-family:"Helvetica Neue";
  src: local('HelveticaNeue-01'),local('HelveticaNeue-01'),url(https://142729344.fs1.hubspotusercontent-eu1.net/hubfs/142729344/raw_assets/public/Garner%20Osborne%20Theme%202023/fonts/HelveticaNeue-01.ttf);
  font-weight:400;
  font-display: swap;
}
@font-face {
  font-family:"Helvetica Neue";
  src: local('HelveticaNeue-Medium-11'),local('HelveticaNeue-Medium-11'),url(https://142729344.fs1.hubspotusercontent-eu1.net/hubfs/142729344/raw_assets/public/Garner%20Osborne%20Theme%202023/fonts/HelveticaNeue-Medium-11.ttf);
  font-weight:500;
  font-display: swap;
}
@font-face {
  font-family:"Helvetica Neue";
  src: local('HelveticaNeue-Bold-02'),local('HelveticaNeue-Bold-02'),url(https://142729344.fs1.hubspotusercontent-eu1.net/hubfs/142729344/raw_assets/public/Garner%20Osborne%20Theme%202023/fonts/HelveticaNeue-Bold-02.ttf);
  font-weight:700;
  font-display: swap;
}
input[type="submit"],
.hs-button{
  border-style:solid;
  text-decoration: none;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  white-space: normal !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  width: 367px;
  max-width:100%;
  justify-content: space-between;
  position: relative;
  z-index: 99;
  transition: 0.6s;
}
.hs-button svg {
  margin-left: 7px;
  flex-shrink:0;
}
.hs-button svg path {
  fill: currentColor;
}
@media(max-width:767px){
  .hs-button, input[type=submit] {
    padding: 20px;
  }
}
input.hs-button.primary.large {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.677' height='17.75' viewBox='0 0 18.677 17.75'%3E%3Cpath id='Path_224' data-name='Path 224' d='M248.908,223.413H234.97v2.91h14.008l-5.527,7.422h3.628l6.568-8.818-6.606-8.931h-3.62Z' transform='translate(-234.97 -215.994)' fill='%23fff'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center right 27px;
}
fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}
form fieldset {
  max-width: 100% !important;
}
form label {
  display: block;
  font-weight: 500;
  margin-bottom: 11px;
}
form legend {
  font-size: 90%;
  padding-bottom: 5px;
}
fieldset.form-columns-2 {
  display: flex;
  justify-content: space-between;
}
fieldset.form-columns-3 {
  display: flex;
  justify-content: space-between;
}
fieldset.form-columns-2>div {
  width: Calc(50% - 16px)!important;
}
fieldset.form-columns-3>div {
  width: Calc(33.3337% - 21.3333333333px) !important;
}
fieldset.form-columns-1>div {
  width: 100%;
}
.hs-form-field { 
  margin-bottom: 18px;
}
.hs-dependent-field .field {
  width: 100% !important;
}
.input {
  margin: 0 !important;
}
.hs-search-field form label {
  width: 100%;
}
.submitted-message {
  text-align: center;
}
h3.form-title {
  margin-bottom: 30px;
}
h3.form-title:empty {
  margin: 0;
}
ul.inputs-list {
  padding-top: 15px !important;
}
.hs-input,
input[type=text],
input[type=search],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
  border: none;
  font-size:16px;
  display: block;
  outline: none;
  border-style:solid;
  min-height:51px;
  padding: 6px 10px;
  width: 100%!important;
  line-height: 2;
  font-weight: 400;
}
textarea{
  height: 250px;
}
input[type=file] {
  position: relative;
}
select{
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8.50781L7.60156 7.87891L12.8516 2.62891L13.4805 2L12.25 0.769531L11.6211 1.39844L7 6.01953L2.35156 1.39844L1.75 0.769531L0.492188 2L1.12109 2.62891L6.37109 7.87891L7 8.50781Z' fill='%232D2D2D'/%3E%3C/svg%3E%0A");
  background-position: right 10px center;
  background-repeat: no-repeat;
  appearance: none;
}
input::placeholder,
.hs-input::placeholder{
  opacity:1;
}
.hs_submit.hs-submit {
  padding-top: 29px;
}
/* Checkbox and Radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}
form input[type=radio] {
  border-radius:30px;
}
form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}
form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  min-height:auto;
  margin-right: 15px;
}
form input[type=checkbox],
form input[type=radio] {
  appearance: none;
  background: #EEEEEE;
  border-radius: 2px;
  display: inline-block !important;
  height: 16px;
  width: 16px !important;
  padding: 0 !important;
}
form ul li input[type=checkbox]:focus+span:after,
ul.inputs-list input[type=checkbox]:focus+span:after,
ul.inputs-list input[type=radio]:focus+span:after{
  outline:1px solid !important;
}

form ul li input[type=checkbox]:checked:focus+span:after,
ul.inputs-list input[type=checkbox]:checked:focus+span:after,
ul.inputs-list input[type=radio]:checked:focus+span:after{
  outline:none !important;
}
form ul li input[type=checkbox],
ul.inputs-list input[type=checkbox],
ul.inputs-list input[type=radio] {
  display: block!important;
  opacity: 0;
  position: absolute;
}
form ul li input[type=checkbox]+span,
ul.inputs-list input[type=radio]+span,
ul.inputs-list input[type=checkbox]+span {
  padding-left:42px;
  position: relative;
  display: block;
  cursor: pointer;
}
form ul li input[type=checkbox]+span:after,
ul.inputs-list input[type=radio]+span:after,
ul.inputs-list input[type=checkbox]+span:after {
  position: absolute;
  content: "";
  left: 0;
  width:23px;
  height:23px;
  top: 3px;
}
ul.inputs-list li {
  margin-top: 0;
  margin-bottom: 9px;
}
ul.inputs-list input[type=radio]+span:after{
  border-radius: 16px;
  width: 23px;
  height: 23px;
  background: #EEEEEE;
}
form ul li input[type=checkbox]+span:after{
  top:7px;
}
form ul li input[type=checkbox]:checked+span:after,
ul.inputs-list input[type=checkbox]:checked+span:after {
  background:#1ba7a1 !important;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1L3.5 6.5L1 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")!important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
}
ul.inputs-list input[type=radio]:checked+span:after { 
  background:#1ba7a1 !important;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='white'/%3E%3C/svg%3E%0A") !important;
  background-position: 50% !important;
  border:none !important;
  background-repeat: no-repeat !important;
}
form input[type=checkbox]:checked,
form input[type=radio]:checked{
  appearance: auto;
}
.fn-date-picker .pika-button {
  white-space: nowrap !important;
}
/* Legal */
.legal-consent-container .hs-form-booleancheckbox-display input {
  margin-right: 8px;
  margin-top: 3px;
}
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}
.legal-consent-container label {
  font-weight: 400;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
  display: block;
  margin-left:0px!important;
  line-height: 1.5;
}
.legal-consent-container .hs-form-booleancheckbox-display>span p {
  margin: 0 !important;
}
.legal-consent-container li {
  margin: 0 !important;
}
.legal-consent-container .hs-richtext {
  margin-bottom: 10px;
}
.legal-consent-container .field.hs-form-field {
  margin-bottom: 13px !important;
}
.legal-consent-container .hs-richtext+.hs-richtext {
  padding-top: 6px;
}
.legal-consent-container {
  padding-bottom: 11px;
}
.legal-consent-container .hs-richtext:last-child {
  margin: 0;
}


/* Datepicker */
.hs-dateinput {
  position: relative;
}
.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right:15px;
  top: 50%;
  transform: translateY(-50%);
}
.fn-date-picker .pika-button {
  box-shadow: none;
  border-radius: 0;
  padding: 10px !important;
  text-align: center !important;
}
.fn-date-picker .pika-table {
  margin: 10px 0;
}
.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;
}


/* Error */
ul.no-list.hs-error-msgs.inputs-list {
    padding: 0 !important;
}
.hs_error_rollup {
  padding: 0 0 15px 0;
}
.hs-error-msg {
  color:#FF0404;
}
.hs-form-required {
  color:red;
}
.hs-input.invalid.error {
  border-color: #FFD6DD;
  background: #FFD6DD;
}
ul.no-list.hs-error-msgs label {
  color:#FF0404 !important;
}
ul.no-list.hs-error-msgs.inputs-list label {
  color:#FF0404 !important;
  margin: 5px 0;
}
ul.no-list.hs-error-msgs.inputs-list label {
  font-weight: 700;
}
ul.no-list.hs-error-msgs.inputs-list li {
  margin: 0;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  margin-bottom: 12px;
  min-height: 80px;
  overflow: auto;
  padding: 10px 0 0 7px;
}
form .hs-richtext img {
  max-width: 100% !important;
}

@media(max-width:767px){
  fieldset.form-columns-3>div,fieldset.form-columns-2>div {
    width: 100% !important;
  }
  fieldset.form-columns-3,fieldset.form-columns-2 {
    display: block;
  }
  .legal-consent-container .hs-form-booleancheckbox-display>span {
    display: block;
  }
}
/* 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;
}
td, th, thead td, thead th {
  padding:5px 15px;
}
table {
  margin: 30px 0;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

/****** our story page styles ***********/

/* .our-story-page .banner .button{
padding-top:63px;
} */

@media(max-width:991px){
  /*   .our-story-page .banner .button{
  padding-top:30px;
}  */
  .our-story-page .banner .subeader {
    margin-bottom: 30px;
  }
}


/****** PCB Assembly styles ***********/

.pcb-assembly-page .icons-with-content .item {
  font-size: 18px;
  line-height: 1.44444444444;
}

.pagination {
  padding: 10px 20px;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
}
.pagination a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  text-decoration: none;
  display: flex;
  color:#BFBFBF;
  padding: 5px 15px;
  border-radius: 4px;
  margin: 0px 5px;
  min-height: 35px;
  align-items: center;
  min-width: 41px;
  justify-content: center;
}

.pagination a.active {
  color: #fff;
  pointer-events:none;
}
.pagination a:hover {
  color: #fff;
}
.pagination a.next,
.pagination a.prev {
  background: transparent !important;
  color: inherit !important;
}
.pagination a.prev {
  margin-right: 30px;
  margin-left: 0;
  padding: 0;
  min-width: 0;
}
.pagination a.next {
  margin-left: 30px;
  margin-right: 0;
  padding: 0;
  min-width: 0;
}
.pagination a.disabled {
  pointer-events: none;
}
.pagination a.disabled path {
  fill: #BFBFBF;
}
.pagination a svg path {
    fill: #333;
}
.pagination-center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 60px 0 0;
}

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