/* Variables
----------------------- */
:root {
  /* Theme Colors */
  --color-primary: #D6620E;
  --color-secondary: #A7BD43;
  --color-primary-light: #F2E8DD;
  --bg-body: #F9F6F3;
  --text-color: #4A4A4A;
  --bold-color: #222222;
  --light: #FFFBF6;
  --dark: #222222;
  --border: #dbdbd3;
  --shadow: 0 0 8px 1px #cccccc;
  --font-text: "Open Sans", sans-serif;
  --font-heading: "Roboto", sans-serif;
}

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

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

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

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

html,
body {
  height: 100%;
}

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

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

[hidden],
template {
  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: var(--bold-color);
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

h1 {
  font-size: 2.1rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5, h6 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

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

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

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

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

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: var(--bold-color);
}

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

mark,
ins {
  padding: 4px 8px;
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: 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;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

blockquote:before {
  position: absolute;
  content: "\f10d";
  font-family: "FontAwesome";
  color: var(--color-primary-light);
  font-size: 4rem;
  line-height: 1;
  z-index: -1;
}

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

/* Typography -> HTML code tags */
pre {
  overflow: auto;
}

kbd {
  background-color: #ffffff;
  padding: 4px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
}

pre,
samp {
  background-color: #ffffff;
  font-family: monospace, monospace;
  margin: 1rem 0;
  padding: 4px 1rem;
  font-size: 1rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

code {
  background-color: #ffffff;
  padding: 2px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
}

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

/* Typography -> Description Lists */
dl {
  margin: 0 0 1.75rem;
}

dt {
  color: var(--bold-color);
  font-weight: 400;
}

dd {
  margin: 0 0 1.75rem;
}

/* Typography -> HTML Elements */
hr {
  background: var(--border);
  width: 100%;
  height: 2px;
  margin: 0.5rem 0;
  border: 0;
  clear: both;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

ol {
  list-style: decimal;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

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

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

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

::-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"] {
  background-color: #ffffff;
  max-width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
}

textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: auto;
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
  vertical-align: top;
}

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="submit"],
input[type="button"],
button {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 8px 0.8rem;
  border: 0;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  background-color: var(--bold-color);
}

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

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

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

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

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

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

optgroup {
  font-weight: bold;
}

select {
  padding: 4px 0;
}

form label {
  display: table;
  font-weight: bold;
}

label[for] {
  cursor: pointer;
}

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

.form-required:after {
  content: "\f069";
  font-family: "FontAwesome";
  display: inline-block;
  color: var(--color-primary);
  padding-left: 4px;
  font-size: 0.5em;
  vertical-align: super;
}

.form-item label {
  display: block;
}

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

/* placeholder */
::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

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

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

th {
  background: var(--color-primary);
  font-family: var(--font-heading);
  color: #ffffff;
  margin: 0;
  padding: 10px;
  border: 2px solid var(--border);
  text-align: left;
}

th a {
  color: #ffffff;
}

td {
  padding: 5px 10px;
  border: 2px solid var(--border);
}

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

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

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

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

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

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

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

figure.align-center {
  display: table;
}

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

/* Drupal image filed. */
.image-field {
  margin: 0 0 1rem 0;
}

/* Other HTML Elements
--------------------------- */
summary {
  background-color: #ffffff;
  color: var(--text-color);
  padding: 0.5rem;
  cursor: pointer;
}

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

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

/* Field Label
--------------------------- */
[dir] .field:not(:last-child) {
  margin-bottom: 1rem;
}

.field__label {
  font-weight: bold;
}

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

/* Calender Module
--------------------------- */
.calendar-calendar .full {
  display: table;
}

.calendar-calendar .empty {
  display: table-cell;
}

/* Drupal core -> view */
.views-view-grid .views-col {
  padding: 5px;
}

.views-view-grid .views-field-title {
  padding: 10px;
  font-family: var(--font-heading);
  font-size: 1.2em;
  background: #ccc;
  border: 2px solid #fff;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  text-align: center;
}

.views-view-grid .views-field-title:hover {
  background: #fff;
  border: 2px solid #ccc;
}

.views-view-grid .views-field-title a {
  color: #222;
}

.local-action {
  list-style: none;
}

.button-action {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 6px 12px;
}

.button-action:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

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

/* content warpper including main, sidebar */
.main-wrapper {
  position: relative;
  background: var(--bg-body);
  width: 100%;
  padding: 20px 0 50px 0;
  z-index: 2;
}

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

/* Main */
.no-sidebar .main-container {
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
}

.sidebar-left .main-container {
  -ms-grid-columns: 25% 75%;
      grid-template-columns: 25% 75%;
}

.sidebar-right .main-container {
  -ms-grid-columns: 75% 25%;
      grid-template-columns: 75% 25%;
}

.two-sidebar .main-container {
  -ms-grid-columns: 25% 50% 25%;
      grid-template-columns: 25% 50% 25%;
}

#sidebar-left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#main {
  position: relative;
  background: var(--bg-body);
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  z-index: 2;
}

#sidebar-right {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/* Header
--------------------------- */
#header,
.header-top,
.header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 5;
}

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

.header-top-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* header top left block region */
.header-top-block p {
  margin: 0;
}

.header-top-left a {
  color: var(--bold-color);
}

.header-top-left i {
  background-color: var(--light);
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

/* Header, footer and node sharing social icons */
.social-icons {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.footer .social-icons li {
  padding: 0;
  border: 0;
}

.social-icons li:hover,
.footer .social-icons li:hover {
  padding: 0;
}

.social-icons li a {
  background: var(--light);
  color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}

.social-icons a {
  color: var(--color-primary);
}

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

/* Header -> Header main. */
.header {
  background: #ffffff;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 1rem 0;
}

/* Header -> Header main -> site branding. */
.site-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-logo img {
  width: auto;
  max-height: 80px;
}

.site-name-slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--bold-color);
  text-transform: uppercase;
}

.site-name a,
.site-name a:hover {
  color: var(--bold-color);
}

.site-slogan {
  font-size: 0.9rem;
  color: var(--bold-color);
  line-height: 1;
}

/* header right */
.header-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* main menu */
.mobile-menu {
  display: none;
}

.close-mobile-menu {
  display: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  z-index: 200;
  cursor: pointer;
}

.primary-menu-wrapper {
  font-family: var(--font-heading);
  font-weight: 400;
}

.menu-wrap {
  position: relative;
}

/* Common for all menu in primary menu region */
.menu-wrap ul,
ul.main-menu,
.region-primary-menu .menu {
  position: relative;
  font-family: var(--font-heading);
  color: var(--bold-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  text-transform: none;
  z-index: 10;
}

.menu-wrap ul > li > span,
ul.main-menu > li > span,
.region-primary-menu .menu > li > span {
  display: block;
  padding: 16px 14px;
}

.menu-wrap ul > li a,
ul.main-menu > li a,
.region-primary-menu .menu > li a {
  color: var(--bold-color);
  text-decoration: none;
}

.menu-wrap li,
ul.main-menu li,
.region-primary-menu .menu li {
  position: relative;
  display: inline-block;
  padding: 0;
}

.menu-wrap ul > li,
ul.main-menu > li,
.region-primary-menu .menu > li {
  display: inline-block;
  line-height: 1;
}

.menu-wrap ul > li > a,
ul.main-menu > li > a,
.region-primary-menu .menu > li > a {
  display: block;
  margin: 0;
  padding: 16px 14px;
}

.menu-wrap ul > li a:hover,
ul.main-menu > li a:hover,
.region-primary-menu .menu > li > a:hover {
  background: var(--bold-color);
  color: #ffffff;
}

.menu-wrap ul ul,
ul.main-menu ul.submenu,
.region-primary-menu .menu .submenu {
  position: absolute;
  display: none;
  top: 48px;
  margin: 0;
  padding: 0;
  z-index: 10;
  opacity: 0;
}

.menu-wrap ul ul li,
ul.main-menu ul.submenu li,
.region-primary-menu .menu .submenu li {
  display: block;
  background: var(--bold-color);
  font-size: 0.9rem;
  width: 160px;
  border-top: 1px solid var(--text-color);
  text-align: left;
}

.menu-wrap ul ul li a,
ul.main-menu ul.submenu li a,
.region-primary-menu .menu .submenu li a {
  display: inline-block;
  color: #ffffff;
  padding: 10px 4px 10px 14px;
}

.menu-wrap ul li:hover > ul,
li.expanded:hover ul.submenu,
li.collapsed:hover ul.submenu,
.menu-item-has-children:hover .submenu {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
  animation: slideUp 0.5s forwards;
}

.active-menu li.expanded:hover ul.submenu,
.active-menu li.collapsed:hover ul.submenu,
.active-menu .menu-item-has-children:hover .submenu {
  -webkit-animation: none;
  animation: none;
}

.menu-wrap ul > li:hover a,
ul.main-menu li:hover > a,
.region-primary-menu .menu > li:hover a {
  background: var(--bold-color);
  color: #ffffff;
}

.menu-item-has-children > a::after {
  content: ' +';
}

/* Third level drop down */
ul.main-menu ul.submenu ul.submenu,
.region-primary-menu .menu ul.submenu ul.submenu {
  position: absolute;
  display: none;
  top: 0;
  left: 160px;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  z-index: 10;
  opacity: 0;
}

ul.main-menu ul.submenu ul.submenu li,
.region-primary-menu .menu ul.submenu ul.submenu li {
  display: block;
  background: var(--bold-color);
  font-size: 0.9rem;
  width: 160px;
  border-top: 1px solid var(--text-color);
  text-align: left;
}

ul.main-menu ul.submenu ul.submenu li a,
.region-primary-menu .menu ul.submenu ul.submenu li a {
  display: inline-block;
  color: #ffffff;
  padding: 10px 4px 10px 14px;
}

.main-menu ul.submenu li.expanded::after {
  content: '+';
  color: #ffffff;
}

ul.submenu li.expanded:hover ul.submenu,
ul.submenu li.collapsed:hover ul.submenu {
  display: block;
  -webkit-animation: slideUp 0.5s forwards;
  animation: slideUp 0.5s forwards;
}

ul.submenu .active-menu li.expanded:hover ul.submenu,
ul.submenu .active-menu li.collapsed:hover ul.submenu {
  -webkit-animation: none;
  animation: none;
}

/* search box */
.full-page-search {
  position: relative;
}

.search-icon {
  position: relative;
  margin: 0;
  padding: 10px;
  border-left: 1px solid #b4b4b4;
  cursor: pointer;
}

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

.search-box {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 20;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.search-box-content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  -webkit-animation: slideDown 0.5s linear forwards;
  animation: slideDown 0.5s linear forwards;
}

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

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

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

.search-box-content input[type="search"] {
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  width: 100%;
  padding: 1.4rem;
  border: 1px solid #4d4a4a;
  border-radius: 6px;
  outline: 0;
}

.search-box-content input[type="submit"] {
  padding: 20px 40px;
  text-transform: uppercase;
}

.search-box-content input[type="submit"]:hover {
  background: #000000;
}

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

/* Node views modes */
.node-view-mode-teaser {
  position: relative;
  margin-bottom: 3rem;
  padding: 1rem;
  border-radius: 8px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.node-view-mode-teaser.node-sticky {
  background-color: #ffffff;
}

.node-view-mode-teaser {
  background-color: var(--light);
}

.node-view-mode-full .node-taxonomy-container {
  margin-bottom: 14px;
}

/* Node Content */
.node-content li {
  padding: 6px 0;
}

.page-content input[type="text"],
.page-content input[type="email"],
.page-content input[type="password"],
.page-content input[type="search"],
.page-content input[type="number"],
.page-content input[type="url"],
.page-content input[type="tel"] {
  padding: 9px 6px;
  outline: 0;
  max-width: 100%;
}

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

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

/* node submitted details */
.node-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

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

.node-submitted-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

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

.node-submitted-details a {
  color: var(--text-color);
}

.node-tags a {
  position: relative;
}

.node-tags a::before {
  content: '#';
  color: var(--color-primary);
}

/* Node Content -> taxonomy terms */
.field-tags {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.field-tags i {
  color: var(--color-primary);
}

.field-tags h4 {
  line-height: 1;
}

.taxonomy-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.taxonomy-terms li {
  position: relative;
  padding: 0;
}

.taxonomy-terms li::before {
  content: '#';
}

.taxonomy-term a {
  padding: 4px 12px;
  border: 3px solid #ffffff;
  border-radius: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.taxonomy-term a:hover {
  background-color: #ffffff;
}

/* Node links */
.node-links-container {
  width: 100%;
}

.node-links-container .links.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.node-readmore a {
  border-bottom: 2px solid var(--bold-color);
}

.node-readmore a::after,
.comment-comments::before,
.comment-add::before {
  font-family: "FontAwesome";
}

.node-readmore a::after {
  content: "\f178";
  padding-left: 10px;
}

.comment-comments::before {
  font-family: "FontAwesome";
  content: '\f0e6';
  padding-right: 4px;
}

.comment-add::before {
  content: '\f27b';
  padding-right: 4px;
}

/* zebxart */
/* Page title. */
.page-title-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0.7rem 0.5rem 0.7rem 1.2rem;
  isolation: isolate;
}

.page-title-wrap::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  background-color: var(--light);
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  z-index: -1;
}

.page-title-wrap .page-title {
  color: var(--bold-color);
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0;
}

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

.region-sidebar-first,
.region-sidebar-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.sidebar .block {
  background-color: #ffffff;
  padding: 15px 10px;
  border-radius: 6px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.sidebar .block-title {
  font-size: 1.3rem;
  line-height: 1.4;
  padding-left: 6px;
  border-left: 2px solid var(--color-primary);
}

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

.sidebar li {
  padding: 6px 0;
  border-bottom: 2px solid var(--border);
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}

.sidebar li:last-child {
  border: 0;
}

.sidebar li:hover {
  padding: 6px 0 6px 6px;
}

/* search block in sidebar */
.sidebar .form-search {
  width: 100%;
}

/* Sidebar -> Animated sidebar. */
.sliding-panel-icon {
  position: relative;
  margin: 0;
  padding: 10px;
  border-left: 1px solid #b4b4b4;
  cursor: pointer;
}

.sliding-panel-icon i {
  font-size: 1.4rem;
  color: var(--color-primary);
  cursor: pointer;
}

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

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

.sliding-sidebar-container {
  position: fixed;
  top: 0;
  width: 90%;
  max-width: 360px;
  height: 100%;
  padding: 16px 20px;
  background: #333;
  color: #ddd;
  overflow-x: auto;
  -webkit-transition: -webkit-transform 0.4s 0s;
  transition: -webkit-transform 0.4s 0s;
  transition: transform 0.4s 0s;
  transition: transform 0.4s 0s, -webkit-transform 0.4s 0s;
}

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

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

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

.close-animated-sidebar {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444;
  text-align: center;
}

.close-animated-sidebar i {
  font-size: 2em;
  cursor: pointer;
}

.sliding-sidebar .block-title {
  position: relative;
  padding: 0 0 8px 0;
  color: #fff;
  text-align: center;
}

.sliding-sidebar h3.block-title {
  font-size: 1.2em;
}

.sliding-sidebar .block-title::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  margin: 0 auto;
  margin: 0 auto;
  background: var(--color-primary);
}

.sliding-sidebar a {
  color: #fff;
  border-bottom: 1px dotted #a9a9a9;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sliding-sidebar a:hover {
  color: #fff;
  border-bottom: 1px dashed #fff;
}

/* Footer
-------------------------------------- */
#last-section {
  position: relative;
  visibility: hidden;
  width: 100%;
  min-height: 1px;
  z-index: 12;
}

#footer {
  position: relative;
  background: var(--color-primary-light) url(../images/footer-bg.svg);
  width: 100%;
  border-top: 4px solid #fff;
  z-index: 0;
}

.footer,
.footer-top,
.footer-bottom {
  position: relative;
  width: 100%;
}

#footer-top {
  position: relative;
  width: 100%;
  padding: 1rem 0;
}

.footer-top,
.footer-bottom {
  padding: 1rem 0;
}

.region-footer-top,
.region-footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.region-footer-top p:last-child,
.region-footer-bottom p:last-child {
  margin: 0;
}

/* Footer -> Footer four block. */
.footer-blocks {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 260px;
          flex: 1 0 260px;
}

.footer .block-title {
  position: relative;
  padding-left: 8px;
  border-left: 2px solid var(--color-primary);
}

/* footer list style */
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.footer li {
  padding: 4px 0;
  border-bottom: 1px solid #bbb0a1;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}

.footer li:last-child {
  border-bottom: 0;
}

.footer li:hover {
  padding: 4px 0 4px 6px;
}

/* Footer -> Footer Bottom Middle */
.footer-bottom-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 3px double #bbb0a1;
  padding: 1rem 0;
}

/* Footer -> Footer Bottom last*/
.footer-bottom {
  position: relative;
  padding: 1rem 0;
}

/* Block Regions
--------------------------*/
.block-title,
.title {
  position: relative;
}

/* Breadcrumb
--------------------------*/
#breadcrumb {
  position: relative;
  background-color: var(--color-primary-light);
  width: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 3;
}

.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumb-item-seperator {
  margin: 0 10px;
}

/* Highlight region */
#highlighted {
  position: relative;
  background: var(--light);
  z-index: 2;
}

.region-highlighted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.region-highlighted .block {
  margin: 0;
  padding: 10px 0;
}

/* Block Regions -> content top and content bottom. */
#content-top,
#content-bottom {
  width: 100%;
}

.region-content-top,
.region-content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

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

.region-content-top .block,
.region-content-bottom .block {
  margin: 0;
  padding: 1rem;
  background-color: var(--light);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

/* Comments
--------------------------------------*/
#node-comment {
  position: relative;
  margin-top: 30px;
  border-top: 3px double var(--border);
}

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

.comment-form-wrap {
  position: relative;
  margin: 0.5rem 0;
  padding: 1rem;
  background: var(--light);
  border: 3px solid #ffffff;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.add-comment-title {
  border-bottom: 2px solid #ffffff;
}

.filter-wrapper {
  font-size: 0.9rem;
  border: 2px solid #ffffff;
}

.filter-wrapper ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.filter-wrapper ul li {
  padding: 6px 0;
  border-bottom: 1px solid #ffffff;
}

.filter-wrapper ul li:last-child {
  border: 0;
}

/* Comments -> single comment */
.single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border: 2px solid #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  gap: 10px;
}

.comment-user-picture {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
  max-width: 100%;
  padding: 0 10px;
  border-right: 2px solid #ffffff;
}

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

.single-comment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 1rem;
}

.single-comment-title {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
}

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

.single-comment-meta a {
  color: #909090;
}

.single-comment-content .links a {
  padding: 5px 10px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

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

.single-comment-content ul.links.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 8px;
}

.single-comment-content .links a {
  padding: 5px 10px;
  border: 4px solid #ffffff;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

/* Homepage
--------------------------- */
.section,
.homepage-content {
  position: relative;
  z-index: 2;
}

.region-content-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

.homepage-content .block-title,
.title {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-align: center;
}

.homepage-content .block-title::after,
.title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 2px;
  margin-left: -25px;
  background: var(--color-primary);
}

/* Error page
--------------------------- */
.error-page {
  text-align: center;
}

.error-page h1 {
  font-size: 10rem;
  line-height: 1.2;
}

.error-page h2 {
  font-size: 7rem;
  line-height: 1.2;
}

.error-page h3 {
  font-size: 5rem;
  line-height: 1.2;
}

/* Search result page
-------------------------------------- */
.search-advanced summary {
  margin: 0.5rem 0;
  cursor: pointer;
}

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

.search-advanced .form-wrapper {
  padding: 0.5rem 1.4rem;
}

ol.search-results {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
  list-style-type: none;
}

ol.search-results li {
  margin: 0 0 16px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--border);
}

/* Status message
-------------------------------------- */
.message,
.message-success,
.message-info,
.message-error,
.message-warning,
.message-announcement,
.message-notice {
  position: relative;
  color: #ffffff;
  text-shadow: none;
  margin: 20px 0;
  padding: 14px 14px 14px 64px;
}

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

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

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

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

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

.message-error {
  background: #c94d1c;
}

.message-error::before {
  content: '\f06a';
  background-color: #b3461b;
}

.message-warning {
  background: #cd5a0a;
}

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

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

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

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

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

.message-notice {
  background: #afa82e;
}

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

.message-status::before,
.message-success::before,
.message-error::before,
.message-warning::before,
.message-info::before,
.message-announcement::before,
.message-notice::before {
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  width: 53px;
  text-align: center;
  height: 100%;
  line-height: 53px;
  font-size: 30px;
}

/* Rss feed icon
-------------------------------------- */
.feed-icon {
  position: relative;
  display: block;
  font-size: 0;
  min-height: 40px;
  margin: 10px 0;
}

.feed-icon::before {
  position: absolute;
  content: "\f09e";
  font-family: 'FontAwesome';
  font-size: 20px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
}

/* Admin Tabs */
.page-tabs {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 10px 0;
  padding: 0;
  border-bottom: 2px solid var(--color-primary-light);
}

.page-tabs a {
  background-color: var(--color-primary-light);
  padding: 4px 10px;
  border-right: 2px solid var(--color-primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

/* pager */
.pager ul.pager__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  list-style: none;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0 0 1rem 0;
}

.pager__item a {
  background-color: var(--light);
  padding: 8px 14px;
  border: 3px solid #ffffff;
  border-radius: 4px;
}

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

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

.scrolltop i {
  font-size: 1.6rem;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

.black,
.color-black {
  color: #000000;
}

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

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

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

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

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

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

.text_center,
.text-center,
.welcome-message {
  text-align: center;
}

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

.center {
  margin: 0 auto;
}

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

.ltr {
  direction: ltr;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

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

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

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

.unit {
  padding: 3rem 0;
}

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

/* column
--------------------------*/
.full {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 1.4rem;
  margin: 1rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.full > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 250px;
          flex: 1 0 250px;
}

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

.item img {
  display: block;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Create Equal width columns with no gap */
.column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 230px;
          flex: 1 1 230px;
}

/* Flex column of un-equal width */
.w10,
.w20,
.w30,
.w40,
.w50,
.w60,
.w70,
.w80,
.w90,
.w100 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

/* Flex properfies
------------------------- */
.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.h-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vh-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gap {
  gap: 1rem;
}

/* Box
------------------------- */
.box {
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 1rem;
}

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

/* Custom components
--------------------------*/
.services {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.service {
  background-color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1.6rem;
  text-align: center;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.service i {
  color: var(--color-primary);
  font-size: 2.4rem;
  width: 5rem;
  height: 5rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin: 0 auto;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.service:hover i {
  background-color: var(--color-primary);
  color: #ffffff;
}

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

/* Projects */
.projects {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
}

.project {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
}

.project img {
  position: relative;
}

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

.project:hover .project-content {
  -webkit-animation: slideUp 0.8s ease;
  animation: slideUp 0.8s ease;
  opacity: 1;
}

.project-content h1,
.project-content h2,
.project-content h3,
.project-content h4,
.project-content h5 {
  color: #ffffff;
}

.project-content a,
.project-content a:hover {
  color: #ffffff;
}

/* Button.
--------------------------*/
/* Button -> Default */
.button, a.button,
.button-dark, a.button-dark,
.button-round, a.button-round,
.button-outline, a.button-outline {
  position: relative;
  display: inline-block;
  padding: 8px 0.8rem;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button, a.button,
.button-round, a.button-round, .button-round[disabled] {
  background-color: var(--color-primary);
  color: #ffffff;
}

.button:hover, a.button:hover,
.button-round:hover, a.button-round:hover, .button-round[disabled]:hover,
.button-dark, a.button-dark, .button-dark[disabled] {
  background-color: var(--bold-color);
  color: #ffffff;
}

.button-dark:hover, a.button-dark:hover {
  background-color: var(--color-primary);
}

.button-round, a.button-round, .button-round[disabled] {
  padding: 8px 1rem;
  border-radius: 30px;
}

.button-outline, a.button-outline, .button-outline[disabled] {
  background: transparent;
  color: var(--bold-color);
  border: 2px solid var(--color-primary);
}

.button-outline:hover, a.button-outline:hover {
  background: transparent;
  border: 2px solid var(--bold-color);
  color: var(--color-primary);
}

.button-animate, a.button-animate, .button-animate[disabled],
.button-animate:hover, a.button-animate:hover, .button-animate[disabled]:hover {
  position: relative;
  background: transparent;
  color: var(--bold-color);
  border: 0;
  padding: 0.5rem 0;
}

.button-animate::after, a.button-animate::after, .button-animate[disabled]::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.button-animate:hover::after,
a.button-animate:hover::after,
.button-animate[disabled]:hover::after {
  width: 100%;
}

.round {
  border-radius: 30px;
}

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

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

/* Dropcap
--------------------------*/
.dropcap::first-letter {
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 1.4em;
  line-height: 1;
  padding: 0.4rem 0.5rem;
  margin: 0 6px 0 0;
}

/* Pricing table.
--------------------------*/
.plan-name,
.plan-price {
  font-size: 1.4rem;
  margin: 0;
  padding: 0.5rem 0;
  text-align: center;
}

.plan-name {
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 8px 8px 0 0;
}

.plan-price {
  background-color: var(--color-primary-light);
  border-radius: 0 0 8px 8px;
}

.plan-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.plan-details li:last-child {
  border: none;
}

/* Page Loader
--------------------------*/
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../images/loader.gif") 50% 50% no-repeat #f9f9f9;
  opacity: .8;
}

/* Share Node
--------------------------*/
.share-node {
  position: relative;
  width: 100%;
  border: 2px solid #ffffff;
  padding: 10px;
  margin: 20px 0;
  border-radius: 4px;
}

h3.share-node-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.share-node-title i {
  color: var(--color-primary);
}

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

.cookiealert p {
  margin: 0;
}

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

.cookiealert button {
  background-color: var(--bold-color);
}

/* Elements
--------------------------*/
/* Elements -> Accordion */
.accordion, .toggle {
  position: relative;
}

.accordion-title,
.toggle-title {
  display: block;
  color: var(--bold-color);
  background-color: #ffffff;
  font-family: var(--font-heading);
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #c9c6c2;
  cursor: pointer;
}

.accordion-title::before,
.toggle-title::before {
  content: '+';
  display: inline-block;
  color: var(--color-primary);
  width: 34px;
  text-align: center;
}

.accordion-content,
.toggle-content {
  padding: 10px 5px;
  margin: 0;
}

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

.active-toggle::before,
.active-accordion::before {
  content: '-';
}

/* Elements -> tabs */
.tabs {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-heading);
  margin: 0;
  padding: 0;
}

.tabs li {
  padding: 0;
}

.tabs a {
  background-color: var(--color-primary-light);
  padding: 6px 1rem;
}

.active-tab a {
  background-color: var(--color-primary);
  color: #ffffff;
}

.tab-content {
  display: none;
  margin-top: 2px;
  padding: 1rem;
  border: 2px solid var(--color-primary);
}

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

/* Elements -> Divider */
.line,
.line-double,
.line-dash,
.line-dot {
  position: relative;
  width: 100%;
  margin: 20px 0;
  clear: both;
  display: table;
  height: 8px;
}

.line {
  border-top: 2px solid #c9c6c2;
}

.line-double {
  border-top: 4px double #c9c6c2;
}

.line-dash {
  border-top: 1px dashed #c9c6c2;
  border-bottom: 1px dashed #c9c6c2;
}

.line-dot {
  border-top: 2px dotted #c9c6c2;
  border-bottom: 2px dotted #c9c6c2;
}

/* Elements -> Call To Action */
.call-to-action {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #ffffff;
  width: 100%;
  margin: 0.5rem 0 1rem 0;
  padding: 2rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

/* Elements -> Clients */
.clients.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.clients.owl-carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Elements -> Gallery */
.clients.owl-carousel .owl-item img,
.gallery-slider.owl-carousel .owl-item img {
  width: auto;
}

/* Elements -> Testimonials */
.testimonials .item {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #c9c6c2;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  line-height: 1.8;
}

.testimonials .item::before {
  position: absolute;
  left: 5px;
  top: 10px;
  content: '\f10d';
  font-family: "FontAwesome";
  color: #b9b9b9;
  font-size: 2em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.testimonials .item .name {
  color: #2c2c2c;
  font-family: 'Roboto', sans-serif;
}

.testimonials .item .firm {
  color: #b9b9b9;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.testimonials .item:hover::before,
.testimonials .item:hover .firm {
  color: var(--color-primary);
}

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

.banner img {
  position: relative;
}

.banner .banner-message {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

/* Elements -> Text box and Icon box */
.text-box,
.icon-box,
.icon-box2 {
  background-color: #ffffff;
  padding: 2rem 1rem;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.text-box {
  padding: 1rem;
}

.icon-box,
.icon-box2 {
  padding: 2rem 1rem;
}

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

/* Elements -> Icon box */
.icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  text-align: center;
}

.icon-box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.icon-box i,
.icon-box2 .icon i {
  font-size: 2.6em;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.icon-box:hover i,
.icon-box2:hover .icon i {
  color: var(--color-primary);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

/* Elements -> popup */
.popup-content {
  display: none;
}

.popup-content.active {
  display: block;
  background-color: #ddd;
  z-index: 99;
  padding: 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 2px 2px 2px #969696;
          box-shadow: 2px 2px 2px #969696;
}

/* Dark Elements */
.dark {
  background-color: #404040;
  color: #ffffff;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6,
.theme h1, .theme h2, .theme h3, .theme h4, .theme h5, .theme h6 {
  color: #ffffff;
}

.dark a,
.theme a {
  color: #ffffff;
  border-bottom: 1px dashed #000;
}

.dark .button, .dark a.button {
  border: none;
}

/* Theme color Elements */
.theme {
  background-color: var(--color-primary);
  color: #ffffff;
}

.theme .button, .theme a.button {
  border: none;
  background-color: var(--bold-color);
}

.theme .button:hover, .theme a.button:hover {
  background-color: #ffffff;
  color: var(--color-primary);
}

/* Message Box
--------------------------*/
.box {
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 1rem;
}

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

.box i {
  color: var(--color-primary);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

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

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

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

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

/* Clearing
--------------------------------- */
.clear {
  clear: both;
  width: 100%;
}

#highlighted::before,
#last-section::before {
  content: "";
  display: table;
  clear: both;
}

#highlighted::after,
#last-section::after {
  content: "";
  display: table;
  clear: both;
}

#main-wrapper::before,
#homepage-content-wrapper::before,
#main-wrapper::after,
#homepage-content-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.page-title-wrap::before,
.page-title-wrap::after {
  content: "";
  display: table;
  clear: both;
}

#node-comment::before,
#node-comment::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 767px) {
  body {
    -webkit-text-size-adjust: none;
  }
  /* Image alignment */
  .align-left,
  img.align-left,
  figure.align-left,
  .align-right,
  img.align-right,
  figure.align-right,
  .align-center,
  img.align-center,
  figure.align-center {
    clear: both;
    margin: 0 auto;
    float: none;
  }
  /* Admin tabs */
  .page-tabs li {
    font-size: 0.9rem;
  }
  .page-tabs li a {
    padding: 2px 4px;
    border-right: 1px solid #ffffff;
  }
  /* Header top */
  .header-top-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-top-left {
    margin-bottom: 6px;
  }
  .header-top-left i,
  .social-icons li {
    font-size: 0.8rem;
  }
  .header-top-left i,
  .social-icons li a {
    width: 30px;
    height: 30px;
  }
  /* Header*/
  .header-container {
    padding: 6px 0;
  }
  .site-branding img {
    max-height: 2.5rem;
    width: auto;
  }
  .site-name {
    font-size: 1.2rem;
  }
  .site-slogan {
    font-size: 0.8rem;
  }
  .search-box-content {
    width: 90%;
  }
  .main-menu,
  .region-primary-menu .menu {
    display: none;
  }
  .active-menu .main-menu,
  .active-menu .region-primary-menu .menu {
    display: block;
  }
  .mobile-menu {
    display: block;
    padding: 10px;
  }
  .mobile-menu i {
    font-size: 1.4rem;
  }
  .menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 90%;
    max-width: 320px;
    height: 100%;
    padding-top: 30px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 100;
  }
  .active-menu .menu-wrap {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .active-menu .menu-wrap ul.main-menu,
  ul.main-menu,
  .active-menu .menu-wrap ul.menu {
    overflow-y: scroll;
  }
  .active-menu .menu-wrap ul.main-menu > li,
  .active-menu .menu-wrap ul.menu > li {
    display: block;
    float: none;
  }
  ul.main-menu {
    height: 100vh;
    overflow-y: scroll;
  }
  ul.main-menu > li:last-child {
    padding-bottom: 30px;
  }
  .active-menu .menu-wrap ul.main-menu a,
  .active-menu .menu-wrap ul.menu a {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .active-menu .menu-wrap .dropdown-arrow {
    position: absolute;
    right: 10px;
  }
  .active-menu ul.main-menu ul.submenu,
  .active-menu ul.menu ul.submenu {
    position: relative;
    display: block;
    opacity: 1;
    top: 0;
  }
  .active-menu ul.main-menu ul.submenu::before,
  .active-menu ul.main-menu ul.submenu::after,
  .active-menu ul.menu ul.submenu::before,
  .active-menu ul.menu ul.submenu::after {
    content: '';
    display: table;
    clear: both;
  }
  .active-menu ul.main-menu ul.submenu li,
  .active-menu ul.menu ul.submenu li {
    position: relative;
    background: none;
    width: 100%;
    text-align: right;
    padding: 0 10px;
  }
  .active-menu ul.main-menu ul.submenu li a,
  .active-menu ul.menu ul.submenu li a {
    width: 100%;
    display: block;
  }
  .active-menu ul.main-menu li a,
  .active-menu ul.menu li a {
    border-bottom: 1px solid #434343;
  }
  .active-menu .close-mobile-menu {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 5px;
    right: 5px;
  }
  /* third level drop down */
  .active-menu ul.main-menu ul.submenu ul.submenu,
  .active-menu ul.menu ul.submenu ul.submenu {
    position: relative;
    display: block;
    opacity: 1;
    left: 0;
  }
  .active-menu ul.main-menu ul.submenu ul.submenu li,
  .active-menu ul.menu ul.submenu ul.submenu li {
    position: relative;
    background: none;
    width: 100%;
    text-align: right;
    padding: 0 10px;
  }
  .active-menu ul.main-menu ul.submenu li.expanded::after,
  .active-menu ul.menu ul.submenu li.expanded::after {
    position: absolute;
    top: 8px;
  }
  .sliding-sidebar-container {
    width: 90%;
  }
  /* homepage slider */
  .owl-item.center .item {
    margin: 0 auto;
  }
  .slider-text {
    text-align: center;
  }
  /* Slider */
  .home-slider h1 {
    font-size: 1.6rem;
  }
  .home-slider h2 {
    font-size: 1.4rem;
  }
  .home-slider h3 {
    font-size: 1.2rem;
  }
  .home-slider h4 {
    font-size: 1.1rem;
  }
  .home-slider p {
    width: 100%;
  }
  /* breadcrumb */
  #breadcrumb {
    padding: 6px 0;
  }
  .breadcrumb {
    font-size: 0.8rem;
  }
  .breadcrumb-item-seperator {
    margin: 0 6px;
  }
  /* Layout */
  .no-sidebar .main-container,
  .sidebar-left .main-container,
  .sidebar-right .main-container,
  .two-sidebar .main-container {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  #sidebar-left {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #sidebar-right {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  /* page content */
  .page-title-wrap {
    padding: 0.8rem 0;
  }
  .page-title-wrap::before {
    content: none;
  }
  .page-title-wrap .page-title {
    font-size: 1.6rem;
  }
  /* Comment */
  #node-comment .indented {
    margin-left: 1rem;
  }
  /* footer */
  #footer {
    position: relative;
    z-index: 2;
  }
  .footer-bottom-middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  /* form */
  .page-content input[type="text"],
  .page-content input[type="email"],
  .page-content input[type="password"],
  .page-content input[type="search"],
  .page-content input[type="number"],
  .page-content input[type="url"],
  .page-content input[type="tel"] {
    width: 100%;
  }
  /* shortcodes */
  .call-to-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem;
    text-align: center;
  }
  .popup-content {
    width: 100%;
  }
  .tabs a {
    padding: 6px 8px;
  }
  .icon-box,
  .icon-box2 {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  .view-in-mobile {
    display: none;
  }
  .view-in-desktop {
    display: block;
  }
  /* shortcodes -> content width */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  /* shortcodes -> responsive column */
  .w10 {
    -ms-flex-preferred-size: calc(10% - 0.5rem);
        flex-basis: calc(10% - 0.5rem);
  }
  .w20 {
    -ms-flex-preferred-size: calc(20% - 0.5rem);
        flex-basis: calc(20% - 0.5rem);
  }
  .w30 {
    -ms-flex-preferred-size: calc(30% - 0.5rem);
        flex-basis: calc(30% - 0.5rem);
  }
  .w40 {
    -ms-flex-preferred-size: calc(40% - 0.5rem);
        flex-basis: calc(40% - 0.5rem);
  }
  .w50 {
    -ms-flex-preferred-size: calc(50% - 0.5rem);
        flex-basis: calc(50% - 0.5rem);
  }
  .w60 {
    -ms-flex-preferred-size: calc(60% - 0.5rem);
        flex-basis: calc(60% - 0.5rem);
  }
  .w70 {
    -ms-flex-preferred-size: calc(70% - 0.5rem);
        flex-basis: calc(70% - 0.5rem);
  }
  .w80 {
    -ms-flex-preferred-size: calc(80% - 0.5rem);
        flex-basis: calc(80% - 0.5rem);
  }
  .w90 {
    -ms-flex-preferred-size: calc(90% - 0.5rem);
        flex-basis: calc(90% - 0.5rem);
  }
}
/*# sourceMappingURL=style.css.map */