
@font-face {
  font-family: 'FRADM';
  src: url('../fonts/FRADM.eot');
  src: url('../fonts/FRADM.eot?#iefix') format('embedded-opentype'),
       url('../fonts/FRADM.woff2') format('woff2'),
       url('../fonts/FRADM.woff') format('woff'),
       url('../fonts/FRADM.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*!
 * 	Theme Variables
 * ----------------------------------------------- */
:root {
  --primary: #005d24;
  --primary-rgb: 0, 93, 36;
  --secondary: #90a955;
  --secondary-rgb: 144, 169, 85;

  --dark: #051014;
  --dark-rgb: 5, 16, 20;
  --light: #f9f8f8;
  --light-rgb: 249, 248, 248;

  --body-font-family: "Lato", sans-serif;
  --body-font-size: 16px;
  --body-font-weight: 400;
  --body-bg: #ffffff;
  --body-color: #6b818c;
  --body-line-height: 1.45;

  --heading-font-size-base: 1rem;
  --heading-font-family: 'FRADM';
  --heading-font-weight: 400;
  --heading-color: var(--dark);
  --heading-margin-bottom: 16px;
  --heading-line-height: 1.25;

  --link-color: var(--dark);
  --link-hover-color: var(--secondary);

  --btn-font-family: var(--body-font-family);
  --btn-font-size: 14px;
  --btn-font-weight: var(--body-font-weight);
  --btn-line-height: 40px;
  --btn-padding: 0 16px;
  --btn-bg: transparent;
  --btn-border-width: 1px;
  --btn-border-radius: 100px;
  --btn-color: var(--body-color);
  --btn-border-color: transparent;
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--body-color);
  --btn-hover-border-color: transparent;

  --form-control-font-family: var(--body-font-family);
  --form-control-font-size: 14px;
  --form-control-font-weight: var(--body-font-weight);
  --form-control-color: var(--body-color);
  --form-control-line-height: 1;
  --form-control-padding: 4px 16px;
  --form-control-min-height: 36px;
  --form-control-bg: transparent;
  --form-control-border-color: #eff1f0;
  --form-control-border-radius: 6px;
  --form-control-placeholder-color: #333;
  --form-control-placeholder-opacity: 1;
  --form-control-arrow: url('data:image/svg+xml,<svg fill="%23000" viewBox="0 0 24 24" height="20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M11.9997 13.1714L16.9495 8.22168L18.3637 9.63589L11.9997 15.9999L5.63574 9.63589L7.04996 8.22168L11.9997 13.1714Z"></path></svg>');

  --hamburger-line-bg: #ffffff;
  --header-height: 80px;

  --paragraph-margin-bottom: 16px;
  --section-padding-y: 80px;

  --container-width: ;
  --gutter-y: ;
  --gutter-x: 32px;

  --scrollbar-width: thin;
  --scrollbar-color: var(--dark) transparent;
}

/*!
 * 	Reset Styles
 * ----------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-color);
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

body {
  margin: 0;
  padding: 0;
  top: initial !important;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--body-color);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  background-color: var(--body-bg);
  text-align: left;
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-color);
}

img {
  max-width: 100%;
  height: initial;
}

a {
  color: var(--link-color);
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  color: var(--link-hover-color);
}

p {
  margin-top: 0;
  margin-bottom: var(--paragraph-margin-bottom);
}

p:last-child {
  margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 16px;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 16px;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none !important;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

:where(.wp-site-blocks) > * {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 4px 8px;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 2px;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

:root :where(.is-layout-grid) {
  gap: var(--gutter-x);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font-family);
  color: var(--heading-color);
  font-weight: var(--heading-font-weight);
  margin-top: 0;
  margin-bottom: var(--heading-margin-bottom);
  line-height: var(--heading-line-height);
}

h1,
.h1 {
  font-size: calc(1.425rem + 2.1vw);
}

h2,
.h2 {
  font-size: calc(1.4rem + 1.5vw);
}

h3,
.h3 {
  font-size: calc(1.325rem + 0.9vw);
}

h4,
.h4 {
  font-size: calc(1.3rem + 0.6vw);
}

h5,
.h5 {
  font-size: calc(1.275rem + 0.3vw);
}

h6,
.h6 {
  font-size: calc(var(--heading-font-size-base) * 1.125);
}

/*!
 *	Common
 * ----------------------------------------------- */

#wrapper {
  position: relative;
  min-height: 100vh;
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.overflow-hidden {
  overflow: hidden !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: 800 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-center {
  text-align: center !important;
}

.bg-primary {
  --heading-color: #fff;
  background-color: var(--primary);
  color: #fff;
}

.bg-light {
  background-color: var(--light);
}

/*!
 *	Spacing
 * ----------------------------------------------- */
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

/*!
 *	Grid System
 * ----------------------------------------------- */
.container,
.container-fluid {
  width: 100%;
  padding-left: calc(var(--gutter-x) * 0.5);
  padding-right: calc(var(--gutter-x) * 0.5);
}

.container *,
.container-fluid * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.row {
  margin-top: calc(-1 * var(--gutter-y));
  margin-left: calc(-0.5 * var(--gutter-x));
  margin-right: calc(-0.5 * var(--gutter-x));
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  min-height: 1px;
  margin-top: var(--gutter-y);
  padding-left: calc(var(--gutter-x) * 0.5);
  padding-right: calc(var(--gutter-x) * 0.5);
}

.row.row--lg {
  --gutter-x: 54px;
}

.row.row--md {
  --gutter-x: 40px;
}

.row.row--sm {
  --gutter-x: 20px;
}

.gap {
  --gutter-y: var(--gutter-x);
}

.col-1 {
  width: 8.33333333%;
}

.col-2 {
  width: 16.66666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333333%;
}

.col-5 {
  width: 41.66666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333333%;
}

.col-8 {
  width: 66.66666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333333%;
}

.col-11 {
  width: 91.66666667%;
}

.col-12 {
  width: 100%;
}

.no-gutter {
  --gutter-x: 0;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*!
 *	Form Styling
 * ----------------------------------------------- */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: var(--btn-padding);
  color: var(--btn-color);
  background-color: var(--btn-bg);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  border: var(--btn-border-width) solid var(--btn-border-color);
  border-radius: var(--btn-border-radius);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: calc(var(--btn-line-height) - (var(--btn-border-width) * 2));
  text-align: center;
  gap: 4px;
}

.btn:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border-color);
}

.btn-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.btn.btn--lg {
  --btn-font-size: 15px;
  --btn-padding: 0 24px;
  --btn-line-height: 48px;
}

.btn.btn--icon {
  padding: 0;
  width: var(--btn-line-height);
  height: var(--btn-line-height);
}

.btn.btn--primary {
  --btn-bg: var(--primary);
  --btn-color: #ffffff;
  --btn-hover-bg: #013d18;
  --btn-hover-color: #ffffff;
}

.btn.btn--dark {
  --btn-bg: var(--dark);
  --btn-color: #ffffff;
  --btn-hover-bg: #000000;
  --btn-hover-color: #ffffff;
}

.btn.btn--white {
  --btn-bg: #ffffff;
  --btn-color: var(--dark);
  --btn-hover-bg: #e5e5e5;
  --btn-hover-color: var(--dark);
}

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--form-control-border-color);
  min-height: var(--form-control-min-height);
  padding: var(--form-control-padding);
  background-color: var(--form-control-bg);
  font-family: var(--form-control-font-family);
  font-size: var(--form-control-font-size);
  color: var(--form-control-color);
  border-radius: var(--form-control-border-radius);
  line-height: var(--form-control-line-height);
}

.form-control:focus {
  --form-control-border-color: var(--primary);
}

.form-control::-webkit-input-placeholder {
  color: var(--form-control-placeholder-color);
  opacity: var(--form-control-placeholder-opacity);
}

.form-control::-moz-placeholder {
  color: var(--form-control-placeholder-color);
  opacity: var(--form-control-placeholder-opacity);
}

.form-control:-ms-input-placeholder {
  color: var(--form-control-placeholder-color);
  opacity: var(--form-control-placeholder-opacity);
}

.form-control::-ms-input-placeholder {
  color: var(--form-control-placeholder-color);
  opacity: var(--form-control-placeholder-opacity);
}

.form-control::placeholder {
  color: var(--form-control-placeholder-color);
  opacity: var(--form-control-placeholder-opacity);
}

.form-control::-webkit-input-placeholder {
  color: var(--form-control-placeholder-color);
  opacity: var(--form-control-placeholder-opacity);
}

.form-control::-moz-placeholder {
  color: var(--form-control-placeholder-color);
  opacity: var(--form-control-placeholder-opacity);
}

.form-control::-ms-placeholder {
  color: var(--form-control-placeholder-color);
  opacity: var(--form-control-placeholder-opacity);
}

select.form-control {
  background-image: var(--form-control-arrow);
  background-position: center right 16px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-label {
  font-size: 14px;
}

.form-error {
	font-size: 12px;
	margin-top: 8px;
	color: #e63946;
}

.radio {
  display: inline-flex;
  min-height: 1.25rem;
  gap: 6px;
}

.radio .radio__input {
  border-radius: 50%;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--form-control-border-color);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}

.radio .radio__input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  background-color: var(--primary);
  border-color: var(--primary);
}

.radio .radio__label {
  margin-bottom: 0;
  font-size: .875rem;
}

#form_message {
	position: fixed;
	left: 0;
	bottom: 0;
	padding: 24px 16px;
	width: 100%;
	z-index: 999;
	transform: translateY(120px);
	transition: all 0.45s cubic-bezier(0.075, 0.82, 0.165, 1);
	text-align: center;
}

#form_message.show {
	transform: translateY(0);
}

#form_message .error,
#form_message .success {
	width: 100%;
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 6px;
	line-height: 24px;
    padding: 12px 24px;
    display: block;
    font-weight: 400;
}

#form_message .error {
	background-color: #e63946;
	color: #ffffff;
}

#form_message .success {
	background-color: #2ec4b6;
	color: #000000;
}

/*!
 *	Header
 * ----------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms;
}

#header.hide-header {
  -webkit-transform: translateY(-105%);
      -ms-transform: translateY(-105%);
          transform: translateY(-105%);
}

#header.fixed-header {
  --hamburger-line-bg: var(--dark);
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.15);
}

#header:not(.fixed-header) .logo,
#header.fixed-header .logo-white {
  display: none;
}

#header.fixed-header .navbar > ul > li > a {
  --link-color: var(--dark);
}

#header.fixed-header .sub-menu-handler {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24" fill="%23051014"><path d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"></path></svg>');
}

#header.fixed-header #google_translate_element .goog-te-gadget-simple {
  --form-control-border-color: var(--dark);
  --form-control-arrow: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24" fill="%23051014"><path d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"></path></svg>');
  color: var(--dark);
}

#header.fixed-header .navbar {
  background-color: #ffffff;
}

#header.fixed-header .sub-menu li a {
  color: var(--dark);
}

.header-container {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.navbar {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  padding-top: 32px;
  padding-bottom: 32px;
  z-index: 100;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  max-height: calc(100vh - var(--header-height));
  overflow: auto;
}

.navbar > ul {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: var(--container-width);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 calc(0.5 * var(--gutter-x));
  list-style: none;
}

.navbar > ul > li:not(:first-child) {
  margin-top: 24px;
}

.navbar > ul > li > a {
  --link-color: #ffffff;
  --link-hover-color: var(--secondary);
  display: inline-block;
  position: relative;
}

.menu-item-has-children,
.menu-item-has-children > a {
  position: relative;
}

.menu-item-has-children {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
}

.sub-menu-handler {
  margin-left: auto;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24" fill="%23ffffff"><path d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"></path></svg>');
}

.menu-item-has-children > .sub-menu-handler.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sub-menu {
  display: none;
  padding-top: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  padding: 16px 0 0;
  margin: 0;
  list-style: none;
}

.sub-menu li a {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
}

.sub-menu li a:hover {
  background-color: rgba(var(--primary-rgb), 0.03);
}

#hamburger {
  background-color: transparent;
  border: none;
  position: relative;
  width: 24px;
  height: 20px;
  cursor: pointer;
  padding: 0;
}

#hamburger span:before,
#hamburger span:after {
  content: "";
}

#hamburger span,
#hamburger span:before,
#hamburger span:after {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--hamburger-line-bg);
  display: block;
}

#hamburger span,
#hamburger span:after {
  top: 9px;
}

#hamburger span:before {
  top: -9px;
}

#hamburger.active span {
  background-color: transparent;
}

#hamburger.active span:after,
#hamburger.active span:before {
  top: 0;
}

#hamburger.active span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger.active span:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.fixed-header .brand {
  max-width: 120px;
}

.brand {
  display: inline-block;
  max-width: 160px;
}

#intro {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--light);
}

#intro .intro-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: url("../images/logos/favicon.svg");
  mask-image: url("../images/logos/favicon.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

#intro .intro-hero > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.title {
  display: inline-block;
  position: relative;
}

.title .title__shape {
  position: absolute;
  bottom: -15%;
  left: 10%;
  width: 80%;
  pointer-events: none;
  -webkit-transform: rotate(-5deg);
      -ms-transform: rotate(-5deg);
          transform: rotate(-5deg);
  color: var(--secondary);
}

.title .title__path {
  stroke-dashoffset: 195.8011322021px;
  stroke-dasharray: 195.8011322021px;
}

.about {
  padding-top: 35vh;
}

.about .about__title,
.about .about__content {
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}

.section.section--services {
  background-color: #fff;
  position: relative;
  margin-top: -2px;
}

.service {
  position: relative;
}

.service .service__item {
  padding-top: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #f9f8f8;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  position: relative;
}

.service .service__item:hover {
  --heading-color: #ffffff;
  color: #ffffff;
  -webkit-transform: scaleX(1.05);
      -ms-transform: scaleX(1.05);
          transform: scaleX(1.05);
}

.service .service__item:first-child {
  border-top: 1px solid #f9f8f8;
}

.service .service__title {
  --heading-font-weight: 400;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

#service_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  -webkit-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}

.service .service__link {
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0;
  -webkit-transform: translateY(24px);
      -ms-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
  display: inline-block;
  color: #ffffff;
}

.service .service__item:hover .service__link {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

#map {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  background-color: var(--light);
  max-height: 580px;
  width: 100%;
  position: relative;
}

.map-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.map-controls button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 32px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
}

.map-controls .zoom-in {
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'16'%20height%3D'16'%20fill%3D'%23000000'%20viewBox%3D'0%200%20256%20256'%3E%3Cpath%20d%3D'M224%2C128a8%2C8%2C0%2C0%2C1-8%2C8H136v80a8%2C8%2C0%2C0%2C1-16%2C0V136H40a8%2C8%2C0%2C0%2C1%2C0-16h80V40a8%2C8%2C0%2C0%2C1%2C16%2C0v80h80A8%2C8%2C0%2C0%2C1%2C224%2C128Z'%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
}

.map-controls .zoom-out {
  border-top: 1px solid #f9f8f8;
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'16'%20height%3D'16'%20fill%3D'%23000000'%20viewBox%3D'0%200%20256%20256'%3E%3Cpath%20d%3D'M224%2C128a8%2C8%2C0%2C0%2C1-8%2C8H40a8%2C8%2C0%2C0%2C1%2C0-16H216A8%2C8%2C0%2C0%2C1%2C224%2C128Z'%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
}

.tooltip {
  background-color: #fff;
  border-radius: 12px;
  max-width: 280px;
  padding: 16px;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.pin {
  -webkit-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}

.pin:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}

.industry-title {
  position: -webkit-sticky;
  position: sticky;
  top: 108px;
  text-align: center;
  margin-bottom: 64px;
}

.industry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.industry .industry__item {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--light);
}

.industry .industry__item:not(:first-child) {
  padding-top: 32px;
}

.industry .industry__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  position: relative;
}

.industry .industry__text .h3 {
  font-family: var(--body-font-family);
}

.industry .industry__hero {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  width: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  pointer-events: none;
  overflow: hidden;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  transition: all 400ms;
}

.industry .industry__item:hover .industry__hero {
  width: 160px;
}

.industry .industry__hero > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.industry .industry__text:hover .h1 {
  color: white;
  text-stroke: 0px transparent;
  -webkit-text-stroke: 0px transparent;
  mix-blend-mode: difference;
}

/*!
 *	Inner pages
 * ----------------------------------------------- */
#inner_banner, 
.inner-banner-text {
  padding-top: 88px;
  position: relative;
}

#inner_banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: var(--dark);
}

#inner_banner > * {
  position: relative;
  z-index: 2;
}

.inner-hero {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inner-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--dark-rgb), 0.5);
  z-index: 2;
}

.inner-hero .inner-hero__content {
  --heading-color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.inner-hero .inner-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  max-width: initial;
}

.inner-banner-text {
  --heading-color: #ffffff;
  background-color: var(--dark);
  color: #ffffff;
}

/* About */
.marquee,
.marquee .marquee__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.marquee {
  line-height: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: var(--primary);
}

.marquee .marquee__item {
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  -webkit-animation: marquee 40s linear infinite;
          animation: marquee 40s linear infinite;
}

.marquee[data-animation-reverse] .marquee__item {
  -webkit-animation-direction: reverse;
          animation-direction: reverse;
}

.marquee .marquee__item > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 32px;
}

.marquee.marquee--logos {
  padding: 0;
  background-color: transparent;
}

.marquee .marquee__logo {
  width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.marquee.marquee--logos .marquee__item > * {
  padding-right: 80px;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.timeline {
  --line-color: var(--secondary);
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  top: -32px;
  bottom: -32px;
  left: 0;
  width: 1px;
  background-color: var(--line-color);
}

.timeline .timeline__item {
  position: relative;
  padding-left: 32px;
}

.timeline .timeline__item:not(:last-child) {
  padding-bottom: 48px;
}

.timeline .timeline__card {
  padding: 24px;
  border-radius: 16px;
  background-color: var(--primary);
  color: var(--light);
}

.timeline .timeline__card:before {
  content: "";
  position: absolute;
  top: 24px;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--line-color);
  z-index: 1;
  -webkit-box-shadow: 0 0 0 4px color-mix(in srgb, var(--line-color), #ffffff 75%);
          box-shadow: 0 0 0 4px color-mix(in srgb, var(--line-color), #ffffff 75%);
}

.timeline .timeline__card:after {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: var(--line-color);
  z-index: 1;
}

.timeline .timeline__item:nth-child(odd) .timeline__card {
  background-color: var(--dark);
  color: var(--light);
}

.parallax {
  --heading-color: #ffffff;
  position: relative;
  color: #ffffff;
}

.parallax .parallax__bg {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.parallax .parallax__bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--dark);
  opacity: 0.5;
}

#certificate .swiper-slide {
  height: initial;
}

#certificate .swiper-pagination {
  position: relative !important;
  top: initial !important;
  bottom: initial !important;
  margin-top: 16px;
}

.certificates {
  text-align: center;
}

.certificate {
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px;
  height: 100%;
}

.certificate img {
  max-width: 140px;
  max-height: 140px;
  /* width: 100%;
  height: 100%; */
  -o-object-fit: contain;
     object-fit: contain;
}

.msme-card {
  --heading-color: #ffffff;
  --heading-font-weight: 600;
  background-color: var(--primary);
  border-radius: 24px;
  padding: 32px;
  color: #ffffff;
}

.why-choose {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.why-choose > *:first-child {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why-choose-title {
  text-align: center;
  margin-bottom: 32px;
}

.why-choose-card {
  height: 280px;
  padding: 32px;
  border-radius: 24px;
  background-color: var(--light);
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.why-choose-card .why-choose-card__icon {
  color: var(--secondary);
  margin-bottom: 32px;
}

.why-choose-card .why-choose-card__icon svg {
  width: 48px;
  height: 48px;
}

.member {
  /* border-radius: 16px;
  background-color: var(--light); */
  overflow: hidden;
  position: relative;
}

.member > img {
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
     object-fit: cover;
}

.member .member__title {
  font-weight: 600;
  color: var(--dark);
}

.member .member__content {
  /* position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 16px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  font-size: 20px;
  color: #ffffff;
  font-weight: 600; */
  margin-top: 16px;
}

/* Contact */
.contact-info {
  line-height: 1.65;
}

.contact-info a {
  --link-color: var(--body-color);
  --link-hover-color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#contact_map {
  aspect-ratio: 4 / 3;
}

#contact_map > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-form {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px 24px 40px;
}

/* Industry */
.industry-card {
  padding: 32px;
  border-radius: 16px;
  background-color: var(--light);
  height: 100%;
}

.industry-card .industry-card__icon {
  color: var(--secondary);
  margin-bottom: 32px;
}

.why-industries {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.why-industries .why-industries__card {
  padding: 32px;
  border-radius: 16px;
  background-color: #ffffff;
  height: 100%;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
}

.why-industries .why-industries__number {
  font-size: 20px;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 48px;
  width: 48px;
  height: 48px;
  background-color: var(--dark);
}

/* Services */
.section--industries .industry-card {
  min-height: 194px;
}

.section--industries .industry-card .industry-card__icon {
  margin-bottom: 48px;
}

.why-container {
  position: relative;
}

.why-container:before {
    content: "";
    position: absolute;
    top: calc(-1 * var(--section-padding-y));
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--light);
}

.why-card .why-card__hero {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
}

.why-card .why-card__hero > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.capability-card {
  padding: 32px;
  border-radius: 16px;
  background-color: #ffffff;
  height: 100%;
}

.blog-container .wp-block-categories {
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
  max-width: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.blog-container .wp-block-categories .cat-item.cat-item-1 {
  display: none;
}

.blog-container .wp-block-categories .cat-item a {
  display: block;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid var(--light);
  color: var(--body-color);
  line-height: 20px;
  font-size: 14px;
}

.blog-container .wp-block-categories .cat-item a:hover {
  background-color: var(--light);
}

.blog-container .wp-block-query,
.blog-container .wp-block-query-title,
.blog-container .wp-block-template-part {
  margin: 0;
  max-width: initial;
}

.blog-container .wp-block-query-title {
  font-size: 32px;
  margin-bottom: 48px;
}

.resource-card .wp-post-image {
  aspect-ratio: 16 / 9;
}

.resource-card .wp-block-post-title {
  font-weight: 500;
  margin-bottom: 8px;
}

.resource-card .wp-block-post-title a {
  -webkit-transition: all 250ms;
  -o-transition: all 250ms;
  transition: all 250ms;
}

.resource-card .wp-block-post-title a:hover {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.resource-card .wp-block-post-excerpt {
  margin-top: 0;
  font-size: 14px;
}

.resource-card .wp-block-post-excerpt p {
  display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wp-block-query-pagination {
  margin-top: 64px;
}

.wp-block-query-pagination .wp-block-query-pagination-next,
.wp-block-query-pagination .wp-block-query-pagination-previous {
  text-indent: -10000px;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.wp-block-query-pagination .wp-block-query-pagination-previous {
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="%236b818c" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.2602 15.5297L9.74023 11.9997L13.2602 8.46973" stroke="%236b818c" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>')
}

.wp-block-query-pagination .wp-block-query-pagination-next {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="%236b818c" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /><path d="M10.7402 15.5297L14.2602 11.9997L10.7402 8.46973" stroke="%236b818c" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></svg>');
}

.wp-block-query-pagination .page-numbers {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--body-color);
  line-height: 32px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

.wp-block-query-pagination .page-numbers.current {
  background-color: var(--primary);
  color: #ffffff;
}

.resources-section:has(.wp-block-query-no-results) {
	display: none;
}

/*!
 *	Footer
 * ----------------------------------------------- */
#footer {
  --link-color: #ffffff;
  --link-hover-color: #ffffff;
  --heading-color: #ffffff;
  padding-top: var(--section-padding-y);
  background-color: var(--dark);
  color: #ffffff;
  overflow: hidden;
}

.top-footer {
  text-align: center;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-footer .btn-inline {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-card {
  /* background-color: rgba(255, 255, 255, 0.05); */
  background-color: #ffffff;
  color: var(--body-color);
  border-radius: 24px;
  padding: 32px 24px;
}

.footer-card .brand {
  max-width: 200px;
  margin-bottom: 32px;
}

.footer-card a {
  color: var(--body-color);
}

.footer-card a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.social li a {
  display: inline-block;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  line-height: 20px;
}

.social li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

.footer-link {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-link li:not(:first-child) {
  margin-top: 16px;
}

.footer-link li a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-content {
  --gutter-y: 48px;
}

.last-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 48px;
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.last-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 8px;
  margin-left: 24px;
}

#google_translate_element {
  min-width: 0;
}

#google_translate_element .goog-te-gadget-simple {
  --form-control-arrow: url('data:image/svg+xml,<svg fill="%23ffffff" viewBox="0 0 24 24" height="20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M11.9997 13.1714L16.9495 8.22168L18.3637 9.63589L11.9997 15.9999L5.63574 9.63589L7.04996 8.22168L11.9997 13.1714Z"></path></svg>');

  -webkit-appearance: none;

     -moz-appearance: none;

          appearance: none;
  margin: 0;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid var(--form-control-border-color);
  min-height: var(--form-control-min-height);
  padding: var(--form-control-padding);
  font-family: var(--form-control-font-family);
  font-size: 12px;
  border-radius: var(--form-control-border-radius);
  line-height: var(--form-control-line-height);
  background-color: var(--form-control-bg);
  background-image: var(--form-control-arrow);
  background-position: center right 12px;
  background-repeat: no-repeat;
  padding-right: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#google_translate_element .goog-te-combo option {
  color: var(--dark);
}

#google_translate_element .goog-te-gadget > *::text {
  text-indent: -1000px;
}

.skiptranslate iframe,
#google_translate_element .goog-te-gadget-simple > img,
#google_translate_element .goog-te-gadget-simple a > *:not(:first-child) {
  text-indent: -1000px;
  display: none;
}

#google_translate_element .goog-te-gadget-simple {
  width: 140px;
}

#google_translate_element .goog-te-gadget-simple a {
  color: inherit;
  margin: 0;
  display: block;
  line-height: 1.25;
  pointer-events: none;
}

#google_translate_element .goog-te-gadget-simple > span {
  min-width: 0;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/*!
 *	Responsive
 * ----------------------------------------------- */
@media (min-width: 480px) {
  .col-xs-1 {
    width: 8.33333333%;
  }

  .col-xs-2 {
    width: 16.66666667%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-4 {
    width: 33.33333333%;
  }

  .col-xs-5 {
    width: 41.66666667%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-7 {
    width: 58.33333333%;
  }

  .col-xs-8 {
    width: 66.66666667%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-10 {
    width: 83.33333333%;
  }

  .col-xs-11 {
    width: 91.66666667%;
  }

  .col-xs-12 {
    width: 100%;
  }
}

@media (min-width: 576px) {
  body {
    --container-width: 540px;
    --section-padding-y: 100px;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  body {
    --container-width: 720px;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .fs-20 {
    font-size: 20px !important;
  }

  .about {
    padding-top: 45vh;
  }

  .industry .industry__hero {
    width: 220px;
  }

  .industry .industry__item:hover .industry__hero {
    width: 280px;
  }

  .inner-hero {
    aspect-ratio: 16 / 9;
  }

  .timeline:before {
    left: 50%;
    top: 0;
  }

  .timeline .timeline__item:nth-child(odd) {
    margin-left: 50%;
  }

  .timeline .timeline__item:nth-child(even) {
    margin-right: 50%;
    padding-left: 0;
    padding-right: 32px;
  }

  .timeline .timeline__item:nth-child(even) .timeline__card:before {
    left: initial;
    right: -6px;
  }

  .timeline .timeline__item:nth-child(even) .timeline__card:after {
    left: initial;
    right: 0;
  }

  .msme-card {
    text-align: center;
    padding: 64px;
    border-radius: 32px;
  }

  #contact_map {
    aspect-ratio: 21 / 9;
  }

  .contact-form {
    padding: 32px 32px 48px;
  }

  #google_translate_element .goog-te-gadget-simple {
    width: 160px;
  }
}

@media (min-width: 992px) {
  body {
    --container-width: 960px;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .navbar {
    margin-top: 0;
    margin-left: auto;
    position: relative;
    top: initial;
    width: initial;
    background-color: transparent;
    padding: 0;
    border: none;
    display: block;
    max-height: initial;
    overflow: visible;
    border-radius: 0;
  }

  .navbar > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    max-width: initial;
  }

  .navbar > ul > li:not(:first-child) {
    margin-left: 24px;
    margin-top: initial;
  }

  .navbar > ul > li > a {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .sub-menu-handler {
    margin-left: 4px;
  }

  .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 220px;
    -webkit-box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 16px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    display: block;
  }

  .sub-menu li a {
    color: var(--dark);
  }

  #hamburger {
    display: none;
  }

  .fixed-header .brand {
    max-width: 160px;
  }

  .navbar > ul > li > a {
    position: relative;
  }

  .navbar > ul > li > a:after {
    content: "";
    position: absolute;
    left: 0;
  }

  #inner_banner,
  .inner-banner-text {
    padding-top: 122px;
  }

  .inner-hero {
    aspect-ratio: 2.25 / 1;
  }

  .certificates {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }

  .why-choose > *:first-child {
    margin-left: initial;
    margin-right: initial;
  }

  .why-choose-title {
    text-align: left;
    margin-bottom: 0;
  }

  .industry .industry__item {
    padding-bottom: 64px;
  }

  .industry .industry__item:not(:first-child) {
    padding-top: 64px;
  }

  .header-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .top-footer,
  .industry-title {
    text-align: left;
  }

  .top-footer .row {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .top-footer .top-footer__text {
    padding-right: 64px;
  }

  .top-footer .btn-inline {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .footer-card {
    padding: 32px;
  }

  .last-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }

  .footer-title {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .footer-link li:not(:first-child) {
    margin-top: 24px;
  }
}

@media (min-width: 1200px) {
  body {
    --container-width: 1140px;
  }

  h1,
  .h1 {
    font-size: calc(var(--heading-font-size-base) * 4);
  }

  h2,
  .h2 {
    font-size: calc(var(--heading-font-size-base) * 3);
  }

  h3,
  .h3 {
    font-size: calc(var(--heading-font-size-base) * 2);
  }

  h4,
  .h4 {
    font-size: calc(var(--heading-font-size-base) * 1.5);
  }

  h5,
  .h5 {
    font-size: calc(var(--heading-font-size-base) * 1.25);
  }

  .col-xl-1 {
    width: 8.33333333%;
  }

  .col-xl-2 {
    width: 16.66666667%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.33333333%;
  }

  .col-xl-5 {
    width: 41.66666667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.33333333%;
  }

  .col-xl-8 {
    width: 66.66666667%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10 {
    width: 83.33333333%;
  }

  .col-xl-11 {
    width: 91.66666667%;
  }

  .col-xl-12 {
    width: 100%;
  }

  .brand {
    max-width: 260px;
  }

  .navbar > ul > li:not(:first-child) {
    margin-left: 32px;
  }

  .timeline .timeline__item:nth-child(odd) {
    padding-left: 64px;
  }

  .timeline .timeline__item:nth-child(even) {
    padding-right: 64px;
  }

  .timeline .timeline__card:after {
    width: 64px;
  }

  .why-choose-title {
    padding-right: 32px;
  }

  .industry .industry__hero {
    width: 280px;
  }

  .industry .industry__item:hover .industry__hero {
    width: 360px;
  }

  #google_translate_element .goog-te-gadget-simple {
    font-size: 14px;
  }

  #footer .container > .row {
    --gutter-x: 64px;
  }
}

@media (min-width: 1400px) {
  body {
    --container-width: 1320px;
  }

  .top-footer .top-footer__text {
    padding-right: 0;
  }
}
