/* Theme base styles */
@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');

/* 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: 992px) {
  .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;
  }
}

/* Fonts */
@font-face {
  font-family: 'Montserrat';
  src: url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/fonts/montserrat/Montserrat-Regular.woff2') format('woff2'),
    url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/fonts/montserrat/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/fonts/montserrat/Montserrat-Medium.woff2') format('woff2'),
    url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/fonts/montserrat/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2'),
    url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/fonts/montserrat/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/fonts/montserrat/Montserrat-Bold.woff2') format('woff2'),
    url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/fonts/montserrat/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

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

:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --primary-color: #2C2020;
  --text-color: #FFFBF5;
  --bg-color: #3B363D;
  --footer-bg-color: #2C2020;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 140%;
  color: var(--primary-color);
  background-color: #FFFBF5;
  overflow-wrap: break-word;
}

body.menu-active {
  overflow: hidden;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

/* Paragraphs */
p {
  margin: 0 0 32px;
}
p:last-child {
  margin: 0;
}

/* Anchors */
/* Anchors */
a {
  color: var(--priamry-color);
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

/* Headings */
/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: var(--primary-color);
  font-family: 'Forum', sans-serif;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 25px;
}
h1, .h1 {
  font-size: 40px;
}
h2, .h2 {
  font-size: 36px;
}
h3, .h3 {
  font-size: 32px;
}
h4, .h4 {
  font-size: 24px;
}
h5, .h5 {
  font-size: 22px;
}
h6, .h6 {
  font-size: 18px;
}

/* 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 {
  max-width: 100%;
  height: auto;
}

.container {
  padding: 0 20px;
  max-width: 1512px;
  margin: 0 auto;
}
.dnd-section > .row-fluid {
  padding: 0 20px;
  max-width: 1512px;
  margin: 0 auto;
}
[class*=full-width-section] > .row-fluid {
  padding: 0 !important;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0 !important;
}

@media(min-width: 1200px) {
  .container {
    padding: 0 33px;
  }
  .dnd-section > .row-fluid {
    padding: 0 33px;
  }
}

.hs_cos_wrapper_type_rich_text h1, .hs_cos_wrapper_type_rich_text h2, .hs_cos_wrapper_type_rich_text h3, .hs_cos_wrapper_type_rich_text h4, .hs_cos_wrapper_type_rich_text h5, .hs_cos_wrapper_type_rich_text h6 {
  font-family: 'Forum', sans-serif;
}
/*.hs_cos_wrapper_type_rich_text p a {
  position: relative;
  text-decoration: underline;
  padding-right: 27px;
}
.hs_cos_wrapper_type_rich_text p a:hover:after {
  right: -5px;
}
.hs_cos_wrapper_type_rich_text p a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 12px;
  width: 16px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
  background-image: url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/images/arrow.svg');
}*/

.blog-post p a {
  padding-right: 0px;
}
.blog-post p a:hover:after {
  right: 0;
}
.blog-post p a:after {
  display: none;
}
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;
}

.hs_cos_wrapper_type_rich_text a, .actions .hs-button {
  text-decoration: underline !important;
}

.link-holder a span {
  text-decoration: underline !important;
  color: white;
}

.hs_cos_wrapper_type_rich_text a:hover, .actions .hs-button:hover {
  text-decoration: none !important;
}
/* Fields */

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

/* Labels */

form label {
  display: flex;
  align-items: center;
  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 select,
form textarea {
  display: inline-block;
  color: #2C2020;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #E1C0A1;
  box-shadow: none;
  outline: none;
  font-size: 20px;
  line-height: 25px;
  padding: 8px 0;
  width: 100% !important;
}

@media(min-width: 768px) {
  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 select,
  form textarea  {
    font-size: 24px;
    line-height: 30px;
  }
}
@media(min-width: 992px) {
  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 select,
  form textarea  {
    font-size: 28px;
    line-height: 34px;
  }
}
@media(min-width: 1200px) {
  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 select,
  form textarea  {
    font-size: 32px;
    line-height: 38px;
  }
}

form input[type=text]::placeholder
form input[type=search]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form select,
form textarea {
  color: #2C2020;
}

form textarea {
  resize: none !important;
  height: 90px;
}

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;*/
  font-size: 18px;
}

/* 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 .hs-submit {
  text-align: right;
}
form .hs-submit .actions {
  display: inline-block;
  position: relative;
}
form .hs-submit .actions:hover:after {
  right: 5px;
}
form .hs-submit .actions:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 16px;
  height: 12px;
  transition: all 0.4s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 12L8.6 10.55L14.15 6.5L0 7V5L14.15 5.5L8.6 1.45L10 0L16 6L10 12Z' fill='%231F1F1F'/%3E%3C/svg%3E%0A");
}
form input[type=submit],
form .hs-button {
  background-color: transparent;
  border: none;
  color: #1F1F1F;
  font-family: inherit;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: inherit;
  display: inline-block;
  padding: 10px 30px 10px 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

#hsForm_1250ec2d-0110-4f49-a90b-2ae3431a26b1_8955 form input[type=submit], #hsForm_1250ec2d-0110-4f49-a90b-2ae3431a26b1_8955 form .hs-button {
  background-color: red;
}

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

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

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 0;
  transition: all .25s ease-out;
}
.header.nav-up {
  top: -100%;
}
.header.header-sticky {
  background-color: #2C2420;
  position: fixed;
  padding: 34px 0;
}
.header.header-sticky .sticky-logo {
  display: block;
}
.header.header-sticky .header-logo {
  display: none;
}
.header .container {
  padding: 0 30px;
}
.header .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.header .column {
  padding: 0 15px;
  width: 33.333%;
}
.header .logo-holder {
  text-align: center;
  max-width: 240px;
}
.header .sticky-logo {
  display: none;
  max-width: 240px;
}
.header #main-nav ul {
  display: block;
  text-align: center;
  list-style: none !important;
}
.header #main-nav ul li {
  padding: 0 0 25px;
}
.header #main-nav ul li a {
  font-family: 'Forum', sans-serif;
  color: var(--text-color);
  font-size: 20px;
  letter-spacing: 0.02em;
}
.header #main-nav ul li a:hover {
  text-decoration: underline;
}
.header .header__menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}


/* navbar style */
.header .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  background: #fff;
}
.header .nav-bar #main-nav {
  padding: 80px 0 40px;
  background: #2C2420;
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.menu-active .header .nav-bar {
  height: 100%;
}
.menu-active .header .nav-bar #main-nav {
  transform: translateY(0);
}



/* mobile menu toogle */
.navbar-toggle {
  width: 36px;
  height: 31px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background: transparent;
  text-indent: -9999px;
  overflow: hidden;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  z-index: 12;
}
.navbar-toggle:after,
.navbar-toggle:before,
.navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--text-color);
  height: 3px;
  transition: all 0.3s ease;
  width: 100%;
}
.navbar-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggle:after,
.navbar-toggle:before {
  content: '';
}
.navbar-toggle:after {
  bottom: 23px
}
.navbar-toggle:before {
  top: 23px
}
.menu-active .navbar-toggle {
  background: transparent;
}
.menu-active .navbar-toggle:after,
.menu-active .navbar-toggle:before,
.menu-active .navbar-toggle span {
  background: vra(--text-color);
}
.menu-active .navbar-toggle:before {
  transform: rotate(45deg) translate(-6px, -6px)
}
.menu-active .navbar-toggle:after {
  transform: rotate(-45deg) translate(-7px, 7px)
}
.menu-active .navbar-toggle span {
  opacity: 0;
  visibility: hidden;
}
.header.header_inner .navbar-toggle:after,
.header.header_inner .navbar-toggle:before,
.header.header_inner .navbar-toggle span {
  background: var(--black-color);
}


@media(min-width: 576px) {
  .header .logo-holder {
    max-width: 330px;
  }
  .header .sticky-logo {
    max-width: 330px;
  }
}
@media(min-width: 1200px) {
  .navbar-toggle {
    right: 40px;
  }
  .header {
    padding: 32px 0;
  }
  .header .container {
    padding: 0 48px;
  }
  .navbar-toggle {
    display: none;
  }
  .header .nav-bar {
    position: static;
    overflow-y: unset;
    transition: none;
    height: auto;
    z-index: 1;
    background-color: transparent;
  }
  .header .nav-bar #main-nav {
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    height: auto;
  }
  .header #main-nav ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
  }
  .header #main-nav ul li {
    padding: 0 12px;
  }
}
.hero-banner {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 550px; 
  display: flex;
  flex-flow: row wrap;
  position: relative;
  z-index: 1;
  width: 100vw;
}
.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.20)), linear-gradient(0deg, rgba(103, 94, 76, 0.20), rgba(103, 94, 76, 0.20));
  z-index: -1;
}
.hero-banner .container {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  min-height: inherit;
  width: 100%;
  padding: 40px 30px;
}
.hero-banner h1 {
  color: var(--white-color);
  letter-spacing: 0.02em;
}

@media(min-width: 768px) {
  .hero-banner {
    min-height: 600px;
  }
  .hero-banner .container {
    padding: 50px 30px;
  }
}
@media(min-width: 992px) {
  .hero-banner {
    min-height: 650px;
  }
}
@media(min-width: 1200px) {
  .hero-banner {
    min-height: 815px;
  }
  .hero-banner.small {
    min-height: 655px;
  }
  .hero-banner .container {
    padding: 56px 50px;
  }
}

@media(max-width: 500px) {
  .hero-banner {
    background-size: unset;
    background-position: unset;
  }
}
.intro-content {
  padding: 60px 0;
}
.intro-content .column {
  margin-bottom: 30px;
}
.intro-content h2 {
  margin-bottom: 22px;
}
.intro-content .link-list {
  display: flex;
  flex-flow: row wrap;
  margin: 40px -15px 0;
}
.intro-content .link-list li {
  padding: 0 15px 30px;
}
.intro-content .link-list a:hover span {
  text-decoration: none;
}
.intro-content .link-list a span {
  display: inline-block;
  text-decoration: underline;
}
.intro-content .link-list a .icon-holder {
  display: inline-block;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.intro-content .banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: var(--white-color);
  text-align: center;
  padding: 80px;
  position: relative;
  z-index: 3;
}
.intro-content .banner::after {
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(44, 32, 32, 0.7), rgba(44, 32, 32, 0.7)), linear-gradient(0deg, rgba(103, 94, 76, 0.3), rgba(103, 94, 76, 0.3));
  position: absolute;
  z-index: -1;
}
.intro-content .banner .sub-heading {
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 50px;
}
.intro-content .banner h2 {
  font-family: 'Forum', sans-serif;
  color: var(--white-color);
}
.intro-content .banner .link a:hover span {
  text-decoration: none;
}
.intro-content .banner .link a span {
  display: inline-block;
  text-decoration: underline;
}
.intro-content .banner .link a .icon-holder {
  display: inline-block;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}

@media(min-width: 992px) {
  .intro-content {
    padding: 80px 0 65px;
  }
  .intro-content .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .intro-content .column {
    padding: 0 15px;
    margin: 0;
    width: 50%;
  }
  .intro-content .banner {
    margin-top: -120px;
  }
  .intro-content .link-list {
    margin-top: 50px;
  }
}
@media(min-width: 1200px) {
  .intro-content {
    padding: 120px 0 65px;
  }
  .intro-content .banner {
    margin-top: -170px;
  }
  .intro-content .link-list {
    margin: 80px -30px 0;
  }
  .intro-content .link-list li {
    padding: 0 30px 30px;
  }
}
.bg-image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 380px;
}
.recent-blog-posts {
  padding: 50px 0 80px;
}
.recent-blog-posts .text {
  margin-bottom: 60px;
}
.recent-blog-posts .column {
  margin-bottom: 30px;
}
.recent-blog-posts .column:nth-child(2) .recent-post {
  background: #E1C0A1;
}
.recent-blog-posts .recent-post {
  background: #F8E3D0;
  padding: 24px;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.recent-blog-posts .recent-post:hover {
  transform: scale(1.02);
}
.recent-blog-posts .recent-post .recent-post__title {
  margin-bottom: 50px;
}
.recent-blog-posts .recent-post .recent-post__image {
  max-width: 209px;
  min-height: 330px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: 0 auto 72px;
}
.recent-blog-posts .recent-post .recent-post__link span {
  display: inline-block;
  text-decoration: underline;
}
.recent-blog-posts .recent-post .button-holder {
  text-align: center;
}

.button-recent span {
  text-decoration: underline !important;
}

.button-recent:hover span {
  text-decoration: none !important;
}

@media(min-width: 992px) {
  .recent-blog-posts {
    padding: 70px 0 120px;
  }
  .recent-blog-posts .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .recent-blog-posts .column {
    padding: 0 15px;
    width: 50%;
  }
  .button-recent {
    padding: 0 15px;
    padding-top: 3rem;
  }
}
@media(min-width: 1200px) {
  .recent-blog-posts {
    padding: 77px 0 184px;
  }
  .recent-blog-posts .column {
    margin: 0;
    width: 33.33%;
  }
}
.contact-module {
  padding: 30px 0;
}
.contact-module .row {
  display: flex;
  flex-flow: column;
  margin: 0 -15px;
}
.contact-module .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.contact-module .persons {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
.contact-module .person-info {
  max-width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}
.contact-module .person-info .image-holder {
  margin-bottom: 20px;
  width: 320px;
  height: 380px;
}

.contact-module .person-info .image-holder img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.contact-module .person-info .contact-list {
  margin-top: 25px;
}
.contact-module .person-info .contact-list li {
  padding-bottom: 30px;
}
.contact-module .person-info .link-holder {
  text-align: center;
  margin-top: 10px;
}

.contact-module .column:nth-child(1) {
  padding-bottom: 3rem;
}

@media(min-width: 768px) {
  .contact-module {
    padding: 60px 0 80px;
  }
  .contact-module .person-info {
    max-width: 350px;
  }
}
@media(min-width: 1200px) {
  .contact-module {
    padding: 80px 0 120px;
  }
  .contact-module .column {
    margin: 0;
  }
  .contact-module .column:nth-child(1) {
    width: 33%;
  }
  .contact-module .column:nth-child(2) {
    /*width: 67%;*/
  }
}
@media(min-width: 1400px) {
  .contact-module .column:nth-child(1) {
    width: 42%;
  }
  .contact-module .column:nth-child(2) {
    /*width: 58%;*/
  }
}
.contact-person {
  padding: 73px 0;
}
.contact-person .column {
  margin-bottom: 30px;
}
.contact-person .persons-detail h2 {
  font-size: 48px;
  line-height: 51px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.contact-person .persons-detail .designation {
  margin-bottom: 38px;
  display: inline-block;
}
.contact-person .persons-detail .contact-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
.contact-person .persons-detail .contact-list li {
  padding: 0 15px 30px;
}
.contact-person .persons-detail .contact-list a {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 28px;
  text-decoration: underline;
}
.contact-person .persons-detail .text {
  margin-top: 50px;
  max-width: 660px;
}
.contact-person .persons-detail .link-holder {
  margin-top: 50px;
}
.contact-person.background-active {
  background: #3B363D;
  color: #fff;
}
.contact-person.background-active h2 {
  color: #fff;
}
.contact-person.background-active .link-holder .icon-holder {
  margin-right: 5px;
}
.contact-person.background-active .link-holder .icon-holder svg path {
  fill: #fff;
}

@media(min-width: 992px) {
  .contact-person .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .contact-person .column {
    padding: 0 15px;
    margin: 0;
  }
  .contact-person .column:nth-child(1) {
    width: 33%
  }
  .contact-person .column:nth-child(2) {
    width: 67%;
  }
}
.faq-module {
  background: #EBDFD4;
  padding: 27px 0;
}
.faq-module h2 {
  margin-bottom: 35px;
}
.faq-module .accordion-holder { 
  max-width: 690px;
  margin-left: 15px;
}
.faq-module .accordion {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 13px;
}
.faq-module .accordion > .accordion__title {
  font-family: 'Forum', sans-serif;
  cursor: pointer;
  background-color: transparent;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.02em;
  display: block;
  padding: 5px 55px 5px 5px;
  border-bottom: 1px solid #1F1F1F;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s linear;
  position: relative;
  margin: 0;
}
.faq-module .accordion > .accordion__title a {
  color: var(--heading-color);
  display: inline-block;
}
.faq-module .accordion > .accordion__title.active {
  border-radius: 8px 8px 0 0;
}
.accordion > .accordion__title.active .icon:before {
  transform: translateX(-50%) rotate(90deg);
}
.faq-module .accordion > .accordion__title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  position: absolute;
  width: 18px;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.faq-module .accordion > .accordion__title .icon:before, .accordion > .accordion__title .icon:after {
  content: "";
  position: absolute;
  z-index: -1;
  background: #1F1F1F;
}
.faq-module .accordion > .accordion__title .icon:before {
  height: 100%;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
}
.faq-module .accordion > .accordion__title .icon:after {
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  width: 100%;
}
.faq-module .accordion .accordion__content {
  border-radius: 0 0 8px 8px;
  display: none;
  padding: 18px 8px;
  font-size: 16px;
  line-height: 22px;
}
.table_winners tr {
  border-bottom: 1px solid #E1C0A1;
}

.table_winners td {
  padding-top: 12px;
  padding-bottom:12px;
}

.table_winners .year {
  width: 50px;
  padding-right: 48px;
}

.table_winners .name {
  width: 320px;
  padding-right: 48px;
}

.table_winners .company {
  width: 240px;
}

.hs_recaptcha {
  opacity: 0 !important;
  height: 0 !important;
}

#hsForm_1250ec2d-0110-4f49-a90b-2ae3431a26b1_5688 .hs-button {
  background-color: #3B363D;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none !important;
  transition: 0.3s all;
}

#hsForm_1250ec2d-0110-4f49-a90b-2ae3431a26b1_5688 .hs_submit input:hover {
  opacity: 0.5;
}

@media only screen and (max-width:500px) {
  .table_winners tr {
    display: grid;
    grid-template-columns: 2fr;
    grid-column-gap: 24px;
  }

  .table_winners .year {
    width: auto;
    padding: 0;
    padding-top: 12px;
  }
  
  .table_winners .name {
    padding: 0;
    grid-column: 2;
    padding-top: 12px;
  }

  .table_winners .company {
    padding-top: 0;
    grid-column: 2;
  }
}
/* pagincation */
.hs-pagination {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.hs-pagination .hs-pagination__link:last-child {
  margin-right: 0;
}
.hs-pagination .hs-pagination__link {
  color: #2c2020;
  font-size: 18px;
  line-height: 26px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  background: #f8e3d0;
  border: 1px solid #f8e3d0;
  transition: all .15s ease-in-out;
  text-align: center;
  padding: 7px 13px;
  margin-right: 5px;
  min-width: 40px;
  height: 40px;
}
.hs-pagination .hs-pagination__link:hover {
  background: #e1c0a1;
  border-color: #e1c0a1;
  color: #2c2020;
}
.hs-pagination .hs-pagination__link.hs-pagination__link--active {
  background: #e1c0a1;
  border-color: #e1c0a1;
  color: #2c2020;
}
.hs-pagination .hs-pagination__link.hs-pagination__link--prev svg, .hs-pagination .hs-pagination__link.hs-pagination__link--next svg {
  width: auto;
  height: 100%;
  fill: #2c2020;
  transition: all 0.4s ease-in-out;
}
.hs-pagination .hs-pagination__link.hs-pagination__link--prev:hover svg, .hs-pagination .hs-pagination__link.hs-pagination__link--next:hover svg {
  fill: #2c2020;
}
.hs-pagination .hs-pagination__link.hs-pagination__link--first, .hs-pagination .hs-pagination__link.hs-pagination__link--last {
  padding: 8px 9px;
} 
.hs-pagination .hs-pagination__link.hs-pagination__link--first svg, .hs-pagination .hs-pagination__link.hs-pagination__link--last svg {
  width: auto;
  height: 100%;
  fill: #2c2020;
  transition: all 0.4s ease-in-out;
}
.hs-pagination .hs-pagination__link.hs-pagination__link--first:hover svg, .hs-pagination .hs-pagination__link.hs-pagination__link--last:hover svg {
  fill: #2c2020;
}
.footer {
  color: var(--text-color);
  background-color: var(--footer-bg-color);
  padding: 60px 0;
}
.footer .column:not(:last-child) {
  margin-bottom: 30px;
}
.footer .logo-holder {
  text-align: center;
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
}
.footer h3 {
  font-family: 'larken_demoregular', sans-serif;
  color: var(--white-color);
  font-weight: 400;
  margin: 0;
}
.footer .footer-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -10px;
}
.footer .footer-links li {
  padding: 0 10px;
}
.footer .footer-links li:not(:last-child) {
  padding-bottom: 20px;
}
.footer .footer-links a {
  color: var(--text-color);
  letter-spacing: 0.04em;
}
.footer .footer-links a:hover {
  text-decoration: underline;
}
.footer .social-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  margin: 60px -10px 0;
}
.footer .social-links li {
  padding: 0 10px;
}
.footer .social-links a {
  color: var(--text-color);
  letter-spacing: 0.04em;
}
.footer .social-links a:hover {
  text-decoration: underline;
}
.footer .newsletter form {
  position: relative;
}
.footer .newsletter form .hs-form-field {
  margin: 0 0 10px;
  position: relative;
}
.footer .newsletter form .hs-error-msgs {
  position: absolute;
  top: 100%;
  left: 0;
}
.footer .newsletter form input[type="email"] {
  outline: none;
  box-shadow: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FFFBF5;
  letter-spacing: 0.04em;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-color);
  padding: 6px 130px 6px 0;
}
.footer .newsletter form input[type="email"]::placeholder {
  color: var(--text-color);
}
.footer .newsletter form input[type="submit"] {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-color);
  padding: 6px 30px 6px 6px;
  border: 0;
}
.footer .newsletter form .hs_submit .actions {
  position: relative;
}
.footer .newsletter form .hs_submit .actions:hover:after {
  right: 5px;
}
.footer .newsletter form .hs_submit .actions:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 12px;
  width: 16px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
  background-image: url('https://139703142.fs1.hubspotusercontent-eu1.net/hubfs/139703142/raw_assets/public/Agile%20-%20Theme/images/arrow.svg');
}
.footer .newsletter form .hs_submit {
  position: absolute;
  top: 0;
  right: 0;
}
.footer .newsletter .submitted-message {
  padding-top: 20px;
}


@media(min-width: 992px) {
  .footer {
    padding: 75px 0;
  }
  .footer .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .footer .column {
    padding: 0 15px;
    width: 33.333%;
  }
  .footer .column:not(:last-child) {
    margin: 0;
  }
  .footer .column:nth-child(1) {
    order: 2;
  }
  .footer .column:nth-child(2) {
    order: 1;
  }
  .footer .column:nth-child(3) {
    order: 3;
  }
  .footer .footer-links {
    display: block;
    margin: 0;
  }
  .footer .footer-links li {
    padding: 0;
  }
  .footer .footer-links li:not(:last-child) {
    padding-bottom: 26px;
  }
  .footer .social-links {
    margin-top: 106px;
  }
}
@media(min-width: 1200px) {
  .footer .container {
    padding: 0 50px;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}