/* Variables
----------------------- */
/* line 3, sass/_base.scss */
:root {
  --color-primary: #0099ff;
  --color-secondary: #0065a8;
  --color-primary-light: #abddff;
  --bg-body: #f9f6f3;
  --text-color: #4a4a4a;
  --bold-color: #222222;
  --light: #fffbf6;
  --border: #dbdbd3;
  --shadow: 0 0 8px 1px #cccccc;
  --shadow-primary: 0 0 10px 1px var(--color-primary);
  --shadow-secondary: 0 0 10px 1px var(--color-secondary);
  --font-text: "open sans", sans-serif;
  --font-heading: "roboto", sans-serif; }

/* Default Box sizing */
/* line 19, sass/_base.scss */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default margin */
/* line 25, sass/_base.scss */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0; }

/* HTML and Body
----------------------- */
/* line 39, sass/_base.scss */
html:focus-within {
  scroll-behavior: smooth; }

/* line 42, sass/_base.scss */
html {
  font-size: 16px;
  scroll-behavior: smooth; }

/* line 46, sass/_base.scss */
html,
body {
  height: 100%; }

/* line 50, sass/_base.scss */
body {
  background-color: var(--bg-body);
  color: var(--text-color);
  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
----------------------- */
/* line 65, sass/_base.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block; }

/* line 79, sass/_base.scss */
template,
[hidden] {
  display: none; }

/* line 83, sass/_base.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

/* line 90, sass/_base.scss */
audio:not([controls]) {
  display: none;
  height: 0; }

/* Typography
----------------------- */
/* Typography -> Headings */
/* line 97, sass/_base.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bold-color);
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin: 0 0 10px 0; }

/* line 110, sass/_base.scss */
h1 {
  font-size: 2.1rem; }

/* line 113, sass/_base.scss */
h2 {
  font-size: 1.8rem; }

/* line 116, sass/_base.scss */
h3 {
  font-size: 1.5rem; }

/* line 119, sass/_base.scss */
h4 {
  font-size: 1.3rem; }

/* line 122, sass/_base.scss */
h5, h6 {
  font-size: 1.2rem;
  text-transform: uppercase; }

/* Typography -> Paragraph */
/* line 127, sass/_base.scss */
p {
  margin: 0 0 1.2rem 0; }

/* Typography -> Links */
/* line 131, sass/_base.scss */
a:not([class]) {
  text-decoration-skip-ink: auto; }

/* line 134, sass/_base.scss */
a {
  color: var(--color-primary);
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  transition: color 0.4s ease; }

/* line 142, sass/_base.scss */
a:active,
a:hover,
a:focus {
  background-color: transparent;
  text-decoration: none;
  border: 0;
  outline: 0; }

/* line 150, sass/_base.scss */
a:hover {
  color: var(--color-secondary); }

/* line 153, sass/_base.scss */
a:active,
li a.active {
  color: var(--color-primary); }

/* Typography -> Abbreviation */
/* line 159, sass/_base.scss */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

/* line 164, sass/_base.scss */
abbr {
  cursor: help; }

/* line 167, sass/_base.scss */
acronym {
  border-bottom: 1px dotted;
  cursor: help; }

/* Typography -> Text styling */
/* line 173, sass/_base.scss */
b,
strong {
  font-weight: bolder;
  color: var(--bold-color); }

/* line 178, sass/_base.scss */
em,
dfn,
cite {
  font-style: italic; }

/* line 183, sass/_base.scss */
mark,
ins {
  padding: 2px 4px;
  background: var(--bold-color);
  color: #ffffff;
  text-decoration: none; }

/* line 190, sass/_base.scss */
del {
  text-decoration: line-through; }

/* line 193, sass/_base.scss */
small {
  font-size: 80%; }

/* line 196, sass/_base.scss */
big {
  font-size: 125%; }

/* line 199, sass/_base.scss */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

/* line 206, sass/_base.scss */
sup {
  top: -0.5em; }

/* line 209, sass/_base.scss */
sub {
  bottom: -0.25em; }

/* line 212, sass/_base.scss */
tt,
var {
  font-family: monospace, monospace;
  font-style: italic; }

/* Typography -> Blockquote */
/* line 219, sass/_base.scss */
blockquote,
[dir="rtl"] blockquote {
  position: relative;
  background-color: #ffffff;
  margin: 0.5rem 0 1rem 0;
  padding: 1rem;
  box-shadow: var(--shadow);
  isolation: isolate; }

/* line 228, sass/_base.scss */
blockquote:before {
  position: absolute;
  content: "\e008";
  top: 0;
  left: 0;
  font-family: "tara";
  color: var(--color-primary-light);
  font-size: 4rem;
  line-height: 1;
  z-index: -1; }

/* line 239, sass/_base.scss */
blockquote p:last-of-type {
  margin: 0; }

/* Typography -> HTML code tags */
/* line 244, sass/_base.scss */
pre {
  overflow: auto; }

/* line 247, sass/_base.scss */
kbd {
  background-color: #ffffff;
  padding: 4px 10px;
  font-family: monospace, monospace;
  font-size: 1rem; }

/* line 253, sass/_base.scss */
pre,
samp {
  background-color: #ffffff;
  margin: 1rem 0;
  padding: 1rem;
  font-family: monospace, monospace;
  font-size: 1rem;
  box-shadow: var(--shadow); }

/* line 262, sass/_base.scss */
code {
  padding: 2px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
  background: #ffffff; }

/* line 268, sass/_base.scss */
pre code {
  padding: 0; }

/* Typography -> Address */
/* line 273, sass/_base.scss */
address {
  margin: 0 0 1.75rem;
  font-style: italic; }

/* Typography -> Description Lists */
/* line 279, sass/_base.scss */
dl {
  margin: 0 0 1.75rem; }

/* line 282, sass/_base.scss */
dt {
  font-weight: 400;
  color: var(--bold-color); }

/* line 286, sass/_base.scss */
dd {
  margin: 0 0 1.75rem; }

/* Typography -> HTML Elements */
/* line 291, sass/_base.scss */
hr {
  clear: both;
  width: 100%;
  margin: 0.5rem 0;
  border: 0;
  border-bottom: 2px solid var(--border);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

/* Forms
----------------------- */
/* line 304, sass/_base.scss */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6; }

/* line 314, sass/_base.scss */
button,
input {
  overflow: visible; }

/* line 318, sass/_base.scss */
button,
select {
  text-transform: none; }

/* line 322, sass/_base.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button; }

/* line 329, sass/_base.scss */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border: 0;
  border-style: none; }

/* line 337, sass/_base.scss */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0; }

/* line 343, sass/_base.scss */
button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7; }

/* line 348, sass/_base.scss */
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

/* line 352, sass/_base.scss */
input {
  line-height: normal; }

/* line 355, sass/_base.scss */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 10px;
  background: #ffffff;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  -webkit-transition: border 0.3s linear;
  -moz-transition: border 0.3s linear;
  transition: border 0.3s linear; }

/* line 369, sass/_base.scss */
textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: auto;
  -webkit-transition: border 0.3s linear;
  -moz-transition: border 0.3s linear;
  transition: border 0.3s linear;
  vertical-align: top; }

/* line 381, sass/_base.scss */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  border: 1px solid var(--color-primary);
  outline: 0; }

/* line 390, sass/_base.scss */
input[type="submit"],
input[type="button"],
input[type="reset"],
button,
.button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 8px 1rem;
  border: 3px solid #ffffff;
  border-radius: 2rem;
  transition: all 0.4s ease-in-out;
  line-height: 1.6; }

/* line 404, sass/_base.scss */
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
button:focus,
.button:focus {
  background-color: transparent;
  border: 3px solid var(--bold-color);
  color: var(--bold-color); }

/* line 418, sass/_base.scss */
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* line 425, sass/_base.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/* line 429, sass/_base.scss */
input[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield; }

/* line 434, sass/_base.scss */
fieldset {
  margin: 0 0 10px 0;
  padding: 0.35rem 0.5rem 0.5rem 0;
  border: 1px solid var(--border); }

/* line 439, sass/_base.scss */
fieldset > :last-child {
  margin-bottom: 0; }

/* line 442, sass/_base.scss */
legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  box-sizing: border-box;
  white-space: normal; }

/* line 451, sass/_base.scss */
optgroup {
  font-weight: bold; }

/* line 454, sass/_base.scss */
select {
  padding: 4px 8px; }

/* line 457, sass/_base.scss */
form label {
  display: table;
  font-weight: bold; }

/* line 461, sass/_base.scss */
label[for] {
  cursor: pointer; }

/* line 464, sass/_base.scss */
.page-content input[type="text"],
.page-content input[type="password"],
.page-content input[type="search"] {
  padding: 9px 6px;
  outline: 0; }

/* Drupal form elements */
/* line 472, sass/_base.scss */
.form-item {
  margin-bottom: 1rem; }

/* line 475, sass/_base.scss */
.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: var(--color-primary); }

/* line 481, sass/_base.scss */
.form-item label {
  display: block; }

/* line 484, sass/_base.scss */
label.option {
  display: inline;
  font-weight: normal; }

/* placeholder */
/* line 489, sass/_base.scss */
::-webkit-input-placeholder {
  color: #8a8a8a; }

/* line 492, sass/_base.scss */
:-moz-placeholder {
  color: #8a8a8a; }

/* line 495, sass/_base.scss */
::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1; }

/* line 499, sass/_base.scss */
:-ms-input-placeholder {
  color: #8a8a8a; }

/* List
----------------------- */
/* line 505, sass/_base.scss */
ul,
ol {
  margin: 0;
  padding: 0 0 0.25rem 1rem;
  /* LTR */ }

/* line 510, sass/_base.scss */
[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1rem 0.25rem 0; }

/* line 514, sass/_base.scss */
ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25rem 1rem;
  /* LTR */ }

/* line 519, sass/_base.scss */
[dir="rtl"] ol ol,
[dir="rtl"] ul ul {
  padding: 0 1rem 0.25rem 0; }

/* line 523, sass/_base.scss */
ul {
  list-style: disc; }

/* line 526, sass/_base.scss */
li > ul,
li > ol {
  margin-bottom: 0; }

/* line 530, sass/_base.scss */
[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1em 0.25em 0; }

/* line 534, sass/_base.scss */
.node-content li {
  padding: 6px 0; }

/* Table
----------------------- */
/* line 540, sass/_base.scss */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse; }

/* line 546, sass/_base.scss */
th,
tr,
td {
  vertical-align: middle; }

/* line 551, sass/_base.scss */
th {
  background: var(--color-primary);
  font-family: var(--font-heading);
  color: #ffffff;
  margin: 0;
  padding: 10px;
  border: 2px solid var(--border);
  text-align: left;
  text-shadow: none; }

/* line 561, sass/_base.scss */
th a {
  color: #ffffff; }

/* line 564, sass/_base.scss */
td {
  padding: 5px 10px;
  border: 2px solid var(--border); }

/* Media
----------------------- */
/* line 572, sass/_base.scss */
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle; }

/* line 582, sass/_base.scss */
svg:not(:root) {
  overflow: hidden; }

/* line 585, sass/_base.scss */
figure {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border: 0; }

/* line 591, sass/_base.scss */
figcaption {
  padding: 4px;
  font-size: 0.8rem;
  background: #ffffff;
  border: 1px solid var(--border);
  text-align: center; }

/* line 598, sass/_base.scss */
.align-left,
img.align-left,
figure.align-left {
  float: left;
  margin: 20px 20px 20px 0; }

/* line 604, sass/_base.scss */
.align-right,
img.align-right,
figure.align-right {
  float: right;
  margin: 20px 0 20px 20px; }

/* line 610, sass/_base.scss */
.align-center,
img.align-center,
figure.align-center {
  display: block;
  clear: both;
  margin: 20px auto; }

/* line 617, sass/_base.scss */
figure.align-center {
  display: table; }

/* line 620, sass/_base.scss */
figure.align-center img {
  display: block;
  clear: both;
  margin: 0 auto; }

/* Drupal image filed */
/* line 626, sass/_base.scss */
.image-field {
  margin: 0 0 1rem 0; }

/* line 629, sass/_base.scss */
.feed-icon {
  display: block; }

/* line 632, sass/_base.scss */
details {
  margin-bottom: 1rem; }

/* line 635, sass/_base.scss */
summary {
  background-color: #ffffff;
  color: var(--text-color);
  padding: 0.5rem;
  cursor: pointer;
  box-shadow: var(--shadow); }

/* line 642, sass/_base.scss */
details .form-details-wrapper {
  background-color: #ffffff;
  padding: 1rem; }

/* Misc
----------------------- */
/* line 648, sass/_base.scss */
::selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none; }

/* line 653, sass/_base.scss */
::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none; }

/* Page layout -> container */
/* line 2, sass/_layout.scss */
.container {
  position: relative;
  width: 100%;
  max-width: 1170px;
  height: auto;
  margin: 0 auto;
  padding: 0 10px; }

/* content warpper including main, sidebar */
/* line 12, sass/_layout.scss */
.main-wrapper {
  position: relative;
  display: block;
  background: var(--bg-body);
  width: 100%;
  padding: 1rem 0;
  z-index: 2; }

/* line 20, sass/_layout.scss */
.main-container {
  position: relative;
  display: grid;
  gap: 1rem;
  width: 100%;
  margin: 0; }

/* Main */
/* line 28, sass/_layout.scss */
.no-sidebar .main-container {
  grid-template-columns: 100%; }

/* line 31, sass/_layout.scss */
.sidebar-left .main-container {
  grid-template-columns: 25% 75%; }

/* line 34, sass/_layout.scss */
.sidebar-right .main-container {
  grid-template-columns: 75% 25%; }

/* line 37, sass/_layout.scss */
.two-sidebar .main-container {
  grid-template-columns: 25% 50% 25%; }

/* line 40, sass/_layout.scss */
#sidebar-left {
  order: 1; }

/* line 43, sass/_layout.scss */
#main {
  position: relative;
  background: var(--bg-body);
  width: 100%;
  margin: 0;
  padding: 0;
  order: 2;
  z-index: 2; }

/* line 52, sass/_layout.scss */
#sidebar-right {
  order: 3; }

@font-face {
  font-display: auto;
  font-family: "tara";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/tara.woff2") format("woff2"); }

/* line 9, sass/_font-icons.scss */
[class="icon"], [class^="icon-"], [class*=" icon-"] {
  display: inline-block;
  font-family: "tara" !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; }

/* line 21, sass/_font-icons.scss */
.icon-minus:before {
  content: "\e000"; }

/* line 25, sass/_font-icons.scss */
.icon-plus:before {
  content: "\e001"; }

/* line 29, sass/_font-icons.scss */
.icon-close:before {
  content: "\e002"; }

/* line 33, sass/_font-icons.scss */
.icon-comment-add:before {
  content: "\e003"; }

/* line 37, sass/_font-icons.scss */
.icon-check:before {
  content: "\e004"; }

/* line 41, sass/_font-icons.scss */
.icon-alert:before {
  content: "\e005"; }

/* line 45, sass/_font-icons.scss */
.icon-alert-circle:before {
  content: "\e006"; }

/* line 49, sass/_font-icons.scss */
.icon-clock:before {
  content: "\e007"; }

/* line 53, sass/_font-icons.scss */
.icon-quote:before {
  content: "\e008"; }

/* line 57, sass/_font-icons.scss */
.icon-arrow-left:before {
  content: "\e009"; }

/* line 61, sass/_font-icons.scss */
.icon-arrow-right:before {
  content: "\e00a"; }

/* line 65, sass/_font-icons.scss */
.icon-angle-right:before {
  content: "\e00b"; }

/* line 69, sass/_font-icons.scss */
.icon-angle-left:before {
  content: "\e00c"; }

/* line 73, sass/_font-icons.scss */
.icon-comment:before {
  content: "\e00d"; }

/* line 77, sass/_font-icons.scss */
.icon-info:before {
  content: "\e00e"; }

/* line 81, sass/_font-icons.scss */
.icon-bell:before {
  content: "\e00f"; }

/* line 85, sass/_font-icons.scss */
.icon-horn:before {
  content: "\e010"; }

/* line 89, sass/_font-icons.scss */
.icon-arrow-up:before {
  content: "\e011"; }

/* line 93, sass/_font-icons.scss */
.icon-phone:before {
  content: "\e012"; }

/* line 97, sass/_font-icons.scss */
.icon-map:before {
  content: "\e013"; }

/* line 101, sass/_font-icons.scss */
.icon-mail:before {
  content: "\e014"; }

/* line 105, sass/_font-icons.scss */
.icon-share:before {
  content: "\e015"; }

/* line 109, sass/_font-icons.scss */
.icon-telegram:before {
  content: "\e016"; }

/* line 113, sass/_font-icons.scss */
.icon-hashtag:before {
  content: "\e017"; }

/* line 117, sass/_font-icons.scss */
.icon-vimeo:before {
  content: "\e018"; }

/* line 121, sass/_font-icons.scss */
.icon-whatsapp:before {
  content: "\e019"; }

/* line 125, sass/_font-icons.scss */
.icon-vk:before {
  content: "\e01a"; }

/* line 129, sass/_font-icons.scss */
.icon-instagram:before {
  content: "\e01b"; }

/* line 133, sass/_font-icons.scss */
.icon-youtube:before {
  content: "\e01c"; }

/* line 137, sass/_font-icons.scss */
.icon-file:before {
  content: "\e01d"; }

/* line 141, sass/_font-icons.scss */
.icon-comments:before {
  content: "\e01e"; }

/* line 145, sass/_font-icons.scss */
.icon-linkedin:before {
  content: "\e01f"; }

/* line 149, sass/_font-icons.scss */
.icon-github:before {
  content: "\e020"; }

/* line 153, sass/_font-icons.scss */
.icon-facebook:before {
  content: "\e021"; }

/* line 157, sass/_font-icons.scss */
.icon-twitter:before {
  content: "\e022"; }

/* line 161, sass/_font-icons.scss */
.icon-calendar:before {
  content: "\e023"; }

/* line 165, sass/_font-icons.scss */
.icon-user:before {
  content: "\e024"; }

/* line 169, sass/_font-icons.scss */
.icon-search:before {
  content: "\e025"; }

/* line 172, sass/_font-icons.scss */
.icon-bookmark:before {
  content: "\e026"; }

/* line 1, sass/_admin.scss */
.local-action {
  list-style: none; }

/* line 4, sass/_admin.scss */
.button-action {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 6px 12px; }

/* line 9, sass/_admin.scss */
.button-action:hover {
  background-color: var(--color-primary);
  color: #ffffff; }

/* Vertical tabs */
/* line 14, sass/_admin.scss */
.vertical-tabs .vertical-tabs__panes {
  padding: 1rem; }

/* Header
--------------------------------------*/
/* Header container */
/* line 4, sass/_header.scss */
#header,
.header-top,
.header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 3; }

/* Header top */
/* line 14, sass/_header.scss */
.header-top {
  background-color: var(--color-primary-light); }

/* line 17, sass/_header.scss */
.header-top-container {
  position: relative;
  display: flex;
  padding: 6px 0;
  justify-content: space-between;
  align-items: center; }

/* header top left block region */
/* line 25, sass/_header.scss */
.header-top-block p:last-of-type {
  margin: 0; }

/* line 28, sass/_header.scss */
.header-top-left a {
  color: var(--bold-color); }

/* line 31, sass/_header.scss */
.header-top ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none; }

/* line 40, sass/_header.scss */
.header-top .contextual-links {
  display: none; }

/* header top left block region */
/* line 44, sass/_header.scss */
.header-top-left i {
  background: var(--light);
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease; }

/* header for branding and main menu */
/* line 59, sass/_header.scss */
.header {
  background-color: #ffffff; }

/* line 62, sass/_header.scss */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0; }

/* site branding */
/* line 70, sass/_header.scss */
.site-branding {
  display: flex;
  align-items: center; }

/* line 74, sass/_header.scss */
.site-branding img {
  width: auto;
  max-height: 80px; }

/* line 78, sass/_header.scss */
.site-name-slogan {
  display: flex;
  flex-direction: column; }

/* line 82, sass/_header.scss */
.site-name {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--bold-color);
  text-transform: uppercase; }

/* line 90, sass/_header.scss */
.site-name a,
.site-name a:hover {
  color: var(--bold-color); }

/* line 94, sass/_header.scss */
.site-slogan {
  font-size: 0.9rem;
  color: var(--bold-color);
  line-height: 1; }

/* header right */
/* line 100, sass/_header.scss */
.header-right {
  position: relative;
  display: flex;
  align-items: center; }

/* main menu */
/* line 106, sass/_header.scss */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  margin-right: 6px; }

/* line 116, sass/_header.scss */
.mobile-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  transform-origin: left;
  transition: all 0.6s ease; }

/* line 123, sass/_header.scss */
.mobile-menu span:nth-child(2) {
  background-color: var(--bold-color); }

/* line 126, sass/_header.scss */
.menu-icon-active span:first-child {
  transform: rotate(45deg); }

/* line 129, sass/_header.scss */
.menu-icon-active span:last-child {
  transform: rotate(-45deg); }

/* line 132, sass/_header.scss */
.menu-icon-active span:nth-child(2) {
  display: none; }

/* line 135, sass/_header.scss */
.close-mobile-menu {
  position: absolute;
  top: 2px;
  right: 2px;
  display: grid;
  place-content: center;
  color: #ffffff;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  z-index: 200;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  cursor: pointer; }

/* line 150, sass/_header.scss */
.primary-menu-wrapper {
  font-family: var(--font-heading);
  font-weight: 400; }

/* line 154, sass/_header.scss */
.menu-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 90%;
  max-width: 320px;
  height: 100%;
  z-index: 10;
  transform: translateX(-100%);
  transition: all 0.4s ease;
  padding-top: 30px; }

/* line 167, sass/_header.scss */
.active-menu .menu-wrap {
  background: rgba(0, 0, 0, 0.9);
  transform: translateX(0);
  overflow-y: auto;
  overflow-x: hidden; }

/* line 173, sass/_header.scss */
.active-menu .menu-wrap .main-menu,
.active-menu .menu-wrap .menu {
  overflow-y: scroll;
  overflow-x: hidden; }

/* line 178, sass/_header.scss */
.region-primary-menu .menu,
.region-primary-menu .submenu {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0; }

/* line 185, sass/_header.scss */
.region-primary-menu .menu {
  display: flex;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem;
  z-index: 10; }

/* line 196, sass/_header.scss */
.region-primary-menu .menu-item-level-1 {
  position: relative;
  padding: 0;
  border-bottom: 1px solid var(--text-color); }

/* line 201, sass/_header.scss */
.region-primary-menu .menu a {
  display: block;
  color: #ffffff;
  padding: 0.5rem 0; }

/* line 206, sass/_header.scss */
.menu-item-has-children {
  position: relative; }

/* line 209, sass/_header.scss */
.menu-item-has-children::after {
  position: absolute;
  content: '+';
  right: 0;
  top: 0.5rem;
  color: var(--color-primary); }

/* line 216, sass/_header.scss */
.region-primary-menu .submenu {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  padding: 0 0  0 2rem; }

/* line 222, sass/_header.scss */
.region-primary-menu .submenu li {
  border-top: 1px solid var(--text-color); }

/* search box */
/* line 226, sass/_header.scss */
.full-page-search {
  position: relative; }

/* line 229, sass/_header.scss */
.search-icon {
  position: relative;
  margin: 0;
  padding: 0 0 0 10px;
  border-left: 1px solid var(--border);
  cursor: pointer; }

/* line 236, sass/_header.scss */
.search-icon i {
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1; }

/* line 241, sass/_header.scss */
.search-box {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 20;
  transition: all 0.2s linear;
  flex-direction: column; }

/* line 255, sass/_header.scss */
.search-box-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60%;
  margin: 0 auto;
  -webkit-animation: slideDown 0.5s linear forwards;
  -moz-animation: slideDown 0.5s linear forwards;
  -o-animation: slideDown 0.5s linear forwards;
  animation: slideDown 0.5s linear forwards;
  text-align: center; }

/* line 270, sass/_header.scss */
.search-box-content .block-region {
  width: 100%; }

/* line 273, sass/_header.scss */
.search-box-content .block-title {
  color: #ffffff; }

/* line 276, sass/_header.scss */
.search-box-content form label {
  display: none; }

/* line 279, sass/_header.scss */
.search-box-content input[type="search"] {
  background-color: #121212;
  color: #ffffff;
  width: 100%;
  padding: 1.4rem;
  border: 2px solid var(--text-color);
  border-radius: 6px;
  outline: 0;
  box-shadow: none; }

/* line 289, sass/_header.scss */
.search-box-content input[type="submit"] {
  padding: 10px 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease; }

/* line 294, sass/_header.scss */
.search-box-content input[type="submit"]:hover {
  color: #ffffff;
  border-color: var(--color-primary); }

/* line 298, sass/_header.scss */
.search-box-close {
  flex: 1;
  cursor: url("../images/cursor.svg"), auto; }

/* Sidebar
-------------------------------------------- */
/* line 3, sass/_sidebar.scss */
.sidebar {
  position: relative;
  margin: 0; }

/* line 7, sass/_sidebar.scss */
.region-sidebar-first,
.region-sidebar-second {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* line 13, sass/_sidebar.scss */
.sidebar .block {
  background-color: #ffffff;
  padding: 15px 10px;
  border-radius: 6px;
  box-shadow: var(--shadow); }

/* line 19, sass/_sidebar.scss */
.sidebar .block-title {
  font-size: 1.3rem;
  padding-left: 6px;
  border-left: 2px solid var(--color-primary); }

/* line 24, sass/_sidebar.scss */
.sidebar ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0; }

/* line 30, sass/_sidebar.scss */
.sidebar li {
  padding: 6px 0;
  border-bottom: 2px solid var(--border); }

/* line 34, sass/_sidebar.scss */
.sidebar li:last-child {
  border: 0; }

/* search block in sidebar */
/* line 38, sass/_sidebar.scss */
.sidebar .form-search {
  width: 100%; }

/* line 42, sass/_sidebar.scss */
.sidebar .product-catalog-menu details,
.sidebar .block-content > .product-catalog-menu > div.nochildren {
  box-shadow: var(--shadow);
  padding: 0.5rem; }

/* line 48, sass/_sidebar.scss */
.sidebar .block-content > .product-catalog-menu > div.nochildren {
  padding: 1rem 0.5rem;
  margin-bottom: 1rem; }

/* line 53, sass/_sidebar.scss */
.sidebar .product-catalog-menu details > div {
  padding-left: 1rem; }

/* line 57, sass/_sidebar.scss */
.sidebar .product-catalog-menu summary {
  list-style: none;
  box-shadow: none;
  padding-left: 0;
  position: relative; }

/* line 64, sass/_sidebar.scss */
.sidebar .product-catalog-menu summary::-webkit-details-marker {
  display: none; }

/* line 68, sass/_sidebar.scss */
.sidebar .product-catalog-menu details summary:after {
  display: block;
  float: right;
  content: ' ';
  border: solid var(--color-secondary);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-top: 0.5rem; }

/* line 81, sass/_sidebar.scss */
.sidebar .product-catalog-menu details[open] summary:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

/* Footer
--------------------------------------*/
/* line 3, sass/_footer.scss */
#last-section {
  position: relative;
  visibility: hidden;
  width: 100%;
  min-height: 1px;
  z-index: 12; }

/* line 10, sass/_footer.scss */
#footer {
  display: block;
  position: fixed;
  background: var(--color-primary-light) url(../images/footer-bg.svg);
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 4px solid #ffffff;
  z-index: 0; }

/* line 21, sass/_footer.scss */
.footer,
.footer-top,
.footer-bottom {
  position: relative;
  width: 100%; }

/* line 27, sass/_footer.scss */
.footer-top,
.footer-bottom {
  padding: 1rem 0; }

/* line 31, sass/_footer.scss */
.region-footer-top,
.region-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.2rem; }

/* line 37, sass/_footer.scss */
.region-footer-top .block p:last-of-type,
.region-footer-bottom .block p:last-child {
  margin: 0; }

/* line 41, sass/_footer.scss */
.footer-blocks {
  position: relative;
  display: flex;
  padding: 1rem 0;
  gap: 1rem;
  flex-wrap: wrap; }

/* line 48, sass/_footer.scss */
.footer-block {
  flex: 1 0 260px; }

/* line 51, sass/_footer.scss */
.footer .block-title {
  position: relative;
  font-size: 1.3rem;
  padding-left: 6px;
  border-left: 2px solid var(--color-primary); }

/* footer list style */
/* line 59, sass/_footer.scss */
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none; }

/* line 65, sass/_footer.scss */
.footer li {
  padding: 4px 0;
  border-bottom: 1px solid #bbb0a1; }

/* line 69, sass/_footer.scss */
.footer li:last-child {
  border-bottom: 0; }

/* Footer -> Footer Bottom Middle */
/* line 73, sass/_footer.scss */
.footer-bottom-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px double #bbb0a1;
  padding: 1rem 0; }

/* Footer -> Footer Bottom last*/
/* Node Content
--------------------------------------*/
/* Page title */
/* line 4, sass/_main.scss */
.page-title-wrap {
  position: relative;
  margin: 0; }

/* line 8, sass/_main.scss */
.page-title-wrap h1.page-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bold-color); }

/* common for all nodes */
/* line 15, sass/_main.scss */
.node,
.node-promoted,
.node-sticky,
.node-unpublished,
.node-view-mode-full {
  position: relative; }

/* node in teaser view */
/* line 23, sass/_main.scss */
.node-view-mode-teaser {
  position: relative;
  background-color: var(--light);
  margin-bottom: 3rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  border-radius: 8px; }

/* line 31, sass/_main.scss */
.node-view-mode-teaser.node-sticky {
  background: #ffffff; }

/* node author and submitted details */
/* line 35, sass/_main.scss */
.node-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem; }

/* line 42, sass/_main.scss */
.author-picture img {
  width: auto;
  height: 30px;
  padding-right: 6px;
  margin: 0; }

/* line 48, sass/_main.scss */
.node-submitted-details {
  display: flex;
  align-items: center;
  gap: 1rem; }

/* line 53, sass/_main.scss */
.node-submitted-details i {
  color: var(--color-primary); }

/* line 56, sass/_main.scss */
.node-submitted-details a {
  color: var(--text-color); }

/* line 59, sass/_main.scss */
.node-tags a {
  position: relative; }

/* line 62, sass/_main.scss */
.node-tags a::before {
  content: '#';
  color: var(--color-primary); }

/* line 66, sass/_main.scss */
.node-submitted-details i.fa-calendar,
.node-submitted-details i.fa-th-large {
  margin-left: 14px; }

/* node taxonomy and links */
/* line 72, sass/_main.scss */
.node-taxonomy-container,
.node-links-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border); }

/* line 81, sass/_main.scss */
.node-links-container {
  border-bottom: 1px solid var(--border); }

/* line 84, sass/_main.scss */
.term-title {
  font-size: 1.1rem;
  line-height: 1; }

/* line 88, sass/_main.scss */
.term-title i {
  font-size: 1.1em;
  color: var(--color-primary); }

/* line 92, sass/_main.scss */
.taxonomy-terms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0; }

/* Node links */
/* line 103, sass/_main.scss */
.node-links-container {
  width: 100%; }

/* line 106, sass/_main.scss */
.node-links-container .links.inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0; }

/* line 115, sass/_main.scss */
.node-readmore a {
  border-bottom: 2px solid var(--bold-color); }

/* line 118, sass/_main.scss */
ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0; }

/* line 123, sass/_main.scss */
ul.inline li {
  position: relative;
  display: inline-block;
  padding: 0;
  list-style-type: none; }

/* line 129, sass/_main.scss */
.node-links-container li {
  margin-right: 20px;
  float: left; }

/* line 133, sass/_main.scss */
.node-links-container li.node-readmore {
  margin-left: 0;
  float: right; }

/* line 137, sass/_main.scss */
.node-links-container .comment-comments::before {
  font-family: "tara";
  content: "\e01e";
  padding-right: 4px; }

/* line 142, sass/_main.scss */
.node-links-container .comment-add::before {
  font-family: "tara";
  content: "\e003";
  padding-right: 4px; }

/* line 147, sass/_main.scss */
.node-readmore {
  float: left; }

/* line 150, sass/_main.scss */
li.node-readmore a {
  padding: 6px 12px;
  background: var(--color-primary);
  color: #ffffff;
  -webkit-transition: background 0.4s ease;
  -moz-transition: background 0.4s ease;
  transition: background 0.4s ease; }

/* line 158, sass/_main.scss */
li.node-readmore a:hover {
  background: var(--bold-color);
  color: #ffffff; }

/* line 162, sass/_main.scss */
.node-view-mode-teaser li.comment-add,
.node-view-mode-teaser li.comment-forbidden {
  text-align: right; }

/* line 167, sass/_main.scss */
details.node-type-traktor-variation {
  box-shadow: var(--shadow);
  padding: 0.5rem;
  background-color: white; }

/* line 173, sass/_main.scss */
details.node-type-traktor-variation summary {
  list-style: none;
  box-shadow: none;
  padding-left: 0;
  position: relative; }

/* line 180, sass/_main.scss */
details.node-type-traktor-variation summary::-webkit-details-marker {
  display: none; }

/* line 184, sass/_main.scss */
details.node-type-traktor-variation summary:after {
  display: block;
  float: right;
  content: ' ';
  border: solid var(--color-secondary);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-top: -1.5rem; }

/* line 197, sass/_main.scss */
details.node-type-traktor-variation[open] summary:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

/* line 202, sass/_main.scss */
.node-type-traktor .variations {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-secondary); }

/* line 208, sass/_main.scss */
.node-type-traktor .variations h4 {
  margin: 0; }

/* line 212, sass/_main.scss */
.node-type-traktor-variation .field--name-field-list-image {
  float: left;
  margin-right: 1rem; }

/* line 217, sass/_main.scss */
.node-type-traktor-variation .field--name-field-optional-equipments {
  clear: both; }

/* Block Regions
--------------------------*/
/* line 3, sass/_block.scss */
.block-title {
  position: relative;
  line-height: 1.2; }

/* Breadcrumb
--------------------------*/
/* line 10, sass/_block.scss */
#breadcrumb {
  position: relative;
  background-color: var(--color-primary-light);
  width: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 2; }

/* line 18, sass/_block.scss */
.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }

/* line 26, sass/_block.scss */
ol.breadcrumb-items li {
  padding: 0; }

/* line 29, sass/_block.scss */
.breadcrumb-item-seperator {
  margin: 0 10px; }

/* Highlight region */
/* line 34, sass/_block.scss */
#highlighted {
  position: relative;
  background: var(--light);
  z-index: 2; }

/* line 39, sass/_block.scss */
.region-highlighted {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* line 44, sass/_block.scss */
.region-highlighted .block {
  margin: 0;
  padding: 10px 0; }

/* content top and content bottom block region */
/* line 50, sass/_block.scss */
#content-top,
#content-bottom {
  width: 100%; }

/* line 54, sass/_block.scss */
.region-content-top,
.region-content-bottom {
  display: flex;
  flex-direction: column; }

/* line 59, sass/_block.scss */
.region-content-bottom {
  margin-top: 1rem; }

/* line 62, sass/_block.scss */
.region-content-top .block,
.region-content-bottom .block {
  margin: 0 0 1rem 0;
  padding: 1rem;
  background-color: var(--light);
  box-shadow: var(--shadow); }

/* Comments
-------------------------------------------- */
/* line 3, sass/_comment.scss */
#node-comment {
  position: relative;
  margin-top: 30px;
  border-top: 3px double var(--border); }

/* line 8, sass/_comment.scss */
#node-comment i {
  color: var(--color-primary); }

/* line 11, sass/_comment.scss */
.comment-form-wrap {
  position: relative;
  margin: 10px 0;
  padding: 20px;
  background: var(--light);
  border: 3px solid #ffffff;
  box-shadow: var(--shadow); }

/* line 19, sass/_comment.scss */
h2.add-comment-title {
  border-bottom: 2px solid #ffffff; }

/* line 22, sass/_comment.scss */
.filter-wrapper {
  font-size: 0.9rem;
  border: 2px solid #ffffff; }

/* line 26, sass/_comment.scss */
.filter-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none; }

/* line 32, sass/_comment.scss */
.filter-wrapper ul li {
  padding: 6px 0;
  border-bottom: 1px solid #ffffff; }

/* line 36, sass/_comment.scss */
.filter-wrapper ul li:last-child {
  border: 0; }

/* single comment */
/* line 41, sass/_comment.scss */
.single-comment {
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border: 2px solid #ffffff;
  border-radius: 6px;
  box-shadow: var(--shadow); }

/* line 51, sass/_comment.scss */
.comment-user-picture {
  position: relative;
  display: table-cell;
  padding: 0 10px;
  vertical-align: top;
  width: 100px;
  border-right: 2px solid #ffffff; }

/* line 59, sass/_comment.scss */
.comment-user-picture img {
  width: 100px;
  height: auto; }

/* line 63, sass/_comment.scss */
h3.single-comment-title {
  margin: 0.1rem 0;
  font-size: 1.2rem; }

/* line 67, sass/_comment.scss */
.single-comment-meta {
  width: 100%;
  margin-bottom: 6px;
  padding-bottom: 6px;
  font-size: 0.9rem;
  color: #909090;
  border-bottom: 1px solid var(--border); }

/* line 75, sass/_comment.scss */
.single-comment-meta a {
  color: #909090; }

/* line 78, sass/_comment.scss */
.single-comment-content-body {
  position: relative;
  display: table-cell;
  padding: 0 10px;
  vertical-align: top; }

/* line 84, sass/_comment.scss */
.single-comment-content-body {
  position: relative;
  display: table-cell;
  vertical-align: top; }

/* line 89, sass/_comment.scss */
#node-comment .indented {
  margin-left: 60px; }

/* line 92, sass/_comment.scss */
.single-comment-content ul.links.inline {
  display: flex;
  list-style: none;
  gap: 8px; }

/* line 97, sass/_comment.scss */
.single-comment-content .links a {
  padding: 5px 10px;
  border: 4px solid #ffffff;
  border-radius: 6px;
  transition: all 0.3s; }

/* line 103, sass/_comment.scss */
.single-comment-content .links a:hover {
  background-color: #ffffff; }

/* Homepage
-------------------------------------------- */
/*
.home-slider .owl-dots {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 15;
}
.home-slider .owl-dots button {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin: 0 4px;
  background: var(--bold-color);
}
.owl-dots button.active {
  background: var(--color-primary);
}
.owl-item {
  display: flex;
  align-items: center;
  height: 100vh;
}
  */
/* line 27, sass/_frontpage.scss */
.last-section,
.content-home {
  position: relative;
  z-index: 2; }

/* line 32, sass/_frontpage.scss */
.content-home .block {
  margin-bottom: 4rem; }

/* line 35, sass/_frontpage.scss */
.content-home .block-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 300;
  text-align: center; }

/* line 42, sass/_frontpage.scss */
.content-home .block-title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 2px;
  margin-left: -25px;
  background: var(--color-primary); }

/* line 52, sass/_frontpage.scss */
.region-content-home {
  display: flex;
  flex-direction: column; }

/* Pages
-------------------------------------------- */
/* maintenance page*/
/* line 4, sass/_pages.scss */
.header-maintenance {
  padding: 1rem 0; }

/* line 7, sass/_pages.scss */
.maintenance-main {
  width: 100%;
  text-align: center;
  padding: 2rem 0; }

/* line 12, sass/_pages.scss */
.maintenance-icon {
  margin-bottom: 1.5rem; }

/* line 15, sass/_pages.scss */
.maintenance-icon svg {
  max-height: 20rem; }

/* Error page */
/* line 19, sass/_pages.scss */
.error-page {
  text-align: center; }

/* line 22, sass/_pages.scss */
.error-page h1,
.error-page h2,
.error-page h3 {
  font-size: 5rem; }

/* Search result page */
/* line 2, sass/_search.scss */
.search-advanced summary {
  margin: 10px 0;
  cursor: pointer; }

/* line 6, sass/_search.scss */
.search-advanced .form-details-wrapper {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border); }

/* line 10, sass/_search.scss */
.search-advanced .form-wrapper {
  padding: 0.5rem 1.4rem; }

/* line 13, sass/_search.scss */
ol.search-results {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
  list-style-type: none; }

/* line 20, sass/_search.scss */
ol.search-results li {
  margin: 0 0 16px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--border); }

/* Status message
------------------------*/
/* line 3, sass/_components.scss */
.message {
  position: relative;
  color: #ffffff;
  text-shadow: none;
  margin: 1rem 0;
  padding: 14px 14px 14px 64px; }

/* line 10, sass/_components.scss */
.message em {
  color: #ffffff;
  font-style: italic;
  border-bottom: 1px dotted #ffffff; }

/* line 15, sass/_components.scss */
.message p:last-of-type {
  margin: 0; }

/* line 18, sass/_components.scss */
.message a {
  color: #ffffff;
  text-decoration: none; }

/* line 22, sass/_components.scss */
.message-status {
  background-color: #89ad32; }

/* line 25, sass/_components.scss */
.message-status::before {
  content: "\e004";
  background-color: #759625; }

/* line 29, sass/_components.scss */
.message-error {
  background-color: #c94d1c; }

/* line 32, sass/_components.scss */
.message-error::before {
  content: "\e005";
  background-color: #b3461b; }

/* line 36, sass/_components.scss */
.message-warning {
  background-color: #cd5a0a; }

/* line 39, sass/_components.scss */
.message-warning::before {
  content: "\e006";
  background-color: #a44707; }

/* line 43, sass/_components.scss */
.message::before {
  font-family: "tara";
  position: absolute;
  left: 0;
  top: 0;
  width: 53px;
  text-align: center;
  height: 100%;
  line-height: 53px;
  font-size: 30px; }

/* line 54, sass/_components.scss */
.status-message-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none; }

/* Form
------------------------*/
/* line 63, sass/_components.scss */
form .description {
  font-size: 0.9em; }

/* Admin Tabs
------------------------*/
/* line 69, sass/_components.scss */
.page-tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0.5rem 0;
  padding: 0;
  border-bottom: 2px solid var(--border); }

/* line 77, sass/_components.scss */
.page-tabs li {
  background-color: var(--border);
  padding: 0;
  border-right: 2px solid #ffffff;
  text-shadow: 1px 1px #ffffff; }

/* line 83, sass/_components.scss */
.page-tabs li:last-child {
  border-right: 0; }

/* line 86, sass/_components.scss */
.page-tabs li a {
  display: block;
  padding: 5px 10px;
  color: var(--bold-color);
  transition: all 0.3s ease; }

/* line 92, sass/_components.scss */
.page-tabs .active-page-tab {
  background-color: var(--color-primary);
  text-shadow: none; }

/* line 96, sass/_components.scss */
.page-tabs .active-page-tab a {
  color: #ffffff; }

/* line 99, sass/_components.scss */
.page-tabs li:hover {
  background: var(--color-secondary);
  text-shadow: none; }

/* line 103, sass/_components.scss */
.page-tabs li:hover a {
  color: #ffffff; }

/* Pager
------------------------*/
/* line 108, sass/_components.scss */
.pager {
  width: 100%;
  margin-top: 1rem; }

/* line 112, sass/_components.scss */
.pager-items {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0; }

/* line 122, sass/_components.scss */
.pager-item {
  display: grid;
  place-content: center;
  color: var(--bold-color);
  height: 44px;
  min-width: 44px;
  border-radius: 4px;
  border: 2px solid var(--bold-color); }

/* line 131, sass/_components.scss */
.pager-item-control {
  border-color: var(--color-primary); }

/* line 134, sass/_components.scss */
.pager-item a {
  display: grid;
  place-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  height: 40px;
  min-width: 40px; }

/* pager full */
/* line 143, sass/_components.scss */
.pager__item:hover {
  border-color: var(--color-primary); }

/* line 146, sass/_components.scss */
.pager__item a {
  background-color: transparent;
  color: var(--bold-color);
  padding: 0 2px; }

/* line 151, sass/_components.scss */
.pager .is-active {
  border-color: var(--color-primary); }

/* line 154, sass/_components.scss */
.pager__item a:hover,
.pager__item.is-active a {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: #ffffff; }

/* Header and footer social icons */
/* line 161, sass/_components.scss */
.social-icons {
  list-style: none;
  list-style-type: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0; }

/* line 169, sass/_components.scss */
.social-icons li,
.footer .social-icons li {
  padding: 0;
  border: 0; }

/* line 174, sass/_components.scss */
.social-icons li:hover,
.footer .social-icons li:hover {
  padding: 0; }

/* line 178, sass/_components.scss */
.social-icons li a {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-primary-light);
  border-radius: 50%;
  -webkit-transition: background 0.4s ease;
  -moz-transition: background 0.4s ease;
  transition: background 0.4s ease; }

/* line 192, sass/_components.scss */
.social-icons a {
  color: var(--color-primary); }

/* line 195, sass/_components.scss */
.header-top .social-icons {
  gap: 6px; }

/* line 198, sass/_components.scss */
.header-top .social-icons li a,
.footer .social-icons li a {
  background: var(--light); }

/* line 202, sass/_components.scss */
ul.social-icons a:hover {
  background: var(--color-primary);
  color: #ffffff; }

/* Layout tabs
------------------------*/
/* line 208, sass/_components.scss */
.layout--tabs ul.tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid var(--border); }

/* line 216, sass/_components.scss */
.layout--tabs ul.tabs li {
  padding: 0;
  border-right: 2px solid #ffffff; }

/* line 220, sass/_components.scss */
.layout--tabs ul.tabs li a {
  background-color: var(--border);
  display: block;
  padding: 5px 10px;
  color: var(--bold-color);
  transition: all 0.3s ease; }

/* line 227, sass/_components.scss */
.layout--tabs ul.tabs li a:hover,
.layout--tabs ul.tabs li a.is-active {
  background: var(--color-secondary);
  color: #ffffff; }

/* line 232, sass/_components.scss */
.layout--tabs .tab-content {
  border: 2px solid var(--border);
  border-top-width: 0;
  padding: 1rem; }

/* Field Label
-------------------------------------- */
/* line 3, sass/_core.scss */
.field:not(:last-child) {
  margin-bottom: 1rem; }

/* line 7, sass/_core.scss */
.field__label {
  font-weight: bold; }

/* line 11, sass/_core.scss */
[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline .field__items {
  float: left; }

/* line 15, sass/_core.scss */
[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline .field__items {
  float: right; }

/* line 19, sass/_core.scss */
[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline > .field__item, [dir=ltr] .field--label-inline .field__items {
  padding-right: 0.5em; }

/* line 23, sass/_core.scss */
[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline > .field__item, [dir=rtl] .field--label-inline .field__items {
  padding-left: 0.5em; }

/* line 27, sass/_core.scss */
.field--label-inline .field__label::after {
  content: ":"; }

/* Calendar
-------------------------------------- */
/* line 33, sass/_core.scss */
.calendar-calendar .full {
  display: table; }

/* line 36, sass/_core.scss */
.calendar-calendar .empty {
  display: table-cell; }

/* line 1, sass/_views.scss */
.view-header {
  margin-bottom: 1rem; }

/* View footer */
/* line 5, sass/_views.scss */
.view-footer {
  margin-top: 1rem; }

/* Text align
------------------------------ */
/* line 3, sass/_shortcode.scss */
.text_left,
.text-left {
  text-align: left; }

/* line 7, sass/_shortcode.scss */
.text_right,
.text-right {
  text-align: right; }

/* line 11, sass/_shortcode.scss */
.text_center,
.text-center {
  text-align: center; }

/* line 15, sass/_shortcode.scss */
.text-justify {
  text-align: justify; }

/* line 18, sass/_shortcode.scss */
.center {
  margin: 0 auto; }

/* Highlight
------------------------- */
/* line 23, sass/_shortcode.scss */
.highlight {
  padding: 2px 4px;
  background: var(--bold-color);
  color: #ffffff; }

/* Text Size
------------------------------ */
/* line 30, sass/_shortcode.scss */
.size-2x {
  font-size: 2rem; }

/* line 33, sass/_shortcode.scss */
.size-3x {
  font-size: 3rem; }

/* line 36, sass/_shortcode.scss */
.size-4x {
  font-size: 4rem; }

/* line 39, sass/_shortcode.scss */
.size-5x {
  font-size: 5rem; }

/* line 42, sass/_shortcode.scss */
.size-6x {
  font-size: 6rem; }

/* line 45, sass/_shortcode.scss */
.size-7x {
  font-size: 7rem; }

/* line 48, sass/_shortcode.scss */
.size-8x {
  font-size: 8rem; }

/* List styles
------------------------------ */
/* line 53, sass/_shortcode.scss */
.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none; }

/* line 59, sass/_shortcode.scss */
.list-check li {
  position: relative; }

/* line 62, sass/_shortcode.scss */
.list-check li::before {
  content: "\e004";
  font-family: "tara";
  padding-right: 5px;
  color: var(--color-primary);
  vertical-align: middle; }

/* column
------------------------------ */
/* line 71, sass/_shortcode.scss */
.full {
  position: relative;
  display: flex;
  width: 100%;
  gap: 1.4rem;
  margin: 1rem 0;
  flex-wrap: wrap; }

/* line 79, sass/_shortcode.scss */
.full.fixed {
  justify-content: center; }

/* line 82, sass/_shortcode.scss */
.one_half,
.one_three,
.one_four,
.one_four_first,
.one_four_last {
  flex: 1; }

/* line 89, sass/_shortcode.scss */
.full > div {
  flex: 1 0 250px; }

/* line 92, sass/_shortcode.scss */
.full.fixed > div {
  flex: 0 0 250px; }

/* Animation
------------------------------ */
/*slide up */
@-webkit-keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

@-moz-keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

@-o-keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

/*slide Down */
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

@-moz-keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

@-o-keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

@keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

/* Custom components
------------------------------ */
/* welcome message */
/* line 183, sass/_shortcode.scss */
.welcome-message {
  text-align: center; }

/* services */
/* line 188, sass/_shortcode.scss */
.services {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap; }

/* line 194, sass/_shortcode.scss */
.service {
  flex: 1 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow); }

/* line 206, sass/_shortcode.scss */
.service i {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  background: var(--light);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.4s linear; }

/* line 220, sass/_shortcode.scss */
.service:hover i {
  background: var(--color-primary);
  color: #ffffff; }

/* line 224, sass/_shortcode.scss */
.service p:last-of-type {
  margin: 0; }

/* Projects */
/* line 228, sass/_shortcode.scss */
.projects {
  position: relative;
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1rem 0;
  padding: 0;
  list-style: none;
  list-style-type: none; }

/* line 239, sass/_shortcode.scss */
.project {
  position: relative;
  flex: 1 0 300px;
  border: 6px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 1rem #dddddd; }

/* line 246, sass/_shortcode.scss */
.project img {
  position: relative;
  border-radius: 10px;
  margin: 0; }

/* line 251, sass/_shortcode.scss */
.project-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  opacity: 0; }

/* line 268, sass/_shortcode.scss */
.project:hover .project-content {
  -webkit-animation: slideUp 0.8s ease;
  -moz-animation: slideUp 0.8s ease;
  -o-animation: slideUp 0.8s ease;
  animation: slideUp 0.8s ease;
  opacity: 1; }

/* line 275, sass/_shortcode.scss */
.project-content h1,
.project-content h2,
.project-content h3,
.project-content h4,
.project-content h5 {
  font-weight: 300;
  color: #ffffff; }

/* line 283, sass/_shortcode.scss */
.project-content a,
.project-content a:visited,
.project-content a:hover {
  color: #ffffff; }

/* Scroll To Top
------------------------- */
/* line 291, sass/_shortcode.scss */
.scrolltop {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  background: var(--bold-color);
  color: #ffffff;
  border-radius: 6px;
  z-index: 20;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
  text-align: center; }

/* line 310, sass/_shortcode.scss */
.scrolltop i {
  font-size: 1.6rem;
  line-height: 1; }

/* line 314, sass/_shortcode.scss */
.scrolltop:hover {
  background: var(--color-primary); }

/* Responsive view
------------------------- */
/* line 320, sass/_shortcode.scss */
.view-in-mobile {
  display: block; }

/* line 323, sass/_shortcode.scss */
.view-in-desktop {
  display: none; }

/* Inline content
------------------------- */
/* line 329, sass/_shortcode.scss */
.inline {
  display: inline-block; }

/* line 332, sass/_shortcode.scss */
.inline:not(:last-child) {
  padding-right: 1rem; }

/* Content direction
------------------------- */
/* line 338, sass/_shortcode.scss */
.rtl {
  direction: rtl; }

/* line 341, sass/_shortcode.scss */
.ltr {
  direction: ltr; }

/* Font Size
------------------------- */
/* line 347, sass/_shortcode.scss */
.font-small {
  font-size: 0.75rem; }

/* line 350, sass/_shortcode.scss */
.font-medium {
  font-size: 1.25rem; }

/* line 353, sass/_shortcode.scss */
.font-large {
  font-size: 1.5rem; }

/* line 356, sass/_shortcode.scss */
.font-2x {
  font-size: 2rem; }

/* line 359, sass/_shortcode.scss */
.font-3x {
  font-size: 2.5rem; }

/* line 362, sass/_shortcode.scss */
.font-4x {
  font-size: 3rem; }

/* line 365, sass/_shortcode.scss */
.font-5x {
  font-size: 4rem; }

/* line 368, sass/_shortcode.scss */
.font-6x {
  font-size: 5rem; }

/* line 371, sass/_shortcode.scss */
.font-7x {
  font-size: 6rem; }

/* line 374, sass/_shortcode.scss */
.font-8x {
  font-size: 7rem; }

/* image icons size
------------------------- */
/* line 380, sass/_shortcode.scss */
.icon-s {
  max-height: 1rem; }

/* line 383, sass/_shortcode.scss */
.icon-m {
  max-height: 1.5rem; }

/* line 386, sass/_shortcode.scss */
.icon-l {
  max-height: 2rem; }

/* line 389, sass/_shortcode.scss */
.icon-xl {
  max-height: 3rem; }

/* line 392, sass/_shortcode.scss */
.icon-x2 {
  max-height: 4rem; }

/* line 395, sass/_shortcode.scss */
.icon-x3 {
  max-height: 5rem; }

/* line 398, sass/_shortcode.scss */
.icon-x4 {
  max-height: 6rem; }

/* line 401, sass/_shortcode.scss */
.icon-x5 {
  max-height: 7rem; }

/* line 404, sass/_shortcode.scss */
.icon-x6 {
  max-height: 8rem; }

/* line 407, sass/_shortcode.scss */
.icon-x7 {
  max-height: 9rem; }

/* line 410, sass/_shortcode.scss */
.icon-x8 {
  max-height: 10rem; }

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

/* Empty width and height
------------------------- */
/* line 430, sass/_shortcode.scss */
.w20px {
  display: inline-block;
  width: 20px; }

/* line 434, sass/_shortcode.scss */
.w30px {
  display: inline-block;
  width: 30px; }

/* line 438, sass/_shortcode.scss */
.w40px {
  display: inline-block;
  width: 40px; }

/* line 442, sass/_shortcode.scss */
.w50px {
  display: inline-block;
  width: 50px; }

/* line 446, sass/_shortcode.scss */
.w70px {
  display: inline-block;
  width: 70px; }

/* line 450, sass/_shortcode.scss */
.w100px {
  display: inline-block;
  width: 100px; }

/* line 454, sass/_shortcode.scss */
.empty,
.spacer,
.spacer-x2,
.spacer-x3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

/* line 467, sass/_shortcode.scss */
.empty,
.spacer {
  padding: 1rem 0; }

/* line 471, sass/_shortcode.scss */
.spacer-x2 {
  padding: 2rem 0; }

/* line 474, sass/_shortcode.scss */
.spacer-x3 {
  padding: 3rem 0; }

/* sections
--------------------------------- */
/* line 479, sass/_shortcode.scss */
.section,
.section-small,
.section-large,
.unit {
  display: block;
  width: 100%; }

/* line 486, sass/_shortcode.scss */
.section {
  padding: 2rem 0; }

/* line 489, sass/_shortcode.scss */
.section-small {
  padding: 1rem 0; }

/* line 492, sass/_shortcode.scss */
.section-large,
.unit {
  padding: 3rem 0; }

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

/* line 509, sass/_shortcode.scss */
.flex,
.flex-container,
.columns {
  display: flex; }

/* line 514, sass/_shortcode.scss */
.columns {
  flex-wrap: wrap; }

/* line 517, sass/_shortcode.scss */
.grid {
  display: grid; }

/* line 520, sass/_shortcode.scss */
.grid-container {
  display: grid;
  grid-auto-flow: column; }

/* line 524, sass/_shortcode.scss */
.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  grid-gap: 1rem;
  gap: 1rem; }

/* line 530, sass/_shortcode.scss */
.item img {
  display: block; }

/* Create Equal width columns with no gap */
/* line 534, sass/_shortcode.scss */
.column {
  flex: 1 1 230px;
  margin: 0;
  padding: 0; }

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

/* Flex and grid properties
--------------------------------- */
/* line 554, sass/_shortcode.scss */
.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

/* line 559, sass/_shortcode.scss */
.v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

/* line 564, sass/_shortcode.scss */
.h-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

/* line 569, sass/_shortcode.scss */
.vh-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

/* line 577, sass/_shortcode.scss */
.gap {
  gap: 1rem; }

/* line 580, sass/_shortcode.scss */
.gap-2x {
  gap: 2rem; }

/* line 583, sass/_shortcode.scss */
.gap-small {
  gap: 0.5rem; }

/* line 586, sass/_shortcode.scss */
.no-gap {
  gap: 0; }

/* Flex properties */
/* line 590, sass/_shortcode.scss */
.flex-row {
  flex-direction: row; }

/* line 593, sass/_shortcode.scss */
.flex-column {
  flex-direction: column; }

/* line 596, sass/_shortcode.scss */
.wrap {
  flex-wrap: wrap; }

/* line 599, sass/_shortcode.scss */
.no-wrap {
  flex-wrap: nowrap; }

/* Box
------------------------- */
/* line 604, sass/_shortcode.scss */
.box {
  position: relative;
  background-color: #ffffff;
  box-shadow: var(--shadow);
  padding: 1rem; }

/* line 610, sass/_shortcode.scss */
.box p:last-of-type {
  margin: 0; }

/* Media - Image */
/* line 614, sass/_shortcode.scss */
img.round {
  border-radius: 14px; }

/* line 617, sass/_shortcode.scss */
img.border {
  border: 5px solid var(--border); }

/* line 620, sass/_shortcode.scss */
img.border-primary {
  border: 5px solid var(--color-primary); }

/* line 623, sass/_shortcode.scss */
img.border-secondary {
  border: 5px solid var(--color-secondary); }

/* line 626, sass/_shortcode.scss */
img.shadow {
  box-shadow: 0 0 1rem #444444; }

/* line 629, sass/_shortcode.scss */
img.shadow-primary {
  box-shadow: var(--shadow-primary); }

/* line 632, sass/_shortcode.scss */
img.shadow-secondary {
  box-shadow: var(--shadow-secondary); }

/* Media - Audio, video */
/* line 636, sass/_shortcode.scss */
.section-audio audio {
  min-width: 300px;
  width: 100%; }

/* line 640, sass/_shortcode.scss */
.section-audio audio:focus {
  outline-width: 2px;
  outline-style: solid; }

/* line 644, sass/_shortcode.scss */
.section-video video {
  vertical-align: middle;
  width: 100%; }

/* Separator */
/* line 649, sass/_shortcode.scss */
hr.line-dot {
  border-bottom: 2px dotted var(--border); }

/* line 652, sass/_shortcode.scss */
hr.line-dash {
  border-bottom: 2px dashed var(--border); }

/* line 655, sass/_shortcode.scss */
hr.line-double {
  height: 5px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); }

/* EU Cookie Compliance module */
/* line 2, sass/_extra.scss */
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; }

/* line 7, sass/_extra.scss */
#sliding-popup {
  padding: 2rem;
  max-width: 600px; }

/* line 11, sass/_extra.scss */
#sliding-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* line 16, sass/_extra.scss */
.eu-cookie-compliance-content {
  max-width: 100%; }

/* line 19, sass/_extra.scss */
.eu-cookie-compliance-message {
  float: none;
  margin: 0;
  max-width: 100%; }

/* line 24, sass/_extra.scss */
#sliding-popup div,
#sliding-popup h2 {
  color: var(--bold-color); }

/* line 28, sass/_extra.scss */
#sliding-popup h2 {
  font-size: 1.2rem; }

/* line 31, sass/_extra.scss */
#sliding-popup p {
  display: block;
  color: var(--text-color);
  font-size: 0.9rem; }

/* line 36, sass/_extra.scss */
.eu-cookie-compliance-message button {
  background-color: transparent;
  color: var(--color-primary);
  margin: 0;
  padding: 0; }

/* line 42, sass/_extra.scss */
.eu-cookie-compliance-message button:hover {
  background-color: transparent;
  color: var(--bold-color); }

/* line 46, sass/_extra.scss */
.eu-cookie-compliance-buttons {
  display: flex;
  gap: 1rem;
  float: none;
  margin: 0;
  max-width: 100%; }

/* line 53, sass/_extra.scss */
.eu-cookie-compliance-buttons .button {
  background-color: transparent;
  background-image: none;
  color: var(--color-primary);
  font-weight: 400;
  margin: 0;
  padding: 8px 1rem;
  border: 2px solid var(--bold-color);
  text-shadow: none;
  box-shadow: none;
  border-radius: 0; }

/* line 65, sass/_extra.scss */
.eu-cookie-compliance-buttons .button:hover {
  background-color: var(--bold-color);
  color: #ffffff; }

/* Clearing
-------------------------------------------- */
/* line 72, sass/_extra.scss */
.clear {
  clear: both;
  width: 100%; }

/* line 76, sass/_extra.scss */
#last-section::before {
  content: "";
  display: table;
  clear: both; }

/* line 81, sass/_extra.scss */
#last-section::after {
  content: "";
  display: table;
  clear: both; }

/* line 86, sass/_extra.scss */
#homepage-content-wrapper::before,
#homepage-content-wrapper::after {
  content: "";
  display: table;
  clear: both; }

/* line 92, sass/_extra.scss */
.page-title-wrap::before,
.page-title-wrap::after,
.node-content::before,
.node-content::after {
  content: "";
  display: table;
  clear: both; }

/* line 100, sass/_extra.scss */
.node-header::before,
.node-header::after,
.node-taxonomy-container::before,
.node-taxonomy-container::after,
.node-links-container::before,
.node-links-container::after {
  content: "";
  display: table;
  clear: both; }

/* line 110, sass/_extra.scss */
#node-comment::before,
#node-comment::after {
  content: "";
  display: table;
  clear: both; }

/* Product display
-------------------------------------------- */
/* line 119, sass/_extra.scss */
.cart-box {
  position: relative;
  padding-bottom: 60px; }

/* line 123, sass/_extra.scss */
.cart-box .cart-box-form {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0; }

/* line 129, sass/_extra.scss */
.product-list-item {
  margin: 5px; }

/* line 133, sass/_extra.scss */
button.slick-arrow:hover,
button.slick-arrow:focus {
  border: 0; }

/* line 138, sass/_extra.scss */
button.slick-arrow::before {
  color: #09f; }

/* line 142, sass/_extra.scss */
.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px; }

/* line 149, sass/_extra.scss */
.arrow-right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

/* line 154, sass/_extra.scss */
.arrow-left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg); }

/* line 159, sass/_extra.scss */
.arrow-up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg); }

/* line 164, sass/_extra.scss */
.arrow-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

@media (max-width: 500px) {
  /* line 2, sass/_responsive.scss */
  .search-box-content input[type="search"] {
    padding: 15px; }
  /* line 5, sass/_responsive.scss */
  .search-box-content input[type="submit"] {
    padding: 10px 20px; }
  /* line 8, sass/_responsive.scss */
  .align-left,
  img.align-left,
  figure.align-left,
  .align-right,
  img.align-right,
  figure.align-right,
  .align-center,
  img.align-center,
  figure.align-center {
    clear: both;
    margin: 0 auto;
    float: none; }
  /* Homepage -> Slider */
  /* line 22, sass/_responsive.scss */
  .home-slider h1,
  .home-slider h2,
  .home-slider h3 {
    font-size: 1.6rem; }
  /* line 27, sass/_responsive.scss */
  .home-slider p {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem; }
  /* Layout -> Sidebar */
  /* line 33, sass/_responsive.scss */
  .sidebar,
  #sidebar-left,
  #sidebar-right,
  .two-sidebar #sidebar-left {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0; }
  /* Footer */
  /* line 43, sass/_responsive.scss */
  .footer-blocks {
    flex-direction: column; }
  /* line 46, sass/_responsive.scss */
  .footer-block {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 1.6rem; } }

@media only screen and (min-width: 501px) and (max-width: 767px) {
  /* Layout -> Column */
  /* line 56, sass/_responsive.scss */
  .one_four,
  .one_four_first,
  .one_four_last {
    width: 50%;
    padding: 2%; }
  /* Homepage -> Slider */
  /* line 63, sass/_responsive.scss */
  .home-slider h1,
  .home-slider h2,
  .home-slider h3 {
    font-size: 2rem; }
  /* line 68, sass/_responsive.scss */
  .home-slider p {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem; }
  /* Sidebar */
  /* line 74, sass/_responsive.scss */
  .sidebar,
  #sidebar-left,
  #sidebar-right,
  .two-sidebar #sidebar-left {
    float: left;
    width: 50%;
    height: 100%;
    margin: 0; }
  /* line 83, sass/_responsive.scss */
  #sidebar-left {
    float: left;
    padding: 0 1% 0 0; }
  /* line 87, sass/_responsive.scss */
  #sidebar-right {
    float: right;
    padding: 0 0 0 1%; }
  /* Footer */
  /* line 92, sass/_responsive.scss */
  .footer-block {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    margin-bottom: 1.6em; }
  /* line 98, sass/_responsive.scss */
  .footer-block:nth-child(even) {
    padding: 0; }
  /* line 101, sass/_responsive.scss */
  .footer-block {
    padding-right: 1.6em; }
  /* line 104, sass/_responsive.scss */
  .w25 {
    flex-basis: calc(50% - 10px); } }

@media screen and (max-width: 767px) {
  /* line 110, sass/_responsive.scss */
  body {
    -webkit-text-size-adjust: none; }
  /* line 113, sass/_responsive.scss */
  .container {
    width: 100%;
    max-width: 767px; }
  /* Admin tabs */
  /* line 118, sass/_responsive.scss */
  .page-tabs li {
    font-size: 0.9rem; }
  /* line 121, sass/_responsive.scss */
  .page-tabs li a {
    padding: 2px 4px;
    border-right: 1px solid #ffffff; }
  /* Layout -> Header -> Header top*/
  /* line 126, sass/_responsive.scss */
  .header-container {
    padding: 6px 0; }
  /* line 129, sass/_responsive.scss */
  .header-top-container {
    flex-direction: column; }
  /* line 132, sass/_responsive.scss */
  .header-top-left {
    margin-bottom: 6px; }
  /* line 135, sass/_responsive.scss */
  .header-top-left i,
  ul.social-icons li {
    font-size: 0.8rem; }
  /* line 139, sass/_responsive.scss */
  .header-top-left i,
  ul.social-icons li a {
    width: 30px;
    height: 30px; }
  /* line 144, sass/_responsive.scss */
  .search-icon {
    padding: 10px 0 10px 10px; }
  /* line 147, sass/_responsive.scss */
  .search-box-content {
    width: 90%; }
  /* Slider */
  /* line 151, sass/_responsive.scss */
  .owl-item {
    text-align: center; }
  /* Breadcrumb */
  /* line 155, sass/_responsive.scss */
  #breadcrumb {
    padding: 6px 0; }
  /* line 158, sass/_responsive.scss */
  .breadcrumb {
    font-size: 0.8rem; }
  /* line 161, sass/_responsive.scss */
  .breadcrumb-item-seperator {
    margin: 0 6px; }
  /* Layout -> Page layout */
  /* line 165, sass/_responsive.scss */
  .no-sidebar .main-container,
  .sidebar-left .main-container,
  .sidebar-right .main-container,
  .two-sidebar .main-container {
    grid-template-columns: 100%; }
  /* line 171, sass/_responsive.scss */
  #main {
    order: 1; }
  /* line 174, sass/_responsive.scss */
  #sidebar-left {
    order: 2; }
  /* line 177, sass/_responsive.scss */
  #sidebar-right {
    order: 3; }
  /* Node Content */
  /* line 181, sass/_responsive.scss */
  .page-title-wrap {
    padding: 16px 0; }
  /* line 184, sass/_responsive.scss */
  .page-title-wrap h1.page-title {
    font-size: 1.6rem; }
  /* line 187, sass/_responsive.scss */
  #node-comment .indented {
    margin-left: 20px; }
  /* Layout -> Footer */
  /* line 191, sass/_responsive.scss */
  #footer {
    position: relative;
    z-index: 2; }
  /* line 195, sass/_responsive.scss */
  .footer-bottom-middle {
    flex-direction: column; }
  /* line 198, sass/_responsive.scss */
  .copyright {
    margin-bottom: 12px; }
  /* Content -> Form */ }

@media (min-width: 768px) {
  /* line 204, sass/_responsive.scss */
  html {
    font-size: 18px; }
  /* Header main menu */
  /* line 208, sass/_responsive.scss */
  .primary-menu-wrapper {
    position: relative;
    background-color: transparent;
    padding: 0;
    transform: translateX(0);
    z-index: 10; }
  /* line 215, sass/_responsive.scss */
  .menu-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    transform: none;
    z-index: 10; }
  /* line 223, sass/_responsive.scss */
  .region-primary-menu .menu {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0; }
  /* line 228, sass/_responsive.scss */
  .region-primary-menu .menu-item-level-1 {
    border: 0; }
  /* line 231, sass/_responsive.scss */
  .region-primary-menu .menu-item-level-1:hover {
    background-color: var(--bold-color);
    color: #ffffff; }
  /* line 235, sass/_responsive.scss */
  .region-primary-menu .menu-item-level-1:hover > a {
    color: #ffffff; }
  /* line 238, sass/_responsive.scss */
  .region-primary-menu .menu-item-level-1 a,
  .region-primary-menu .menu-item-level-1 > span {
    display: block;
    color: var(--bold-color);
    padding: 0.5rem; }
  /* line 244, sass/_responsive.scss */
  .region-primary-menu .menu-item-level-1 a:hover,
  .region-primary-menu .menu-item-level-1 > span:hover {
    background-color: var(--bold-color);
    color: #ffffff; }
  /* line 249, sass/_responsive.scss */
  .menu-item-has-children {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center; }
  /* line 255, sass/_responsive.scss */
  .menu-item-has-children::after {
    position: relative;
    top: 0;
    color: var(--bold-color); }
  /* line 260, sass/_responsive.scss */
  .region-primary-menu .submenu {
    position: absolute;
    background-color: var(--bold-color);
    top: 100%;
    min-width: 200px;
    max-width: 300px;
    padding: 0 0.5rem;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden; }
  /* line 271, sass/_responsive.scss */
  .region-primary-menu .submenu li {
    padding: 0;
    border-top: 0;
    border-bottom: 1px solid var(--text-color); }
  /* line 276, sass/_responsive.scss */
  .region-primary-menu .submenu li:first-child {
    border-top: none; }
  /* line 279, sass/_responsive.scss */
  .region-primary-menu .submenu a,
  .region-primary-menu .submenu li > span {
    color: #ffffff;
    padding: 0.5rem 0;
    width: calc(100% - 1rem); }
  /* line 285, sass/_responsive.scss */
  .menu-item-has-children:hover > .submenu {
    visibility: visible;
    animation: slideUp 0.5s forwards; }
  /* line 289, sass/_responsive.scss */
  .region-primary-menu .submenu a:hover {
    color: var(--color-primary); }
  /* third level menu */
  /* line 293, sass/_responsive.scss */
  .region-primary-menu .submenu .submenu {
    left: 100%;
    top: 0; }
  /* line 297, sass/_responsive.scss */
  .submenu .menu-item-has-children::after {
    color: #ffffff; }
  /* line 300, sass/_responsive.scss */
  .mobile-menu,
  .close-mobile-menu {
    display: none; }
  /* line 304, sass/_responsive.scss */
  .view-in-mobile {
    display: none; }
  /* line 307, sass/_responsive.scss */
  .view-in-desktop {
    display: block; }
  /* shortcodes -> content width */
  /* line 311, sass/_responsive.scss */
  .width30 {
    width: 30%; }
  /* line 314, sass/_responsive.scss */
  .width40 {
    width: 40%; }
  /* line 317, sass/_responsive.scss */
  .width50 {
    width: 50%; }
  /* line 320, sass/_responsive.scss */
  .width60 {
    width: 60%; }
  /* line 323, sass/_responsive.scss */
  .width70 {
    width: 70%; }
  /* line 326, sass/_responsive.scss */
  .width80 {
    width: 80%; }
  /* line 329, sass/_responsive.scss */
  .width90 {
    width: 90%; }
  /* shortcodes -> responsive column */
  /* line 333, sass/_responsive.scss */
  .w10 {
    flex-basis: calc(10% - 10px); }
  /* line 336, sass/_responsive.scss */
  .w20 {
    flex-basis: calc(20% - 10px); }
  /* line 339, sass/_responsive.scss */
  .w25 {
    flex-basis: calc(25% - 10px); }
  /* line 342, sass/_responsive.scss */
  .w30 {
    flex-basis: calc(30% - 10px); }
  /* line 345, sass/_responsive.scss */
  .w40 {
    flex-basis: calc(40% - 10px); }
  /* line 348, sass/_responsive.scss */
  .w50 {
    flex-basis: calc(50% - 10px);
    flex-grow: 0; }
  /* line 352, sass/_responsive.scss */
  .w60 {
    flex-basis: calc(60% - 10px); }
  /* line 355, sass/_responsive.scss */
  .w70 {
    flex-basis: calc(70% - 10px); }
  /* line 358, sass/_responsive.scss */
  .w80 {
    flex-basis: calc(80% - 10px); }
  /* line 361, sass/_responsive.scss */
  .w90 {
    flex-basis: calc(90% - 10px); } }

/*# sourceMappingURL=style.css.map */