@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
/* 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 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: 'Montserrat', sans-serif;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
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;
}
.upcoming_events{
  display:grid;
  grid-template-columns:40% 60%;
  gap:50px;
}

.last_events {
  display:grid;
  grid-template-columns:60% 40%;
  gap:50px;
}
.event_container{
  max-width:1334px;
  margin:100px auto;
}


@media(max-width:767px){
  .upcoming_events,
  .last_events{
    grid-template-columns:1fr;
  }

}

@media(max-width:480px){

}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form input[type=checkbox],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
    background: none;
    border: none;
    position: relative;
    left: -50px;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #000;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px 40px 10px 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* 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 DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  margin: 50px auto 32px;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header__column,
.header__navigation {
  width: 100%;
}
@media (max-width: 1150px) and (min-width: 767px) {
  
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: absolute;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

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

@media (max-width: 767px) {
  .header__logo {
    margin: 0 20px;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}


/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}
.header__navigation--toggle i {
    font-size: 35px;
    display: none;
  }
/* Mobile toggles */

@media (max-width: 900px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: rgba(48, 48, 49, 1 );
    display: block;
    right: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    top: -75px;
    z-index: 999;
    width: 85%;
    padding-top: 150px;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: absolute;
    right: 0;
  }
  .header__navigation--toggle i {
    display: block;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }


  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }



  .header__close--toggle i{
    font-size: 35px;
    top: -40px;
    position: absolute;
    right: 0;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Header DND sections */


@media screen and (max-width: 767px){
  .footer-inner {
    align-items: center;
    text-align: center;
  }
}
/* 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%;
}


/* Blog post */

.blog-card .content, .blog-card-inner {
  display: flex;
  flex-direction: column;
}
.blog-card .content {
  height: 100%;
  padding: 15px 15px 20px
}
.blog-card-inner {
  background: transparent;
  border: 1.5px solid #1da4dc;
  border-radius: 5px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.blog-card .post-title {
  background-color: transparent;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  padding: 10px;
  margin: =10px 0 5px 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-card .post-title .blog-related-posts__title-link {
  color: #fff;
}
.wysiwyg-overrides {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-related-posts__information{
  display: flex;
  justify-content: space-between;
}

.blog-card .content .btn {
  color: #05DCAA;
  border: none;
  border-bottom: 4px solid #05DCAA;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
}
.blog-card figure img{
  height: 225px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.blog-post {
  margin: 0 auto;
  max-width: 1338px;
}
.blog-post h2, .blog-post h3, .blog-post h4{
  margin-top: 30px;
  margin-bottom: 10px;
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}
.blog-post__body {
  margin-top: 30px;
}

.blog-post__meta a {
  text-decoration: underline;
}

.blog-post__timestamp {
  display: block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 0.35rem;
  width: 15px;
}
.blog-post__tags svg path{
  fill: #FFF;
}
.blog-post__body blockquote{
  border-left-color: #07e0ac;
  margin-left: 20px;
  font-size: 18px;
}
.blog-post__tag-link {
  font-size: 0.875rem;
}

/* Blog related posts */


.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}
.share-container {
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding-top: 80px;
}
.social-networks-wrapper{
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.share-container h4 {
  color: #FFF;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 277.778% */
  margin: 0;
}
.main-blog-content {
  margin-bottom: 70px
}
.blog-post-aside,
.blog-post {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 2);
  }
  .main-blog-content {
  margin-bottom: 120px
}
  .blog-post {
     width: calc(80% - 20px);
  }
  
  .blog-post-aside {
    width: calc(20% - 20px);
    padding-top: 70px;
  }
}

@media screen and (min-width: 1000px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 3);
  }
}

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

.blog-related-posts__title {
  margin: 0.7rem 0;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}
.body-container--blog-post {
  padding: 20px;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-related-posts__content {
  height: 100%;
}
.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}

.contact-us-standard-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #1DA4DC;
  border-radius: 5px;
}
.contact-us-standard-container .image,
.contact-us-standard-container .form-content {
  max-width: 100%;
  flex: 100%;
}

.contact-us-standard-container .image img {
  width: 100%;
  height: auto;
}
.contact-us-standard-container .form-content form{
  margin-top: 50px;
  margin-left: 0px;
}
.contact-us-standard-container .green-plane img {
  position: absolute;
  top: -435px;
  right: -225px;
}

@media (min-width: 767px){
  .contact-us-standard-container .form-content {
    max-width: 50%;
    flex: 50%;
  }
  .contact-us-standard-container .form-content form{
    margin-top: 0;
    margin-left: 40px;
  }
  .contact-us-standard-container {
    padding: 34px 60px 40px 50px;
  }
}

/* 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;
  }
}
.body-container--home {
  padding: 0;
}
@media (min-width: 1100px){
  .body-container--home {
    padding: 0 60px;
  }
}
/* @import url('http://example.com/example_style.css'); */

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

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

.container {
  max-width: 1534px;
  margin: 0 auto;
}
.container-smaller{
  max-width: 1338px;
  margin: 0 auto;
}

/* Fonts */
.wysiwyg-overrides h1, .wysiwyg-overrides h2, .wysiwyg-overrides h3, .wysiwyg-overrides h4, .wysiwyg-overrides h5, .wysiwyg-overrides h6, .wysiwyg-overrides p, .wysiwyg-overrides span {
  font-family: 'Montserrat', sans-serif !important;
  color: inherit !important;
  font-weight: inherit;
  font-size: inherit !important;
}
.font-300 {
  font-weight: 300;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}
.fontS10 {
  font-size: 10px;
}
.fontS14 {
  font-size: 14px;
}
.fontS15 {
  font-size: 15px;
}
.fontS16 {
  font-size: 16px;
}
.fontS18 {
  font-size: 18px;
}
.fontS20 {
  font-size: 20px;
}
.fontS25 {
  font-size: 25px;
}
.fontS30 {
  font-size: 30px;
}
.fontS35 {
  font-size: 35px;
}
.fontS40 {
  font-size: 35px;
}
h2.font-xs-25,
.fontS30.font-xs-25,
.fontS35.font-xs-25 {
  font-size: 25px;
}

/* Page Banner */
.page-banner-slide {
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-banner-slide-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 30px;
  position: relative;
  z-index: 5;
  min-height: 400px;
}
.page-banner-container h1,
.page-banner-container h2,
.page-banner-container p,
.page-banner-container a {
  color: #FFF;
}
.page-banner-container h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.page-banner-container .btn {
  max-width: 250px;
}
.page-banner-container .slick-dots {
  bottom: 20px;
}

/* Text alignments */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Colors */
.text-primary {
  color: #1DA4DC;
}
.text-white {
  color: #FFF;
}

/* Flex styles */
.d-flex {
  display: flex;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-left {
  justify-content: flex-start;
}
.justify-right {
 justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-space-around {
 justify-content: space-around;
}
.justify-space-between {
 justify-content: space-between;
}
.align-left {
  align-items: flex-start;
}
.align-right {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}

.indented-text {
  border-left: 2px solid #07e0ac;
  margin: 30px 0 30px 30px;
  padding-left: 15px;
}

/* Buttons */
.btn, .hs-button,
.button{
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  border: none;
}
.btn.larger {
  font-size: 20px;
  font-weight: 500;
}
.btn.no-border-radius {
  border-radius: 0;
}
.btn.exact-width {
  width: 195px;
}
.btn.longer {
  padding: 10px 50px;
}
.btn.btn-primary, .btn.btn-secondary:hover, .primary,
.btn.btn-tertiary:hover{
  background-color: transparent;
  color:#05DCAA;
  transition: all 0.3s;
  border: 1px solid #05DCAA;
}
.btn.btn-primary:hover, .btn.btn-secondary, .primary:hover{
  background-color: #05DCAA;
  color: #0B2036;
  transition: all 0.3s;
  border: 1px solid #05DCAA;
}
.btn.btn-primary:hover,
.btn.btn-secondary:hover,
 .hs-button:hover{
  font-weight: 500;
}
.btn.btn-tertiary{
  background-color: #1DA4DC;
  transition: all 0.3s;
  border: 1px solid #1DA4DC;
}
/* Positions */
.pos-relative {
  position: relative;
}

/* Headings */
footer .heading-with-border {
  border-bottom: 2px solid #07E0AC;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

/* Slick slides modifications */
.slick-dots li button:before {
  font-size: 40px;
  color: #333333;
}
.slick-dots li.slick-active button:before
{
    color: #FFF;
}

.slick-same-height .slick-track
{
    display: flex !important;
}

.slick-same-height .slick-slide
{
    height: inherit !important;
}

.top-overlay{
  position: relative;
  z-index: 2;
}

/* Contact us form footer reset */
.contact-us-form form {
  background: transparent;
}

.contact-us-form form input[type=text],
.contact-us-form form input[type=search],
.contact-us-form form input[type=email],
.contact-us-form form input[type=password],
.contact-us-form form input[type=tel],
.contact-us-form form input[type=number],
.contact-us-form form input[type=file],
.contact-us-form form textarea{
  border-radius: 6px;
  background: transparent;
  border: 1px solid #054B80;
  padding: 12px 16px;
  color: #EAEAEA;
  width: 100% !important; 
}
.contact-us-form form input[type=text]:focus,
.contact-us-form form input[type=search]:focus,
.contact-us-form form input[type=email]:focus,
.contact-us-form form input[type=password]:focus,
.contact-us-form form input[type=tel]:focus,
.contact-us-form form input[type=number]:focus,
.contact-us-form form input[type=file]:focus,
.contact-us-form form textarea:focus{
  border: 1px solid #05DCAA;
  outline: 1px solid #05DCAA;
}
.contact-us-form form input::placeholder,
.contact-us-form form textarea::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #EAEAEA;
}
.contact-us-form .form-title, .contact-us-form form label {
  display: none;
}

.contact-us-form .hs-button {
  background-color: #05dcaa;
  border: none;
  transition: all 0.3s;
  color: #06283B;
}

.contact-us-form .hs-button:hover {
  background-color: #06283B;
  color: #fff;
}

#main-content {
  overflow: hidden;
}
/* Backgrounds their position will be defined inside the modules that uses them */

.small-eclipse {
  background-image: url('https://5641952.fs1.hubspotusercontent-na1.net/hubfs/5641952/raw_assets/public/GlideFastConsulting_2023_theme/images/small-eclipse.png');
  width: 541px;
  height: 543px;
  position: absolute;
  z-index: -1;
}
.overview-image-glow::before {
  content: '';
  border-radius: 1000px;
  background: radial-gradient(50% 50.00% at 50% 50.00%, rgba(19, 114, 181, 0.30) 0%, rgba(6, 18, 24, 0.00) 100%);
  width: 800px;
  height: 800px;
  position: absolute;
  z-index: -1;
}

/* Margins */
.mar-0 {
  margin: 0
}
.marT-auto {
  margin-top: auto;
}
.marT-15 {
  margin-top: 15px;
}
.marT-20 {
  margin-top: 20px;
}
.marT-30 {
  margin-top: 30px;
}
.marB-0 {
  margin-bottom: 0;
}
.marB-5{
  margin-bottom: 5px;
}
.marB-10{
  margin-bottom: 10px;
}
.marB-15 {
  margin-bottom: 15px;
}
.marB-20 {
  margin-bottom: 20px;
}
.marB-25 {
  margin-bottom: 25px;
}
.marB-30 {
  margin-bottom: 30px;
}
.marB-40 {
  margin-bottom: 40px;
}
.marB-50 {
  margin-bottom: 50px;
}
.marB-150 {
  margin-bottom: 150px;
}
.marB-80 {
  margin-bottom: 80px;
}
.marLR-16 {
  margin-left: 16px;
  margin-right: 16px;
}
.marR-10 {
  margin-right: 10px;
}
.marR-15 {
  margin-right: 15px;
}
.marR-30 {
  margin-right: 30px;
}
/* Paddings */
.pad-0 {
  padding: 0
}
.padB-15 {
  padding-bottom: 15px;
}

.column-4,
.column-6{
  width: 100%;
}

.banner-overlay:before {
  content: '';
  background-image: url(https://5641952.fs1.hubspotusercontent-na1.net/hubfs/5641952/raw_assets/public/GlideFastConsulting_2023_theme/images/overlay-effect.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
}

@media (min-width: 576px){
  .fontS30.font-xs-25 {
    font-size: 30px;
  }
  h2.font-xs-25,
  .fontS35.font-xs-25 {
    font-size: 35px;
  }
  .column-4 {
    width: 100%;
  }
  .column-3 {
    width: 100%;
  }
}
@media (min-width: 767px){
  .column-4,
  .column-6{
    width: calc(50% - 25px);
  }
  .column-3{
    width: calc(50% - 25px);
  }
  .page-banner-slide,
  .page-banner-slide-inner{
    min-height: 400px;
  }
}
@media (min-width: 992px){
  .page-banner-container h1  {
    font-size: 60px;
    font-weight: 600;
  }
  .page-banner-slide-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .column-4 {
    width: calc(25% - 25px);
  }
  .column-3 {
    width: calc(33% - 25px);
  }
}



/* pillar page*/

.body-container.body-container--pillar-page .span4 {
  position: sticky;
  top: 100px;
}

@media (max-width: 767px) { 
  .body-container.body-container--pillar-page .span4 {
    position: static;  
  }
}

.body-container.body-container--pillar-page .row-fluid-wrapper > .row-fluid{
  align-items: start;
}




.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
}


.blog-pagination>* {
  display: flex;
  padding: 5px 10px;
  border: 1px solid #00A8DF;
  background:transparent;
  color: #00A8DF;
}


.blog-pagination svg path {
  fill: #00A8DF;
}


.blog-pagination .blog-pagination__link--active {
  display: flex;
  padding: 5px 10px;
  border: 1px solid #05DCAA;
  background: #05DCAA;
  color: #fff;
}

/* back to top button */

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 20px;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  background-color: #00A8DF;
  color: #0B2036;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

#backToTopBtn:hover {
  background-color: #05DCAA;
}
/* end back to top button */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
/* 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 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: 'Montserrat', sans-serif;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
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;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form input[type=checkbox],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
    background: none;
    border: none;
    position: relative;
    left: -50px;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #000;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px 40px 10px 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* 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 DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  margin: 50px auto 32px;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header__column,
.header__navigation {
  width: 100%;
}
@media (max-width: 1150px) and (min-width: 767px) {
  
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: absolute;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

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

@media (max-width: 767px) {
  .header__logo {
    margin: 0 20px;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}


/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}
.header__navigation--toggle i {
    font-size: 35px;
    display: none;
  }
/* Mobile toggles */

@media (max-width: 900px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: rgba(48, 48, 49, 1 );
    display: block;
    right: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    top: -75px;
    z-index: 999;
    width: 85%;
    padding-top: 150px;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: absolute;
    right: 0;
  }
  .header__navigation--toggle i {
    display: block;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }


  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }



  .header__close--toggle i{
    font-size: 35px;
    top: -40px;
    position: absolute;
    right: 0;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Header DND sections */


@media screen and (max-width: 767px){
  .footer-inner {
    align-items: center;
    text-align: center;
  }
}
/* 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%;
}


/* Blog post */

.blog-card .content, .blog-card-inner {
  display: flex;
  flex-direction: column;
}
.blog-card .content {
  height: 100%;
  padding: 15px 15px 20px
}
.blog-card-inner {
  background: transparent;
  border: 1.5px solid #1da4dc;
  border-radius: 5px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.blog-card .post-title {
  background-color: transparent;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  padding: 10px;
  margin: =10px 0 5px 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-card .post-title .blog-related-posts__title-link {
  color: #fff;
}
.wysiwyg-overrides {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-related-posts__information{
  display: flex;
  justify-content: space-between;
}

.blog-card .content .btn {
  color: #05DCAA;
  border: none;
  border-bottom: 4px solid #05DCAA;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
}
.blog-card figure img{
  height: 225px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.blog-post {
  margin: 0 auto;
  max-width: 1338px;
}
.blog-post h2, .blog-post h3, .blog-post h4{
  margin-top: 30px;
  margin-bottom: 10px;
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}
.blog-post__body {
  margin-top: 30px;
}

.blog-post__meta a {
  text-decoration: underline;
}

.blog-post__timestamp {
  display: block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 0.35rem;
  width: 15px;
}
.blog-post__tags svg path{
  fill: #FFF;
}
.blog-post__body blockquote{
  border-left-color: #07e0ac;
  margin-left: 20px;
  font-size: 18px;
}
.blog-post__tag-link {
  font-size: 0.875rem;
}

/* Blog related posts */


.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}
.share-container {
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding-top: 80px;
}
.social-networks-wrapper{
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.share-container h4 {
  color: #FFF;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 277.778% */
  margin: 0;
}
.main-blog-content {
  margin-bottom: 70px
}
.blog-post-aside,
.blog-post {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 2);
  }
  .main-blog-content {
  margin-bottom: 120px
}
  .blog-post {
     width: calc(80% - 20px);
  }
  
  .blog-post-aside {
    width: calc(20% - 20px);
    padding-top: 70px;
  }
}

@media screen and (min-width: 1000px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 3);
  }
}

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

.blog-related-posts__title {
  margin: 0.7rem 0;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}
.body-container--blog-post {
  padding: 20px;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-related-posts__content {
  height: 100%;
}
.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}

.contact-us-standard-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #1DA4DC;
  border-radius: 5px;
}
.contact-us-standard-container .image,
.contact-us-standard-container .form-content {
  max-width: 100%;
  flex: 100%;
}

.contact-us-standard-container .image img {
  width: 100%;
  height: auto;
}
.contact-us-standard-container .form-content form{
  margin-top: 50px;
  margin-left: 0px;
}
.contact-us-standard-container .green-plane img {
  position: absolute;
  top: -435px;
  right: -225px;
}

@media (min-width: 767px){
  .contact-us-standard-container .form-content {
    max-width: 50%;
    flex: 50%;
  }
  .contact-us-standard-container .form-content form{
    margin-top: 0;
    margin-left: 40px;
  }
  .contact-us-standard-container {
    padding: 34px 60px 40px 50px;
  }
}

/* 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;
  }
}
.body-container--home {
  padding: 0;
}
@media (min-width: 1100px){
  .body-container--home {
    padding: 0 60px;
  }
}
/* @import url('http://example.com/example_style.css'); */

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

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

.container {
  max-width: 1534px;
  margin: 0 auto;
}
.container-smaller{
  max-width: 1338px;
  margin: 0 auto;
}

/* Fonts */
.wysiwyg-overrides h1, .wysiwyg-overrides h2, .wysiwyg-overrides h3, .wysiwyg-overrides h4, .wysiwyg-overrides h5, .wysiwyg-overrides h6, .wysiwyg-overrides p, .wysiwyg-overrides span {
  font-family: 'Montserrat', sans-serif !important;
  color: inherit !important;
  font-weight: inherit;
  font-size: inherit !important;
}
.font-300 {
  font-weight: 300;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}
.fontS10 {
  font-size: 10px;
}
.fontS14 {
  font-size: 14px;
}
.fontS15 {
  font-size: 15px;
}
.fontS16 {
  font-size: 16px;
}
.fontS18 {
  font-size: 18px;
}
.fontS20 {
  font-size: 20px;
}
.fontS25 {
  font-size: 25px;
}
.fontS30 {
  font-size: 30px;
}
.fontS35 {
  font-size: 35px;
}
.fontS40 {
  font-size: 35px;
}
h2.font-xs-25,
.fontS30.font-xs-25,
.fontS35.font-xs-25 {
  font-size: 25px;
}

/* Page Banner */
.page-banner-slide {
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-banner-slide-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 30px;
  position: relative;
  z-index: 5;
  min-height: 400px;
}
.page-banner-container h1,
.page-banner-container h2,
.page-banner-container p,
.page-banner-container a {
  color: #FFF;
}
.page-banner-container h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.page-banner-container .btn {
  max-width: 250px;
}
.page-banner-container .slick-dots {
  bottom: 20px;
}

/* Text alignments */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Colors */
.text-primary {
  color: #1DA4DC;
}
.text-white {
  color: #FFF;
}

/* Flex styles */
.d-flex {
  display: flex;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-left {
  justify-content: flex-start;
}
.justify-right {
 justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-space-around {
 justify-content: space-around;
}
.justify-space-between {
 justify-content: space-between;
}
.align-left {
  align-items: flex-start;
}
.align-right {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}

.indented-text {
  border-left: 2px solid #07e0ac;
  margin: 30px 0 30px 30px;
  padding-left: 15px;
}

/* Buttons */
.btn, .hs-button,
.button{
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  border: none;
}
.btn.larger {
  font-size: 20px;
  font-weight: 500;
}
.btn.no-border-radius {
  border-radius: 0;
}
.btn.exact-width {
  width: 195px;
}
.btn.longer {
  padding: 10px 50px;
}
.btn.btn-primary, .btn.btn-secondary:hover, .primary,
.btn.btn-tertiary:hover{
  background-color: transparent;
  color:#05DCAA;
  transition: all 0.3s;
  border: 1px solid #05DCAA;
}
.btn.btn-primary:hover, .btn.btn-secondary, .primary:hover{
  background-color: #05DCAA;
  color: #0B2036;
  transition: all 0.3s;
  border: 1px solid #05DCAA;
}
.btn.btn-primary:hover,
.btn.btn-secondary:hover,
 .hs-button:hover{
  font-weight: 500;
}
.btn.btn-tertiary{
  background-color: #1DA4DC;
  transition: all 0.3s;
  border: 1px solid #1DA4DC;
}
/* Positions */
.pos-relative {
  position: relative;
}

/* Headings */
footer .heading-with-border {
  border-bottom: 2px solid #07E0AC;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

/* Slick slides modifications */
.slick-dots li button:before {
  font-size: 40px;
  color: #333333;
}
.slick-dots li.slick-active button:before
{
    color: #FFF;
}

.slick-same-height .slick-track
{
    display: flex !important;
}

.slick-same-height .slick-slide
{
    height: inherit !important;
}

.top-overlay{
  position: relative;
  z-index: 2;
}

/* Contact us form footer reset */
.contact-us-form form {
  background: transparent;
}

.contact-us-form form input[type=text],
.contact-us-form form input[type=search],
.contact-us-form form input[type=email],
.contact-us-form form input[type=password],
.contact-us-form form input[type=tel],
.contact-us-form form input[type=number],
.contact-us-form form input[type=file],
.contact-us-form form textarea{
  border-radius: 6px;
  background: transparent;
  border: 1px solid #054B80;
  padding: 12px 16px;
  color: #EAEAEA;
  width: 100% !important; 
}
.contact-us-form form input[type=text]:focus,
.contact-us-form form input[type=search]:focus,
.contact-us-form form input[type=email]:focus,
.contact-us-form form input[type=password]:focus,
.contact-us-form form input[type=tel]:focus,
.contact-us-form form input[type=number]:focus,
.contact-us-form form input[type=file]:focus,
.contact-us-form form textarea:focus{
  border: 1px solid #05DCAA;
  outline: 1px solid #05DCAA;
}
.contact-us-form form input::placeholder,
.contact-us-form form textarea::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #EAEAEA;
}
.contact-us-form .form-title, .contact-us-form form label {
  display: none;
}

.contact-us-form .hs-button {
  background-color: #05dcaa;
  border: none;
  transition: all 0.3s;
  color: #06283B;
}

.contact-us-form .hs-button:hover {
  background-color: #06283B;
  color: #fff;
}

#main-content {
  overflow: hidden;
}
/* Backgrounds their position will be defined inside the modules that uses them */

.small-eclipse {
  background-image: url('https://5641952.fs1.hubspotusercontent-na1.net/hubfs/5641952/raw_assets/public/GlideFastConsulting_2023_theme/images/small-eclipse.png');
  width: 541px;
  height: 543px;
  position: absolute;
  z-index: -1;
}
.overview-image-glow::before {
  content: '';
  border-radius: 1000px;
  background: radial-gradient(50% 50.00% at 50% 50.00%, rgba(19, 114, 181, 0.30) 0%, rgba(6, 18, 24, 0.00) 100%);
  width: 800px;
  height: 800px;
  position: absolute;
  z-index: -1;
}

/* Margins */
.mar-0 {
  margin: 0
}
.marT-auto {
  margin-top: auto;
}
.marT-15 {
  margin-top: 15px;
}
.marT-20 {
  margin-top: 20px;
}
.marT-30 {
  margin-top: 30px;
}
.marB-0 {
  margin-bottom: 0;
}
.marB-5{
  margin-bottom: 5px;
}
.marB-10{
  margin-bottom: 10px;
}
.marB-15 {
  margin-bottom: 15px;
}
.marB-20 {
  margin-bottom: 20px;
}
.marB-25 {
  margin-bottom: 25px;
}
.marB-30 {
  margin-bottom: 30px;
}
.marB-40 {
  margin-bottom: 40px;
}
.marB-50 {
  margin-bottom: 50px;
}
.marB-150 {
  margin-bottom: 150px;
}
.marB-80 {
  margin-bottom: 80px;
}
.marLR-16 {
  margin-left: 16px;
  margin-right: 16px;
}
.marR-10 {
  margin-right: 10px;
}
.marR-15 {
  margin-right: 15px;
}
.marR-30 {
  margin-right: 30px;
}
/* Paddings */
.pad-0 {
  padding: 0
}
.padB-15 {
  padding-bottom: 15px;
}

.column-4,
.column-6{
  width: 100%;
}

.banner-overlay:before {
  content: '';
  background-image: url(https://5641952.fs1.hubspotusercontent-na1.net/hubfs/5641952/raw_assets/public/GlideFastConsulting_2023_theme/images/overlay-effect.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
}

@media (min-width: 576px){
  .fontS30.font-xs-25 {
    font-size: 30px;
  }
  h2.font-xs-25,
  .fontS35.font-xs-25 {
    font-size: 35px;
  }
  .column-4 {
    width: 100%;
  }
  .column-3 {
    width: 100%;
  }
}
@media (min-width: 767px){
  .column-4,
  .column-6{
    width: calc(50% - 25px);
  }
  .column-3{
    width: calc(50% - 25px);
  }
  .page-banner-slide,
  .page-banner-slide-inner{
    min-height: 400px;
  }
}
@media (min-width: 992px){
  .page-banner-container h1  {
    font-size: 60px;
    font-weight: 600;
  }
  .page-banner-slide-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .column-4 {
    width: calc(25% - 25px);
  }
  .column-3 {
    width: calc(33% - 25px);
  }
}



/* pillar page*/

.body-container.body-container--pillar-page .span4 {
  position: sticky;
  top: 100px;
}

@media (max-width: 767px) { 
  .body-container.body-container--pillar-page .span4 {
    position: static;  
  }
}

.body-container.body-container--pillar-page .row-fluid-wrapper > .row-fluid{
  align-items: start;
}




.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
}


.blog-pagination>* {
  display: flex;
  padding: 5px 10px;
  border: 1px solid #00A8DF;
  background:transparent;
  color: #00A8DF;
}


.blog-pagination svg path {
  fill: #00A8DF;
}


.blog-pagination .blog-pagination__link--active {
  display: flex;
  padding: 5px 10px;
  border: 1px solid #05DCAA;
  background: #05DCAA;
  color: #fff;
}

/* back to top button */

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 20px;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  background-color: #00A8DF;
  color: #0B2036;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

#backToTopBtn:hover {
  background-color: #05DCAA;
}
/* end back to top button */