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

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

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

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"),
    url("assets/fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-Regular.woff") format("woff"),
    url("assets/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"),
    url("assets/fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-Medium.woff") format("woff"),
    url("assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Bold.eot");
  src: local("Gilroy Bold"), local("Gilroy-Bold"),
    url("assets/fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/Gilroy-Bold.woff") format("woff"),
    url("assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

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

body {
  /* site 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.16);

  --color-accent: #ffc500;

  --color-main: #1680e2;
  --color-main-trans: rgba(22, 127, 226, 0.08);

  --color-gray: #878787;
  --color-gray-dark: #5f5f5f;
  --color-gray-light: #f7f7f7;

  /* site */
  font-size: 15px;
  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: 42px;
  --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: 500;
}

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%;
}

img.invert {
  filter: brightness(0) invert(0.8);
}

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);
}

.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: 400px;
}

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

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

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

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

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

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

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

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

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

/* headbar */
.headbar {
  display: flex;
  font-weight: 500;
  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 Navigation
------------------------------------------ */

/* headbar navigation menu */
.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;
  transition: ease-in-out 0.16s;
}

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

.headbar-navigation .current-post-ancestor > a,
.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-main);
}

.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-main);
  -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: 992px) {
  /* headbar navigation */
  .headbar-navigation {
    display: none;
  }
  /* sidebar toggle */
  .sidebar-toggle {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  /* headbar panel */
  .headbar-panel {
    gap: 16px;
    flex-direction: row-reverse;
  }
  /* headbar switcher */
  #headbar-switcher {
    display: none;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Footer
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

.site-footer {
  color: var(--color-white);
  background: var(--color-main);
  padding: var(--section-padding) 0;
}

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

.site-footer .row:not(:last-child)::after {
  content: "";
  margin: 16px auto;
  width: calc(100% - 32px);
  border-bottom: 1px solid var(--color-white-trans);
}

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

/*  Colophon Navigation
------------------------------------------ */

/* colophon navigation menu */
.colophon-navigation .menu {
  gap: 8px 32px;
  display: flex;
  flex-wrap: wrap;
}

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

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

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

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

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

/* --------------------------------------------------------------------------------------
 *
 *  Site Page
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

/*  Page Layout
----------------------------------------------------------------------------------------- */

/*  Pgae Sidebar
------------------------------------------ */
#page-sidebar {
  gap: 32px;
  display: flex;
  flex-direction: column;
  background: var(--color-main-trans);
  padding: calc(var(--section-padding) + 16px) 40px;
}

/*  Pgae Content
------------------------------------------ */
#page-content {
  gap: 0;
  padding: var(--section-padding) 40px var(--section-padding) 0;
}

#page-content > section,
#page-content > section > .container {
  padding: 0;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  #page-layout .container {
    padding: 0;
  }
  #page-content {
    padding: var(--section-padding) 16px;
  }
}

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

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

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

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  :root {
    /* Section */
    --section-padding: 40px;
  }
  section {
    background-size: cover !important;
  }
}

/*  Section Dark
------------------------------------------ */
section.dark {
  border-radius: 16px;
  background: var(--color-main);
  margin: 0 var(--section-padding);
}

section.dark * {
  color: var(--color-white);
  border-color: var(--color-white-trans);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 1440px) {
  /* section dark */
  section.dark {
    margin: unset;
    border-radius: 0;
  }
}

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

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

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

/*  Component: Thumbnail
----------------------------------------------------------------------------------------- */
[class*="__thumbnail"] {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  padding-bottom: 100%;
  background: var(--color-black-trans);
}

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

/* Thumbnail Image */
[class*="__thumbnail"] > img {
  z-index: 1;
  object-fit: cover;
  transition: ease-in-out 0.16s;
}

[class*="__thumbnail"].contain > img {
  object-fit: contain;
  padding: 16px;
}

/*  Thumbnail Panel
------------------------------------------ */
.thumbnail-panel {
  gap: 8px;
  z-index: 1;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--color-gray-dark);
}

/* Thumbnail Title */
.thumbnail-title {
  display: block;
  font-weight: 500;
  line-height: 1.64;
  font-size: var(--font-size-large);
}

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

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

/*  Component: Language Switcher
----------------------------------------------------------------------------------------- */
.wpm-language-switcher {
  gap: 16px;
  display: flex;
  align-items: center;
}

.switcher-list li a,
.switcher-list li > span {
  color: inherit !important;
  transition: ease-in-out 0.16s;
}

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

/*  Component: Site Branding
----------------------------------------------------------------------------------------- */
.site-branding {
  gap: 8px;
  display: flex;
  align-items: center;
}

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

/*  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;
  font-weight: 500;
  padding: 0px 32px;
  text-align: center;
  align-items: center;
  border-radius: 40px;
  justify-content: center;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  border: 1px solid transparent;
  background: var(--color-main);
}

/* button xs */
.buttons .button-xs {
  height: 40px;
}

/*  Button Swiper
------------------------------------------ */
.buttons .button-next,
.buttons .button-prev {
  padding: 0;
  width: 56px;
  font-size: 24px;
  border-radius: 100%;
}

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

.modal-content {
  gap: 32px;
  display: flex;
  flex-direction: column;
}

/*  modal feedback
------------------------------------------ */
#modal-feedback {
  max-width: 540px;
  border-radius: 16px;
}

/*  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 panel */
.headline-panel {
  gap: 16px;
  display: flex;
  justify-content: space-between;
}

/*  Headline Label
------------------------------------------ */
.headline-label {
  opacity: 0.56;
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--font-size-large);
}

/*  Headline Title
------------------------------------------ */
.headline-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}

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

.headline-title.large {
  font-size: 88px;
}

/*  Headline textarea
------------------------------------------ */
.headline-textarea.large {
  font-size: var(--font-size-large);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  /* headline title */
  .headline-title,
  .headline-title.large {
    font-size: var(--font-size-h1);
  }
}

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

/*  Card Panel
------------------------------------------ */
.card-panel {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
}

.card-panel > * {
  width: calc(25% - 16px);
}

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

.card-box.center {
  text-align: center;
  align-items: center;
}

/* card box title */
.card-box__title {
  display: block;
  font-weight: 500;
  line-height: 1.64;
  margin: 0 0 16px 0;
  padding: 0 0 16px 0;
  font-size: var(--font-size-large);
  border-bottom: 1px solid var(--color-black-trans);
}

.card-box__title.large {
  font-size: 48px;
}

/* card box icon */
.card-box__icon {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.card-box__icon.inverse {
  filter: brightness(0) invert(1);
}

/* card box textarea */
.card-box__textarea {
  color: var(--color-gray-dark);
}

/* card box thumbnail */
.card-box__thumbnail.rounded {
  width: 240px;
  height: 240px;
  padding-bottom: 0;
  border-radius: 100%;
  border: 2px solid var(--color-accent);
}

.card-box__thumbnail.rounded > img {
  filter: grayscale(100%);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  .card-box__title.large {
    font-size: 32px;
  }
}

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

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

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

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

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

/*  Component: Form
----------------------------------------------------------------------------------------- */
form {
  row-gap: 16px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
}

input,
textarea {
  width: 100%;
  border: none;
  padding: 16px 24px;
  border-radius: 32px;
  background: transparent;
  border: 1px solid var(--color-black);
}

textarea {
  border: none;
  height: 140px;
  background: var(--color-gray-light);
}

label {
  color: var(--color-gray);
}

/* Input [type="submit"] */
input[type="submit"] {
  width: 100%;
}

/* input [type="checkbox"] / input [type="checkbox"] */
[type="checkbox"],
[type="radio"] {
  width: unset;
  margin-right: 8px;
}

/*  Form Layout
------------------------------------------ */
.form-fieldset {
  width: 100%;
  display: flex;
  row-gap: 16px;
  flex-direction: column;
}

/* form fieldset field */
.form-fieldset__field::before {
  content: attr(data-title);
}

/* form fieldset textarea */
.form-fieldset__textarea {
  text-align: center;
  width: max-content;
  margin: 0 auto;
  padding: 16px 0;
  color: var(--color-gray-dark);
  border-top: 1px solid var(--color-black-trans);
  border-bottom: 1px solid var(--color-black-trans);
}

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

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  /* Form */
  form {
    flex-direction: column;
  }
}

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

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

/*  Component: Post
----------------------------------------------------------------------------------------- */

/*  Post Single Thumbnail
------------------------------------------ */
.post-single__thumbnail {
  padding-bottom: 0;
  height: 240px;
}
