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

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

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

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

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

  --color-accent: #a82766;

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

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

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

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

/* container default */
.container {
  max-width: 1320px !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-end {
  justify-content: flex-end;
}

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

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

/* --------------------------------------------------------------------------------------
 *
 *  Typography
 *
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */
: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-large: 18px;
}

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

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.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: 500;
  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 !important;
  border-bottom: 1px solid var(--color-black-trans) !important;
}

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

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

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

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

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

.editor iframe {
  width: 100%;
  height: 400px;
}

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

.editor strong,
.editor b {
  font-weight: 500;
}

/* blockquote */
.editor blockquote {
  font-style: italic;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  :root {
    /* heading */
    --font-size-h1: 32px;
    --font-size-h2: 26px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-h5: 20px;
    --font-size-h6: 16px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Header
 *
 *  —— Headbar
 *  —— Sidebar
 *
----------------------------------------------------------------------------------------- */

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

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

/* site header */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  background: transparent;
  transition: ease-in-out 0.16s;
}

/* onscroll site header */
.onscroll .site-header {
  background: var(--color-white);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.048) !important;
}

/*  Site Header: Headbar
----------------------------------------------------------------------------------------- */

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

.headbar [class*="col-"] {
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}

/* headbar panel */
.headbar-panel {
  gap: 32px;
  display: flex;
  align-items: center;
  margin-left: auto;
}

/*  Headbar Navigation
------------------------------------------ */

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

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

.headbar-navigation .menu-item > a {
  width: 100%;
  display: block;
  text-transform: uppercase;
  transition: ease-in-out 0.16s;
}

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

.headbar-navigation .current-menu-item > a {
  color: var(--color-accent);
}

/* 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 body */
.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: 1320px) {
  /* headbar navigation */
  .headbar-navigation {
    display: none;
  }
  /* sidebar toggle */
  .sidebar-toggle {
    display: block;
  }
}

@media only screen and (max-width: 576px) {
  /* site header */
  .site-header {
    position: sticky;
    background: var(--color-white);
  }
  /* headbar panel */
  .headbar-panel {
    display: none;
  }
  /* sidebar toggle */
  .sidebar-toggle {
    margin-left: auto;
  }
}

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

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

/* --------------------------------------------------------------------------------------
 *
 *  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: Announce
----------------------------------------------------------------------------------------- */
.announce {
  display: flex;
  overflow: hidden;
  position: relative;
  padding: 0 !important;
  flex-direction: column;
  justify-content: center;
  min-height: calc(var(--vh, 1vh) * 100);
}

/* announce content */
.announce-content {
  z-index: 2;
  position: relative;
  padding: var(--section-padding) 0;
}

/* announce media */
.announce-media {
  bottom: 0;
  z-index: 1;
  width: 50%;
  height: 100%;
  line-height: 0;
  position: absolute;
  background: var(--color-gray-light);
}

.announce-media > *,
.announce-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  /* announce */
  .announce {
    min-height: unset;
    align-items: unset;
    flex-direction: column-reverse;
  }
  /* announce media */
  .announce-media {
    width: 100%;
    position: unset;
  }
}

/*  Component: Accordion
----------------------------------------------------------------------------------------- */

/*  Accordion Button
------------------------------------------ */
.accordion-button {
  cursor: pointer;
  line-height: 1.56;
  position: relative;
  transition: ease-in-out 0.16s;
}

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

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

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

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

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

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

/*  Button: Default
------------------------------------------ */
.buttons [class*="button-"] {
  gap: 8px;
  height: 48px;
  display: flex;
  outline: none;
  cursor: pointer;
  min-width: 180px;
  font-weight: 500;
  padding: 0px 32px;
  position: relative;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: ease-in-out 0.16s;
  border: 2px solid var(--color-black);
}

.buttons [class*="button-"]:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.buttons [class*="button-"]::after {
  top: 8px;
  left: 8px;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  transition: ease-in-out 0.16s;
  background: var(--color-gray-light);
}

.buttons [class*="button-"]:hover::after {
  top: 0;
  left: 0;
}

/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
}

/*  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 {
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-gray-dark);
}

/*  Headline Title
------------------------------------------ */
.headline-title {
  font-weight: 600;
  line-height: 1.24;
  text-transform: uppercase;
  font-size: var(--font-size-h1);
}

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

/*  Component: Swiper
----------------------------------------------------------------------------------------- */

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

/*  swiper pagination
------------------------------------------ */
.swiper-pagination {
  display: flex;
  justify-content: center;
  position: unset !important;
  width: max-content !important;
}

.swiper-pagination.center {
  margin: 0 auto;
}

/* swiper pagination bullet */
.swiper-pagination-bullet {
  opacity: 1 !important;
  width: 16px;
  height: 16px;
  cursor: pointer;
  min-width: 16px;
  min-height: 16px;
  border-radius: 100%;
  transition: ease-in-out 0.16s;
  background: transparent !important;
  border: 2px solid var(--color-black);
}

.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

/*  Component: Contact
----------------------------------------------------------------------------------------- */

/*  contact list
------------------------------------------ */
.contact-list {
  gap: 0px 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-white-trans);
  border: 1px solid var(--color-black-trans);
}

.contact-item__social:hover {
  color: var(--color-accent);
}

/*  Component: Card
----------------------------------------------------------------------------------------- */

/*  card box
------------------------------------------ */
.card-box {
  gap: 16px;
  height: 100%;
  padding: 32px;
  display: flex;
  position: relative;
  flex-direction: column;
  border: 2px solid var(--color-black);
}

.card-box::after {
  top: 8px;
  left: 8px;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  transition: ease-in-out 0.16s;
  background: var(--color-gray-light);
}

.card-box:hover::after {
  top: 0;
  left: 0;
}

/* card box meta */
.card-box__meta {
  gap: 8px;
  display: flex;
  padding: 0 0 16px 0;
  flex-direction: column;
  border-bottom: 1px solid var(--color-black-trans);
}

/* card box title */
.card-box__title {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.24;
  transition: ease-in-out 0.16s;
}

/* card box label */
.card-box__label {
  color: var(--color-black-light);
}

/*  responsive
----------------------------------------- */
@media only screen and (max-width: 576px) {
  /* card box title */
  .card-box__title {
    font-size: 18px;
  }
}

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

/*  tab button
----------------------------------------- */
.tab-button {
  display: flex;
  cursor: pointer;
  align-items: center;
  transition: ease-out 0.16s;
}

.tab-button.active {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

/* tab button title */
.tab-button__title {
  font-size: 16px;
  font-weight: 500;
}

/*  tab content
----------------------------------------- */
.tab-content {
  gap: 32px;
  display: none;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  animation: fadeEffect 0.16s;
  -webkit-animation: fadeEffect 0.16s;
}

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

.tab-navigation > * {
  padding: 0 0 24px 0;
  border-bottom: 2px solid var(--color-gray-light);
}

/* tab navigation inline */
.tab-navigation.inline {
  flex-direction: row;
}

.tab-navigation.inline > * {
  width: 100%;
  text-align: center;
  justify-content: center;
}

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

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  component: case
----------------------------------------------------------------------------------------- */

/*  case box
------------------------------------------ */
.case-box {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* case box title */
.case-box__title {
  display: block;
  font-weight: 500;
  line-height: 1.64;
  transition: ease-in-out 0.16s;
  font-size: var(--font-size-large);
}

/*  component: stepline
----------------------------------------------------------------------------------------- */
.stepline {
  gap: 48px;
  display: flex;
  position: relative;
  flex-direction: column;
}

/* stepline divider */
.stepline::before {
  top: 0;
  left: 50%;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  border-right: 1px solid var(--color-black-trans);
}

/* stepline reverse items */
.stepline > :nth-child(2n) {
  text-align: right;
  flex-direction: row;
}

.stepline > :nth-child(2n + 1) {
  text-align: left;
  flex-direction: row-reverse;
}

/*  stepline item
------------------------------------------ */
.stepline-item {
  display: flex;
  position: relative;
}

/* stepline item number */
.stepline-item::before {
  top: 0;
  left: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  position: absolute;
  align-items: center;
  justify-content: center;
  content: attr(data-number);
  transform: translateX(-50%);
  background: var(--color-white);
  border: 2px solid var(--color-black-trans);
}

.stepline-item > .card-box {
  width: calc(50% - 60px);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  /* stepline divider */
  .stepline::before {
    left: 24px;
    transform: unset;
    border-right: 2px dotted var(--color-gray);
  }

  /* stepline reverse items */
  .stepline > :nth-child(2n + 1),
  .stepline > :nth-child(2n) {
    text-align: left;
    flex-direction: unset;
  }

  .stepline-item::before {
    left: 24px;
  }

  /* stepline item card box */
  .stepline-item > .card-box {
    width: 100%;
    margin: 0 0 0 80px;
  }
}

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

input,
textarea {
  width: 100%;
  border: none;
  padding: 8px 0;
  background: transparent;
  border-bottom: 1px solid var(--color-black);
}

textarea {
  height: 88px;
}

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

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

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

/*  Component: Widget
----------------------------------------------------------------------------------------- */

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

/* widget title */
.widget-title {
  font-weight: 500;
  text-transform: uppercase;
}

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