/*!
Theme Name: Unimetholding
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: unimetholding
Tags:
----------------------------------------------------------------------------------------- */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

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

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

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

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

  --color-accent: #e7141d;
  --color-accent-trans: rgba(223, 33, 49, 0.08);

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

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

body {
  font-size: 16px;
  font-weight: 400;
  font-display: auto;
  font-family: var(--font-sans-serif);
}

/*  responsive
------------------------------------------ */

/* responsive hide */
@media only screen and (max-width: 1280px) {
  .hide-1280 {
    display: none !important;
  }
}

@media only screen and (max-width: 992px) {
  .hide-992 {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .hide-768 {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  .hide-576 {
    display: none !important;
  }
}

/* responsive show */
@media only screen and (min-width: 1280px) {
  .show-1280 {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  /* show 992 */
  .show-992 {
    display: none !important;
  }

  /* row gap 992 */
  .gap-992 {
    gap: 0 64px;
  }
  .gap-992 > [class*="col-"] {
    max-width: calc(50% - 32px);
  }
}

@media only screen and (min-width: 768px) {
  .show-768 {
    display: none !important;
  }
}

@media only screen and (min-width: 576px) {
  .show-576 {
    display: none !important;
  }
}

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

:root {
  /* heading */
  --font-size-h1: 40px;
  --font-size-h2: 26px;
  --font-size-h3: 24px;
  --font-size-h4: 22px;
  --font-size-h5: 20px;
  --font-size-h6: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 !important;
  font-family: var(--font-serif);
}

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

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

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

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

hr {
  border: none;
  border-bottom: 1px solid var(--color-black-trans);
}

blockquote {
  padding: 16px;
  position: relative;
  background: var(--color-accent-trans);
  border-left: 2px solid var(--color-accent);
}

blockquote::after {
  top: 16px;
  right: 16px;
  content: "";
  width: 16px;
  height: 16px;
  opacity: 0.16;
  position: absolute;
  background: url("https://api.iconify.design/entypo/quote.svg") no-repeat
    center center / contain;
}

/*  table
------------------------------------------ */
table,
td,
th {
  border: 1px solid var(--color-black-trans);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

tr:nth-child(even) {
  background-color: var(--color-accent-trans);
}

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

/* thaed */
thead {
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-accent);
}

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

  /* table */
  .table-wrapper {
    overflow-x: scroll;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  site layout
 *
 *  ——
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */
:root {
  /* column */
  --column-padding: 16px;

  /* container */
  --container-width: 1280px;
}

/*  site layout: container
------------------------------------------ */
.container,
.container-short {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--column-padding);
  max-width: var(--container-width);
}

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

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

/*  site layout: column
------------------------------------------ */
[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: var(--column-padding);

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

.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: 1280px) {
  .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%;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  site header
 *
 *  —— masthead
 *  —— mastside
 *
----------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
 *
 *  site header
 *
 *  —— masthead
 *  —— mastside
 *
----------------------------------------------------------------------------------------- */

:root {
  /* site header: topbar */
  --topbar-height: 48px;

  /* site header: midbar */
  --midbar-height: 96px;
}

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

/*  topbar
------------------------------------------ */
#topbar {
  font-size: 14px;
  color: var(--color-gray);
  height: var(--topbar-height);
  background: var(--color-black-light);
}

/*  midbar
------------------------------------------ */
#midbar {
  height: var(--midbar-height);
}

/* midbar navigation */
#midbar-navigation {
  padding: 8px 24px;
  border-radius: 4px;
  min-width: max-content;
  border: 1px solid var(--color-black-trans);
}

/*  site header: masthead
----------------------------------------------------------------------------------------- */
.masthead,
.masthead-panel,
.masthead [class*="col-"] {
  gap: 0 32px;
  display: flex;
  align-items: center;
}

/* masthead column */
.masthead [class*="col-"] {
  flex-direction: row;
  justify-content: space-between;
  padding: 0 var(--column-padding);
}

/*  masthead navigation
------------------------------------------ */

/* masthead menu */
.masthead-navigation .menu {
  gap: 24px;
  display: flex;
}

/* masthead navigation menu item */
.masthead-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;
}

.masthead-navigation .menu-item > a {
  display: block;
  transition: ease-in-out 0.16s;
}

.masthead-navigation .menu-item:hover > a,
.masthead-navigation [class*="current-menu-"] > a {
  color: var(--color-accent);
}

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

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

/* masthead navigation sub menu first level */
.masthead-navigation .menu > *:hover > .sub-menu {
  display: flex;
}

/* masthead navigation sub menu second level */
.masthead-navigation .menu > * > * > *:hover > .sub-menu {
  top: 0;
  left: 100%;
  display: flex;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 1280px) {
  /* site header */
  .site-header {
    top: 0 !important;
  }
}

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

/*  colophon panel
------------------------------------------ */
.colophon-panel {
  display: flex;
  flex-wrap: wrap;
  gap: var(--section-padding);
}

/* colophon panel separator */
.colophon-separator {
  border-color: var(--color-white-trans);
  margin: calc(var(--section-padding) / 2) 0;
}

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

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

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

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  :root {
    /* section */
    --section-padding: 32px;
  }
}

/*  main
----------------------------------------------------------------------------------------- */
.main {
  margin: 0 auto;
  max-width: var(--container-width);
}

.main-sidebar,
.main-content {
  gap: 0;
}

.main-sidebar > *:first-child,
.main-content > *:first-child {
  padding-top: 0;
}

.main-sidebar > *:last-child,
.main-content > *:last-child {
  padding-bottom: 0;
}

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

/*  main: main sidebar
------------------------------------------ */
.main-sidebar {
  background: var(--color-gray-light);
  padding: calc(var(--section-padding) + var(--column-padding)) 0;
}

.main-sidebar > * {
  padding: 24px;
}

/*  main: main content
------------------------------------------ */
.main-content {
  background: transparent;
  padding: var(--section-padding) 0;
}

.main-content > * {
  padding: 24px 0;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  /* main layout */
  .main-layout {
    flex-direction: column-reverse;
  }
  /* main content */
  .main-content {
    padding: var(--section-padding) 0;
  }
}

/*  section: hero
----------------------------------------------------------------------------------------- */
section.hero {
  position: relative;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.64);
}

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

/*  hero home
------------------------------------------ */
#hero-home {
  display: flex;
  min-height: 420px;
  align-items: center;
}

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

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

input,
select,
textarea {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  border-radius: 4px;
  background: var(--color-white);
  border: 1px solid var(--color-black-trans);
}

/* textarea */
textarea {
  height: 220px;
}

/* input [type="checkbox"] / [type="radio"] */
input[type="radio"],
input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* input [type="submit"] */
input[type="submit"] {
  width: max-content;
}

/* input [type="file"] */
input[type="file"] {
  height: unset;
  padding: 16px;
  background: var(--color-gray-light);
}

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

/*  Contact Form 7
------------------------------------------ */

/* .wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  gap: 8px;
  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;
}

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

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

/*  widget navigation
------------------------------------------ */

/* widget navigation / menu */
.widget-navigation .menu {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* widget navigation / sub menu */
.widget-navigation .sub-menu {
  display: none;
}

/*  component: accordion
----------------------------------------------------------------------------------------- */
.accordion {
  position: relative;
}

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

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

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

/*  component: tab
----------------------------------------------------------------------------------------- */

/*  tab content
----------------------------------------- */
.tab-content {
  height: 100%;
  display: none;
  overflow: hidden;
  position: relative;
  animation: fadeEffect 0.16s;
  -webkit-animation: fadeEffect 0.16s;
}

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

/*  tab animation
----------------------------------------- */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  component: sidebar
----------------------------------------------------------------------------------------- */
:root {
  --sidebar-width: 320px;
}

/* 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-light);
  transition: transform 0.16s ease-out;
}

.sidebar.active {
  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(--midbar-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 [class*="current-menu-"] > 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 > span {
  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 > span {
  opacity: 1;
}

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

/*  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 group
------------------------------------------ */
.headline-group {
  gap: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/*  headline label
------------------------------------------ */
.headline-label {
  opacity: 0.4;
  font-size: 18px;
  text-transform: uppercase;
}

/*  headline title
------------------------------------------ */
.headline-title {
  gap: 8px;
  display: flex;
  font-weight: 700;
  line-height: 1.16;

  text-transform: uppercase;
  font-size: var(--font-size-h2);
}

/* <h1> headline title */
h1.headline-title {
  font-size: var(--font-size-h1);
}

h1.headline-title::before {
  content: none;
}

/*  headline textarea
------------------------------------------ */
.headline-textarea {
  font-size: 16px;
}

/*  component: tab
----------------------------------------------------------------------------------------- */

/*  tab content
----------------------------------------- */
.tab-content {
  overflow: hidden;
  position: relative;
  animation: fadeEffect 0.16s;
  -webkit-animation: fadeEffect 0.16s;
}

/*  tab animation
----------------------------------------- */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  tab navigation
------------------------------------------ */
.tab-navigation {
  display: flex;
}

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

/*  contact
------------------------------------------ */
.contact {
  display: flex;
  line-height: 1.56;
  flex-direction: column;
}

/* contact label */
.contact-label {
  font-size: 12px;
  font-weight: 700;
}

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

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

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

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

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

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

/* editor iframe */
.editor iframe {
  width: 100%;
  border: none;
  height: 420px;
  border-radius: 4px;
}

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

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

.editor .table-wrapper {
	overflow: auto;
	height: 800px;
	box-shadow: -1px 3px 5px 9px rgba(0,0,0,0.27);
-webkit-box-shadow: -1px 3px 5px 9px rgba(0,0,0,0.27);
-moz-box-shadow: -1px 3px 5px 9px rgba(0,0,0,0.27);
}

/*  component: swiper
----------------------------------------------------------------------------------------- */

/*  swiper endless
----------------------------------------- */
.swiper-endless {
  padding: 16px 120px !important;
}

/*  swiper slide
----------------------------------------- */
.swiper-slide {
  height: auto !important;
}

/*  reposnsive
----------------------------------------- */
@media only screen and (max-width: 992px) {
  /* swiper endless */
  .swiper-endless {
    padding: 16px 32px !important;
  }
}

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

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

.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 {
  gap: 8px;
  display: flex;
  align-items: center;
}

/*  site name
------------------------------------------ */
.site-name {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

/*  site logo
------------------------------------------ */
.site-logo {
  max-height: 32px;
}

/* site logo inverse */
.site-logo.inverse {
  filter: brightness(0) invert(1);
}

/*  component: brand
----------------------------------------------------------------------------------------- */

/*  brand box
------------------------------------------ */
.brand-box {
  height: 100%;
  padding: 32px;
  display: flex;
  border-radius: 4px;
  align-items: center;
  min-height: 112px;
  justify-content: center;
  border: 1px solid var(--color-black-trans);
}

/* brand box image */
.brand-box__image {
  max-height: 48px;
  filter: grayscale(100%);
}

/*  component: button
----------------------------------------------------------------------------------------- */
:root {
  --button-height: 48px;
  --button-height-small: 32px;
}

/*  button group
------------------------------------------ */
.button-group {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
}

/* button group center */
.button-group.center {
  justify-content: center;
}

/*  button
------------------------------------------ */
.button {
  gap: 8px;
  display: flex;
  outline: none;
  cursor: pointer;
  padding: 0px 24px;
  text-align: center;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  height: var(--button-height);
  transition: ease-in-out 0.16s;
  border: 1px solid transparent;
  background: var(--color-accent);
}

/* button transparent */
.button.transparent {
  color: var(--color-accent);
  background: var(--color-accent-trans);
}

/* button small */
.button.small {
  font-size: 14px;
  padding: 0 16px;
  height: var(--button-height-small);
}

/*  button square / round
------------------------------------------ */
.button-round,
.button-square {
  padding: 0;
  font-size: 20px;
  width: var(--button-height);
  height: var(--button-height);
  min-width: var(--button-height);
  min-height: var(--button-height);
}

/* button square */
.button-square {
  border-radius: 4px;
}

/* button round */
.button-round {
  border-radius: 100%;
}

/*  button sidebar
------------------------------------------ */
.button-sidebar {
  z-index: 1;
  position: relative;
}

/*  button link
------------------------------------------ */
.button-link {
  gap: 8px;
  display: flex;
  align-items: center;
  transition: ease-in-out 0.16s;
}

/* button link hover */
.button-link:hover {
  letter-spacing: 0.4px;
}

/*  component: modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  border-radius: 4px;
}

/*  component: thumbnail
----------------------------------------------------------------------------------------- */
.thumbnail {
  height: 224px;
  display: flex;
  padding: 32px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  align-items: flex-end;
  color: var(--color-white);
  background: var(--color-black-trans);
}

.thumbnail::after,
.thumbnail-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* thumbnail overlay */
.thumbnail::after {
  z-index: 1;
  content: "";
  position: absolute;
  background: var(--color-black-trans);
}

/* thumbnail small */
.thumbnail-small {
  height: 128px;
}

/* thumbnail square */
.thumbnail-square {
  padding-bottom: 100%;
}

/*  thumbnail panel
------------------------------------------ */
.thumbnail-panel {
  z-index: 2;
  width: 100%;
  position: relative;
}

/* thumbnail title */
.thumbnail-title {
  font-size: 18px;
  line-height: 1.56;
}

/*  thumbnail image
------------------------------------------ */
.thumbnail-image {
  object-fit: cover;
  position: absolute;
}

.thumbnail-image.contain {
  object-fit: contain;
}

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

/* card panel */
.card-panel {
  gap: 8px;
}

/*  card meta
------------------------------------------ */
.card-meta {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-black-trans);
}

/*  card title
------------------------------------------ */
.card-title {
  display: flex;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.56;
  transition: ease-in-out 0.16s;
}

/* card title small */
.card-title.small {
  font-size: 16px;
  font-weight: 400;
}

/* card title <a> */
a.card-title {
  gap: 32px;
  justify-content: space-between;
}

a.card-title:hover {
  color: var(--color-accent);
}

/* card title large */
.card-title.large {
  font-size: 40px;
  line-height: 1.16;
}

/*  card grid
------------------------------------------ */
.card-grid {
  display: flex;
  flex-wrap: wrap;
}

.card-grid > * {
  width: 50%;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-black-trans);
}

/*  card grid
------------------------------------------ */
.card-feed {
  display: flex;
  flex-direction: column;
}

.card-feed > * {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-black-trans);
}
