/* Variables
---------------------------------------- */
:root {
  --primary: #365AB5;
  --secondary: #D05700;
  --dark: #232742;
  --light: #D5DCEE;
  --border: #99A4C1;
  --color-text: #444444;
  --color-heading: #111111;
}

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
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 {
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  text-rendering: optimizeSpeed;
  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;
}

summary {
  display: list-item;
  cursor: pointer;
}

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

template,
[hidden] {
  display: none;
}

/* Typography
---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1.2rem 0;
}

b,
strong {
  font-weight: bolder;
}

dfn,
cite {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

em {
  font-style: normal;
}

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

a:active,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
}

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

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Typography-> code tags */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
}

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

code,
pre {
  background-color: var(--light);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

mark {
  background: var(--primary);
}

acronym[title], abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

abbr,
acronym {
  cursor: help;
}

/* Media
---------------------------------------- */
audio,
canvas,
progress,
video {
  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;
  border-style: none;
  vertical-align: middle;
}

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

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

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

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

.align-center {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

figcaption {
  padding: 4px;
  font-size: 0.8rem;
  text-align: center;
}

.image-field {
  margin: 0 0 1rem 0;
}

/* 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: 8px 10px;
  line-height: 1.6;
  -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,
button,
textarea,
select {
  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],
textarea {
  padding: 10px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus {
  outline: 0;
}

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

[type=checkbox],
[type=radio] {
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
}

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

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[type=file] {
  cursor: pointer;
}

fieldset {
  margin: 0 0 20px 0;
  padding: 1rem;
}

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

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

/*
 * Layout
 */
/* Layout -> containers */
.container {
  position: relative;
  width: 100%;
  max-width: 1170px;
  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;
  gap: 1.5rem;
}

/* Main
--------------------------------*/
#main {
  position: relative;
  order: 0;
}

#sidebar-left {
  order: 1;
}

#sidebar-right {
  order: 2;
}

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

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

/* Frontpage with Sidebar
--------------------------------*/
.front-content-with-sidebar {
  display: flex;
}

/**
 * Drupal core
 */
/* Core -> contextual-links */
.header-top .contextual-links {
  display: none;
}

/* Core -> Fields */
[dir] .field:not(:last-child) {
  margin-bottom: 36px;
}

.field__label {
  font-weight: bold;
}

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

.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__items {
  padding-right: 0;
  padding-left: 0.5rem;
}

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

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

/*!
 *  The-X icon font. Generated by Iconly: https://iconly.io/
 */
@font-face {
  font-display: auto;
  font-family: "thex";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/thex.woff2") format("woff2");
}
[class=icon], [class^=icon-], [class*=" icon-"] {
  display: inline-block;
  font-family: "thex" !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";
}

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

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

.region-header-top-left,
.region-header-top-right {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.header-top ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.header-top-block .block-title {
  font-size: 1.2rem;
}

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

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

/* Header -> Site branding */
.site-branding {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .site-branding {
    padding-right: 1rem;
  }
}

@media (min-width: 992px) {
  .site-logo {
    padding-right: 5px;
  }
}

.site-logo img {
  display: block;
  width: 100px;
}
@media (min-width: 992px) {
  .site-logo img {
    width: auto;
  }
}

.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: 0.5rem;
}

.menu-wrap {
  position: fixed;
  background-color: var(--dark);
  color: #ffffff;
  top: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  max-width: 320px;
  box-shadow: none;
  z-index: 25;
  transform: translateX(-100%);
  transition: all 0.4s linear;
}

.menu-wrap .menu {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  z-index: 30;
  list-style: none;
  list-style-type: none;
}

.menu-wrap .menu li {
  position: relative;
  padding: 0;
}

.menu-wrap a {
  display: block;
  color: #ffffff;
  padding: 0.5rem 0;
}

.menu-wrap .menu > li a::after {
  content: none;
}

.menu-wrap .submenu {
  position: relative;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  margin: 0;
  padding: 0;
  z-index: 30;
  list-style: none;
  list-style-type: none;
}

.menu-wrap .submenu li a,
.menu-wrap .submenu li > span {
  display: flex;
  width: 100%;
  padding: 0.5rem;
}

.menu-wrap .menu-item a,
.menu-wrap .menu-item > span {
  border-bottom: 1px solid var(--border);
}

.menu-wrap .submenu li > a,
.menu-wrap .submenu li > span {
  padding-left: 1.5rem;
}

.menu-wrap .submenu .submenu .menu-item > a,
.menu-wrap .submenu .submenu .menu-item > span {
  padding-left: 3rem;
}

/* Mobile Menu */
.mobile-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 28px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.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 {
  display: grid;
  place-content: center;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 34px;
  height: 34px;
  color: #ffffff;
  border: 2px solid var(--primary);
  border-radius: 50%;
  z-index: 48;
  cursor: pointer;
}

.active-menu .menu-wrap {
  overflow-y: scroll;
  transform: translateX(0);
  transition: all 0.4s linear;
  padding: 1rem;
  box-shadow: 6px 0 1rem #111111;
}

.active-menu .menu {
  display: block;
}

/*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;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

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

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

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

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

.search-box-content form {
  margin: 0;
}

.header-search-close {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  border: 3px solid var(--dark);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  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 2rem 4px 0;
  font-size: 1.4rem;
  background: url("../images/icons/search.svg") center 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: block;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}

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

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

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

.primary-menu-wrapper .menu-wrap {
  z-index: 1021;
}

@media (max-width: 991.98px) {
  .sticky-top {
    position: sticky !important;
    background-color: #fff;
    z-index: 1020 !important;
  }
}
.sticky-top {
  z-index: 0;
}

/* 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: 1em 0;
}

.highlighted p:last-child {
  margin: 0;
}

/* Nodes */
.node,
.node-promoted,
.node-sticky,
.node-view-mode-full,
.node-unpublished {
  position: relative;
}

.node-view-mode-teaser {
  position: relative;
  margin-bottom: 4rem;
  border-bottom: 4px double var(--border);
}

.node-view-mode-teaser.node-sticky {
  border: 2px solid var(--border);
  padding: 1rem;
}

.node-view-mode-full .node-taxonomy-container {
  margin: 0;
}

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

#comments {
  position: relative;
  margin: 0;
}

.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 -> single comment */
.comment {
  position: relative;
  background-color: var(--light);
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
}

.comment-header {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 2px solid var(--border);
  padding: 1rem;
  margin-bottom: 1rem;
}

.comment-user-picture {
  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-left: 1rem;
}

h3.comment-title {
  font-size: 1.2rem;
  margin: 0.1rem 0;
}

.comment-meta p {
  margin: 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;
}

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

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

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

.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);
}

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

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

.paragraph--type--hero {
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
}
@media (min-width: 992px) {
  .paragraph--type--hero {
    min-height: 765px;
  }
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.4);
  min-height: 500px;
}
@media (min-width: 992px) {
  .hero-content {
    min-height: 765px;
  }
}
.hero-content .hero-title h1 {
  color: #fff;
  font-weight: bold;
  font-size: 2.4em;
  line-height: 1;
}
@media (min-width: 992px) {
  .hero-content .hero-title h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .hero-content .hero-title h1 {
    font-size: 2.8em;
  }
}
.hero-content .hero-sub-title {
  color: #fff;
  font-size: 1.4em;
  line-height: 1.75;
}
@media (min-width: 992px) {
  .hero-content .hero-sub-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .hero-content .hero-sub-title {
    font-size: 1.4em;
  }
}
.hero-content .hero-cta-btn {
  width: -moz-fit-content;
  width: fit-content;
}
.hero-content .hero-cta-btn a {
  text-transform: uppercase;
  text-decoration: none;
  color: #222227;
  font-size: 20px;
}
@media (min-width: 1200px) {
  .hero-content .hero-cta-btn a {
    font-size: 1.75rem;
  }
}

.paragraph--type--call-out-box {
  border-top: 1px solid rgb(238, 238, 238);
  border-bottom: 1px solid rgb(238, 238, 238);
  border-right: 1px solid rgb(238, 238, 238);
  border-left: 5px solid #ab1f24;
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5% 2%;
}
@media (min-width: 992px) {
  .paragraph--type--call-out-box {
    margin: 2.5% auto !important;
  }
}
.paragraph--type--call-out-box a {
  text-decoration: underline;
  text-underline-position: under;
}

.breadcrumb .breadcrumb-items .breadcrumb-item:before {
  content: none;
}

.bef-links--staff ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
@media (min-width: 400px) {
  .bef-links--staff ul {
    flex-direction: row;
  }
}
.bef-links--staff ul {
  justify-content: space-evenly;
}
.bef-links--staff ul li {
  width: -webkit-fill-available;
  display: flex;
  justify-content: center;
}
.bef-links--staff ul li a {
  font-weight: bold;
  font-size: 1.5rem;
  text-transform: uppercase;
  display: block;
  padding: 0.5rem 1rem;
  text-align: center;
  width: 100%;
}
.bef-links--staff ul li:hover {
  background-color: #ab1f24;
}
.bef-links--staff ul li:hover a {
  color: #fff !important;
  text-decoration: none;
}

.js-form-item-field-department-value label {
  text-align: center;
  font-size: 1.75rem;
}

li.menu-item a {
  color: #fff;
}
li.menu-item a:hover {
  color: #fff !important;
  text-decoration: none;
}

.footer-block h2 {
  font-size: 1.25rem !important;
  color: #666;
  text-align: center;
  padding-bottom: 1rem;
}
.footer-block .region-footer-one .menu {
  text-align: center;
}
.footer-block .region-footer-one li {
  border-bottom: none !important;
  font-weight: normal !important;
  padding: 0 !important;
}
.footer-block .region-footer-one li a {
  color: #666;
}
.footer-block .region-footer-one li a:hover {
  color: #222227 !important;
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: inherit;
}

@media (min-width: 992px) {
  .hp-heading-cta {
    min-width: 660px;
  }
}
@media (min-width: 1200px) {
  .hp-heading-cta {
    min-width: 800px;
  }
}

a {
  color: #ab1f24;
}
a:hover {
  color: rgb(127.8267326733, 23.1732673267, 26.9108910891) !important;
  text-decoration: underline;
  text-underline-position: under;
}

#block-gardenia-contactusheader a:hover {
  color: #fff !important;
}

.webform-submission-form input {
  min-height: 50px;
}

#sliding-popup {
  max-width: 100% !important;
  width: 100%;
  padding: 0.5rem !important;
}
#sliding-popup p {
  font-size: 0.85rem !important;
}

.eu-cookie-compliance-message p {
  margin-bottom: 0;
}

.text-small {
  font-size: 0.85rem;
}

.sitemap ul::marker, .sitemap li::marker {
  content: none;
}

.btn.bg-white:hover {
  background-color: #ab1f24 !important;
  border-color: #ab1f24 !important;
  color: #fff;
}
.btn.bg-white:hover a {
  color: #fff !important;
}

.button--primary.bg-primary:hover {
  background-color: rgb(127.8267326733, 23.1732673267, 26.9108910891) !important;
  border-color: rgb(127.8267326733, 23.1732673267, 26.9108910891) !important;
  color: #fff;
}

.hp-heading-cta {
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.hp-heading-cta:hover {
  transform: scale(1.05);
}

.paragraph--type--card {
  box-shadow: 3px 7px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
.paragraph--type--card:hover {
  transform: scale(1.05);
}
.paragraph--type--card .card-title h3 {
  font-weight: bold;
  margin-bottom: 0;
  color: #fff;
}
@media (min-width: 768px) {
  .paragraph--type--card {
    width: 55%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .paragraph--type--card {
    width: auto;
    margin: auto;
  }
}

.node-type-staff {
  clear: both;
  border-bottom: 0 !important;
}
.node-type-staff .staff-image-wrapper .image-field {
  margin-bottom: 0 !important;
}
@media (min-width: 992px) {
  .node-type-staff.node-view-mode-teaser {
    height: 250px !important;
  }
}
@media (min-width: 1200px) {
  .node-type-staff.node-view-mode-teaser {
    height: 275px !important;
  }
}
@media (min-width: 768px) {
  .node-type-staff.node-view-mode-teaser .staff-image-wrapper {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .node-type-staff.node-view-mode-teaser .staff-image-wrapper {
    width: auto;
  }
}
.node-type-staff.node-view-mode-teaser .staff-content-wrapper {
  width: 75%;
}
.node-type-staff.node-view-mode-teaser img {
  border-radius: var(--bs-border-radius) !important;
}

.card-media img {
  width: 100%;
  min-height: 250px;
}
@media (min-width: 768px) {
  .card-media img {
    display: flex;
    margin: 0 auto;
    width: auto;
  }
}
@media (min-width: 992px) {
  .card-media img {
    width: 100%;
    min-height: 250px;
  }
}

.gallery-images {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 400px) {
  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .gallery-images {
    grid-template-columns: repeat(4, 1fr);
  }
}

.node-type-gallery.node-view-mode-teaser .gallery-images {
  display: flex;
  justify-content: center;
  gap: 0;
}
.node-type-gallery.node-view-mode-teaser .gallery-images div.gallery-image.field-item:not(:first-child) {
  display: none;
}
.node-type-gallery.node-view-mode-teaser {
  border-bottom: 0;
}

.gdesc-inner {
  display: none;
}

@media (max-width: 991.98px) {
  .glightbox-clean .gprev, .glightbox-clean .gnext {
    top: 50%;
  }
  .glightbox-clean .gprev {
    left: 10px;
  }
  .glightbox-clean .gnext {
    right: 10px;
  }
}

/**
 * footer
 */
/* Footer */
.footer {
  position: relative;
  background-color: #f0f0f0;
  color: #666;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

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

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

.region-footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

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

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

/* Drupal system message */
.message {
  position: relative;
  margin: 1rem 0;
  padding: 1rem 1rem 1rem 4rem;
  color: #ffffff;
}

.message a,
.message a:visited {
  color: #ffffff;
  text-decoration: underline;
}

.message p:last-child {
  margin: 0;
}

.message em {
  font-style: italic;
}

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

.message-status::before {
  content: url(../images/icons/message/success.svg);
  background: #759625;
}

.message-error {
  background: #c94d1c;
}

.message-error::before {
  content: url(../images/icons/message/error.svg);
  background-color: #b3461b;
}

.message-warning {
  background: #cd5a0a;
}

.message-warning::before {
  content: url(../images/icons/message/warning.svg);
  background-color: #a44707;
}

.message::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.6rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

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

.page-tabs li {
  display: inline-flex;
  padding: 0;
}

.page-tabs li a {
  background-color: var(--dark);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-right: 2px solid var(--border);
}

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

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

/* Entity reference */
.node-taxonomy-container, .node-links-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 0;
}

h3.term-title {
  font-size: 1.2em;
}

ul.taxonomy-terms {
  margin: 10px 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

li.taxonomy-term {
  position: relative;
  display: inline-block;
  padding: 0;
  word-break: break-all;
}

li.taxonomy-term:not(:last-child) {
  margin-right: 1rem;
}

.taxonomy-term a {
  padding: 6px 14px;
  border: 2px solid var(--border);
}

/* Node Links */
.node-links-container ul.links {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.node-links-container .links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

ul.inline,
ul.links.inline {
  padding-left: 0;
}

ul.inline li {
  position: relative;
  display: inline-block;
  list-style-type: none;
}

ul.inline li a {
  display: inline-block;
}

/* Pager */
.pager {
  position: relative;
}

.pager ul.pager__items {
  position: relative;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  list-style-type: none;
}

.pager__items {
  clear: both;
  text-align: center;
}

.pager__item {
  display: inline-block;
  padding: 12px 0;
}

.pager__item a {
  padding: 8px 14px;
  color: #fff;
  background: var(--dark);
}

.pager__item a:hover,
.pager__item.is-active a {
  background: var(--primary);
  color: #fff;
}

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

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

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

a {
  color: #ab1f24;
}
a:hover {
  color: #474748;
}

.footer-text {
  color: #666;
}
.footer-text a {
  color: #666;
  font-size: 1rem;
  line-height: 1.75rem;
}
.footer-text a:hover {
  color: #222227;
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: inherit;
}
.footer-text span {
  font-size: 1rem;
  line-height: 1.75rem;
}

.border-radius-0 {
  border-radius: 0 !important;
}

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

@media (min-width: 992px) {
  .w-lg-31 {
    width: 31% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-30 {
    width: 30% !important;
  }
}

.w-33 {
  width: 33.3333%;
}

.w-35 {
  width: 35%;
}

@media (min-width: 768px) {
  .w-md-49 {
    width: 49% !important;
  }
}

@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important;
  }
}

.h-0 {
  height: 0 !important;
}

@media (min-width: 992px) {
  .h-lg-auto {
    height: auto !important;
  }
}

@media (min-width: 992px) {
  .w-lg-35 {
    width: 35% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
}

.bg-tan {
  background-color: #f0f0f0 !important;
}

.no-hyphens {
  hyphens: manual;
  /* Additional properties for better cross-browser compatibility */
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
}

form input, form textarea {
  border: none !important;
}
form .form-item label {
  font-weight: 700;
}
form .form-item .form-required:after {
  content: " *";
  color: #dc3545;
  background-image: none;
}

body {
  color: #222227;
}

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

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

/* Color and background
--------------------------------- */
.primary,
.color-primary {
  color: var(--primary);
}

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

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

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

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

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

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

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

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

.center {
  margin: 0 auto;
}

/* 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-x2,
.spacer-x3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

/* sections
--------------------------------- */
.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,
.flex-container,
.columns {
  display: flex;
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

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

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

.item img {
  display: block;
}

/* 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 - Common for all
--------------------------------- */
.space-between {
  justify-content: space-between;
}

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

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

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

.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, icon box
--------------------------------- */
.box,
.icon-box {
  position: relative;
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
}

.box p:last-of-type,
.icon-box p:last-of-type {
  margin: 0;
}

/* Shortcodes -> grid column
--------------------------------- */
.grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.region-content-home-top,
.region-content-home-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

.region-content-home-top {
  margin-bottom: 2rem;
}

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

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

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

@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;
  }
  /* Header */
  .header-top-container {
    flex-direction: row;
    gap: 1rem;
  }
  /* Header -> Search form */
  .header-search-close {
    top: 2rem;
  }
  .search-box-content .block-title {
    display: block;
  }
  .breadcrumb-item span {
    margin: 0 10px;
  }
  /* Main */
  .main-container {
    flex-direction: row;
  }
  #main {
    order: 1;
  }
  #sidebar-left {
    order: 0;
  }
  #sidebar-right {
    order: 2;
  }
  /* one sidebar + main */
  .sidebar-left #main,
  .sidebar-right #main {
    flex: 1 1 70%;
  }
  /* Both sidebar + main */
  .two-sidebar #main {
    flex: 1 1 40%;
  }
  /* Sidebar
  --------------------------------*/
  #sidebar-left {
    flex: 0 1 30%;
  }
  #sidebar-right {
    flex: 0 1 30%;
  }
  /* Footer */
  .footer-container {
    flex-direction: row;
  }
  .footer-bottom-blocks-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom-last {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .copyright {
    margin-bottom: 0;
  }
  /* 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-basis: calc(10% - 10px);
  }
  .w20 {
    flex-basis: calc(20% - 10px);
  }
  .w30 {
    flex-basis: calc(30% - 10px);
  }
  .w40 {
    flex-basis: calc(40% - 10px);
  }
  .w50 {
    flex-basis: calc(50% - 10px);
  }
  .w60 {
    flex-basis: calc(60% - 10px);
  }
  .w70 {
    flex-basis: calc(70% - 10px);
  }
  .w80 {
    flex-basis: calc(80% - 10px);
  }
  .w90 {
    flex-basis: calc(90% - 10px);
  }
  /* Shortcodes -> responsive view */
  .view-in-mobile {
    display: none;
  }
  .view-in-desktop {
    display: block;
  }
}
@media (min-width: 992px) {
  th {
    padding: 10px;
  }
  td {
    padding: 5px 10px;
  }
  /* Header */
  .header-right {
    gap: 1rem;
  }
  .menu-wrap {
    position: relative;
    background-color: transparent;
    max-width: 100%;
    transform: translateX(0);
    transition: none;
  }
  .menu-wrap .menu {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .menu-wrap .menu,
  .menu-wrap .menu a {
    color: #fff;
  }
  .menu-wrap .menu-item a,
  .menu-wrap .menu-item > span {
    border-bottom: 0;
  }
  .menu-wrap .menu > li:hover {
    background-color: rgb(45.6783216783, 45.6783216783, 46.3216783217);
  }
  .menu-wrap .menu > li,
  .menu-wrap .collapsed,
  .menu-wrap .expanded,
  .menu-wrap .menu-item-has-children {
    display: inline-flex;
    align-items: center;
  }
  .menu-wrap .collapsed:hover,
  .menu-wrap .expanded:hover,
  .menu-wrap .menu-item-has-children:hover {
    background-color: rgb(45.6783216783, 45.6783216783, 46.3216783217);
  }
  .menu-wrap .submenu {
    position: absolute;
    display: none;
    background-color: rgb(45.6783216783, 45.6783216783, 46.3216783217);
    font-size: 0.9rem;
    top: 100%;
    min-width: 250px;
    max-width: 350px;
    opacity: 0;
    left: 0;
  }
  .collapsed:hover > .submenu,
  .expanded:hover > .submenu,
  .menu-item-has-children:hover > .submenu {
    display: flex;
    animation: slideUp 0.5s forwards;
  }
  .menu-wrap .submenu li {
    border-bottom: 1px solid var(--border);
  }
  .menu-wrap .submenu .submenu {
    top: 0;
    left: 100%;
  }
  .menu-wrap .submenu li > a,
  .menu-wrap .submenu li > span {
    padding: 0.5rem;
  }
  .menu-wrap .submenu .submenu .menu-item > a,
  .menu-wrap .submenu .submenu .menu-item > span {
    padding: 0.5rem;
  }
  .mobile-menu,
  .close-mobile-menu {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
