/*!
Theme Name: Lichilnyk
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: lichilnyk
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);

  /* accent color */
  --color-accent: #003851;
  --color-accent-dark: #002535;
  --color-accent-light: #2cb7cc;
  --color-accent-trans: rgba(0, 55, 81, 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 max width
------------------------------------------ */
@media only screen and (max-width: 1280px) {
  .hide-1280 {
    display: none !important;
  }
}

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

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

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

/*  responsive min width
------------------------------------------ */
@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;
  }

  /* gap 992 */
  .gap-992 {
    gap: 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: 48px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 16px;

  /* font size */
  --font-size-large: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  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);
}

/*  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: 36px;
    --font-size-h2: 32px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-h5: 20px;
    --font-size-h6: 16px;
  }
}

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

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

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

/*  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 */
  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: 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
 *
----------------------------------------------------------------------------------------- */

:root {
  /* site header: masthead */
  --masthead-height: 112px;
}

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

/* site header / onscroll */
.onscroll .site-header {
  color: var(--color-black);
  background: var(--color-white);
}

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

/* masthead */
.masthead {
  height: var(--masthead-height);
}

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

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

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

/* masthead navigation menu item */
.masthead-navigation .menu-item {
  gap: 8px;
  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:hover,
.masthead-navigation [class*="current-menu-"] {
  color: var(--color-accent-light);
}

.masthead-navigation .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* masthead navigation sub menu */
.masthead-navigation .sub-menu {
  gap: 0;
  left: 0;
  top: 30px;
  padding: 16px;
  display: none;
  position: absolute;
  border-radius: 4px;
  min-width: max-content;
  flex-direction: column;
  background: var(--color-white);
  color: var(--color-black) !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 > * > * > *::after {
  background: url("https://api.iconify.design/carbon/chevron-right.svg?color=black")
    no-repeat center center / contain;
}

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

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

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

/*  section feed
------------------------------------------ */
.section-feed > section.flowaround {
  margin-top: 0;
  margin-bottom: 0;
}

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

/*  section: hero
----------------------------------------------------------------------------------------- */
section.hero {
  padding: 0;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  padding-bottom: calc(var(--hero-panel-height) / 2);

  /* hero root */
  --hero-panel-height: 128px;
}

section.hero-fullheight {
  min-height: 80vh;
}

/* hero content media */
.hero-content__media {
  z-index: 0;
}

/* hero content media overlay */
.hero-content__media::after {
  z-index: 1;
}

/* hero content area */
.hero-content__area {
  z-index: 2;
}

/*  hero content
------------------------------------------ */
.hero-content {
  overflow: hidden;
  position: relative;
  color: var(--color-white);
  /*  */
  padding: calc(var(--masthead-height) + var(--section-padding)) 0
    calc((var(--hero-panel-height) / 2) + var(--section-padding)) 0;
}

/* hero content media */
.hero-content__media {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

#hero-media__slider {
  height: 100%;
}

/* hero content media overlay */
.hero-content__media::after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}

/* hero content media image */
.hero-content__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* hero content area */
.hero-content__area {
  position: relative;
}

/*  hero panel
------------------------------------------ */
.hero-panel {
  left: 50%;
  bottom: 0;
  width: 100%;
  position: absolute;
  transform: translateX(-50%);
}

/* hero panel column */
.hero-panel [class*="col-"] {
  padding-top: 0;
  padding-bottom: 0;
}

/* hero panel slider */
#hero-panel__slider {
  border-radius: 4px;
  backdrop-filter: blur(16px);
  height: var(--hero-panel-height);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0px 8px 48px rgba(29, 29, 29, 0.16);
}

#hero-panel__slider .swiper-wrapper > .swiper-slide {
  display: flex;
  padding: 16px 16px;
  align-items: center;
}

#hero-panel__slider .swiper-wrapper > .swiper-slide:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

/*  section: flowaround
----------------------------------------------------------------------------------------- */
section.flowaround {
  border-radius: 4px;
  margin: var(--section-padding);
  background: var(--color-accent-trans);
}

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

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

/*  brand box
------------------------------------------ */
.brand-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/*  component: price
----------------------------------------------------------------------------------------- */

/*  price list
------------------------------------------ */
.price-list {
  display: flex;
  padding: 32px;
  border-radius: 4px;
  flex-direction: column;
  background: var(--color-accent-trans);
}

.price-list > * {
  padding: 16px 0;
}

.price-list > *:first-child {
  padding-top: 0;
}

.price-list > *:last-child {
  padding-bottom: 0;
}

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

/*  price item
------------------------------------------ */
.price-item {
  gap: 16px 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

/* price item value */
.price-item__value {
  font-weight: 700;
  min-width: max-content;
  color: var(--color-accent);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* price item */
  .price-item {
    flex-direction: column;
  }
}

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

/* widget title */
.widget-title {
  text-transform: uppercase;
  font-size: var(--font-size-large);
}

/*  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 group
------------------------------------------ */
.accordion-group {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/*  accordion button
------------------------------------------ */
.accordion-button {
  gap: 32px;
  display: flex;
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  padding: 16px 56px 16px 16px;
  transition: ease-in-out 0.16s;
  justify-content: space-between;
  border: 1px solid var(--color-black-trans);

  /* font style */
  line-height: 1.56;
  font-size: var(--font-size-large);
}

/* accordion button active */
.accordion-button.active,
.accordion-button:hover {
  color: var(--color-accent);
  background: var(--color-accent-trans);
}

/* accordion toggle selection */
.accordion-button::selection {
  background: transparent;
}

/* accordion toggle toggle */
.accordion-toggle {
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  position: absolute;
  transition: ease-in-out 0.16s;
  transform: translateY(-50%) rotate(0);
}

.accordion-button.active .accordion-toggle {
  transform: translateY(-50%) rotate(135deg);
}

/*  accordion panel
------------------------------------------ */
.accordion-panel {
  display: none;
  padding: 16px 16px 0 16px;
}

/*  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: form
----------------------------------------------------------------------------------------- */

input,
select,
textarea {
  width: 100%;
  border: none;
  color: inherit;
  padding: 16px 24px;
  border-radius: 4px;
  background: var(--color-white-trans);
  border: 1px solid var(--color-accent-trans);
}

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

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

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

/*  Form Layout
------------------------------------------ */
form,
fieldset {
  display: flex;
  flex-direction: column;
}

/* form */
form {
  gap: 32px;
}

/* fieldset */
fieldset {
  gap: 16px;
  border-radius: 4px;
  padding: 16px 24px;
}

fieldset.inline {
  flex-direction: row;
}

legend {
  padding: 0 32px;
  font-size: var(--font-size-large);
}

/* label */
label {
  gap: 8px;
  display: flex;
}

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

/* .wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  gap: 16px;
  width: 100%;
  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: 4px;
  margin: 0 !important;
  padding: 16px !important;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  fieldset.inline {
    flex-direction: column;
  }
}

/*  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: calc(var(--masthead-height) * 1);
}

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

.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.64;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

h1.headline-title {
  font-size: var(--font-size-h1);
}

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

/*  contact group
------------------------------------------ */
.contact-group {
  gap: 0 8px;
  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,
.editor img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
}

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

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

/*  responsive
----------------------------------------- */
@media only screen and (max-width: 992px) {
  /* br */
  .editor br {
    display: none;
  }
}

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

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

/*  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 {
  gap: 16px;
  display: flex;
  align-items: center;
}

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

/*  site meta
------------------------------------------ */
.site-meta {
  gap: 0px;
  display: flex;
  flex-direction: column;
}

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

/* site description */
.site-description {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: lowercase;
}

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

/*  button group
------------------------------------------ */
.button-group {
  gap: 16px;
  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:hover {
  opacity: 0.8;
}

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

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

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

/*  button square / round
------------------------------------------ */
.button-round,
.button-square {
  padding: 0;
  font-size: 22px;
  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;
}

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

/*  modal lead
------------------------------------------ */
#modal-lead {
  width: 100%;
  max-width: 992px;
}

/*  component: thumbnail
----------------------------------------------------------------------------------------- */
.thumbnail {
  gap: 8px;
  height: 320px;
  padding: 32px;
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  background: var(--color-black-trans);
}

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

/*  thumbnail square
------------------------------------------ */
.thumbnail-square {
  height: unset;
  padding: 100% 0 0 0;
}

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

/* card inline */
.card.inline {
  gap: 8px;
  flex-direction: row;
}

/*  card icon
------------------------------------------ */
.card-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  object-fit: contain;
}

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

.card-panel.inline {
  justify-content: center;
}

/*  card title
------------------------------------------ */
.card-title {
  line-height: 1;
  font-size: var(--font-size-large);
}

/* card title / large */
.card-title.large {
  font-size: 32px;
}

/*  card grid
------------------------------------------ */
.card-grid {
  gap: 32px 0;
  display: flex;
  flex-wrap: wrap;
}

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

/*  card box
------------------------------------------ */
.card-box {
  padding: 32px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--color-accent-trans);
}

.card-box__icon {
  right: -16px;
  bottom: -16px;
  width: 120px;
  height: 120px;
  position: absolute;
  opacity: 0.48;
  filter: grayscale(100%);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  /* card grid */
  .card-grid {
    flex-direction: column;
  }
  .card-grid > * {
    width: 100%;
  }
}
