￼
￼ style.css ( C++ source, ASCII text )
/**
 * Variables
 */
:root {
  --color-primary: #db3700;
  --color-secondary: #720026;
  --color-primary-light: #ff7b4f;
  --color-light: #f1b3a8;
  --color-dark: #232733;
  --color-gray: #414348;
  --color-text: #222222;
  --color-text-light: #b9b9b9;
  --color-bold: #1e2127;
  --color-border: #c9cee7;
  --body-bg: #ffffff;
  --content-bg: #f2f4ff;
  --circle-one: #f3e7f0;
  --circle-two: #e0e2f6;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-content: "Outline", sans-serif;
  --font-heading: "Outline", sans-serif;
}

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

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--body-bg);
  color: #333333;
  font-family: "Outfit", "Open Sans", "Helvetica Neue", sans-serif;
  font-size: .9rem;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Fonts
---------------------------------------- */
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../fonts/open-sans.woff2") format("woff2"), url("../fonts/open-sans.woff") format("woff");
}

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

template,
[hidden] {
  display: none;
}

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

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 1.1rem;
}

h4 {
  font-size: .9rem;
}

h5, h6 {
  font-size: .9rem;
}

p {
  margin: 0 0 1rem 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 {
  text-decoration: none;
  border: 0;
  outline: 0;
}

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

a:hover {
  color: var(--theme-dark);
}

b,
strong {
  font-weight: bolder;
  color: var(--color-bold);
}

dfn,
cite {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  font-style: normal;
  color: var(--color-primary);
}

/* Typography-> code tags */
code,
kbd,
pre,
samp {
  background: var(--content-bg);
  font-family: monospace, monospace;
  font-size: 1rem;
}

kbd {
  margin: 0;
  padding: 0 5px;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

mark {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  padding: 1px 4px;
}

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

abbr,
acronym {
  cursor: help;
}

acronym {
  border-bottom: 1px dotted;
}

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

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

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

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

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

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

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

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

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

figure.align-center {
  display: table;
}

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

/* 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,
.button-solid,
a.button-solid:hover,
button,
[type=reset],
[type=submit] {
 position: relative;
  display: inline-block;
color: #6d6e70;
  border: 1px solid #6d6e70;
  border-radius: 0px;
  text-transform: uppercase;
  font-size:.8em;
  padding: 9px 22px;
  cursor: pointer;
   transition: all 0.3s ease-in-out;
}
[type=submit] {background-color:#FFFFFF;}


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

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

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

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

input {
  line-height: normal;
}

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

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=date],
input[type=tel],
input[type=time],
textarea {
  background: transparent;
  color: var(--color-text);
  padding: 10px;
  border: 0;
  box-shadow: 0 0 0 3px var(--color-border);
  transition: all 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,
input[type=number]:focus,
input[type=date]:focus,
input[type=tel]:focus,
input[type=time]:focus,
textarea:focus {
  box-shadow: 0 0 3px 1px var(--color-dark);
  border: 0;
  outline: 0;
}

textarea {
  width: 100%;
  overflow: auto;
  transition: border 0.3s linear;
  vertical-align: top;
}
@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] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

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

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

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

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

progress {
  vertical-align: baseline;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 4px 0;
}

form label {
  color: var(--color-bold);
  font-weight: var(--font-weight-bold);
}

label[for] {
  cursor: pointer;
}

/* Summary */
details {
  margin-bottom: 1rem;
  background-color: var(--color-border);
}

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

details[open] {
  background-color: var(--body-bg);
}

details[open] summary {
  background-color: var(--color-dark);
  color: #ffffff;
}

details .form-details-wrapper {
  background-color: #ffffff;
  padding: 1rem;
}

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

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

.form-item label {
  display: block;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

/* Form in body */
.node-content input[type=text],
.node-content input[type=email],
.node-content input[type=url],
.node-content input[type=password],
.node-content input[type=search],
.node-content input[type=number],
.node-content input[type=date],
.node-content input[type=tel],
.node-content input[type=time],
textarea {
  display: block;
  background: var(--content-bg);
  margin-bottom: 0.8rem;
  border-radius: 20px;
}

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

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

summary {
  display: list-item;
  cursor: pointer;
  color: #a1a1a1;
  color: var(--color-text);
}

/* Common HTML Elements
----------------------- */
hr {
  clear: both;
  width: 100%;
  height: 1px;
  margin: 0.5rem 0;
  border: 0;
  border-bottom: 2px solid var(--color-border);
  box-sizing: content-box;
  overflow: visible;
}

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

/* Definition Lists */
dt {
  color: var(--color-bold);
  font-weight: 700;
  margin: 0 0 1.75rem;
}

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

dd {
  margin: 0 0 1.2rem 0;
}

blockquote {
  position: relative;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--content-bg);
  border-left: 6px solid var(--color-primary);
  border-top: 2px solid var(--color-border);
  border-right: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

[dir=rtl] blockquote {
  position: relative;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--content-bg);
  border-right: 6px solid var(--color-primary);
  border-top: 2px solid var(--color-border);
  border-left: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

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

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

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

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

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

ul {
  list-style: disc;
}

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

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

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

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

th {
  background-color: var(--content-bg);
  color: var(--color-bold);
  margin: 0;
  padding: 5px;
  border: 1px solid var(--color-border);
  text-align: left;
  text-shadow: none;
}

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

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

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

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

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

.ficon-feed:before {
  content: "\e000";
}

.ficon-bookmark:before {
  content: "\e001";
}

.ficon-search:before {
  content: "\e002";
}

.ficon-user:before {
  content: "\e003";
}

.ficon-calendar:before {
  content: "\e004";
}

.ficon-twitter:before {
  content: "\e005";
}

.ficon-facebook:before {
  content: "\e006";
}

.ficon-github:before {
  content: "\e007";
}

.ficon-linkedin:before {
  content: "\e008";
}

.ficon-comments:before {
  content: "\e009";
}

.ficon-file:before {
  content: "\e00a";
}

.ficon-youtube:before {
  content: "\e00b";
}

.ficon-instagram:before {
  content: "\e00c";
}

.ficon-vk:before {
  content: "\e00d";
}

.ficon-whatsapp:before {
  content: "\e00e";
}

.ficon-vimeo:before {
  content: "\e00f";
}

.ficon-hashtag:before {
  content: "\e010";
}

.ficon-telegram:before {
  content: "\e011";
}

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

.ficon-mail:before {
  content: "\e014";
}

.ficon-map:before {
  content: "\e015";
}

.ficon-phone:before {
  content: "\e016";
}

.ficon-arrow-up:before {
  content: "\e017";
}

.ficon-horn:before {
  content: "\e018";
}

.ficon-bell:before {
  content: "\e019";
}

.ficon-info:before {
  content: "\e01a";
}

.ficon-comment:before {
  content: "\e01b";
}

.ficon-angle-left:before {
  content: "\e01c";
}

.ficon-angle-right:before {
  content: "\e01d";
}

.ficon-arrow-right:before {
  content: "\e01e";
}

.ficon-arrow-left:before {
  content: "\e01f";
}

.ficon-quote:before {
  content: "\e020";
}

.ficon-clock:before {
  content: "\e021";
}

.ficon-alert-circle:before {
  content: "\e022";
}

.ficon-alert:before {
  content: "\e023";
}

.ficon-check:before {
  content: "\e024";
}

.ficon-comment-add:before {
  content: "\e025";
}

.ficon-close:before {
  content: "\e026";
}

.ficon-plus:before {
  content: "\e027";
}

.ficon-minus:before {
  content: "\e028";
}

.ficon-menu:before {
  content: "\e012";
}

.ficon-menu-open:before {
  content: "\e029";
}

.ficon-mastodon:before {
  content: "\e02a";
}

.ficon-tiktok:before {
  content: "\e02b";
}

.ficon-twitch:before {
  content: "\e02c";
}

.ficon-bluesky:before {
  content: "\e02d";
}

.ficon-discord:before {
  content: "\e02e";
}

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

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

/* Main wrapper -> Main + Sidebar
--------------------------------*/
.main-wrapper {
  width: 100%;
}

/* Layout -> containers */


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

.sidebar-left #main,
.sidebar-right #main,
.two-sidebar #main {
  margin: 0 0 2rem 0;
}

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

.sidebar .block {
  padding: 1rem;
  background-color: var(--content-bg);
  border-radius: 6px;
}

.sidebar .block-title {
  line-height: 1;
  padding-bottom: 10px;
}

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

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

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

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

/* Forms in sidebar */
.sidebar input[type=text],
.sidebar input[type=email],
.sidebar input[type=url],
.sidebar input[type=password],
.sidebar input[type=search],
.sidebar input[type=number],
.sidebar input[type=date],
.sidebar input[type=tel],
.sidebar input[type=time],
.sidebar textarea {
  width: 100%;
  border: 1px solid var(--color-border);
}

/* Extended pro */
.sidebar-circle-one,
.sidebar-circle-two {
  position: absolute;
  border-radius: 50%;
}

.sidebar-circle-one {
  background: var(--circle-one);
  width: 30px;
  height: 30px;
  top: 38px;
  right: 20px;
}

.sidebar-circle-two {
  background: var(--circle-two);
  width: 42px;
  height: 42px;
  top: 20px;
  right: 36px;
}

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

/* Header -> Header Top blocks */
.header-top-blocks {
  position: relative;
  background: var(--content-bg);
  width: 100%;
  margin: 0;
  padding: 0;
}

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

.header-block {
  max-width: 100%;
}

.header-block p:last-child {
  margin: 0;
}

/* Header -> Header main */
.header-main {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.site-branding {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  line-height: 1;
}

.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: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  text-transform: uppercase;
}

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

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

.header-main-right i {
  font-size: 20px;
  font-weight: bold;
}


/* Header -> Full page search form */
.full-page-search {
  position: relative;
  margin: 0;
  padding: 0;
}

.search-icon,
.mobile-menu,
.sliding-panel-icon {
  position: relative;
  display: grid;
  place-content: center;
  background-color: transparent;
  color: var(--color-bold);
  width: 36px;
  height: 36px;
  margin: 0 0 0 10px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.search-icon:hover,
.mobile-menu:hover,
.sliding-panel-icon:hover {
  border: 2px solid var(--color-dark);
}

.search-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--content-bg);
  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;
}

.region-search-box .block-title {
  color: var(--color-bold);
  text-align: center;
}

.region-search-box .block-content {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}

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

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

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

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

.search-box-content input[type=submit] {
  padding: 10px 24px;
  border-radius: 50px;
}

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

/* Page Header
--------------------------------------*/
.page-header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 5rem 0 6rem 0;
  text-align: center;
}

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

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

.breadcrumb-items li {
  display: inline-block;
}

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

/* Header Pro -> Header main */
.header-top {
  top: 0;
  z-index: 25;
}

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

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

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

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

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

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

.slider em {
  font-style: normal;
}

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

.slider p {
  margin-bottom: 0;
}

.slider h1 {
  font-size: 2.6em;
}

.slider h2 {
  font-size: 2em;
}

.slider h3 {
  font-size: 1.4em;
}

.slider h4 {
  font-size: 1.2em;
}

.slider em {
  color: var(--color-primary);
}

.slider p {
  font-size: 1.2em;
}

.slider .button,
.slider button {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;

  transition: 0.3s ease-in-out;
}

.slider .button:hover,
.slider button:hover {
 
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tns-controls button:hover {
  background-color: var(--content-bg);
  color: var(--color-bold);
}

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

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

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

/* Block title */
.homepage-content .block-title {
  text-align: center;
  margin-bottom: 1rem;
}

.homepage-content .block-title::before,
.homepage-content .block-title::after {
  position: absolute;
  content: "";
  top: 50%;
  background: var(--color-primary);
  width: 40px;
  height: 2px;
}

.homepage-content .block-title::before {
  transform: translateX(-50px);
}

.homepage-content .block-title::after {
  transform: translateX(10px);
}

/* Drupal core Field */
[dir] .field:not(:last-child) {
  margin-bottom: 36px;
}

.field-label {
  font-weight: 500;
  text-transform:uppercase;
}


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

/* Calendar module
-------------------------------------- */
.calendar-calendar .full {
  display: table;
}

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

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

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

/* Feed icon */
.feed-icon {
  display: block;
}

/* 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: var(--content-bg);
  padding: 1rem;
  margin-bottom: 4rem;
  border-radius: 8px;
}

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

/* 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: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

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

/* Main -> node -> submitted details */
.node-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--content-bg);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  font-size: 0.8rem;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 10px 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.search-results li {
  margin: 0 0 1rem 0;
  padding: 1rem;
  background: var(--content-bg);
}

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

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

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

#footer-top {
  background: var(--content-bg);
  margin: 0;
  padding: 2rem 0;
}

.region-footer-top,
.region-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.footer .block-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
}

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

.footer a:hover {
  color: #ffffff;
}

.footer ul,
.footer ol {
  margin: 0;
  padding: 0;
}

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

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

.footer li a {
  padding: 5px 0;
  display: inline-block;
}

.footer-blocks {
  padding: 3rem 0;
}

.footer-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

#footer-bottom {
  position: relative;
  margin: 0;
  padding: 0 0 1rem 0;
}

.footer-bottom-last {
  border-top: 1px solid var(--color-gray);
}

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

.footer .social-icons {
  justify-content: center;
}

.block,
.block-title,
.block-content {
  position: relative;
}

.block-section .block-title {
  margin-bottom: 12px;
}

.block-section .block-title::before,
.block-section .block-title::after {
  position: absolute;
  content: "";
  left: 0;
  height: 1px;
}

.block-section .block-title::before {
  background-color: var(--color-primary-light);
  bottom: 0;
  width: 25px;
}

.block-section .block-title::after {
  background-color: var(--color-primary);
  bottom: -6px;
  width: 45px;
}

/* Highlighted Block Region */
.highlighted {
  position: relative;
  background: var(--content-bg);
  width: 100%;
  margin: 0;
  padding: 0;
}

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

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

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

/*Content top and contet bottom Block Region */
.content-top,
.content-bottom {
  width: 100%;
}

.region-content-top,
.region-content-bottom {
  display: flex;
  flex-direction: column;
}

.content-top .block,
.content-bottom .block {
  position: relative;
  margin: 0;
}

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

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

/* comment */
.comments {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Single comment */
.comment-single {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--content-bg);
  padding: 1rem;
  border-radius: 8px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.comment-user-picture {
  background-color: var(--color-border);
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
}

.comment-head {
  display: flex;
  flex-direction: column;
}

.comment-title {
  font-size: 20px;
  font-weight: var(--font-weight-normal);
  margin: 0;
}

.comment-body p:last-of-type {
  margin-bottom: 20px;
}

.comment-body .links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-body .links a {
  display: block;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 2px 16px;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.comment-body .links a:hover {
  background-color: var(--color-dark);
}

.comments .indented {
  margin-left: 2rem;
}

/* Add comment form */
.comment-form-wrap {
  position: relative;
  margin: 1rem 0;
  padding: 1rem;
  box-shadow: 0 0 10px 2px var(--color-border);
  border-radius: 1rem;
}

.comment-form label {
  display: block;
}

/* Field label */
.field-label {
  position: relative;
}

/* Links */
.links.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.links.inline li {
  margin: 0;
  padding: 0;
}



/* Navigation */
.menu {
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.submenu {
  margin: 0;
  padding: 0;
}

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

.page-tabs li {
  margin: 0;
  padding: 0;
}

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

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

/* mini pager navigation
------------------------- */
.pager {
  margin: 1rem 0;
}

.pager-items {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pager-item,
.pager-item a {
  display: grid;
  place-content: center;
  background-color: var(--color-dark);
  color: #ffffff;
  min-width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}

.pager-item:hover,
.pager-item a:hover {
  background-color: var(--color-primary);
}

.pager-item-arrow a {
  background-color: var(--color-dark);
  display: grid;
  place-content: center;
  min-width: 40px;
  height: 40px;
}

.pager-item-active,
.pager-item-active a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  height: 40px;
  min-width: 40px;
}

/* Full pager navigation
------------------------- */
.pager-item-first a,
.pager-item-last a,
.pager-item-previous a,
.pager-item-next a {
  display: flex;
  align-items: center;
  background-color: var(--color-dark);
  height: 40px;
  padding: 0 10px;
}

/* Footer -> Scroll To Top. */
.scrolltop {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  place-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  border: 2px solid var(--color-primary);
  padding: 0;
  border-radius: 50%;
  z-index: 20;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* Drupal system message and custom message */
.message,
.message-success,
.message-info,
.message-error,
.message-warning,
.message-announcement,
.message-notice {
  position: relative;
  margin: 1rem 0;
  padding: 14px 14px 14px 64px;
  color: #ffffff;
  text-shadow: none;
}

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

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

.message em,
.message-success em,
.message-info em,
.message-error em,
.message-warning em,
.message-announcement em,
.message-notice em {
  color: var(--color-bold);
}

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

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

.message-info {
  background-color: #0c79c2;
}

.message-info::before {
  content: "\e01a";
  background-color: #0865a3;
}

.message-error {
  background: #c94d1c;
}

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

.message-warning {
  background: #cd5a0a;
}

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

.message-announcement {
  background-color: #09bdab;
}

.message-announcement::before {
  content: "\e018";
  background-color: #0d9e88;
}

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

.message-notice::before {
  background-color: #bd8a09;
  content: "\e00a";
}

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

/* display
--------------------------- */
.disply-block {
  display: block;
}

.disply-inline {
  display: inline-block;
} /* Custom Shortcodes
-------------------------------------------*/
/* Shortcodes -> 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;
}

/* Margin Padding
------------------------- */
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

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

.ltr {
  direction: ltr;
}

/* Font Weight
------------------------- */
.font-weight-normal {
  font-weight: var(--font-weight-normal);
}

.font-weight-bold {
  font-weight: var(--font-weight-bold);
}

/* Shortcodes -> Text Size */
.font-size-small {
  font-size: 0.9em;
}

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

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

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

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

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

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

/* Title
------------------------- */
.text-outline {
  color: transparent;
  font-weight: var(--font-weight-bold);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--color-dark);
  text-stroke: 1px var(--color-text);
  paint-order: stroke fill;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

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

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

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

.black {
  color: #000000;
}

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

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

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

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

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

/* List styles
------------------------------ */
.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.list-check li {
  position: relative;
}

.list-check li::before {
  content: "\e024";
  font-family: "vani";
  padding-right: 5px;
  color: var(--color-primary);
  vertical-align: middle;
}

/* Highlight
------------------------- */
.highlight {
  display: inline-block;
  background: var(--color-dark);
  color: #ffffff;
  padding: 1px 4px;
}

/* Button
-------------------------------------------*/
.button-link,
a.button-link,
button.button-link {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  padding: 9px 22px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

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

.button-border,
a.button-border,
button.button-border {
  position: relative;
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--color-bold);
  background: transparent;
  border: 0;
  padding: 0.6em 0.2em 0.6em 0;
}

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

.button-border::after,
a.button-border::after,
button.button-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.4em;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.button-border:hover::after,
a.button-border:hover::after,
button.button-border:hover::after {
  width: 100%;
}

.button-round,
a.button-round {
  position: relative;
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-border);
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

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

/* Extended pro Shortcodes -> Empty space
-------------------------------------------- */
.empty,
.empty50,
.empty70,
.empty100,
.empty150 {
  position: relative;
  width: 100%;
  clear: both;
}

.empty {
  height: 2rem;
}

.empty50 {
  height: 50px;
}

.empty70 {
  height: 70px;
}

.empty100 {
  height: 100px;
}

.empty150 {
  height: 150px;
}

/* Spacer
------------------------- */
.empty {
  position: relative;
  width: 100%;
  height: 2rem;
  clear: both;
}

.spacer,
.spacer-small,
.spacer-x,
.spacer-xx {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.spacer {
  padding: 1rem 0;
}

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

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

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

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

.section {
  padding: 2rem 0;
}

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

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

.section-large-x {
  padding: 4rem 0;
}

.section-large-xx {
  padding: 5rem 0;
}

/* Responsive Column
--------------------------------*/
.row {
  width: 100%;
  clear: both;
  margin-bottom: 1rem;
}

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

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

.flex,
.flex-container,
.columns {
  display: flex;
}

.flex-container,
.columns {
  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));
  gap: 1rem;
}

.items3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.grid-item img,
.item img {
  display: block;
}

.column {
  flex: 1 1 230px;
  margin: 0;
  padding: 0;
}

/* 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-x {
  gap: 2rem;
}

.gap-small {
  gap: 0.5rem;
}

.no-gap {
  gap: 0;
}

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

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

.w10,
.w20,
.w30,
.w40,
.w50,
.w60,
.w70,
.w80,
.w90 {
  flex: 1 1 100%;
}

.wrap {
  flex-wrap: wrap;
}

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

/* grid properties */
.grid-center {
  display: grid;
  place-content: center;
}

/* Elements -> Call To Action */
.call-to-action {
  position: relative;
  display: flex;
  background-color: var(--content-bg);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 2rem;
  text-align: center;
}

/* Services
-------------------------------------------*/
.service {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0;
  box-shadow: 0 0 20px #cacbda;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.service:hover {
  border-radius: 30px 0;
  transform: translateY(-1em);
}

.service-icon {
  margin-bottom: 1rem;
}

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

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

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

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

/* Features
-------------------------------------------*/
.feature {
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 0 10px #cacbda;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.feature-icon {
  margin-bottom: 1rem;
}

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

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

.feature:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-10px);
}

.feature .button-link:hover,
.feature a.button-link:hover {
  border: 2px solid #ffffff;
}

/* Pricing Table
------------------------------ */
.plan-name {
  background-color: var(--color-primary);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 75%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 75%, 0% 100%);
  padding: 2rem 0 4rem 0;
}

.plan-name h1,
.plan-name h2,
.plan-name h3,
.plan-name h4 {
  color: #ffffff;
}

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

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

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

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.social-icons li {
  border: 0;
}

.social-icons li a {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-primary);
  transition: all 0.3s ease-in-out;
}

.social-icons li a:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 6px;
}

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

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

.loader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-icon {
  width: 72px;
  height: 72px;
  display: block;
  padding: 0px;
}

.loader-icon span {
  background: var(--color-primary);
  position: absolute;
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  animation: preloader 1.8s linear infinite;
}

.loader-icon span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/* Animated Sidebar
-------------------------------------------- */
.sliding-sidebar {
  position: relative;
  visibility: hidden;
  z-index: 110;
  transition: visibility 0s 0.4s;
}

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

.sliding-sidebar-container {
  position: fixed;
  top: 0;
  width: 90%;
  max-width: 360px;
  height: 100%;
  padding: 16px 20px;
  background: var(--content-bg);
  color: var(--color-text);
  overflow-x: auto;
  transition: transform 0.4s 0s;
  box-shadow: -2px 0 4px #a9a9aa;
}

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

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

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

.close-animated-sidebar {
  position: absolute;
  cursor: pointer;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  z-index: 120;
}

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

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

/* Social Icons / Node Sharing
-------------------------------------------- */
.share-node {
  position: relative;
  margin: 1em 0;
}

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

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

.icons li a {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease-in-out;
}

.icons li a:hover {
  border: 2px solid var(--color-primary);
}

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

.cookiealert p {
  margin: 0;
}

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

/* Elements
-------------------------------------------- */
.title {
  position: relative;
  text-align: center;
  margin-bottom: 1em;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 1px;
  background: var(--color-primary);
  margin: 0 auto;
  left: 50%;
}

.title::before {
  width: 40px;
  bottom: 0;
  transform: translateX(-20px);
}

.title::after {
  bottom: -4px;
  width: 60px;
  transform: translateX(-30px);
}

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

.accordion-title,
.toggle-title {
  display: block;
  background-color: var(--content-bg);
  margin: 0;
  padding: 0.6em 0;
  border-bottom: 1px solid var(--color-border);
  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: 1em 0;
  margin: 0;
}

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

.active-toggle::before,
.active-accordion::before {
  content: "-";
  color: #ffffff;
}

/* Elements -> Banner */
.banner {
  position: relative;
  width: 100%;
  margin-bottom: 1.6em;
  color: #000000;
}

.banner img {
  position: relative;
}

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

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

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

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

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

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

/* Elements -> Icon box */
.icon-box,
.icon-box2 {
  position: relative;
  background: var(--content-bg);
  font-family: "Open Sans", sans-serif !important;
  line-height: 1.7;
}

.icon-box i,
.icon-box2 i {
  font-size: 3em;
  color: var(--color-primary);
  transition: all 0.3s ease-out;
}

.icon-box img,
.icon-box2 img {
  transition: all 0.3s ease-out;
}

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

.icon-box:hover img,
.icon-box2:hover img {
  transform: translateY(-10px);
}

.icon-box {
  text-align: center;
  padding: 2em 1em;
}

.icon-box i {
  display: block;
  margin-bottom: 30px;
}

.icon-box2 {
  padding: 2em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-box2 i,
.icon-box2 img {
  padding-right: 20px;
}

/* Elements -> Box */
.box {
  position: relative;
  background: var(--content-bg);
  padding: 1rem;
  border-radius: 6px;
}

.box-white {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 10px #dddddd;
}

.box-dark {
  position: relative;
  background: var(--color-dark);
  color: #ffffff;
  padding: 1rem;
  border-radius: 6px;
}

.box-dark h1,
.box-dark h2,
.box-dark h3,
.box-dark h4,
.box-dark h5,
.box-dark h6 {
  color: var(--color-primary);
}

.box-theme {
  position: relative;
  background: var(--color-primary);
  color: #ffffff;
  padding: 1em;
  border-radius: 6px;
}

.box-theme .button-link, .box-theme a.button-link, .box-theme button.button-link {
  border: 2px solid #ffffff;
}

.box-theme .button-link:hover, .box-theme a.button-link:hover, .box-theme button.button-link:hover {
  background: #ffffff;
}

/* dark elements
--------------------------------------*/
.primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

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

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

.secondary :is(h1, h2, h3, h4, h5, h6),
.primary :is(h1, h2, h3, h4, h5, h6),
.dark :is(h1, h2, h3, h4, h5, h6) {
  color: #ffffff;
}

.secondary .button,
.primary .button,
.dark .button {
  background-color: transparent;
  border: 3px solid #ffffff;
}

.secondary .button:hover,
.primary .button:hover,
.dark .button:hover {
  border: 3px solid var(--color-text-light);
}

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

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

@media (max-width: 768px) {
  .region-primary-menu .menu .submenu .submenu {
    padding-left: 1rem;
  }
  .menu-item-has-children::after {
    right: 1rem;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  /* Layout */
  .no-sidebar .main-container {
    grid-template-columns: 100%;
  }
  .sidebar-left .main-container {
    grid-template-columns: 30% 70%;
  }
  .sidebar-right .main-container {
    grid-template-columns: 70% 30%;
  }
  .two-sidebar .main-container {
    grid-template-columns: 30% 40% 30%;
  }
  #main {
    order: 2;
  }
  .sidebar-left #main,
  .sidebar-right #main,
  .two-sidebar #main {
    margin: 0;
  }
  /* Sidebar */
  #sidebar-left {
    order: 1;
    padding: 0 1rem 0 0;
  }
  #sidebar-right {
    order: 3;
    padding: 0 0 0 1rem;
  }
  /* Header */
  .header-block-container {
    flex-direction: row;
  }
  .header-block {
    max-width: 50%;
  }
  .header-main {
    padding: 1rem 0;
  }
  /* Header menu */
  
  /* Third level drop down */
  
  /* Footer */
  .footer .social-icons {
    justify-content: flex-end;
  }
  /* components */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  .w10 {
    flex-basis: calc(10% - 1rem);
  }
  .w20 {
    flex-basis: calc(20% - 1rem);
  }
  .w30 {
    flex-basis: calc(30% - 1rem);
  }
  .w40 {
    flex-basis: calc(40% - 1rem);
  }
  .w50 {
    flex-basis: calc(50% - 1rem);
  }
  .w60 {
    flex-basis: calc(60% - 1rem);
  }
  .w70 {
    flex-basis: calc(70% - 1rem);
  }
  .w80 {
    flex-basis: calc(80% - 1rem);
  }
  .w90 {
    flex-basis: calc(90% - 1rem);
  }
  .full {
    flex-direction: row;
    margin-bottom: 1rem;
  }
  .call-to-action {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  th {
    padding: 10px;
  }
  td {
    padding: 5px 10px;
  }
  /* footer */
  .morphist {
    text-align: left;
  }
  .header-cicle1,
  .header-cicle2,
  .header-cicle3 {
    height: 4rem;
    width: 4rem;
  }
  .header-cicle4,
  .header-cicle5,
  .header-cicle6 {
    height: 3rem;
    width: 3rem;
  }
  .header-cicle7,
  .header-cicle8,
  .header-cicle9,
  .header-cicle10 {
    width: 2rem;
    height: 2rem;
  }
}/*# sourceMappingURL=style.css.map */
