/* variables
----------------------- */
:root {
  --primary: #97c2b8;
  --secondary: #f9ab51;
  --dark: #628b82;
  --light: #f4fcfa;
  --border: #d2efe8;
  --color-text: #444444;
  --color-heading: #111111;
  --font-text: "roboto", sans-serif;
  --font-heading: "roboto", sans-serif;
  --shadow: 0 0 10px 4px var(--border);
  --shadow2: 0 0 4px 2px var(--border);
}

/* default box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* remove default margin */
body,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* html and body
----------------------- */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  background-color: #ffffff;
  color: var(--color-text);
  font-family: var(--font-text), -apple-system, blinkmacsystemfont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "helvetica neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* regions
----------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

template,
[hidden] {
  display: none;
}

/* media
----------------------- */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
picture,
svg {
  max-width: 100% !important;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border: 0;
}

figcaption {
  padding: 4px;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  text-align: center;
}

.align-left,
img.align-left,
figure.align-left {
  margin: 0 1rem 1rem 0;
}

.align-right,
img.align-right,
figure.align-right {
  margin: 0 0 1rem 1rem;
}

.align-center,
img.align-center,
figure.align-center {
  display: block;
  clear: both;
  margin: 1rem auto;
}

figure.align-center {
  display: table;
}

figure.align-center img {
  display: block;
  clear: both;
  margin: 0 auto;
}

/* typography
----------------------- */
/* typography -> headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  margin: 0;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

h5, h6 {
  font-size: 1.1rem;
}

/* typography -> paragraph */
p {
  margin: 0 0 1.2rem 0;
}

/* typography -> links */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  color: var(--primary);
  background-color: transparent;
  text-decoration: none;
  transition: color 0.4s ease;
}

a:active,
a:hover,
a:focus {
  background-color: transparent;
  text-decoration: none;
  outline: 0;
}

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

a:active,
li a.active {
  color: var(--secondary);
}

/* typography -> abbreviation */
acronym[title], abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

abbr {
  cursor: help;
}

acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

/* typography -> text styling */
b,
strong {
  font-weight: bolder;
  color: var(--bold-color);
}

em,
dfn,
cite {
  font-style: italic;
}

mark,
ins {
  padding: 2px 6px;
  background: var(--border);
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

/* typography-> code tags */
code, kbd, pre, samp {
  background: var(--border);
  color: var(--color-heading);
  font-family: monospace, monospace;
  font-size: 1rem;
}

code {
  padding: 0 0.5rem;
}

kbd,
samp {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
}

pre {
  overflow: auto;
  margin: 1rem 0;
  padding: 1rem;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
}

blockquote {
  box-shadow: var(--shadow);
}

/* table
----------------------- */
th {
  background: var(--light);
  color: var(--color-heading);
  border: 1px solid var(--border);
}

th a {
  color: var(--color-heading);
}

td {
  border: 1px solid var(--border);
}

/* form
----------------------- */
form {
  margin-bottom: 1rem;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

.button {
  display: inline-block;
}

.button,
button,
[type=button],
[type=reset],
[type=submit] {
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 7px 10px;
  line-height: 1.7;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

input {
  line-height: normal;
}

input,
textarea {
  max-width: 100%;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
textarea {
  padding: 10px;
  outline: 0;
  border: 0;
  box-shadow: 0 0 4px 1px var(--border);
  transition: all 0.3s linear;
}

textarea {
  width: 100%;
  overflow: auto;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus {
  outline: 0;
  box-shadow: 0 0 4px 1px var(--primary);
}

input[type=checkbox],
input[type=radio] {
  margin-right: 6px;
  padding: 0;
  padding: 0;
  box-sizing: border-box;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

[type=file] {
  cursor: pointer;
}

fieldset {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid var(--border);
}

fieldset > :last-child {
  margin-bottom: 0;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 6px;
  cursor: pointer;
}

label[for] {
  cursor: pointer;
}

.form-item {
  margin-bottom: 1rem;
}

.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: red;
}

.form-item label {
  display: block;
}

label.option {
  display: inline;
  font-weight: normal;
}

::-webkit-input-placeholder {
  color: var(--border);
}

:-moz-placeholder {
  color: var(--border);
}

::-moz-placeholder {
  color: var(--border);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--border);
}

.field--name-body input[type=text],
.field--name-body input[type=email],
.field--name-body input[type=url],
.field--name-body input[type=password],
.field--name-body input[type=search],
.field--name-body textarea {
  display: block;
  margin-bottom: 0.8rem;
}

/* button */
.button, button, [type=button], [type=reset], [type=submit] {
  background-color: var(--light);
  color: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.button:hover, button:hover, [type=button]:hover, [type=reset]:hover, [type=submit]:hover {
  background-color: var(--dark);
  color: #ffffff;
  border: 2px solid var(--dark);
}

form .description {
  font-size: 0.9rem;
  color: var(--dark);
}

/* common html elements
---------------------------------------- */
hr {
  background-color: var(--border);
  clear: both;
  width: 100%;
  max-width: 100%;
  height: 2px;
  border: 0;
  box-sizing: content-box;
  overflow: visible;
}

address {
  margin: 0 0 1rem 0;
  font-style: italic;
}

/* definition lists */
dt {
  font-weight: 700;
}

dd {
  margin: 0 0 1.2rem 0;
}

blockquote {
  position: relative;
  background-color: var(--light);
  margin: 1rem 0;
  padding: 1rem;
}

blockquote > :last-child {
  margin-bottom: 0;
}

/* list
---------------------------------------- */
ul,
ol {
  margin: 0;
  padding: 0 0 0.25rem 1rem;
}

[dir=rtl] ul,
[dir=rtl] ol {
  padding: 0 1rem 0.25rem 0;
}

ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25rem 1rem;
}

[dir=rtl] ol ol,
[dir=rtl] ul ul {
  padding: 0 1rem 0.25rem 0;
}

ul {
  list-style: disc;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

[dir=rtl] ul,
[dir=rtl] ol {
  padding: 0 1rem 0.25rem 0;
}

li {
  padding: 4px 0;
}

/* table
---------------------------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  margin: 0;
  padding: 5px;
  text-align: left;
}

td {
  padding: 5px;
}

/* drupal image field */
.feed-icon {
  display: block;
}

details {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
}

summary {
  background-color: #ffffff;
  color: var(--text-color);
  padding: 0.5rem;
  cursor: pointer;
}

/* roboto-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto3.woff2") format("woff2");
}
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto.woff2") format("woff2");
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto7.woff2") format("woff2");
}
/**
 * @file
 * Visual styles for fields.
 */
[dir] .field:not(:last-child) {
  margin-bottom: 1.5rem;
}

.field__label,
.field-label {
  font-weight: bold;
}

.field--label-inline .field__label,
.field--label-inline .field-label,
.field--label-inline .field__items {
  float: left; /* LTR */
}

.field--label-inline .field__label,
.field--label-inline .field-label,
.field--label-inline > .field__item,
.field--label-inline .field__items {
  padding-right: 0.5rem;
}

[dir=rtl] .field--label-inline .field__label,
[dir=rtl] .field--label-inline .field-label,
[dir=rtl] .field--label-inline .field__items {
  padding-right: 0;
  padding-left: 0.5rem;
}

.field--label-inline .field__label::after,
.field--label-inline .field-label::after {
  content: ":";
}

/*!
 *  xara icon font. Generated by Iconly: https://iconly.io/
 */
@font-face {
  font-display: auto;
  font-family: "xara";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/xara.woff2") format("woff2");
}
[class=icon], [class^=icon-], [class*=" icon-"] {
  display: inline-block;
  font-family: "xara" !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.icon-close:before {
  content: "\e000";
}

.icon-search:before {
  content: "\e001";
}

.icon-user:before {
  content: "\e002";
}

.icon-calendar:before {
  content: "\e003";
}

.icon-twitter:before {
  content: "\e004";
}

.icon-facebook:before {
  content: "\e005";
}

.icon-github:before {
  content: "\e006";
}

.icon-linkedin:before {
  content: "\e007";
}

.icon-comments:before {
  content: "\e008";
}

.icon-file:before {
  content: "\e009";
}

.icon-youtube:before {
  content: "\e00a";
}

.icon-instagram:before {
  content: "\e00b";
}

.icon-vk:before {
  content: "\e00c";
}

.icon-whatsapp:before {
  content: "\e00d";
}

.icon-vimeo:before {
  content: "\e00e";
}

.icon-hashtag:before {
  content: "\e00f";
}

.icon-telegram:before {
  content: "\e010";
}

.icon-share:before {
  content: "\e011";
}

.icon-mail:before {
  content: "\e012";
}

.icon-map:before {
  content: "\e013";
}

.icon-phone:before {
  content: "\e014";
}

.icon-arrow-up:before {
  content: "\e015";
}

.icon-horn:before {
  content: "\e016";
}

.icon-bell:before {
  content: "\e017";
}

.icon-info:before {
  content: "\e018";
}

.icon-comment:before {
  content: "\e019";
}

.icon-angle-left:before {
  content: "\e01a";
}

.icon-angle-right:before {
  content: "\e01b";
}

.icon-arrow-right:before {
  content: "\e01c";
}

.icon-arrow-left:before {
  content: "\e01d";
}

.icon-quote:before {
  content: "\e01e";
}

.icon-clock:before {
  content: "\e01f";
}

.icon-alert-circle:before {
  content: "\e020";
}

.icon-alert:before {
  content: "\e021";
}

.icon-check:before {
  content: "\e022";
}

.icon-comment-add:before {
  content: "\e024";
}

.icon-plus:before {
  content: "\e023";
}

.icon-minus:before {
  content: "\e025";
}

/*
* Layout
*/
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Layout -> Main wrapper (Main + Sidebar) */
.main-wrapper {
  position: relative;
  display: block;
  padding: 2rem 0;
}

.main-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

#main {
  order: 1;
}

#sidebar-left {
  order: 2;
  padding: 0;
  padding: 1rem 0 0 0;
}

#sidebar-right {
  order: 3;
  padding: 0;
  padding: 1rem 0 0 0;
}

/* sidebar + main */
.no-sidebar #main,
.sidebar-left #main,
.sidebar-right #main,
.two-sidebar #main {
  flex: 1 1 100%;
  width: 100%;
  margin: 0 0 2rem 0;
}

.no-sidebar #main {
  margin: 0;
}

#front-main {
  flex: 1 1 100%;
  width: 100%;
  margin: 0;
}

/* Common for all blocks */
.block,
.block-title,
.block-content {
  position: relative;
}

.block-title {
  margin-bottom: 0.8rem;
}

.block-title::before,
.block-title::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 2px;
}

.block-title::before {
  left: 0;
  width: 10px;
  background-color: var(--secondary);
}

.block-title::after {
  left: 16px;
  width: 30px;
  background-color: var(--primary);
}

/* Highlighted Block Region */
.highlighted {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.region-highlighted {
  display: flex;
  flex-direction: column;
}

.highlighted .block {
  position: relative;
  margin: 0;
  padding: 1rem 0;
}

.highlighted .block p:last-of-type {
  margin: 0;
}

/* content top */
.region-content-top,
.region-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.region-content-top input[type=email],
.region-content-top input[type=password],
.region-content-top input[type=search],
.region-content-top input[type=tel],
.region-content-top input[type=text],
.region-content-top input[type=url],
.region-content-bottom input[type=email],
.region-content-bottom input[type=password],
.region-content-bottom input[type=search],
.region-content-bottom input[type=tel],
.region-content-bottom input[type=text],
.region-content-bottom input[type=url] {
  width: 100%;
}

/* Header -> Header top */
.header-top {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1rem 0;
}

.header-top-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-top-block p:last-of-type {
  margin: 0;
}

/* Header -> Header main */
.header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header -> Site branding */
.site-branding {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 1rem;
}

.site-logo {
  padding-right: 5px;
}

.site-name-slogan {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-name,
.site-slogan {
  line-height: 1.1;
}

/* Header -> header right */
.header-right {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Header main menu */
.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
}

.mobile-menu-icon span {
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  transform-origin: left;
  transition: all 0.6s ease;
}

.mobile-menu-icon span:nth-child(2) {
  background-color: var(--primary);
}

.menu-icon-active span:first-child {
  transform: rotate(45deg);
}

.menu-icon-active span:last-child {
  transform: rotate(-45deg);
}

.menu-icon-active span:nth-child(2) {
  display: none;
}

.close-mobile-menu {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-content: center;
  background-color: #28282f;
  color: #ffffff;
  width: 36px;
  height: 36px;
  z-index: 120;
}

.primary-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--primary);
  padding: 1rem;
  transform: translateX(-100%);
  transition: all 0.3s linear;
  z-index: 100;
}

.active-menu {
  transform: translateX(0);
  box-shadow: 4px 0 16px #111111;
}

.region-primary-menu .menu,
.region-primary-menu .submenu {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.region-primary-menu .menu {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.region-primary-menu .menu > li {
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.region-primary-menu .menu > li:hover,
.region-primary-menu .menu > li:hover > a {
  color: var(--primary);
}

.region-primary-menu .menu a {
  display: block;
  color: #ffffff;
  padding: 0.6rem 0;
}

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

.menu-item-has-children::after {
  position: absolute;
  content: "+";
  color: var(--dark);
  right: 0;
  top: 0.5rem;
}

.region-primary-menu .submenu {
  font-size: 0.9rem;
  padding: 0 0 0 2rem;
}

.region-primary-menu .submenu li {
  border-bottom: 1px solid var(--border);
}

.region-primary-menu .submenu li:last-child {
  border: 0;
}

.region-primary-menu .submenu li:first-child {
  border-top: 1px solid var(--border);
}

/*slide up */
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* Header -> header search form */
.full-page-search {
  position: relative;
  margin: 0;
  padding: 0;
}

.search-icon {
  position: relative;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
}

.search-icon i {
  font-size: 24px;
  line-height: 24px;
}

.search-box {
  position: fixed;
  background-color: var(--light);
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 50px 0;
  z-index: 50;
  transform: translate(0, -100%);
  transition: transform 0.5s;
}

.search-box.open {
  transform: translate(0, 0);
}

.search-box-content {
  position: relative;
  z-index: 60;
  text-align: center;
}

.header-search-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.search-box-content .block {
  width: 100%;
  margin: 0;
}

.search-box-content .block-title,
.search-box-content form label {
  display: none;
  color: #000000;
}

.search-box-content input[type=search] {
  width: 100%;
  margin: 2rem 0;
  padding: 0 0 6px 0;
  font-size: 1.4rem;
  background: url("../images/icons/search.svg") top right no-repeat;
  background-size: contain;
  border: 0;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  outline: 0;
}

.search-box-content input[type=submit] {
  display: none;
}

.search-box-content .block-title::before,
.search-box-content .block-title::after {
  content: none;
}

.search-box-content input[type=search],
.search-box-content input[type=search]:focus {
  box-shadow: none;
}

/* Header -> Page Header-> breadcrumb */
.breadcrumb {
  position: relative;
  width: 100%;
}

.breadcrumb-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-item {
  padding: 0;
}

.breadcrumb-item span {
  font-size: 14px;
  margin: 0 5px;
}

.header-top {
  background-color: var(--border);
}

.header-top a {
  color: var(--color-text);
  border-bottom: 1px dashed var(--primary);
}

.header-top a:hover,
.header-top i {
  color: var(--primary);
}

.header-main {
  position: relative;
  background-color: var(--border);
  padding: 1rem 0;
  z-index: 5;
}

.site-name,
.site-name a {
  color: var(--color-heading);
  font-weight: 700;
}

.site-slogan {
  font-size: 0.9rem;
}

.menu-wrap .menu li > a {
  padding: 6px 0;
  color: var(--color-heading);
}

.menu-wrap .menu li > span {
  display: block;
  color: var(--color-heading);
  padding: 6px 0;
}

.menu-wrap {
  display: flex;
  height: 100%;
  flex-direction: column;
}

/* Header -> Sliding sidebar */
.sliding-sidebar-icon {
  border-top: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}

.sliding-sidebar-icon span {
  height: 2px;
  width: 70%;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.sliding-sidebar-icon:hover span {
  width: 100%;
}

.sliding-sidebar-container {
  background: var(--light);
  box-shadow: -2px 0 14px var(--dark);
}

.sliding-sidebar-container .block-title {
  text-align: center;
}

.sliding-sidebar-container .block-title::before,
.sliding-sidebar-container .block-title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: unset;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
}

.sliding-sidebar-container .block-title::before {
  transform: translateX(-34px);
}

.sliding-sidebar-container .block-title::after {
  transform: translateX(10px);
}

/* Page header */
.page-header {
  position: relative;
  background-color: var(--light);
  margin: 0;
  padding: 3rem 0;
  overflow: hidden;
  width: 100%;
}

.page-header::before {
  position: absolute;
  content: "";
  background-color: var(--border);
  width: 100%;
  height: 100%;
  bottom: 2rem;
}

.region-page-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header a {
  color: var(--dark);
}

.slider-page .page-header {
  background-color: var(--border);
  padding: 3rem 0;
  -webkit-clip-path: none;
          clip-path: none;
}

.slider-page .page-header::before {
  content: none;
  -webkit-clip-path: none;
          clip-path: none;
}

/* sticky header */
.sticky-header {
  position: fixed;
  background-color: var(--light);
  left: 0;
  right: 0;
  top: 0;
  padding: 0.5rem 0;
  z-index: 100;
}

/* Homepage -> Slider */
.slider {
  position: relative;
  background-color: var(--border);
  height: 100vh;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}

/* Slider column */
.slider-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.slider-half {
  flex: 0 0 50%;
  max-width: 100%;
}

/* Layer slider */
.slider-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: calc(100vh - 2rem);
  overflow: hidden;
}

/* slider content */
.slider-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.slider em {
  font-style: normal;
}

.slider h1,
.slider h2,
.slider h3,
.slider h4,
.slider h5 {
  line-height: 1.2;
}

.slider p {
  margin-bottom: 0;
}

/* Slider Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.layer1,
.layer2,
.layer3,
.layer4,
.layer5,
.layer6 {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all ease 0.8s;
}

.tns-slide-active .layer1,
.tns-slide-active .layer2,
.tns-slide-active .layer3,
.tns-slide-active .layer4,
.tns-slide-active .layer5,
.tns-slide-active .layer6 {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translate3d(0, 0, 0);
}

.layer1,
.layer4 {
  transform: translate3d(100%, 0, 0);
}

.layer2,
.layer5 {
  transform: translate3d(0, -100%, 0);
}

.layer3,
.layer6 {
  transform: translate3d(0, 100%, 0);
}

.tns-slide-active .layer1 {
  transition-delay: 0.8s;
}

.tns-slide-active .layer2 {
  transition-delay: 2s;
}

.tns-slide-active .layer3 {
  transition-delay: 3s;
}

.tns-slide-active .layer4 {
  transition-delay: 4s;
}

.tns-slide-active .layer5 {
  transition-delay: 5s;
}

.tns-slide-active .layer6 {
  transition-delay: 6s;
}

/* tiny slider */
.tns-slider,
.tns-carousel {
  margin: 0;
  padding: 0;
}

/* tiny slider -> dot navigation */
.tns-nav,
.tns-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 1rem;
}

.tns-nav button {
  background-color: #222222;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
}

.tns-nav .tns-nav-active {
  background-color: var(--primary);
}

/* tiny slider -> button navigation */
.tns-controls button {
  background-color: transparent;
  color: var(--dark);
  padding: 4px 1rem;
  border: 3px solid var(--dark);
  border-radius: 2rem;
}

.tns-controls button:hover {
  background-color: var(--light);
  color: var(--dark);
}

/* Responsive */
@media (min-width: 992px) {
  .slider-container,
  .slider-item {
    flex-direction: row;
  }
  .slider-half {
    max-width: 50%;
  }
  .slider h1 {
    font-size: 2rem;
  }
  .slider h2 {
    font-size: 1.8rem;
  }
  .slider h3 {
    font-size: 1.6rem;
  }
  .slider h4 {
    font-size: 1.4rem;
  }
  .slider h5 {
    font-size: 1.2rem;
  }
  .slider em {
    color: var(--primary);
  }
  .slider p {
    font-size: 20px;
  }
}
.slider .button:hover {
  background-color: #222222;
}

/* Node layout */
.node-view-mode-teaser {
  margin-bottom: 3rem;
}

/* Submitted header */
.node-header {
  background-color: var(--light);
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.node-submitted-details i {
  color: var(--primary);
}

.node-author {
  display: flex;
  align-items: center;
}

.author-picture {
  margin-right: 0.5rem;
}

/* Node links */
.node-content .links {
  background-color: var(--light);
  justify-content: space-between;
}

.node-content ul.links.inline {
  padding: 0.5rem;
}

/* Search result page
--------------------------------------*/
.page-content input[type=search] {
  width: 80%;
}

ol.search-results {
  margin: 1em 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

ol.search-results li {
  margin: 0 0 1em 0;
  padding: 1rem;
  background: var(--light);
}

.search-advanced summary {
  margin: 10px 0;
  cursor: pointer;
}

.search-advanced .form-details-wrapper {
  padding: 0.5em 1.4em;
  border: 1px solid var(--border);
}

.search-advanced .form-wrapper {
  padding: 0.5em 1.4em;
  border: 1px solid var(--border);
}

/* Sidebar
--------------------------------*/
.sidebar {
  position: relative;
  width: 100%;
  margin: 0;
}

.region-sidebar-first,
.region-sidebar-second {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar .block {
  background-color: var(--light);
  padding: 1rem;
  box-shadow: var(--shadow2);
}

.sidebar ul,
.sidebar ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

/* Sidebr -> Form */
.sidebar input[type=text],
.sidebar input[type=email],
.sidebar input[type=url],
.sidebar input[type=password],
.sidebar input[type=search],
.sidebar textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--border);
}

/*
 * Sliding sidebar
 */
.sliding-sidebar-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 28px;
  cursor: pointer;
}

.sliding-sidebar {
  position: relative;
  visibility: hidden;
  z-index: 110;
  transition: visibility 0s 0.4s;
}

.sliding-sidebar.animated-panel-is-visible {
  visibility: visible;
  transition: visibility 0s 0s;
}

.sliding-sidebar-container {
  position: fixed;
  top: 0;
  width: 90%;
  max-width: 360px;
  height: 100%;
  padding: 40px 1rem 1rem 1rem;
  overflow-x: auto;
  transition: transform 0.4s 0s;
}

.animated-panel-from-right .sliding-sidebar-container {
  right: 0;
  transform: translate(100%, 0);
}

.animated-panel-from-left .sliding-sidebar-container {
  left: 0;
  transform: translate3d(-100%, 0, 0);
}

.animated-panel-is-visible .sliding-sidebar-container {
  transition-delay: 0s;
  transform: translate(0, 0);
}

.close-sliding-sidebar {
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: var(--primary);
  color: var(--color-heading);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  line-height: 1;
  border-radius: 50%;
  pointer-events: auto;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 120;
  transition: all 0.4s ease;
}

.close-sliding-sidebar:hover {
  background-color: var(--dark);
  color: #ffffff;
}

.sliding-sidebar-container .block {
  padding: 0 0 1.6em 0;
}

.sliding-sidebar-container h2 {
  font-size: 1.6em;
}

/* Comments
--------------------------------------*/
#comments {
  position: relative;
  margin: 0;
  border-top: 1px solid var(--border);
}

#comments i {
  color: var(--primary);
}

.comments-title i,
.add-comment-title i {
  font-size: 1em;
}

/* Comment -> comment form */
.comment-form-wrap {
  position: relative;
  margin: 2rem 0 1rem 0;
}

.add-comment-title {
  margin: 0;
}

.comment-form label {
  display: block;
}

.comments-title::before,
.comment-form-wrap .add-comment-title::before {
  font-family: "xara";
  color: var(--primary);
  padding-right: 6px;
}

.comments-title::before {
  content: "\e008";
}

.comment-form-wrap .add-comment-title::before {
  content: "\e024";
}

/* Comments -> single comment */
.comment {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--light);
  box-shadow: var(--shadow2);
}

.comment-header {
  position: relative;
  background-color: var(--border);
  display: flex;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 0;
  align-items: center;
}

.comment-user-picture {
  flex: 0 0 100px;
  position: relative;
  text-align: center;
  align-self: center;
}

.comment-user-picture img {
  max-width: 100px;
  height: auto;
}

.comment-user-picture .image-field {
  margin: 0;
}

.comment-meta {
  padding: 0 1rem;
}

.comment-title,
.comment-title a {
  color: var(--color-heading);
  font-size: 1.2rem;
  margin: 0.1rem 0;
}

.comment-body {
  position: relative;
  width: 100%;
  flex: 1 1;
}

#comments .indented {
  margin-left: 3rem;
}

.comment-body .links {
  display: flex;
  gap: 1rem;
}

.comment-body .links a {
  padding: 4px 12px;
  border: 2px solid var(--border);
  border-radius: 4px;
}

.comment-body .links a:hover {
  background-color: #ffffff;
}

.comment-reply a,
.comment-delete a,
.comment-edit a {
  padding: 4px 12px;
  background: #ffffff;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}

.comment-reply a:hover,
.comment-delete a:hover,
.comment-edit a:hover {
  background: var(--primary);
  color: #ffffff;
}

/**
 * footer
 */
/* Footer */
.footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer ul {
  list-style: none;
  padding: 0;
}

/* Footer -> Footer Top */
.footer-top-container {
  position: relative;
  padding: 1rem 0;
}

/* Footer -> 4 Column blocks */
.footer-blocks-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 2rem;
}

.footer-block {
  flex: 1 1 250px;
}

/* Footer -> Footer Bottom */
.footer-bottom-blocks-container {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 2rem;
}

.footer-bottom-block {
  flex: 1;
}

.footer-bottom-container {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 2rem;
}

.footer-bottom-container p:last-child {
  margin: 0;
}

.footer-bottom-last-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom-last-menu li {
  display: inline-block;
  padding-left: 1rem;
}

.site-footer {
  background-color: var(--light);
  padding-top: 2rem;
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  content: "";
  background-color: var(--border);
  width: 100%;
  height: 100%;
  top: 2rem;
}

.footer .block-title {
  font-weight: 300;
  font-size: 1.4rem;
}

.footer-bottom-container {
  border-top: 1px solid var(--primary);
}

.footer li {
  border-bottom: 1px solid var(--light);
}

.footer a {
  color: var(--color-text);
}

.footer a:hover {
  color: var(--primary);
}

.region-copyright p:last-of-type {
  margin: 0;
}

/* Admin Toolbar */
button.toolbar-item,
button.toolbar-icon {
  background: none;
}

/* Drupal system message */
.messages-list {
  display: flex;
  flex-direction: column;
}

.message,
.message-success,
.message-info,
.message-error,
.message-warning,
.message-announcement,
.message-notice,
.message-note {
  position: relative;
  margin: 0.5rem 0;
  padding: 14px 14px 14px 60px;
  color: #ffffff;
}

.message a,
.message-success a,
.message-info a,
.message-error a,
.message-warning a,
.message-announcement a,
.message-notice a,
.message-note a {
  color: #ffffff;
  text-decoration: underline;
}

.message p:last-of-type,
.message-success p:last-of-type,
.message-info p:last-of-type,
.message-error p:last-of-type,
.message-warning p:last-of-type,
.message-announcement p:last-of-type,
.message-notice p:last-of-type,
.message-note p:last-of-type {
  margin: 0;
}

.message em,
.message-success em,
.message-info em,
.message-error em,
.message-warning em,
.message-announcement em,
.message-notice em,
.message-note em {
  font-style: italic;
  border-bottom: 1px dotted #ffffff;
}

.message-status,
.message-success {
  background: #89ad32;
}

.message-status::before,
.message-success::before {
  content: "\e022";
  background: #759625;
}

.message-error {
  background: #c94d1c;
}

.message-error::before {
  content: "\e020";
  background-color: #b3461b;
}

.message-warning {
  background: #cd5a0a;
}

.message-warning::before {
  content: "\e021";
  background-color: #a44707;
}

.message-info {
  background-color: #5a82a1;
}

.message-info::before {
  content: "\e018";
  background-color: #3e6584;
}

.message-announcement {
  background-color: #46c280;
}

.message-announcement::before {
  content: "\e016";
  background-color: #34a268;
}

.message-notice {
  background-color: #afa82e;
}

.message-notice::before {
  content: "\e017";
  background-color: #9b941b;
}

.message-note {
  background-color: #d3a72a;
}

.message-note::before {
  content: "\e009";
  background-color: #c99400;
}

.message::before,
.message-status::before,
.message-success::before,
.message-error::before,
.message-warning::before,
.message-info::before,
.message-announcement::before,
.message-notice::before,
.message-note::before {
  font-family: "xara";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.8rem;
  width: 50px;
  height: 100%;
  text-align: center;
}

/* Main -> Admin Tabs */
.page-tabs {
  margin: 0 0 0.6rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  border-bottom: 2px solid var(--dark);
}

.page-tabs li {
  padding: 0;
}

.page-tabs li a {
  display: block;
  background-color: var(--dark);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-right: 2px solid var(--secondary);
  transition: all 0.4s ease;
}

.page-tabs li:last-child a {
  border-right: 0;
}

.page-tabs li a:hover {
  background-color: var(--primary);
}

.page-tabs .active-page-tab a {
  background-color: var(--secondary);
}

/* Node submitted details */
.node-submitted-details {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.node-submitted-details {
  flex: 1 1 auto;
}

/* Node tags */
.field-name-field-tags .field-items {
  position: relative;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.field-name-field-tags .field-item::before {
  content: "#";
}

/* Inline Links */
ul.inline,
ul.links.inline {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  list-style-type: none;
}

/* Pager
------------------------*/
.pager {
  width: 100%;
  margin-top: 1rem;
}

.pager-items {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pager-item,
.pager-item a {
  display: grid;
  place-content: center;
  height: 44px;
  min-width: 44px;
}

.pager-item {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}

.pager-item:hover {
  background-color: var(--secondary);
}

.pager-item a {
  color: #ffffff;
}

.pager-item-active {
  background-color: var(--dark);
}

.pager-item-first,
.pager-item-last {
  padding: 0 4px;
}

/* pager full */
/* Close buttons */
.close {
  position: relative;
  background-color: var(--primary);
  color: var(--light);
  border: 2px solid var(--light);
  border-radius: 50%;
  pointer-events: auto;
  flex-grow: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  line-height: 1;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* vertical Tabs */
.vertical-tabs__panes {
  padding: 1rem;
}

/* components -> Scroll To Top. */
.scrolltop {
  position: fixed;
  display: none;
  background-color: var(--dark);
  color: #ffffff;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 20;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease;
}

.scrolltop:hover {
  background-color: var(--color-heading);
}

/* Feed text */
.feed-icon {
  display: block;
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url(../images/icons/rss.svg) no-repeat;
}

/* Components -> Social icons */
.social-icons {
  position: relative;
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.social-icons li a {
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--primary);
  border-radius: 6px;
  transition: all 0.4s ease;
}

.social-icons li a:hover {
  background-color: var(--light);
  color: var(--secondary);
}

.region-content-home-top .block:nth-child(even) {
  background-color: var(--light);
}

.homepage-content .block {
  padding: 4rem 0;
}

.homepage-content .block-title {
  text-align: center;
}

.homepage-content .block-title::before {
  left: calc(50% - 23px);
}

.homepage-content .block-title::after {
  left: calc(50% - 7px);
}

/* components -> Servies */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  width: 100%;
  margin: 0;
  padding: 0;
  grid-gap: 1rem;
  gap: 1rem;
}

.service {
  position: relative;
  flex: 1 0 250px;
  background-color: #ffffff;
  padding: 2rem 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 0;
}

.service::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.5s ease;
}

.service:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 1rem;
  transition: transform 0.3s linear;
}

.service:hover .service-icon {
  transform: translateY(-1rem);
}

/* Pricing Table */
.pricing {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-item {
  border-top: 2px solid var(--primary);
  background-color: #ffffff;
  flex: 1 0 300px;
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 10px;
}

.pricing-item h4 {
  color: var(--secondary);
}

.pricing-item h4,
.pricing-item sup,
.pricing-item sub {
  font-weight: 300;
}

.pricing ul {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem 0;
}

.pricing li {
  border-bottom: 1px solid var(--border);
}

/* Projects */
.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.project {
  flex: 1 0 300px;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.project img {
  border-radius: 6px;
  transition: transform 0.5s linear;
}

.project img:hover {
  transform: scale(1.6);
}

/* Page Loader
-------------------------------------------- */
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  overflow: hidden;
}

/* Components -> Share node
-------------------------------------------- */
.share-node {
  position: relative;
  padding: 1rem 0;
}

ul.share-icons {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-icons li {
  display: inline-block;
  margin-right: 10px;
}

.share-icons li:last-child {
  margin-right: 0;
}

.share-icons li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 3px 2px var(--border);
  transition: all 0.3s ease;
}

.share-icons li a:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Cookies Popup message
-------------------------------------------- */
.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 150;
  background: var(--dark);
  color: #ffffff;
  padding: 10px 0;
  margin: 0 !important;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
}

.cookiealert p {
  margin: 0;
}

.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

/* Mobile and desktop display
--------------------------------- */
.view-in-mobile {
  display: block;
}

.view-in-desktop {
  display: none;
}

/* Color and background
--------------------------------- */
.disabled {
  opacity: 0.3;
}

.primary,
.color-primary {
  color: var(--primary);
}

.secondary,
.color-secondary {
  color: var(--secondary);
}

.dark,
.color-dark {
  color: var(--dark);
}

.light,
.color-light {
  color: var(--light);
}

.white,
.color-white {
  color: #ffffff;
}

.color-black {
  color: #000000;
}

.color-info {
  color: #008bda;
}

.color-success {
  color: #64a43d;
}

.color-warning {
  color: #d98b17;
}

.color-danger {
  color: #ea2957;
}

/* Background */
.bg-theme-color,
.bg-primary {
  background-color: var(--primary);
}

.bg-secondary,
.bg-theme-color-two {
  background-color: var(--secondary);
}

.bg-dark {
  background-color: var(--dark);
}

.bg-light,
.featured {
  background-color: var(--light);
}

.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #ffffff;
}

/* Content and Text Alignment
--------------------------------- */
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.center {
  display: block;
  margin: 0 auto;
}

/* margin, padding
--------------------------------- */
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

/* Heading
--------------------------------- */
.heading-line {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}

.heading-line span {
  flex: 1 1 1px;
  background-color: var(--border);
  height: 2px;
}

/* Text styles
--------------------------------- */
.underline {
  display: inline-block;
  border-bottom: 2px solid var(--primary);
}

.text-info {
  background-color: #eef4fb;
  color: #114785;
  padding: 2px 6px;
}

.text-success {
  background-color: #eeffeb;
  color: #159347;
  padding: 2px 6px;
}

.text-warning {
  background-color: #fff7e7;
  color: #9e540f;
  padding: 2px 6px;
}

.text-danger {
  background-color: #ffeeee;
  color: #920f0f;
  padding: 2px 6px;
}

/* Inline content
--------------------------------- */
.inline {
  display: inline-block;
}

.inline:not(:last-child) {
  padding-right: 1rem;
}

/* Direction
--------------------------------- */
.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

/* Font Size
--------------------------------- */
.font-small {
  font-size: 0.75rem;
}

.font-medium {
  font-size: 1.25rem;
}

.font-large {
  font-size: 1.5rem;
}

.font-2x {
  font-size: 2rem;
}

.font-3x {
  font-size: 2.5rem;
}

.font-4x {
  font-size: 3rem;
}

.font-5x {
  font-size: 4rem;
}

.font-6x {
  font-size: 5rem;
}

.font-7x {
  font-size: 6rem;
}

.font-8x {
  font-size: 7rem;
}

/* Font Icon Size
--------------------------------- */
.size-xs {
  font-size: 0.5em;
}

.size-small {
  font-size: 0.75em;
}

.size-medium {
  font-size: 1.25em;
}

.size-large {
  font-size: 1.5em;
}

.size-2x {
  font-size: 2em;
}

.size-3x {
  font-size: 3em;
}

.size-4x {
  font-size: 4em;
}

.size-5x {
  font-size: 5em;
}

.size-6x {
  font-size: 6em;
}

.size-7x {
  font-size: 7em;
}

.size-8x {
  font-size: 8em;
}

.size-9x {
  font-size: 9em;
}

.size-10x {
  font-size: 10em;
}

/* image icons size
--------------------------------- */
.icon-s {
  max-height: 1rem;
}

.icon-m {
  max-height: 1.5rem;
}

.icon-l {
  max-height: 2rem;
}

.icon-xl {
  max-height: 3rem;
}

.icon-x2 {
  max-height: 4rem;
}

.icon-x3 {
  max-height: 5rem;
}

.icon-x4 {
  max-height: 6rem;
}

.icon-x5 {
  max-height: 7rem;
}

.icon-x6 {
  max-height: 8rem;
}

.icon-x7 {
  max-height: 9rem;
}

.icon-x8 {
  max-height: 10rem;
}

/* Content width
--------------------------------- */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  clear: both;
  display: block;
}

/* Empty width and height
--------------------------------- */
.w20px {
  display: inline-block;
  width: 20px;
}

.w30px {
  display: inline-block;
  width: 30px;
}

.w40px {
  display: inline-block;
  width: 40px;
}

.w50px {
  display: inline-block;
  width: 50px;
}

.w70px {
  display: inline-block;
  width: 70px;
}

.w100px {
  display: inline-block;
  width: 100px;
}

.empty,
.spacer,
.spacer-small,
.spacer-x2,
.spacer-x3 {
  width: 100%;
  min-height: 1px;
  display: flex;
  flex-direction: column;
}

.empty,
.spacer {
  padding: 1rem 0;
}

.spacer-small {
  padding: 0.5rem 0;
}

.spacer-x2 {
  padding: 2rem 0;
}

.spacer-x3 {
  padding: 3rem 0;
}

/* section
--------------------------------- */
.section,
.section-small,
.section-large {
  display: block;
  width: 100%;
}

.section {
  padding: 2rem 0;
}

.section-small {
  padding: 1rem 0;
}

.section-large {
  padding: 3rem 0;
}

/* Responsive Columns
--------------------------------- */
.flex,
.grid,
.items,
.columns,
.grid-container,
.flex-container {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.flex {
  display: flex;
}

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

.grid {
  display: grid;
}

.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.items:not(:last-child) {
  margin-bottom: 1rem;
}

.item img {
  display: block;
}

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

/* Create Equal width columns with no gap */
.column {
  flex: 1 1 250px;
  margin: 0;
  padding: 0;
}

/* flex-items width */
.w10,
.w20,
.w30,
.w40,
.w50,
.w60,
.w70,
.w80,
.w90 {
  flex: 1 1 100%;
}

/* Flex and grid properties
--------------------------------- */
.space-between {
  justify-content: space-between;
}

.v-center {
  align-items: center;
}

.h-center {
  justify-content: center;
}

.vh-center {
  justify-content: center;
  align-items: center;
}

.grid-container {
  display: grid;
  grid-auto-flow: column;
}

.gap {
  gap: 1rem;
}

.gap-2x {
  gap: 2rem;
}

.gap-small {
  gap: 0.5rem;
}

.no-gap {
  gap: 0;
}

/* Flex properties */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

/* Shortcodes - Box
--------------------------------- */
.box {
  background-color: #ffffff;
  box-shadow: var(--shadow);
}

.content-box {
  padding: 1rem;
}

.box, .box-dark, .box-primary, .box-secondary {
  position: relative;
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
}

.box p:last-of-type, .box-dark p:last-of-type, .box-primary p:last-of-type, .box-secondary p:last-of-type {
  margin: 0;
}

.box-primary {
  background-color: var(--primary);
}

.box-secondary {
  background-color: var(--secondary);
}

.box-dark {
  background-color: var(--dark);
  color: #ffffff;
}

.box-title {
  background-color: var(--dark);
  color: #ffffff;
  padding: 2px 10px;
}

/* Progress Bar
--------------------------------- */
.progress {
  display: flex;
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}

.progress:not(:last-child) {
  margin-bottom: 1rem;
}

/* Tag
--------------------------------- */
.tags:not(:last-child) {
  margin-bottom: 1.2rem;
}

.tag {
  position: relative;
  display: inline-block;
  background: var(--dark);
  color: #ffffff;
  padding: 0.4em 0.8em;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.tag:not(:last-child) {
  margin-right: 1.2rem;
}

.tag::before {
  content: "#";
  color: var(--primary);
  margin-right: 6px;
}

.tag::after {
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  content: "";
  background: var(--dark);
  height: 100%;
  width: 1em;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.tag a,
a.tag {
  color: #ffffff;
}

.tag a:hover,
a.tag:hover {
  color: var(--primary);
}

/* Card
--------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.card-title {
  background-color: var(--dark);
  color: #ffffff;
  padding: 0.5rem;
}

.card-content {
  padding: 1rem;
}

.card-content p:last-of-type {
  margin: 0;
}

/* Modal
--------------------------------- */
.model-button {
  cursor: pointer;
}

.model-content {
  display: none;
}

.model-active {
  position: fixed;
  display: block;
  background: var(--light);
  padding: 1rem;
  top: 50%;
  left: 10px;
  right: 10px;
  max-height: calc(100vh - 60px);
  transform: translateY(-50%);
  box-shadow: 0 0 8px 2px var(--dark);
  z-index: 10;
  overflow: auto;
}

.model-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--dark);
  border: 2px solid var(--primary);
  color: var(--primary);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
}

/* Accordion and Toggle
--------------------------------- */
.accordion-title,
.toggle-title {
  position: relative;
  background-color: var(--border);
  padding: 0.5rem;
  cursor: pointer;
}

.active-accordion,
.active-toggle {
  background-color: var(--primary);
}

.accordion-title::after,
.toggle-title::after {
  position: absolute;
  font-family: "xara" !important;
  content: "\e023";
  right: 1rem;
}

.active-accordion::after,
.active-toggle::after {
  content: "\e025";
}

.accordion-title:not(:first-child),
.toggle-title:not(:first-child) {
  margin-top: 1rem;
}

.accordion-content,
.toggle-content {
  background-color: var(--light);
  padding: 0.5rem;
}

.accordion-content p:last-of-type,
.toggle-content p:last-of-type {
  margin: 0;
}

/* Tab
--------------------------------- */
.tabs, .v-tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
}

.tabs:not(:last-child) {
  margin-bottom: 1rem;
}

.tab-nav {
  display: flex;
  justify-content: flex-start;
  padding: 0;
}

.tab-nav li {
  display: block;
  margin-right: 2px;
  padding: 0;
}

.tab-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border);
  border-bottom-color: transparent;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
  border-radius: 4px 4px 0 0;
}

.tabs-content {
  border: 1px solid var(--border);
}

.tab-content {
  display: none;
  padding: 1rem;
}

.active-tab-content {
  display: block;
}

/* Vertical tabs */
.v-tabs {
  flex-direction: row;
}

.v-tabs .tab-nav {
  flex-direction: column;
}

.v-tabs .tab-nav a {
  border-right-color: transparent;
  border-bottom: 1px solid var(--border);
}

.v-tabs .tabs-content {
  flex-grow: 1;
  margin-left: -2px;
}

.sliding-titles {
  position: relative;
}

.sliding-titles li {
  display: none;
}

.sliding-titles li.active-title {
  display: block;
}

/* Divider
--------------------------------- */
.line,
.line-double,
.line-dash,
.line-dot {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
  height: 10px;
}

.line {
  height: 2px;
  background-color: var(--border);
}

.line-double {
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.line-dash {
  border-top: 2px dashed var(--border);
  border-bottom: 2px dashed var(--border);
}

.line-dot {
  border-top: 2px dotted var(--border);
  border-bottom: 2px dotted var(--border);
}

.divider-zigzag,
.divider-slash,
.divider-square,
.divider-curve {
  position: relative;
  display: flex;
  background-color: var(--primary);
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
}

.divider-zigzag {
  min-height: 20px;
  -webkit-mask-image: url(../images/icons/divider-zigzag.svg);
  mask-image: url(../images/icons/divider-zigzag.svg);
  -webkit-mask-size: 26px 100%;
  mask-size: 26px 100%;
}

.divider-curve {
  min-height: 23px;
  -webkit-mask-image: url(../images/icons/divider-curve.svg);
  mask-image: url(../images/icons/divider-curve.svg);
  -webkit-mask-size: 30px 100%;
  mask-size: 30px 100%;
}

.divider-slash {
  min-height: 33px;
  -webkit-mask-image: url(../images/icons/divider-slash.svg);
  mask-image: url(../images/icons/divider-slash.svg);
  -webkit-mask-size: 12px 100%;
  mask-size: 12px 100%;
}

.divider-square {
  min-height: 18px;
  -webkit-mask-image: url(../images/icons/divider-square.svg);
  mask-image: url(../images/icons/divider-square.svg);
  -webkit-mask-size: 38px 100%;
  mask-size: 38px 100%;
}

/* Banner
--------------------------------- */
.banner {
  position: relative;
  width: 100%;
  margin-bottom: 1.6rem;
}

.banner img {
  position: relative;
  display: block;
}

.banner .banner-message {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

/* banner -> Overlay banner */
.banner-overlay {
  position: relative;
  display: flex;
  flex-direction: row;
  background-color: var(--light);
  box-shadow: var(--shadow);
}

.banner-overlay-text {
  background: var(--light);
  flex: 60%;
  margin-inline-end: -10%;
  padding: 2rem 5% 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.banner-overlay-image {
  flex: 50%;
  height: 100%;
}

.banner-overlay-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Call to action
--------------------------------- */
.call-to-action {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 3rem 1rem;
  align-items: center;
  text-align: center;
}

.call-to-action p:last-child {
  margin: 0;
}

/* Animation Effects
--------------------------------- */
@keyframes animation-up-down {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}
.animation-up-down {
  animation: animation-up-down 1s linear infinite alternate;
}
@keyframes animation-left-right {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.animation-left-right {
  animation: animation-left-right 1s linear infinite alternate;
}

@keyframes animation-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.animation-zoom {
  -webkit-zoom: animation-zoom 2s linear infinite alternate;
  animation: animation-zoom 2s linear infinite alternate;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* color sceme
---------------------*/
.black {
  background-color: #000000;
  color: #ffffff;
}

.black h1,
.black h2,
.black h3,
.black h4,
.black h5 {
  color: #ffffff;
}

.black a {
  color: var(--light);
  text-decoration: underline;
}

.white {
  background-color: #ffffff;
  color: var(--color-text);
}

/* buttons
---------------------*/
.button.primary {
  background-color: var(--primary);
  color: var(--color-heading);
  border: 0;
}

.button.primary:hover {
  background-color: var(--secondary);
}

.button.secondary {
  background-color: var(--secondary);
  color: var(--color-heading);
  border: 0;
}

.button.secondary:hover {
  background-color: var(--primary);
}

.button.dark {
  background-color: var(--dark);
  color: var(--light);
  border: 0;
}

.button.dark:hover {
  background-color: var(--secondary);
}

.button.light {
  background-color: var(--light);
  color: var(--dark);
  border: 0;
}

.button.light:hover {
  background-color: var(--border);
}

.button.black {
  border: 0;
}

.button.black:hover {
  background-color: var(--secondary);
}

.button.info {
  background-color: #c8dbf1;
  color: #114785;
  border: 0;
}

.button.info:hover {
  background-color: #91b9e8;
}

.button.success {
  background-color: #d2f3df;
  color: #159347;
  border: 0;
}

.button.success:hover {
  background-color: #bbe4b4;
}

.button.warning {
  background-color: #f1e6be;
  color: #9e540f;
  border: 0;
}

.button.warning:hover {
  background-color: #efd7a7;
}

.button.danger {
  background-color: #eacdcd;
  color: #920f0f;
  border: 0;
}

.button.danger:hover {
  background-color: #eaa7a7;
}

/* box
---------------------*/
.box {
  color: var(--color-text);
}

.box.primary {
  background-color: var(--primary);
}

.box.secondary {
  background-color: var(--secondary);
}

.box.dark {
  background-color: var(--dark);
  color: var(--light);
}

.box.light {
  background-color: var(--light);
}

.box.black {
  background-color: #000000;
  color: #ffffff;
}

.box.info {
  background-color: #eef4fb;
}

.box.success {
  background-color: #eeffeb;
}

.box.warning {
  background-color: #fff7e7;
}

.box.danger {
  background-color: #ffeeee;
}

/* card
---------------------*/
.card.primary,
.card.secondary,
.card.light,
.card.white {
  color: var(--color-text);
}

.card.primary .card-title {
  background-color: var(--primary);
}

.card.secondary .card-title {
  background-color: var(--secondary);
}

.card.light .card-title {
  background-color: var(--light);
  color: var(--color-heading);
}

.card.black .card-title {
  background-color: #000000;
}

.card.black .card-content {
  background-color: #565a67;
  color: #ffffff;
}

.card.white .card-title {
  background-color: #ffffff;
  color: var(--color-heading);
  border-bottom: 2px solid var(--border);
}

.card.info .card-title {
  background-color: #114785;
}

.card.info .card-content {
  background-color: #eef4fb;
}

.card.success .card-title {
  background-color: #64a43d;
}

.card.success .card-content {
  background-color: #eeffeb;
}

.card.warning .card-title {
  background-color: #c26a17;
}

.card.warning .card-content {
  background-color: #fff7e7;
}

.card.danger .card-title {
  background-color: #920f0f;
}

.card.danger .card-content {
  background-color: #ffeeee;
}

/* eu cookie compliance module */
div#sliding-popup, div#sliding-popup .eu-cookie-withdraw-banner, .eu-cookie-withdraw-tab {
  background-color: #ffffff;
  box-shadow: 0 0 6px 2px var(--border);
  left: 0;
}

#sliding-popup {
  padding: 2rem;
  max-width: 540px;
}

#sliding-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eu-cookie-compliance-content {
  max-width: 100%;
}

.eu-cookie-compliance-message {
  float: none;
  margin: 0;
  max-width: 100%;
}

#sliding-popup div,
#sliding-popup h2 {
  color: var(--color-heading);
}

#sliding-popup h2 {
  font-size: 1.2rem;
}

#sliding-popup p {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
}

.eu-cookie-compliance-message button {
  background-color: transparent;
  color: var(--primary);
  margin: 0;
  padding: 0;
  border: 0;
}

.eu-cookie-compliance-message button:hover {
  background-color: transparent;
  color: var(--color-heading);
}

.eu-cookie-compliance-buttons {
  display: flex;
  gap: 1rem;
  float: none;
  margin: 0;
  max-width: 100%;
}

.eu-cookie-compliance-buttons .button {
  background-color: transparent;
  background-image: none;
  color: var(--primary);
  font-weight: 400;
  margin: 0;
  padding: 8px 1rem;
  border: 2px solid var(--color-heading);
  text-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.eu-cookie-compliance-buttons .button:hover {
  background-color: var(--color-heading);
  color: #ffffff;
}

/* clearing
---------------------*/
.clear {
  position: relative;
}

.clear::before,
.clear::after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 576px) {
  .w10,
  .w20,
  .w30,
  .w40,
  .w50,
  .w60,
  .w70,
  .w80,
  .w90 {
    flex-basis: calc(50% - 5px);
  }
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  h1 {
    font-size: 2.2rem;
  }
  /* Header */
  .header-top-container {
    flex-direction: row;
  }
  /* Header -> Search form */
  .search-box-content .block-title {
    display: block;
  }
  .search-box-content input[type=submit] {
    display: block;
    margin: 0 auto;
    padding: 10px 30px;
    border-radius: 50px;
  }
  /* Header - page header */
  .page-header {
    padding: 2rem 0 10rem 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
  }
  .page-header::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
  }
  .breadcrumb-item span {
    margin: 0 10px;
  }
  /* Footer */
  .site-footer {
    padding-top: 10rem;
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }
  .site-footer::before {
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }
  /* Layout */
  .main-container {
    flex-direction: row;
  }
  #main {
    order: 1;
  }
  #sidebar-left {
    order: 0;
  }
  #sidebar-right {
    order: 2;
  }
  /* Left sidebar + main */
  .sidebar-left #main {
    flex: 1 1 70%;
  }
  /* Right sidebar + main */
  .sidebar-right #main {
    flex: 1 1 70%;
  }
  /* Both sidebar + main */
  .two-sidebar #main {
    flex: 1 1 40%;
  }
  #sidebar-left {
    flex: 0 1 30%;
    padding: 0 1rem 0 0;
  }
  #sidebar-right {
    flex: 0 1 30%;
    padding: 0 0 0 1rem;
  }
  /* Footer */
  .footer-bottom-blocks-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-bottom-container,
  .footer-bottom-last {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .copyright {
    margin-bottom: 0;
  }
  /*
  * shortcodes
  */
  /* Shortcodes -> responsive view */
  .view-in-mobile {
    display: none;
  }
  .view-in-desktop {
    display: block;
  }
  /* shortcodes -> content width */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  /* shortcodes -> responsive column */
  .w10 {
    flex: 1 1 calc(10% - 1rem);
  }
  .w20 {
    flex: 1 1 calc(20% - 1rem);
  }
  .w30 {
    flex: 1 1 calc(30% - 1rem);
  }
  .w40 {
    flex: 1 1 calc(40% - 1rem);
  }
  .w50 {
    flex: 1 1 calc(50% - 1rem);
  }
  .w60 {
    flex: 1 1 calc(60% - 1rem);
  }
  .w70 {
    flex: 1 1 calc(70% - 1rem);
  }
  .w80 {
    flex: 1 1 calc(80% - 1rem);
  }
  .w90 {
    flex: 1 1 calc(90% - 1rem);
  }
  .model-active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .call-to-action {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (max-width: 991px) {
  .primary-menu-wrapper {
    width: 90%;
    max-width: 320px;
    height: 100%;
    overflow-y: auto;
  }
}
@media (min-width: 992px) {
  th {
    padding: 10px;
  }
  td {
    padding: 5px 10px;
  }
  /* Header main menu */
  .menu-wrap .menu a {
    color: var(--color-heading);
  }
  .primary-menu-wrapper {
    position: relative;
    background-color: transparent;
    padding: 0;
    transform: translateX(0);
    z-index: 5;
  }
  .region-primary-menu .menu {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .region-primary-menu .menu .menu-item-has-children:hover {
    background-color: var(--light);
    color: var(--color-heading);
  }
  .region-primary-menu .menu .menu-item-has-children:hover a {
    color: var(--color-heading);
  }
  .region-primary-menu .menu > li {
    position: relative;
    border: 0;
  }
  .menu-wrap .menu li > a,
  .menu-wrap .menu li > span {
    padding: 8px;
  }
  .menu-item-has-children::after {
    right: 0;
  }
  .menu-wrap .menu li.menu-item-has-children > a {
    padding: 8px 14px 8px 8px;
  }
  .region-primary-menu .submenu {
    position: absolute;
    background-color: var(--light);
    top: calc(100% - 2px);
    min-width: 200px;
    padding: 0 4px;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
  }
  .region-primary-menu .submenu li {
    padding: 0;
  }
  .region-primary-menu .submenu li:first-child {
    border-top: none;
  }
  .region-primary-menu .submenu a {
    padding: 0.5rem 0;
  }
  .menu-item-has-children:hover > .submenu {
    visibility: visible;
    animation: slideUp 0.5s forwards;
  }
  .region-primary-menu .submenu a:hover {
    color: var(--dark);
  }
  /* third level menu */
  .region-primary-menu .submenu .submenu {
    left: 100%;
    top: 0;
  }
  .mobile-menu-icon,
  .close-mobile-menu {
    display: none;
  }
  /* Shortcodes */
  .model-active {
    padding: 2rem;
    left: 50%;
    right: inherit;
    transform: translate(-50%, -50%);
  }
}/*# sourceMappingURL=style.css.map */


.loader { 
display: none;
}