/*!
Theme Name: Zalik
Theme URI: https://webdeveloper.com.ua/
Author: webdeveloper.com.ua
Author URI: https://t.me/webdeveloper_com_ua
Description:
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: zalik
Tags:
----------------------------------------------------------------------------------------- */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

*:focus,
*:active {
  outline: none;
}

:root {
  /* font */
  --font-sans-serif: "Montserrat", sans-serif;

  /* color */
  --color-black: #000000;
  --color-black-light: #202020;
  --color-black-trans: rgba(27, 27, 27, 0.08);

  --color-white: #ffffff;
  --color-white-trans: rgba(255, 255, 255, 0.08);

  --color-accent: #85ffbd;
  --color-accent-dark: #2ef78c;

  --color-green-light: #e8eee8;

  --color-gray: #878787;
  --color-gray-dark: #5d5d5d;
  --color-gray-light: #d3d3d3;
}

html {
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-weight: 400;
  font-display: auto;
  font-family: var(--font-sans-serif);
  background: var(--color-black-light);
}

/* --------------------------------------------------------------------------------------
 *
 *  Layout
 *
 *  ——
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */

/* container */
.container,
.container-short,
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* container default */
.container {
  max-width: 1280px !important;
}

/* container short */
.container-short {
  max-width: 992px !important;
}

/* container fluid */
.container-fluid {
  max-width: 100% !important;
}

/* row */
.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.x-space-between {
  justify-content: space-between;
}

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

/* column */
[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 16px;

  /* column gap */
  gap: 32px;
  display: flex;
  flex-direction: column;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1180px) {
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  HTML
 *
 *  ——
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */

:root {
  /* heading */
  --font-size-h1: 48px;
  --font-size-h2: 30px;
  --font-size-h3: 28px;
  --font-size-h4: 26px;
  --font-size-h5: 22px;
  --font-size-h6: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 !important;
}

h1 {
  font-size: var(--font-size-h1) !important;
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.64;
}

ul,
ol,
dl {
  line-height: 1.64;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid var(--color-gray);
}

thead {
  font-weight: 600;
  text-align: center;
  color: var(--color-white);
  background: var(--color-gray-dark);
}

th,
td {
  padding: 16px;
  text-align: left;
}

tr:nth-child(even) {
  background-color: var(--color-gray-light);
}

hr {
  border: none;
  margin: 16px 0 !important;
  border-bottom: 1px solid var(--color-gray-light) !important;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  :root {
    /* heading */
    --font-size-h1: 32px;
    --font-size-h2: 30px;
    --font-size-h3: 28px;
    --font-size-h4: 22px;
    --font-size-h5: 20px;
    --font-size-h6: 18px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Header
 *
 *  —— headbar
 *  —— sidebar
 *
----------------------------------------------------------------------------------------- */

:root {
  /* site header: headbar */
  --headbar-height: 88px;

  /* site header: sidebar */
  --sidebar-width: 350px;
}

/* site header */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: sticky;
  background: transparent;
  transition: ease-in-out 0.16s;
  background: var(--color-green-light);
  border-bottom: 1px solid var(--color-black-trans);
}

/* onscroll site header */
.onscroll .site-header {
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.04);
}

/*  site header: headbar
----------------------------------------------------------------------------------------- */

/* headbar */
.headbar {
  display: flex;
  align-items: center;
  height: var(--headbar-height);
}

.headbar [class*="col-"] {
  gap: 32px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

/* headbar panel */
.headbar-panel {
  gap: 32px;
  display: flex;
  font-weight: 600;
  text-align: right;
  align-items: center;
  justify-content: space-between;
}

/*  headbar navigation
------------------------------------------ */
.headbar-navigation .menu {
  gap: 16px;
  display: flex;
}

/* headbar navigation menu item */
.headbar-navigation .menu-item {
  gap: 2px;
  height: 32px;
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
  transition: ease-in-out 0.16s;
  justify-content: space-between;
}

.headbar-navigation .menu-item > a {
  width: 100%;
  display: block;
  font-weight: 600;
}

.headbar-navigation .menu-item:hover > a {
  color: var(--color-gray-dark);
}

.headbar-navigation .current-menu-item > a {
  color: var(--color-gray-dark);
  text-decoration: underline;
}

/* headbar navigation menu item has children */
.headbar-navigation .menu-item-has-children::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
}

/* headbar navigation sub menu */
.headbar-navigation .sub-menu {
  gap: 8px;
  left: 0;
  top: 30px;
  padding: 16px;
  display: none;
  min-width: 240px;
  position: absolute;
  border-radius: 8px;
  flex-direction: column;
  background: var(--color-white);
  color: var(--color-black) !important;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.headbar-navigation .sub-menu .menu-item {
  height: unset;
}

/* headbar navigation sub menu first level */
.headbar-navigation .menu > *::after {
  background: url("https://api.iconify.design/carbon/chevron-down.svg?color=black")
    no-repeat center center / contain;
}

.headbar-navigation .menu > *:hover > .sub-menu {
  display: flex;
}

/* headbar navigation sub menu second level */
.headbar-navigation .menu > * > * > *::after {
  background: url("https://api.iconify.design/carbon/chevron-right.svg?color=black")
    no-repeat center center / contain;
}

.headbar-navigation .menu > * > * > *:hover > .sub-menu {
  top: 0;
  left: 100%;
  display: flex;
}

/*  site header: sidebar
----------------------------------------------------------------------------------------- */
.sidebar {
  top: 0;
  right: 0;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  color: var(--color-white);
  width: var(--sidebar-width);
  transform: translateX(100%);
  background: var(--color-black);
  transition: transform 0.16s ease-out;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar > *:not(:last-child) {
  border-bottom: 1px solid var(--color-white-trans);
}

/* sidebar head */
.sidebar-head {
  padding: 0 32px;
  height: var(--headbar-height);
}

/* sidebar panel */
.sidebar-panel {
  gap: 16px;
  padding: 32px;
}

/*  sidebar navigation
------------------------------------------ */
.sidebar-navigation .menu *::selection {
  background: transparent;
}

/* sidebar navigation menu-item */
.sidebar-navigation .menu .menu-item {
  position: relative;
}

.sidebar-navigation .menu .menu-item:not(:last-child) {
  border-bottom: 1px solid var(--color-white-trans);
}

/* sidebar navigation menu-item > a */
.sidebar-navigation .menu .menu-item > a {
  z-index: 1;
  display: block;
  position: relative;
  padding: 16px 0 16px 32px;
  max-width: calc(100% - 80px);
  transition: ease-in-out 0.16s;
}

.sidebar-navigation .menu .menu-item > a:hover,
.sidebar-navigation .menu .current-menu-item > a,
.sidebar-navigation .menu .current-menu-ancestor > a {
  color: var(--color-accent);
}

.sidebar-navigation .menu .menu-item > a:hover {
  text-decoration: underline;
}

/* sidebar navigation menu-item-has-children > a */
.sidebar-navigation .menu .menu-item-has-children > a {
  display: inline-block;
}

/* sidebar navigation menu-item > accordion-button */
.sidebar-navigation .menu-item > .accordion-button {
  right: 0;
  top: 14px;
  width: 100%;
  height: 24px;
  opacity: 0.32;
  display: block;
  cursor: pointer;
  position: absolute;
  transition: ease-in-out 0.16s;
  background: url("https://api.iconify.design/mdi-light/chevron-down.svg?color=white")
    no-repeat right 32px center / contain;
}

.sidebar-navigation .menu-item > .accordion-button:hover {
  opacity: 1;
}

/* іidebar navigation sub-menu */
.sidebar-navigation .sub-menu {
  background: var(--color-white-trans);
}

/*  sidebar toggle
------------------------------------------ */
.sidebar-toggle {
  width: 35px;
  height: 26px;
  z-index: 1001;
  display: none;
  cursor: pointer;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.sidebar-toggle span {
  left: 0;
  opacity: 1;
  height: 1px;
  width: 100%;
  display: block;
  border-radius: 0;
  position: absolute;
  background: var(--color-black);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.sidebar-toggle.change span {
  background: var(--color-white);
}

.sidebar-toggle span:nth-child(1) {
  top: 0px;
}

.sidebar-toggle span:nth-child(2),
.sidebar-toggle span:nth-child(3) {
  top: 12px;
}

.sidebar-toggle span:nth-child(4) {
  top: 24px;
}

.sidebar-toggle.change span:nth-child(1) {
  top: 14px;
  width: 0%;
  left: 50%;
}

.sidebar-toggle.change span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sidebar-toggle.change span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sidebar-toggle.change span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 1280px) {
  /* headbar navigation */
  .headbar-navigation {
    display: none;
  }
  /* sidebar toggle */
  .sidebar-toggle {
    display: block;
  }
}

@media only screen and (max-width: 992px) {
  /* headbar panel */
  .headbar-panel {
    text-align: left;
    flex-direction: row-reverse;
  }
  /* headbar buttons */
  #headbar-buttons {
    display: none;
  }
  /* headbar messenger */
  #headbar-messenger {
    display: none;
  }
  /* headbar contact */
  #headbar-contact {
    display: none;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Footer
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */
.site-footer {
  color: var(--color-gray);
  padding: var(--section-padding) 0;
}

/* site footer column */
.site-footer [class*="col-"] {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

/*  colophon panel
------------------------------------------ */
.colophon-panel {
  display: flex;
  gap: 32px 64px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Main
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

:root {
  /* section */
  --section-padding: 64px;
}

section {
  padding: var(--section-padding) 0;
}

/*  site main
------------------------------------------ */
.site-main {
  border-radius: 0 0 16px 16px;
  background: var(--color-green-light);
}

/*  section margin
------------------------------------------ */
section.margin {
  border-radius: 16px;
  margin: 0 var(--section-padding);
}

/*  section dark
------------------------------------------ */
section.dark {
  color: var(--color-white);
  background: var(--color-black-light);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  :root {
    /* section */
    --section-padding: 32px;
  }
  /* site margin */
  section.margin {
    margin: 0;
    border-radius: 0;
  }
}

/*  section: page header
----------------------------------------------------------------------------------------- */
section.page-header {
  padding-bottom: 0;
}

section.page-header + section {
  padding-top: 0;
}

/*  section: hero
----------------------------------------------------------------------------------------- */
section.hero {
  overflow: hidden;
  position: relative;
}

section.hero + section.margin {
  margin-top: var(--section-padding);
}

/*  hero content
------------------------------------------ */
.hero-content {
  z-index: 3;
  position: relative;
  color: var(--color-white);
}

/*  hero media
------------------------------------------ */
.hero-media {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero-media::after {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  background: rgba(32, 32, 32, 0.72);
}

/* hero media image */
#hero-media__slider,
.hero-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  section.hero + section.margin {
    margin-top: 0;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Component
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

/*  component: thumbnail
----------------------------------------------------------------------------------------- */
[class*="__thumbnail"] {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  padding-bottom: 100%;
  background: rgba(0, 0, 0, 0.08);
}

[class*="__thumbnail"] > * {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/* thumbnail image */
[class*="__thumbnail"] > img {
  object-fit: cover;
  transition: ease-in-out 0.16s;
}

[class*="__thumbnail"]:hover > img {
  scale: 1.04;
}

/*  component: card
----------------------------------------------------------------------------------------- */

/*  card box
------------------------------------------ */
.card-box {
  gap: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* card box head */
.card-box__head {
  gap: 8px;
  display: flex;
  padding: 0 0 24px 0;
  flex-direction: column;
  border-bottom: 1px solid var(--color-gray);
}

/* card box title */
.card-box__title {
  font-size: 16px;
  font-weight: 600;
}

/* card box foot */
.card-box__foot {
  margin-top: auto;
}

/*  component: headline
----------------------------------------------------------------------------------------- */
.headline {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* headline center */
.headline.center {
  text-align: center;
  align-items: center;
}

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

/*  headline label
------------------------------------------ */
.headline-label {
  font-weight: 600;
  text-transform: uppercase;
}

/*  headline title
------------------------------------------ */
.headline-title {
  font-weight: 700;
  line-height: 1.16;
  font-size: var(--font-size-h1);
}

h1.healdine-title {
  font-size: calc(var(--font-size-h1) + 32px);
}

/*  component: widget
----------------------------------------------------------------------------------------- */
.widget {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* widget title */
.widget-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

/*  widget list
------------------------------------------ */
.widget-list {
  display: flex;
  flex-direction: column;
}

/* widget list item */
.widget-list__item {
  display: flex;
  font-weight: 600;
  justify-content: space-between;
}

.widget-list__item:not(:last-child) {
  margin: 0 0 8px 0;
  padding: 0 0 8px 0;
  border-bottom: 1px solid var(--color-white-trans);
}

/* widget list title */
.widget-list__title {
  gap: 8px;
  display: flex;
  align-items: center;
}

/*  component: contact
----------------------------------------------------------------------------------------- */

/*  contact list
------------------------------------------ */
.contact-list {
  gap: 0 8px;
  display: flex;
  flex-direction: column;
}

/* contact list inline */
.contact-list.inline {
  flex-direction: row;
}

/*  contact item
------------------------------------------ */
.contact-item {
  line-height: 1.64;
}

/* contact item social */
.contact-item__social {
  width: 48px;
  height: 48px;
  display: flex;
  font-size: 22px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.16s;
  background: var(--color-black-trans);
  border: 1px solid var(--color-white-trans);
}

.contact-item__social:hover {
  color: var(--color-accent);
}
/*  contact map
------------------------------------------ */
#contact-map {
  border: none;
}

/*  component: editor
----------------------------------------------------------------------------------------- */
.editor {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* editor list */
.editor ul,
.editor ol {
  gap: 4px;
  display: flex;
  flex-direction: column;
}

.editor ul {
  list-style: square inside;
}

.editor ol {
  list-style: decimal inside;
}

/* editor iframe */
.editor iframe {
  width: 100%;
  height: 420px;
}

/* editor link */
.editor a {
  text-decoration: underline;
  color: var(--color-orange);
}

/* editor bold */
.editor strong,
.editor b {
  font-weight: 600;
}

/*  component: language switcher
----------------------------------------------------------------------------------------- */
.wpm-language-switcher {
  display: flex;
  align-items: center;
}

.wpm-language-switcher > *:not(:last-child)::after {
  content: "/";
  opacity: 0.16;
  margin: 0 16px;
  display: inline-block;
}

.switcher-list li.active a,
.switcher-list li.active > span {
  color: var(--color-accent) !important;
}

.switcher-list li a,
.switcher-list li > span {
  color: inherit !important;
}

/*  component: site branding
----------------------------------------------------------------------------------------- */
.site-branding {
  display: flex;
  align-items: center;
}

/* site branding logo */
.site-branding__logo {
  max-height: 40px;
}

/* site branding name */
.site-branding__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray-dark);
  transition: ease-in-out 0.16s;
}

/*  component: buttons
----------------------------------------------------------------------------------------- */
.buttons {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* buttons center */
.buttons.center {
  justify-content: center;
}

/*  button
------------------------------------------ */
.buttons [class*="button-"] {
  gap: 8px;
  height: 48px;
  display: flex;
  outline: none;
  cursor: pointer;
  min-width: 180px;
  font-weight: 600;
  padding: 0px 24px;
  text-align: center;
  align-items: center;
  border-radius: 32px;
  justify-content: center;

  /* Design */
  background-image: linear-gradient(45deg, #85ffbd 0%, #fffb7d 100%);

  color: var(--color-black);
  background-size: 200% auto;
  transition: ease-in-out 0.08s;
  border-bottom: 2px solid var(--color-black);
}

.buttons [class*="button-"]:hover {
  background-position: right center;
  border-bottom: 0px solid transparent;
}

/*  button border
------------------------------------------ */
.buttons [class*="button-"].border {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.buttons [class*="button-"].border:hover {
  opacity: 0.8;
}

/*  button white
------------------------------------------ */
.buttons [class*="button-"].white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

/*  component: form
----------------------------------------------------------------------------------------- */
input,
select,
textarea {
  width: 100%;
  border: none;
  padding: 16px 24px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--color-black-trans);
}

textarea {
  height: 141px;
}

/* input[type="submit"] */
input[type="submit"] {
  border: none !important;
}

form {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/*  form layout
------------------------------------------ */
.form-fieldset {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* input field */
.input-field {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* input field title */
.input-field__title {
  font-weight: 600;
}

/*  contact form 7
------------------------------------------ */

/* .wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* wpcf7-form-control */
.wpcf7-form-control {
  gap: 16px;
  display: flex;
}

/* .wpcf7-list-item */
.wpcf7-list-item {
  gap: 8px;
  margin: 0;
  display: flex;
  align-items: center;
}

/* .wpcf7-spinne */
.wpcf7-spinner {
  top: 50%;
  right: 25px;
  position: absolute;
  transform: translateY(-50%);
}

/* .wpcf7-response-output */
.wpcf7-response-output {
  font-size: 12px;
  border-width: 1px;
  border-radius: 8px;
  margin: 0 !important;
  padding: 16px !important;
  margin: 0 16px !important;
}

/*  component: modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  padding: 16px !important;
  border-radius: 16px !important;
}

/*  component: accordion (!)::DO NOT ASSIGN STYLES::(!)
----------------------------------------------------------------------------------------- */
.accordion {
  position: relative;
}

/*  accordion button
------------------------------------------ */
.accordion-button {
  cursor: pointer;
  position: relative;
}

.accordion-button::selection {
  background: transparent;
}

/*  accordion panel
------------------------------------------ */
.accordion-panel {
  display: none;
}

/*  Component: Post Navigation / Post Pagintaion / Comment Navigation
----------------------------------------------------------------------------------------- */
.nav-links {
  gap: 8px;
  display: flex;
  align-items: center;
}

.page-numbers {
  width: 48px;
  height: 48px;
  display: flex;
  min-width: 48px;
  min-height: 48px;
  font-weight: 600;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: ease-in-out 0.16s;
  background: var(--color-black-trans);
}

/* page number next */
.page-numbers.next,
.page-numbers.prev {
  background: transparent;
}

.page-numbers:hover {
  color: var(--color-accent);
}
