/* 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));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 7.5%;
  width: 100%;
}

@media(min-width:768px){
  .content-wrapper {
    padding: 0 50px;
  }
}

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

/* Paragraphs */

p {
  margin: 0 0 20px;
}

/* Anchors */

a {
  cursor: pointer;
  color: inherit;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:hover {
   color: var(--quaternary-color);
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  line-height: 1.3;
}

/* Lists */

ul,
ol {
  margin: 0 0 20px;
}

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: 5px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
  font-weight: 600;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
  max-width:100%;
  vertical-align:middle;
  height:auto;
}

svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

mark {
  background: var(--primary);
  padding: 0 5px;
}

.light {
  color: #ffffff;
}

.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6{
  color:inherit;
}

svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.detail-content>:last-child,
.hs_cos_wrapper_type_rich_text>:last-child {
  margin-bottom: 0 !important
}

.detail-content ul ul,
.hs_cos_wrapper_type_rich_text ul ul {
  margin-top: 20px
}

.detail-content ol,
.hs_cos_wrapper_type_rich_text ol {
  padding-left: 20px
}

.detail-content ul,
.hs_cos_wrapper_type_rich_text ul {
  padding-left: 20px
}

.detail-content.tc ol,
.detail-content.tc ul,
.tc .detail-content ol,
.tc .detail-content ul,
.tc .hs_cos_wrapper_type_rich_text ol,
.tc .hs_cos_wrapper_type_rich_text ul {
  text-align: left
}

.p-sm{
  font-size: var(--p-size-sm);
}

strong {
  font-weight: 700
}

.dis-flex {
  display: flex;
  flex-wrap: wrap
}

.vmiddle {
  align-items: center
}

.vbottom {
  align-items: flex-end
}

.hcenter {
  justify-content: center
}

.hspace {
  justify-content: space-between;
}

.hright {
  justify-content: right
}

.tc {
  text-align: center
}

.tr {
  text-align: right
}

.tl {
  text-align: left
}

.dis-flex>.row-fluid-wrapper>.row-fluid:after,
.dis-flex>.row-fluid-wrapper>.row-fluid:before {
  display: none
}

.bg{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: relative;
  z-index: 1
}

.overlay:before {
  background: #06366e;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  opacity: .5;
}

.common-button {
  margin-top: 20px
}

.common-header { 
  margin-bottom: 35px;
}

@media (min-width:768px){
  .common-header { margin-bottom: 50px; }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease-in-out;
  white-space: normal;
  line-height:1.2;
  min-width: 90px;
}

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;
}
form{font-size: 14px; font-family: var(--secondary-font);}
input::-ms-clear,select::-ms-expand {display: none}
input:-webkit-autofill,select:-webkit-autofill,textarea:-webkit-autofill { -webkit-text-fill-color: #252525; -webkit-box-shadow: inset 0 0 0 100px #fff; -moz-box-shadow: inset 0 0 0 100px #fff; box-shadow: inset 0 0 0 100px #fff; color: #252525 }
input,select,textarea { border-radius: 0 }
button,html input[type=button],input[type=reset],textarea { -webkit-appearance: none; border-radius: 0;}
button,input,option,select,textarea { font-family: inherit; font-size: 100%; margin: 0; vertical-align: baseline }
input[type=email],input[type=tel],input[type=text] { -webkit-appearance: none!important }
textarea { height: 120px; overflow: auto; resize: none; vertical-align: top }

.form-title:empty {
  display: none;
}
form ul { list-style: none; margin: 0; padding: 0 }
form div.hs-form-field .input>ul>li>label { cursor: pointer }
form ul.inputs-list.hs-error-msgs {
  color: #f2545b;
  font-size: 14px;
  padding: 0 5px;

}
form ul.inputs-list.hs-error-msgs label { color: inherit }
form .hs-form-required { display: inline; color: red; }
form .hs_error_rollup { display: none; }
form .legal-consent-container .hs-error-msgs label { color: #FF0000 !important }
form fieldset { max-width: 100%!important }
form div.hs-form-field { display: inline-block; float: none!important; margin-bottom: 18px; vertical-align: top; width: 100%!important }
form ul.inputs-list { padding-top: 8px }
form .input { margin-right: 0!important }
form .hs-form-field>label { display: block; margin-bottom: 4px; font-family: var(--secondary-font); font-size: 13px; }
form input[type=date],form input[type=datetime-local],form input[type=datetime],form input[type=email],form input[type=file],form input[type=month],form input[type=number],form input[type=password],form input[type=search],form input[type=tel],form input[type=text],form input[type=time],form input[type=url],form input[type=week],form select,form textarea { display: inline-block;padding:10px 12px; width: 100%!important; }
form select { -moz-appearance: none; -webkit-appearance: none; background-image: url(https://50567777.fs1.hubspotusercontent-na1.net/hubfs/50567777/raw_assets/public/Communication%20Mark/images/icon_arrow-down.png); background-position: right 11px center; background-repeat: no-repeat; background-size: 15px auto; cursor: pointer; padding-right: 35px; }
form .input ul.inputs-list li label input[type=radio]:checked+span:before { box-shadow: inset 0 0 0 3px #fff }
form .input ul.inputs-list li label input[type=radio] { display: none!important; opacity: 0 }
form .input ul.inputs-list li label input[type=radio]+span:before { 
  border-radius: 50%;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  text-align: center;
  top: 1px;
  width: 20px;
  border: 1px solid #cbd6e2;
}
form .input ul.inputs-list li label input[type=radio]+span,form input[type=checkbox]+span { display: flex; padding-left: 30px; position: relative; margin-left:0; }
form .input ul.inputs-list li label input[type=radio]:checked+span:before { background-color:var(--secondary-color); }
form input[type=checkbox] { display: none!important; opacity: 0 }
form input[type=checkbox]+span:before {
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  text-align: center;
  top: 1px;
  width: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border: 1px solid #cbd6e2;
}
form input[type=checkbox]:checked+span:before { background-image: url(https://50567777.fs1.hubspotusercontent-na1.net/hubfs/50567777/raw_assets/public/Communication%20Mark/images/icon_black-right.png); } 
form div.hs-form-field .input>ul>li:not(:last-child) { margin: 0 0 10px }
form .legal-consent-container .hs-form-booleancheckbox-display>span { margin-left: 0 }
form .legal-consent-container .field.hs-form-field { margin-bottom: 0 }
form .legal-consent-container { margin-bottom:30px;}
form .hs-richtext { margin: 10px 0 }
form .legal-consent-container ul.inputs-list li{ padding:0; }
.submitted-message > *:last-child { margin-bottom: 0; }
form .hs_submit.hs-submit {
  margin-top: 10px;
}


@media(min-width: 900px) {
  form fieldset.form-columns-2>div.hs-form-field { margin-right:5.6%; width: 47.2% !important }
  form fieldset.form-columns-2>div.hs-form-field:last-child,form fieldset.form-columns-3>div.hs-form-field:last-child { margin-right: 0 }
  form fieldset.form-columns-3>div.hs-form-field { margin-right: 16px; width: calc(33.33% - 11px)!important }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.body-container-wrapper {
  padding-top: 118px;
}

header {
  position: fixed;
  z-index: 501;
  width: 100%;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  left: 0;
  top: 0;
  background: #ffffff;
}

header img{
  vertical-align: top;
}

header ul {
  list-style: none;
}

header a {
  text-decoration: none;
}

header .container_wrap {
  position: relative;
  z-index: 1;
}

header .container,
header .main_menu ul:first-child > li > a{
  height: 118px;
  line-height: 118px;
}

header .inner-container {
  position: relative;
  height: 100%;
  width: 100%;
}

header .logo {
  float: left;
  position: absolute;
  left: 0;
  z-index: 1;
}

header .logo,
header .logo a {
  overflow: hidden;
  display: block;
  height: 100%;
}

header .main_menu {
  clear: none;
  position: absolute;
  z-index: 100;
  line-height: 30px;
  height: 100%;
  margin: 0;
  right: 0;
}

header .logo img,
header .logo svg {
  padding: 0;
  display: block;
  height: 100%;
  max-height: 100%;
  image-rendering: auto;
  position: relative;
  z-index: 2;
  transition: opacity 0.4s ease-in-out;
  object-fit: contain;
  object-position: left top;
}

header .av-main-nav-wrap {
  float: left;
  position: relative;
  z-index: 3;
}

header .av-main-nav-wrap ul {
  margin: 0;
  padding: 0;
}

header .av-main-nav {
  z-index: 110;
  position: relative;
}

header .av-main-nav li {
  float: left;
  position: relative;
  z-index: 20;
}

header .av-main-nav > li {
  line-height: 30px;
  font-family: var(--secondary-font);
}

header .av-main-nav > li > a {
  font-size: 14px;
  display: block;
  padding: 0 13px;
  font-weight: 600;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

header .main_menu .avia-bullet,
header .avia-menu-fx{
  display: none;
}

header .sub_menu > ul > li > a, 
header .sub_menu > div > ul > li > a, 
header .main_menu ul:first-child > li > a, 
header .main_menu .menu ul .current_page_item > a, 
header .main_menu .menu ul .current-menu-item > a, 
header .sub_menu li ul a{
  color: #808080;
}

header .av-subnav-menu a:hover,
header .av-subnav-menu a:focus, 
header .main_menu ul:first-child > li a:hover, 
header .main_menu ul:first-child > li a:focus, 
header .main_menu ul:first-child > li.current-menu-item > a, 
header .main_menu ul:first-child > li.current_page_item > a, 
header .main_menu ul:first-child > li.active-parent-item > a {
  color: var(--secondary-color);
}

header .main_menu .menu ul li a:hover,
header .main_menu .menu ul li a:focus,
header .av-subnav-menu ul a:hover,
header .av-subnav-menu ul a:focus {
  background-color: #f8f8f8;
}

header .av-main-nav ul {
  display: none;
  margin-left: 0;
  left: 0;
  position: absolute;
  top: 100%;
  width: 208px;
  z-index: 2;
  padding: 0;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}

header .header_bg,
header .main_menu ul ul, 
header .main_menu .menu ul li a, 
header .pointer_arrow_wrap .pointer_arrow,
header .avia_mega_div,
header .av-subnav-menu > li ul,
header .av-subnav-menu a {
  background-color: #ffffff;
  color: #808080;
}

header .av-main-nav ul li {
  width: 100%;
}

header .av-main-nav ul a {
  width: 100%;
  height: auto;
  float: left;
  text-align: left;
  line-height: 23px;
  padding: 8px 15px;
  font-size: 12px;
  min-height: 23px;
  max-width: none;
  text-decoration: none;
  font-family: inherit;
}

header .main_menu ul:first-child > li > a svg:first-child {
  fill: #808080;
  width: auto;
  height: 1em;
  position: relative;
  z-index: -1;
  transition: all 0.3s ease-out;
  vertical-align: unset;
}

header .main_menu ul:first-child > li > a:hover svg:first-child, 
header .main_menu ul:first-child > li > a:focus svg:first-child{
  fill: var(--secondary-color);
}

header .avia_hidden_link_text,
header .av-hamburger strong{
  display: none;
}

header .av-burger-menu-main {
  display: none;
  transition: padding 0.3s ease-out;
  cursor: pointer;
}


header .av-burger-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  overflow: hidden;
  opacity: 0;
  font-size: 1em;
}

header .av-burger-overlay-scroll {
  overflow: auto;
  position: absolute;
  height: 100%;
  z-index: 10;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s cubic-bezier(0.75, 0, 0.25, 1);
  width: 350px;
  transform: translateX(350px);
  background: #ffffff;
  right: 0;
  max-width: 100%;
}

.av-burger-overlay-active-delayed header .av-burger-overlay-scroll {
  transform: translateX(0);
}

header .av-burger-overlay-inner, 
header .av-burger-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  min-height: 700px;
  display: table;
  vertical-align: middle;
  text-align: center;
  z-index: 5;
}

header .av-burger-overlay-bg {
  z-index: 3;
  opacity: 0.9;
  background: #000;
  display: block;
  position: fixed;
  opacity: 0.3;
  cursor: pointer;
}

header #av-burger-menu-ul {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  padding: 90px 0;
}

header #av-burger-menu-ul li{
  font-family: var(--secondary-font);
}

header #av-burger-menu-ul li a {
  position: relative;
  display: block;
  transition: none;
}

header #av-burger-menu-ul > li {
  opacity: 1;
  position: relative;
  top: 0;
  left:0;
  transition: opacity 0.3s ease-out, top 0.3s ease-out, left 0.3s ease-out;
  transform: translate3d(0, 0, 0);
}

header .av-burger-overlay li a {
  line-height: 1.3em!important;
  height: auto!important;
  padding: 15px 50px;
  display: block;
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid #e1e1e1;
  color: var(--secondary-color)!important;
}

header .av-submenu-indicator {
  display: inline-block;
  padding: 0 10px;
  font-size: 11px;
  opacity: 0.5;
  vertical-align: top;
  float: right;
  transition: all 0.2s ease-out;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -9px;
  height: 20px;
  line-height: 20px;
}

header .av-submenu-indicator:before {
  position: absolute;
  content: "";
  background-image:url(https://50567777.fs1.hubspotusercontent-na1.net/hubfs/50567777/raw_assets/public/Communication%20Mark/images/icon_arrow.svg);
  width: 6px;
  height: 10px;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

header .av-show-submenu > a > .av-submenu-indicator {
  transform: rotate(90deg);
}

header .av-burger-overlay li li a {
  padding-left: 70px;
}

header .av-burger-overlay li li .avia-bullet {
  height: 1px;
  display: block;
  position: absolute;
  margin-top: 0;
  opacity: 0.3;
  border: none !important;
  width: 7px;
  left: 50px;
  top: 50%;
  background: var(--secondary-color);
}

header .av-burger-overlay-scroll #av-burger-menu-ul a:hover {
  background-color: #f8f8f8;
}

header #av-burger-menu-ul li ul {
  display: none;
}

header .menu-item-search-dropdown > a.avia-svg-icon {
  padding-top: 2px;
}

/*burger menu*/

.av-hamburger {
  padding: 0 0 0 0;
  display: inline-block;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}


.av-hamburger-box {
  width: 35px;
  height: 8px;
  display: inline-block;
  position: relative;
}

.av-hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.av-hamburger-inner,
.av-hamburger-inner::before,
.av-hamburger-inner::after {
  width: 100%;
  height: 3px;
  background-color: #808080;
  border-radius: 3px;
  position: absolute;
  transition: transform 0.15s ease;
}

.av-hamburger-inner::before,
.av-hamburger-inner::after {
  content: "";
  display: block;
}

.av-hamburger-inner::before {
  top: -10px;
}

.av-hamburger-inner::after {
  bottom: -10px;
}

.av-hamburger--spin .av-hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.av-hamburger--spin .av-hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in, background-color 0.15s ease;
}

.av-hamburger--spin .av-hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19) , background-color 0.15s ease;
}

.av-hamburger--spin.is-active .av-hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.av-hamburger--spin.is-active .av-hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out, background-color 0.15s ease;
}

.av-hamburger--spin.is-active .av-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.15s ease;
}

@media (min-width: 990px) and (max-width: 1105px) {
  header .av-main-nav > li > a {
    font-size: 12px !important;
    padding: 0 10px !important;
  }
}

@media(min-width:990px){
  header .av-main-nav > .menu-item:first-child{
    display: none;
  }
}


@media only screen and (orientation: landscape) and (max-width: 989px) {
  header #av-burger-menu-ul {
    vertical-align: top;
  }
}


@media(max-width: 989px) {
  .body-container-wrapper {
    padding-top: 90px;
  }

  header .logo img,
  header .logo svg {
    object-position: left center;
  }

  header .main_menu {
    top: 0;
    left: auto;
    right: 0;
    display: block;
  }

  header .container,
  header .main_menu ul:first-child > li > a {
    height: 90px;
    line-height: 90px;
  }

  header .av-main-nav .menu-item {
    display: none;
  }

  header .av-main-nav .menu-item-avia-special {
    display: block;
  }

  header .main_menu .av-main-nav > li > a {
    min-width: 0;
    padding: 0 0 0 20px;
    margin: 0;
    border-style: none;
    border-width: 0;
  }

  header .av-main-nav .menu-item-search-dropdown > a {
    font-size: 24px;
  }

}

@media only screen and (max-width: 767px) {

  .body-container-wrapper {
    padding-top: 80px;
  }

  header .logo {
    position: static;
    width: 75%;
  }


  header .container,
  header .main_menu ul:first-child > li > a {
    height: 80px;
    line-height: 80px;
  }
}
.blog-list-flex {
  column-gap: 20px;
  row-gap: 30px
}

.blog-list-item {
  background-color: #fff;
  box-shadow: 0 1px 12px rgba(34, 45, 113, .13);
  position: relative;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
  width: 100%
}

.blog-list-section .blog-list-item:not(.visible) {
  display: none
}

.blog-list-item:hover {
  box-shadow: 0 10px 15px rgba(34, 45, 113, .13)
}

.blog-list-tag {
  font-size: 14px;
  margin-bottom: 12px
}

.blog-list-tag-link {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
}

.blog-list-img {
  display: block;
  overflow: hidden;
  position: relative
}

.blog-list-img img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%
}

.blog-list-item h2,
.blog-list-item h3 {
  margin-bottom: 0;
  text-transform: none
}

.blog-list-content {
  padding: 25px 25px 70px;
  position: relative
}

.blog-list-item .link-wrap {
  bottom: 25px;
  left: 0;
  position: absolute;
  width: 100%;
}

.blog-list-item .link {
  color: #467cbf;
  font-weight: 600;
  font-family: var(--secondary-font);
}

@media(min-width: 641px) {
  .blog-list-item {
    width: calc(50% - 10px)
  }
}

@media(min-width: 1025px) {
  .blog-list-flex {
    column-gap: 33px;
    row-gap: 38px
  }

  .blog-list-item {
    width: calc(33.33% - 22px)
  }
}

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