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

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

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

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

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

  --color-accent: #3652a4;

  --color-gray: #fff9;
  --color-gray-dark: #5d5d5d;
  --color-gray-light: #eeeeee;
}

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

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

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 1280px) {
  body {
    font-size: 14px;
  }
}

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

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

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

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

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

.x-end {
  justify-content: flex-end;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

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: 600;
  text-align: center;
  color: var(--color-white);
  background: var(--color-gray-dark);
}

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

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

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

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

/*  Editor
------------------------------------------ */
.editor {
  gap: 16px;
  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: 500px;
}

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

strong,
b {
  font-weight: 500 !important;
}

/* 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: 24px;
    --font-size-h4: 22px;
    --font-size-h5: 20px;
    --font-size-h6: 18px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  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: rgba(24, 24, 25, 0.56);
}

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

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

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

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

.headbar a[href^="tel:"] {
  font-weight: 500;
  font-size: 1.08rem;
}

/*  Headbar Navigation
------------------------------------------ */
.headbar-navigation .menu {
  gap: 32px;
  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-white);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------------------------
 *
 *  Site Footer
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */
.site-footer {
  color: var(--color-gray-dark);
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--color-white-trans);
}

.site-footer [class*="col-"] {
  gap: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

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

:root {
  /* Section */
  --section-padding: 96px;
}

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

section.inverse {
  color: var(--color-black-light);
  background: var(--color-gray-light);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  :root {
    /* Section */
    --section-padding: 48px;
  }
}

/*  Section: Hero
----------------------------------------------------------------------------------------- */
section.hero {
  display: flex;
  align-items: center;
  min-height: calc(var(--vh, 1vh) * 100);
  padding-top: calc(var(--section-padding) + var(--headbar-height));
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  /* section hero */
  section.hero {
    min-height: unset;
  }
}

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

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

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

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

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

/*  Card Box
------------------------------------------ */
.card-box {
  gap: 16px;
  display: flex;
  position: relative;
  flex-direction: column;
}

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

.card-box__meta.inline {
  flex-direction: row;
}

/* card box title */
.card-box__title {
  gap: 16px;
  width: 100%;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
}

.card-box__title > * {
  min-width: max-content;
}

/* card box number */
.card-box__number {
  top: -32px;
  left: -32px;
  font-size: 112px;
  line-height: 0.8;
  color: transparent;
  position: absolute;
  content: attr(data-text);
  -webkit-text-stroke: 1px rgba(140, 140, 140, 0.32);
  text-shadow: -1px 0 transparent, 0 1px transparent, 1px 0 transparent,
    0 -1px transparent;
}

/* card box image */
.card-box__icon {
  width: 32px;
  height: 32px;
  display: block;
  min-width: 32px;
  min-height: 32px;
  object-fit: contain;
}

/*  Component: Gallery
----------------------------------------------------------------------------------------- */

/* gallery columns */
.gallery [class*="col-"] {
  padding: 0;
}

/*  Gallery Box
------------------------------------------ */
.gallery-box {
  line-height: 0;
}

/* gallery box thumbnail imge */
.gallery-box__thumbnail > img {
  transition: ease-in-out 0.16s;
}

.gallery-box__thumbnail:hover > img {
  filter: unset;
}

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

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

/* contact phone */
.contact-phone {
  font-weight: 500;
  font-size: 24px;
}

/*  Contact Map
------------------------------------------ */
#contact-map {
  height: 480px;
  border-radius: 16px;
}

/*  Social Media
------------------------------------------ */
.social-media {
  display: flex;
  align-items: center;
}

.social-media > *:not(:last-child)::after {
  content: "/";
  opacity: 0.16;
  margin: 0 16px;
  font-weight: 100;
  display: inline-flex;
}

/* social */
.social {
  opacity: 0.8;
  display: flex;
  font-size: 18px;
  transition: ease-in-out 0.16s;
}

.social:hover {
  opacity: 1;
}

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

/* headlien panel */
.headline-panel {
  gap: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*  Headline Label
------------------------------------------ */
.headline-label {
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*  Headline Title
------------------------------------------ */
.headline-title {
  font-weight: 700;
  line-height: 1.16;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-size: var(--font-size-h2);
}

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

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

/*  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: 56px;
  filter: brightness(0) invert(1);
}

/*  site brandtext
------------------------------------------ */
.site-brandname {
  top: 0;
  left: 50%;
  width: 100%;
  opacity: 0.64;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
}

/*  site preloader
------------------------------------------ */
#site-preloader {
  top: 50%;
  left: 50%;
  opacity: 0.24;
  width: 240px;
  height: 240px;
  position: fixed;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: translate(-50%, -50%);
}

/*  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;
  border: none;
  height: 56px;
  display: flex;
  outline: none;
  cursor: pointer;
  font-weight: 500;
  min-width: 180px;
  padding: 16px 32px;
  text-align: center;
  align-items: center;
  justify-content: center;

  /* design */
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.buttons [class*="button-"].inverse {
  color: var(--color-black-light);
  border-color: var(--color-black);
}


/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  background: var(--color-black-light) !important;
}

/*  Component: Lead
----------------------------------------------------------------------------------------- */
.lead-panel {
  gap: 32px;
  display: flex;
  align-items: center;
}