/**
 * Variables
 */
:root {
  --color-primary: #f26c4f;
  --color-secondary: #f4399e;
  --color-text: #a1a1a1;
  --bg-body: #0d0f16;
  --bg-header: #020312;
  --bg-content: #181a25;
  --sidebar-link-color: #cfcfcf;
  --border-color: #282d38;
  --pink-gradient: linear-gradient(to right, #f26c4f, #f4399e);
  --circle-color: #510a31;
  --font-text: "Open Sans", sans-serif;
  --font-heading: "Roboto", sans-serif;
}

/**
 * Fonts
 */
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans.woff2") format("woff2");
}
/* roboto-regular - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto.woff2") format("woff2");
}
/* roboto-700 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-bold.woff2") format("woff2");
}
/* Default Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* HTML and Body
----------------------- */
/* custom scrollbar */
html {
  scrollbar-color: var(--color-primary) var(--bg-content);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-content);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

html:focus-within {
  scroll-behavior: smooth;
}

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

html,
body {
  height: 100%;
}

body {
  background-color: var(--bg-body);
  color: var(--color-text);
  font-family: var(--font-text), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

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

template,
[hidden] {
  display: none;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

/**
* Typography
------------------------------------*/
/* Typography -> Headings. */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin: 0;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.2rem;
}

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

/* Typography -> Paragraph */
p {
  margin: 0 0 1.2rem 0;
}

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

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

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

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

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

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

/* Typography -> Abbreviation */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

abbr {
  cursor: help;
}

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

/* Typography -> Text styling */
b,
strong {
  font-weight: bolder;
  color: #ffffff;
}

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

mark,
ins {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 2px 8px;
  text-decoration: none;
  text-shadow: none;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Typography -> Blockquote */
blockquote {
  position: relative;
  background-color: var(--bg-header);
  margin: 0.5rem 0 1rem 0;
  padding: 1rem;
  border-left: 4px solid var(--color-primary);
  isolation: isolate;
}

blockquote p:last-of-type {
  margin: 0;
}

/* Typography -> code tags */
code,
kbd,
pre,
samp {
  background-color: var(--bg-header);
  font-family: monospace, monospace;
  font-size: 1rem;
  padding: 2px 8px;
  margin: 0;
}

pre {
  overflow: auto;
  margin-bottom: 1rem;
}

/* Typography -> Address */
address {
  margin: 0 0 1em 0;
  font-style: italic;
}

/* Typography -> Abbreviation */
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 {
  display: inline-block;
  vertical-align: baseline;
}

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

img,
a img {
  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: 1em 0;
  border: 0;
}

.align-center img, .align-center video, .align-center audio {
  display: block;
  margin-inline: auto;
}

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

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

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

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

/**
* 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,
[type=button],
[type=reset],
[type=submit] {
  position: relative;
  background-color: var(--color-primary);
  color: #ffffff;
  border: 0;
  border-radius: 2px;
  padding: 9px 10px;
  cursor: pointer;
  -webkit-appearance: button;
  transition: all 0.4s linear;
}

button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: var(--color-secondary);
}

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 {
  font: inherit;
  -webkit-appearance: button;
}

input {
  line-height: normal;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
textarea {
  background: transparent;
  color: var(--color-text);
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  transition: border 0.5s ease-in-out;
}

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

input[type=text]:user-invalid,
input[type=email]:user-invalid,
input[type=url]:user-invalid {
  border: 1px solid red;
}
@keyframes autofill {
  to {
    color: var(--color-text);
    background: transparent;
  }
}
input:-webkit-autofill {
  animation-name: autofill;
  animation-fill-mode: both;
}

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

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

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

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

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

textarea {
  width: 100%;
  overflow: auto;
  transition: border 0.3s linear;
  vertical-align: top;
}

/* Animated expanding textarea */
.form-textarea {
  height: 100px;
  transition: height 0.3s ease-in-out;
}

.form-textarea:focus {
  height: 180px;
}

fieldset {
  margin: 0 0 10px 0;
  padding: 0.35em 0.5em 0.5em 0;
  border: 1px solid var(--border-color);
}

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: 4px 0;
  background: var(--bg-body);
  color: #ffffff;
  border: 1px solid var(--border-color);
}

form label {
  color: #ffffff;
}

label[for] {
  cursor: pointer;
}

.page-content input[type=text],
.page-content input[type=password],
.page-content input[type=search] {
  padding: 9px 6px;
  outline: 0;
}

.page-content input {
  max-width: 100%;
}

/* Form -> Drupal form elements */
.form-item {
  margin-bottom: 1rem;
}

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

.form-item label {
  display: block;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

/**
* List.
*/
ul,
ol {
  margin: 0;
  padding: 0 0 0.25em 1rem; /* LTR */
}

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

ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25em 1rem; /* LTR */
}

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

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

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

.node-content li {
  padding: 6px 0;
}

/* Typography -> Definition Lists */
dt {
  color: #ffffff;
  font-weight: 700;
}

dd {
  margin: 0 0 1.2em 0;
}

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

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

th {
  background-color: var(--bg-header);
  color: #ffffff;
  margin: 0;
  padding: 5px;
  border: 1px solid var(--border-color);
  text-align: left;
}

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

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

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

:after,
:before {
  box-sizing: border-box;
}

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

/**
* Misc.
*/
::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* check for duplicates */
summary {
  display: list-item;
  cursor: pointer;
  color: var(--color-text);
}

/* Layout
----------------------------------- */
.full-width {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}

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

#main-wrapper {
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
}

.main-container {
  position: relative;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  width: 100%;
}

.no-sidebar .main-container,
.sidebar-left .main-container,
.sidebar-right .main-container,
.two-sidebar .main-container {
  grid-template-columns: 1fr;
}

#main {
  order: 1;
}

#sidebar-left {
  order: 2;
}

#sidebar-right {
  order: 3;
}

/* columns */
.flex-container {
  position: relative;
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  margin: 0;
}

.row {
  width: 100%;
  clear: both;
  margin-bottom: 1em;
}

.section {
  width: 100%;
  clear: both;
  padding: 1.4em 0;
}

.full {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.item {
  margin: 0 0 2em 0;
  padding: 0;
  flex: 1 1 100%;
  max-width: 100%;
}

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

/* Filter Module */
.filter-wrapper {
  border: 1px solid var(--border-color);
}

/* contextual buttons */
.contextual button:hover {
  background-color: var(--color-primary);
}

/* Drupal system message */
.status-message-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.message {
  position: relative;
  color: #ffffff;
  margin: 1rem 0;
  padding: 14px 14px 14px 64px;
}

.message em {
  border-bottom: 1px dotted #ffffff;
}

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

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

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

.message-status::before {
  content: "\e002";
  background-color: #759625;
}

.message-error {
  background: #c94d1c;
}

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

.message-warning {
  background: #cd5a0a;
}

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

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

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

.message::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 53px;
  height: 100%;
  font-family: "zuvi";
  font-size: 2em;
  line-height: 53px;
  text-align: center;
}

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

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

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

.node-links-container li {
  float: left;
  margin-right: 1em;
}

/* Scroll To Top. */
.scrolltop {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 10px;
  background: var(--pink-gradient);
  color: #ffffff;
  width: 50px;
  height: 50px;
  padding: 4px;
  border-radius: 50%;
  z-index: 20;
  cursor: pointer;
}

.scrolltop-icon {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.scrolltop:hover .scrolltop-icon {
  background: var(--bg-body);
}

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

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

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

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

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

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

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

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

/*
 * Blocks
 * Common styling for all blocks regions
 */
.block-section {
  position: relative;
}

.block-title {
  position: relative;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 14px 0;
  padding: 0 0 0.5rem 0;
}

.block-section .block-title::before,
.block-section .block-title::after,
.homepage-content .block-title::before,
.homepage-content .block-title::after,
.footer-block .block-title::before,
.footer-block .block-title::after {
  position: absolute;
  content: "";
  left: 0;
  height: 1px;
  background: var(--pink-gradient);
}

.block-section .block-title::before,
.homepage-content .block-title::before,
.footer-block .block-title::before {
  width: 40px;
  bottom: 0;
}

.block-section .block-title::after,
.homepage-content .block-title::after,
.footer-block .block-title::after {
  width: 60px;
  bottom: -4px;
}

/* Search Block region */
.search-box-content .block-title::before,
.search-box-content .block-title::after {
  position: absolute;
  content: "";
  background: var(--pink-gradient);
  height: 1px;
  width: 100%;
  left: 0;
}

.search-box-content .block-title::before {
  bottom: 0;
  transform: scaleX(0.1);
}

.search-box-content .block-title::after {
  bottom: -4px;
  transform: scaleX(0.2);
}

/* List style for sidebar and footer block regions */
.sidebar ul,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.sidebar ul ul,
.footer ul ul,
.sidebar ol ol,
.footer ol ol {
  margin: 0;
  padding: 0 0 0.25em 1em;
}

.sidebar ul li,
.footer ul li {
  list-style: none;
}

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

ul ul li:last-child,
ol ol li:last-child {
  border-bottom: none;
}

/* Highlighted Region */
.highlighted {
  background-color: var(--bg-content);
  width: 100%;
}

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

.highlighted .block {
  position: relative;
  margin: 0;
  padding: 1.5em 0;
}

/* Header
--------------------------------------*/
.header {
  position: relative;
  background-color: var(--bg-header);
  width: 100%;
  margin: 0;
  padding: 1rem 0;
}

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

/* header -> with slider */
.page-slider .header {
  background-color: var(--bg-header);
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header -> site branding. */
.site-brand {
  position: relative;
}

.site-branding {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #ffffff;
}

.site-branding img {
  width: auto;
  max-height: 36px;
}

.site-branding a {
  color: var(--color-primary);
}

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

.site-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  line-height: 1.2;
  text-transform: uppercase;
}

.site-slogan {
  font-size: 0.8rem;
  line-height: 1;
}

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

.search-icon,
.mobile-menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-top: 3px solid var(--color-primary);
  border-left: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-secondary);
  border-right: 3px solid var(--color-secondary);
  cursor: pointer;
}

.menu-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  height: 40%;
}

.menu-bar span {
  background: #ffffff;
  width: 100%;
  height: 2px;
}

.close-mobile-menu {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 34px;
  height: 34px;
  color: #ffffff;
  place-content: center;
  border-top: 3px solid var(--color-primary);
  border-left: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-secondary);
  border-right: 3px solid var(--color-secondary);
  border-radius: 50%;
  z-index: 48;
  cursor: pointer;
}

.active-menu .close-mobile-menu {
  position: absolute;
  display: grid;
  top: 4px;
  right: 4px;
}

.menu-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: var(--bg-content);
  width: 100%;
  max-width: 320px;
  transform: translateX(-100%);
  transition: all 0.4s linear;
  z-index: 25;
}

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

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

.menu-wrap .menu li {
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

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

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

/* Header search */
.search-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-content);
  z-index: 50;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

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

.search-box-content .block-title {
  color: #ffffff;
}

.search-box-content form label {
  display: none;
}

.search-box-content input[type=search] {
  width: 90%;
  margin: 2rem 0;
  padding: 0 1.5rem 10px 0;
  font-size: 1.5rem;
  background: url("../images/search.svg") center right no-repeat;
  background-size: 1.5rem;
  color: #ffffff;
  border: 0;
  border-bottom: 2px solid var(--bg-header);
  border-radius: 0;
  outline: 0;
}

.search-box-content input[type=search]:focus {
  border: 0;
  border-bottom: 2px solid var(--color-primary);
}

.search-box-content input[type=submit] {
  padding: 10px 20px;
}

.search-box-close {
  flex: 1;
  z-index: 60;
  cursor: url("../images/cursor.svg"), auto;
}

/* Header -> Page header */
#page-header {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 2rem 0 1rem 0;
  z-index: 15;
}

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

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

/* Header -> Page title */
.page-title {
  color: #ffffff;
}

h1.page-title {
  font-weight: 700;
}

/* Header -> Page header -> Breadcrumb. */
.breadcrumb {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
}

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

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

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

.breadcrumb-item i {
  color: var(--color-text);
  font-size: 14px;
  margin: 0 0.5rem;
}

/* Field Label */
.node-content > .field:not(:last-child) {
  margin-bottom: 1rem;
}

.field-label {
  position: relative;
  font-weight: bold;
}

.field-label::before {
  font-family: "zuvi";
  content: "\e025";
  font-weight: 400;
  color: var(--color-primary);
  padding-right: 4px;
}

[dir=ltr] .field--label-inline .field-label, [dir=ltr] .field--label-inline .field__items {
  float: left;
}

[dir=rtl] .field--label-inline .field-label, [dir=rtl] .field--label-inline .field__items {
  float: right;
}

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

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

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

/* Field itsms */
.field-items {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Main -> Content top and content bottom block regions */
.region-content-top,
.region-content-bottom {
  display: flex;
  flex-direction: column;
}

.content-top .block {
  padding-bottom: 1.5rem;
}

.content-bottom .block {
  padding-top: 1.5rem;
}

/* Main -> Admin Tabs */
.page-tabs {
  margin: 0 0 0.6em 0;
  padding: 0 0 1px 0;
  border-bottom: 1px solid var(--border-color);
  list-style: none;
}

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

.page-tabs li a {
  background-color: var(--border-color);
  color: #ffffff;
  padding: 4px 10px;
  transition: all 0.3s ease;
}

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

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

/* Main -> node -> teaser view */
.node-view-mode-teaser {
  position: relative;
  background-color: var(--bg-content);
  padding: 1rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
}

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

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

/* Main -> node -> Title */
.node-title a {
  position: relative;
  transition: color 0.4s;
}

.node-title a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.node-title a:hover::after {
  transform: scaleX(1);
}

.node-title a:hover {
  color: #ffffff;
}

/* Main -> node -> submitted details */
.node-header {
  position: relative;
  display: block;
  font-size: 0.8rem;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.author-picture img {
  width: auto;
  height: 25px;
  margin: 0 6px 0 0;
}

.node-submitted-details {
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.node-submitted-details a,
.node-submitted-details a:visited {
  color: #ffffff;
}

.node-submitted-details a:hover {
  border-bottom: 1px dotted var(--border-color);
}

.node-submitted-details i {
  margin: 0 0 0 1em;
  color: var(--color-primary);
}

.node-submitted-details i.user-icon {
  margin-left: 0;
}

/* Main -> node -> taxonomy and links */
.node-taxonomy-container,
.node-links-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1em 0;
  border-top: 1px solid var(--border-color);
}

h3.term-title {
  margin: 0;
  font-size: 1.2em;
  line-height: 1;
}

ul.taxonomy-terms {
  margin: 1em 0 0.2em 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

li.taxonomy-term {
  position: relative;
  display: inline-block;
}

li.taxonomy-term a {
  padding: 6px 14px;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
}

li.taxonomy-term a:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border: 2px solid #ffffff;
}

li.taxonomy-term a::before {
  content: "#";
  margin-right: 5px;
}

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

/* read more link */
li.node-readmore {
  float: right;
  margin: 0;
}

li.node-readmore a {
  position: relative;
  color: #ffffff;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  padding: 0.4em 0.8em;
  transition: all 0.4s ease-in-out;
}

li.node-readmore a:hover {
  color: var(--color-primary);
  padding: 0.6em 3em 0.6em 1em;
}

li.node-readmore a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: all 0.4s ease-in-out;
}

li.node-readmore a:hover::after {
  width: 2em;
}

/* Node content (page or articles) */
.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.8em;
}

/* 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 {
  background-color: var(--bg-content);
  margin: 0 0 1rem 0;
  padding: 1em;
}

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

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

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

/* Homepage
--------------------------------------*/
/* Homepage -> Slider */
.slider {
  flex: 1;
  display: flex;
}

.slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.slider-image {
  flex-grow: 1;
  flex-basis: 40%;
}

.slider-text {
  flex-grow: 1.5;
  flex-basis: 60%;
}

.slider-text em {
  color: var(--color-primary);
  font-style: normal;
}

@media (max-width: 767px) {
  .slider-container {
    flex-direction: column;
  }
  .slider-text {
    height: 60%;
    max-height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .slider-image {
    height: 40%;
    max-height: 40%;
  }
  .slider-image img {
    max-height: 100%;
  }
}
.slider-container ul {
  padding: 0;
}

.morphist > * {
  display: none;
}

.morphist > .animated {
  display: inline-block;
}

.morphist {
  text-align: center;
}

/* Homepage -> Homepage content block region */
.region-content-home {
  display: flex;
  flex-direction: column;
}

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

.homepage-content .block-title {
  display: flex;
  justify-content: center;
}

.homepage-content h2.block-title {
  margin: 0 0 1em 0;
  padding: 0 0 0.3em 0;
  font-size: 2.6em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.homepage-content .block-title::before,
.homepage-content .block-title::after {
  left: auto;
}

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

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

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

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

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

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

.comment-form label {
  display: block;
}

/* Comments -> single comment */
.single-comment {
  position: relative;
  background-color: var(--bg-content);
  display: flex;
  width: 100%;
  margin-bottom: 1em;
  padding: 10px 0;
}

.comment-user-picture {
  position: relative;
  padding: 0 4px;
  border-right: 1px solid var(--border-color);
  text-align: center;
  flex: 0 0 60px;
}

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

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

.single-comment-meta {
  width: 100%;
  margin-bottom: 6px;
  padding-bottom: 6px;
  font-size: 0.9em;
  border-bottom: 1px solid var(--border-color);
}

.single-comment-content-body {
  position: relative;
  padding: 0 10px;
  flex: 1 1;
}

#node-comment .indented {
  margin-left: 2rem;
}

.single-comment-content .inline a {
  padding: 4px 0.5rem;
  border: 3px solid var(--border-color);
}

.single-comment-content .inline a:hover {
  background-color: var(--border-color);
}

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

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

/* Sidebar -> Sidebar block */
.sidebar .block {
  background-color: var(--bg-content);
  color: var(--color-text);
  padding: 1rem;
  border-radius: 4px;
}

.sidebar a {
  color: var(--sidebar-link-color);
}

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

/* Sidebar -> Form */
.sidebar input[type=text],
.sidebar input[type=email],
.sidebar input[type=url],
.sidebar input[type=password],
.sidebar input[type=search] {
  background: transparent;
  width: 100%;
  border: 1px solid var(--border-color);
  outline: none;
}

.sidebar input[type=text]:focus,
.sidebar input[type=email]:focus,
.sidebar input[type=url]:focus,
.sidebar input[type=password]:focus,
.sidebar input[type=search]:focus {
  border: 1px solid var(--color-primary);
}

/* Footer
--------------------------------------*/
/* Footer Top */
.footer-top-section {
  background-color: var(--bg-content);
}

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

/* Footer Four Blocks */
.footer-blocks-section {
  background-color: var(--bg-header);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

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

/* Footer bottom */
.footer-bottom-section {
  background-color: var(--bg-content);
}

.region-footer-bottom {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.region-footer-bottom .block {
  flex: 100%;
}

/* Footer copyright and social icons */
.footer-bottom-last-section {
  background-color: var(--bg-content);
}

.footer-bottom-last {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

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

.social-icons li {
  padding: 0;
}

.social-icons a {
  display: grid;
  place-content: center;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-top: 3px solid var(--color-primary);
  border-left: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-secondary);
  border-right: 3px solid var(--color-secondary);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.social-icons a:hover {
  color: var(--color-primary);
  border: 3px solid #ffffff;
}

/* Responsive view
------------------------- */
.view-in-mobile {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

.center {
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.spacer,
.spacer-x2,
.spacer-x3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.spacer {
  padding: 1rem 0;
}

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

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

/* sections
--------------------------------- */
.section,
.section-small,
.section-large,
.unit {
  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;
}

.columns,
.flex-container {
  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 and grid properties
--------------------------------- */
.space-between {
  justify-content: space-between;
}

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

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

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

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

/* Color
------------------------- */
.theme-color {
  color: var(--color-primary);
}

.white-color {
  color: #ffffff;
}

/* Box
------------------------- */
.box {
  position: relative;
  background-color: var(--bg-content);
  padding: 1rem;
}

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

/* Buttons
------------------------- */
.button-link {
  position: relative;
  display: inline-block;
  border: 2px solid var(--color-primary);
  padding: 0.6em 1em;
  transition: all 0.4s ease-in-out;
}

a.button-link, .button-link a {
  color: #ffffff;
}

a.button-link:hover, .button-link a:hover {
  color: var(--color-primary);
  border: 2px solid #ffffff;
}

.button-link:hover {
  padding: 0.6em 3em 0.6em 1em;
}

.button-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: all 0.4s ease-in-out;
}

.button-link:hover::after {
  width: 2em;
}

/* Services
------------------------- */
.services {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0;
}

.service {
  margin: 0 0 2em 0;
  flex: 1 1 100%;
  max-width: 100%;
  background-color: var(--bg-content);
  padding: 2rem;
  transition: all 0.4s ease-in-out;
}

.service-icon {
  position: relative;
  transition: all 0.4s ease-in-out;
}

.service-icon img {
  width: 50px;
  height: auto;
}

.service-icon i {
  color: var(--color-primary);
  font-size: 3rem;
}

.service h3 {
  margin: 0.8em 0;
}

.service .button-link {
  text-transform: uppercase;
}

.service:hover .button-link {
  color: var(--color-primary);
  border: 2px solid #ffffff;
  padding: 0.6rem 3rem 0.6rem 1rem;
}

.service:hover .button-link::after {
  width: 2rem;
}

.service:hover .service-icon {
  transform: translateY(-10px);
}

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

#sliding-popup {
  padding: 1.5rem;
  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 {
  color: var(--color-text);
}

#sliding-popup h2 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 400;
  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: transparent;
  color: var(--primary);
  margin: 0;
  padding: 0;
  border: 0;
}

.eu-cookie-compliance-message button:hover {
  background: transparent;
  color: #ffffff;
}

.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: #ffffff;
  font-weight: 400;
  margin: 0;
  padding: 8px 1rem;
  border: 2px solid var(--color-primary);
  text-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

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

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

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

/* Animation
-------------------------------------------- */
/*slide up */
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  /* Layout */
  .no-sidebar .main-container {
    grid-template-columns: 100%;
  }
  .sidebar-left .main-container {
    grid-template-columns: calc(30% - 1.5rem) 70%;
  }
  .sidebar-right .main-container {
    grid-template-columns: 70% calc(30% - 1.5rem);
  }
  .two-sidebar .main-container {
    grid-template-columns: calc(30% - 1.5rem) 40% calc(30% - 1.5rem);
  }
  #main {
    order: 2;
  }
  /* Sidebar */
  #sidebar-left {
    order: 1;
  }
  #sidebar-right {
    order: 3;
  }
  /* Footer */
  .region-footer-bottom .block {
    flex: 1 0 calc(50% - 1rem);
  }
  .services,
  .full,
  .flex-container {
    flex-direction: row;
  }
  .item {
    flex: 1;
    padding: 0 20px 0 0;
    margin: 0;
  }
  .item:last-child {
    padding: 0;
  }
  .service {
    margin: 0.5rem;
    flex: 1 1 calc(33.333333% - 1rem);
    max-width: calc(33.333333% - 1rem);
  }
  /* main */
  .node-header {
    font-size: 1rem;
  }
  li.taxonomy-term a {
    padding: 8px 20px;
  }
  li.node-readmore a {
    padding: 0.6rem 1rem;
  }
  /* Comment */
  .comment-user-picture {
    flex: 0 0 100px;
    padding: 0 10px;
  }
  /* components */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
}
@media (min-width: 992px) {
  th {
    padding: 10px;
  }
  td {
    padding: 5px 10px;
  }
  /* Header */
  .site-branding img {
    max-height: 80px;
  }
  .site-name {
    font-size: 1.6rem;
  }
  .site-slogan {
    font-size: 0.9rem;
    margin-top: 2px;
  }
  .morphist {
    text-align: left;
  }
  /* Header main menu */
  .menu-wrap {
    position: relative;
    background-color: transparent;
    max-width: 100%;
    transform: translateX(0);
    transition: none;
  }
  .menu-wrap .menu {
    flex-direction: row;
    gap: 1rem;
    padding: 0;
  }
  .menu-wrap .menu li {
    border: 0;
  }
  .menu-wrap li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--pink-gradient);
    width: 20px;
    height: 2px;
    transition: width 0.3s linear;
  }
  .menu-wrap li:hover::before {
    width: 100%;
  }
  .menu-item-has-children {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .menu-item-has-children::after {
    content: "+";
    align-self: center;
  }
  .menu-wrap .menu-item-has-children:hover {
    background-color: var(--bg-content);
  }
  .menu-wrap .submenu {
    position: absolute;
    display: none;
    background-color: var(--bg-content);
    font-size: 0.9rem;
    top: 100%;
    min-width: 180px;
    max-width: 200px;
    padding: 0;
    opacity: 0;
  }
  .menu-item-has-children:hover > .submenu {
    display: flex;
    animation: slideUp 0.5s forwards;
  }
  .menu-wrap .submenu li::before {
    width: 100%;
  }
  .menu-wrap .submenu a {
    display: block;
    width: 100%;
    padding: 6px 0.5rem;
  }
  .menu-wrap .submenu .submenu {
    top: 0;
    left: 100%;
  }
  .mobile-menu,
  .close-mobile-menu {
    display: none;
  }
  /* header search */
  .search-box-content .block {
    width: 70%;
  }
  #page-header {
    padding: 6rem 0 1rem 0;
  }
}/*# sourceMappingURL=style.css.map */