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

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

:root {
  /* Color */
  --color-black: #000;
  --color-black-light: #1d1d1d;

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

  --color-accent: #705040;
  --color-accent-dark: #3f2d25;
  --color-accent-light: #a1745e;
  --color-accent-gradient: linear-gradient(
    to right,
    var(--color-accent-light) 0%,
    var(--color-accent) 50%,
    var(--color-accent-light) 100%
  );

  --color-green: #67ba82;

  --color-gray: #c8c8c8;
  --color-gray-dark: #444444;
  --color-gray-light: #f9f9f9;

  /* Font */
  --font-serif: "Cormorant Unicase", serif;
  --font-sans-serif: "Rubik", sans-serif;
}

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

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

/* --------------------------------------------------------------------------------------
 *
 *  Grid System
 *
----------------------------------------------------------------------------------------- */

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

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

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

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

.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: 1200px) {
  .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: 30px;
  --font-size-h4: 28px;
  --font-size-h5: 26px;
  --font-size-h6: 24px;

  /* Font Size */
  --font-size-large: 18px;
  --font-size-middle: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--color-black);
  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.8;
}

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

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

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

thead {
  font-weight: 600;
  text-align: center;
  color: var(--color-white);
  background: var(--color-accent);
}

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

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

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

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

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

.editor ul {
  list-style: square inside
    url("https://api.iconify.design/bi:dot.svg?color=%232B52C4");
}

.editor ol {
  list-style: decimal;
}

.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) {
  .editor br {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  :root {
    /* Heading */
    --font-size-h1: 32px;
    --font-size-h2: 28px;
    --font-size-h3: 26px;
    --font-size-h4: 24px;
    --font-size-h5: 22px;
    --font-size-h6: 20px;
  }
}

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

:root {
  /* Site Header: Headbar */
  --headbar-height: 112px;

  /* Site Header: Sidebar */
  --sidebar-width: 350px;
}

/* Site Header */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Onscroll / Site Header */
.site-header:hover,
.onscroll .site-header {
  color: var(--color-black);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}

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

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

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

/* Headbar Panel */
.headbar-panel {
  gap: 8px 24px;
  display: flex;
  text-align: right;
  align-items: center;
  justify-content: space-between;
}

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

/* Headbar Navigation / Menu Item */
.headbar-navigation .menu-item {
  height: 32px;
  display: flex;
  column-gap: 4px;
  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;
}

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

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

/* 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 {
  left: 0;
  top: 32px;
  padding: 16px;
  display: none;
  row-gap: 8px;
  min-width: 240px;
  border-radius: 8px;
  position: absolute;
  flex-direction: column;
  backdrop-filter: blur(16px);
  color: var(--color-black) !important;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.headbar-navigation .sub-menu .menu-item {
  height: unset;
  text-transform: initial;
}

/* Headbar Navigation / Sub Menu First Level */
.headbar-navigation .menu > *::after {
  display: none;
  background: url("https://api.iconify.design/carbon/chevron-down.svg?color=lightgray")
    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;
  width: 0;
  height: 100%;
  z-index: 999;
  position: fixed;
  overflow-x: hidden;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  background: var(--color-black-light);
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

.sidebar.open,
.sidebar > * {
  display: flex;
  flex-direction: column;
  width: var(--sidebar-width);
}

.sidebar > * > *:not(:last-child) {
  margin: 0 0 16px 0;
}

/* Sidebar Head */
.sidebar-head {
  min-height: var(--headbar-height);
}

/* Sidebar Body */
.sidebar-body {
  padding: 32px;
  border-top: 1px solid var(--color-white-trans);
  border-bottom: 1px solid var(--color-white-trans);
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 32px;
}

/*  Sidebar: Sidebar Navigation
------------------------------------------ */
.sidebar-navigation .menu {
  display: flex;
  flex-direction: column;
}

/* Headbar Navigation / Menu Item */
.sidebar-navigation .menu-item {
  display: flex;
  position: relative;
  flex-direction: column;
}

.sidebar-navigation .menu-item:not(:last-child) {
  margin: 0 0 16px 0;
  padding: 0 0 16px 0;
  border-bottom: 1px solid var(--color-white-trans);
}

.sidebar-navigation .menu-item > a {
  display: block;
  min-width: max-content;
}

/* Sidebar Navigation / Sub Menu Toggle */
.sidebar-navigation .sub-menu-toggle {
  right: 0;
  top: -5px;
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  transition: ease-in-out 0.16s;
  background: url("https://api.iconify.design/carbon/chevron-down.svg?color=white")
    no-repeat center center / 24px 24px;
}

.sidebar-navigation .sub-menu-toggle.active {
  transform: rotate(180deg);
}

/* Sidebar Navigation / Sub Menu */
.sidebar-navigation .sub-menu {
  display: none;
}

.sidebar-navigation .sub-menu.active {
  display: block;
  margin: 24px 0 0 24px;
}

/*  Sidebar: Menu Toggle
------------------------------------------ */
.menu-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;
}

.menu-toggle span {
  left: 0;
  opacity: 1;
  height: 1px;
  width: 100%;
  display: block;
  border-radius: 0;
  position: absolute;
  background: var(--color-accent);
  -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;
}

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

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

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

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

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

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

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

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

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 1320px) {
  .site-header:hover,
  .onscroll .site-header {
    backdrop-filter: unset;
  }
  /* Menu Toggle */
  .menu-toggle {
    display: block;
  }
  /* Headbar */
  .headbar [class*="col-"] > *:first-child {
    margin-right: auto;
  }
  /* Headbar Navigation */
  .headbar-navigation {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  /* Headbar Paanel */
  .headbar-panel {
    display: none;
  }
  /* Headbar / Site Branding Logo */
  .headbar .site-branding__logo {
    max-height: 56px;
  }
}

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

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

/* --------------------------------------------------------------------------------------
 *
 *  Section
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

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

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

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

/*  Section: Hero
----------------------------------------------------------------------------------------- */
section.hero {
  padding: 0;
  height: 100%;
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100);
}

section.hero + * {
  padding-top: calc(var(--section-padding) / 2);
}

/*  Hero Slider
------------------------------------------ */
.hero-slide__overlay {
  display: flex;
  align-items: center;
  color: var(--color-white);
  padding: var(--section-padding) 0;
  background: rgba(29, 29, 29, 0.48);
  min-height: calc(var(--vh, 1vh) * 100 - var(--headbar-height));
}

/*  Hero Panel
------------------------------------------ */
#hero-panel {
  bottom: 0;
  z-index: 1;
  width: 100%;
  bottom: 38px;
  position: absolute;
}

/* Hero Panel Slider */
#hero-panel__slider {
  height: 100%;
  border-radius: 8px;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 8px 48px rgba(29, 29, 29, 0.16);
}

/* Hero Panel Box */
.hero-panel__box {
  padding: 16px;
}

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

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  section.hero {
    min-height: calc(var(--vh, 1vh) * 80);
  }
  /* Hero Slide Overlay */
  .hero-slide__overlay {
    min-height: calc(var(--vh, 1vh) * 80 - var(--headbar-height));
  }
}

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

/*  Component: Thumbnail
----------------------------------------------------------------------------------------- */
[class*="__thumbnail"] {
  width: 100%;
  height: 320px;
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  transition: ease-in-out 0.16s;
  background: rgba(161, 116, 94, 0.16);
}

[class*="__thumbnail"] > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail Image Contain */
[class*="__thumbnail"] > img.contain {
  object-fit: contain;
}

/*  Component: Price
----------------------------------------------------------------------------------------- */

/*  Price Table
------------------------------------------ */

/* Price Service Title */
table.price .price-service__title {
  width: 70%;
}

/* Price Service Value */
table.price .price-service__value {
  width: 30%;
}

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

.accordion {
  padding: 16px 0;
}

/*  Accordion Feed
------------------------------------------ */
.accordion-feed {
  display: flex;
  flex-direction: column;
}

.accordion-feed > *:not(:last-child) {
  border-bottom: 1px solid rgba(29, 29, 29, 0.16);
}

/*  Accordion Panel
------------------------------------------ */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.16s ease-out;
}

/*  Accordion Button
------------------------------------------ */
.accordion-button {
  gap: 16px;
  display: flex;
  cursor: pointer;
  line-height: 1.6;
  position: relative;
  align-items: center;
  padding: 0 16px;
  color: var(--color-black);
  transition: ease-in-out 0.16s;
  justify-content: space-between;
  font-size: var(--font-size-large);
}

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

.accordion-button::after {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  min-width: 48px;
  min-height: 48px;
  transition: ease-in-out 0.16s;
  background: url("https://api.iconify.design/ph/plus-thin.svg?color=%232f2f2f")
    no-repeat center center / 32px;
}

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

.accordion-button.active::after {
  transform: rotate(180deg);
}

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

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

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

/* Form White */
form.white input,
form.white textarea {
  color: var(--color-white);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

/*  Form Layout
------------------------------------------ */
[class*="form-column__"] {
  gap: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Input Field 50% */
.form-column__50 {
  width: calc(50% - 32px);
}

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

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

/* .wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* .wpcf7-spinne */
.wpcf7-spinner {
  top: 50%;
  right: 24px;
  position: absolute;
  transform: translateY(-50%);
}

/* .wpcf7-response-output */
.wpcf7-response-output {
  font-size: 12px;
  border-width: 1px;
  margin: 0 !important;
  padding: 16px !important;
}

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

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

/*  Swiper Control
------------------------------------------ */
.swiper-control {
  gap: 8px;
  display: flex;
  width: 100%;
  max-width: max-content;
  align-items: center;
}

/* Swiper Control White */
.swiper-control.white * {
  color: var(--color-white) !important;
  border-color: var(--color-white) !important;
}

/* Swiper Control Absoulute */
.swiper-control.absolute {
  left: 50%;
  z-index: 1;
  bottom: -16px;
  position: absolute;
  transform: translateX(-50%);
}

/* Swiper Buttons */
.swiper-prev,
.swiper-next {
  width: 56px;
  height: 56px;
  display: flex;
  font-size: 24px;
  cursor: pointer;
  min-width: 56px;
  min-height: 56px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  transition: ease-in-out 0.16s;
  background: var(--color-gray-light);
}

.swiper-prev:hover,
.swiper-next:hover {
  color: var(--color-accent);
}

/*  Swiper Iteration
------------------------------------------ */
.swiper-iteration {
  padding: 8px 16px;
  border-radius: 16px;
  color: var(--color-white);
  background: var(--color-accent);
}

/*  Component: Team
----------------------------------------------------------------------------------------- */

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

/* Team Box Meta */
.team-box__meta {
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

/* Team Box Title */
.team-box__title {
  font-weight: 500;
  color: var(--color-black);
  font-size: var(--font-size-large);
}

/* Team Box Thumbnail */
.team-box__thumbnail > img {
  object-fit: contain;
}

/*  Component: Service
----------------------------------------------------------------------------------------- */

/*  Review Box
------------------------------------------ */
.review-box {
  position: relative;
  padding: 0 0 48px 0;
}

.review-box::after {
  left: 50%;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  background: var(--color-white);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

/* Review Box Meta */
.review-box__meta {
  gap: 16px;
  height: 320px;
  display: flex;
  padding: 40px;
  position: relative;
  overflow-y: scroll;
  border-radius: 8px;
  flex-direction: column;
  background: var(--color-gray-light);
}

.review-box__meta::before {
  content: "";
  width: 32px;
  height: 32px;
  opacity: 0.88;
  display: block;
  position: absolute;
  background: url("https://api.iconify.design/ic/sharp-format-quote.svg?color=%23705040")
    no-repeat center center / contain;
}

.review-box__meta::before {
  right: 8px;
  bottom: 8px;
}

/* Review Box Title */
.review-box__title {
  font-weight: 500;
  color: var(--color-black);
  font-size: var(--font-size-large);
}

/* Review Box Thumbnail */
.review-box__thumbnail {
  bottom: 0;
  left: 16px;
  width: 96px;
  height: 96px;
  min-width: 96px;
  min-height: 96px;
  position: absolute;
  border-radius: 100%;
}

/*  Responsive
------------------------------------------ */

/*  Component: Certificate
----------------------------------------------------------------------------------------- */

section#certificate {
  padding: 48px 0;
  position: relative;
  background: var(--color-black-light);
}

/*  Certificate Card
------------------------------------------ */
.certificate-card {
  gap: 16px;
  bottom: 0;
  width: 320px;
  padding: 48px;
  display: flex;
  overflow: hidden;
  position: absolute;
  flex-direction: column;
  border-radius: 8px 8px 0 0;
  height: calc(100% + 120px);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  section#certificate {
    padding-bottom: 0;
  }
  /* Certificate Card */
  .certificate-card {
    height: auto;
    position: unset;
  }
}

/*  Component: Service
----------------------------------------------------------------------------------------- */

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

/* Service Box Title */
.service-box__title {
  display: block;
  font-weight: 500;
  color: var(--color-black);
  font-size: var(--font-size-middle);
}

/* Service Box Thumbnail */
.service-box__thumbnail {
  height: 156px;
}

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

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

/* Post Box Title */
.post-box__title {
  display: block;
  font-weight: 600;
  line-height: 1.8;
  font-size: var(--font-size-middle);
}

/* Post Box Thumbnail */
.post-box__thumbnail {
  height: 156px;
}

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

/*  Gallery Banner
------------------------------------------ */
.gallery-banner {
  height: 640px;
  overflow: hidden;
  position: relative;
}

.gallery-banner > .gallery-banner__image {
  position: absolute;
  object-fit: contain;
}

.gallery-banner > .gallery-banner__image:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 1;
  max-height: 56%;
}

.gallery-banner > .gallery-banner__image:nth-child(2) {
  top: 50%;
  left: 50%;
  max-width: 80%;
  transform: translate(-50%, -50%);
}

.gallery-banner > .gallery-banner__image:nth-child(3) {
  right: 0;
  bottom: 0;
  z-index: 1;
  max-height: 56%;
}

/* Gallery Banner Image */
.gallery-banner__image {
  height: max-content;
  border: 8px solid var(--color-white);
}

/*  Component: Content
----------------------------------------------------------------------------------------- */

/*  Content Box
------------------------------------------ */
.content-box {
  gap: 16px;
  display: flex;
  align-items: center;
}

/* Content Box Icon */
.content-box__icon {
  width: 96px;
  height: 96px;
  padding: 16px;
  display: flex;
  min-width: 96px;
  font-size: 32px;
  min-height: 96px;
  text-align: center;
  align-items: center;
  object-fit: contain;
  justify-content: center;
}

/*  Component: Language Switcher
----------------------------------------------------------------------------------------- */
.language-switcher {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.language-switcher > * {
  opacity: 0.4;
  transition: ease-in-out 0.16s;
}

.language-switcher > *:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  display: inline-block;
  opacity: 0.08 !important;
}

/* Language Hover & Current Style */
.language-switcher .language:hover,
.language-switcher .current-language {
  opacity: 1;
  color: var(--color-accent-light);
}

/*  Component: Contact
----------------------------------------------------------------------------------------- */
section#contact {
  position: relative;
  padding: 64px 0 !important;
}

section#contact::before {
  top: 0;
  left: 0;
  width: 50%;
  z-index: -1;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  background: var(--color-black-light);
}

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

/* Contact List Title */
.contact-list::before {
  content: attr(data-title);
}

/*  Contact Card
------------------------------------------ */
.contact-card {
  gap: 24px;
  display: flex;
  flex-direction: column;
}

/* Contact Card / White */
.contact-card.white {
  color: var(--color-white);
}

/*  Contact Map
------------------------------------------ */
#contact-map iframe {
  width: 100%;
  border: none;
  height: 420px;
  filter: grayscale(100%);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  section#contact {
    background: var(--color-black-light);
  }
  section#contact::before {
    display: none;
  }
  section#contact * {
    color: var(--color-white);
  }
}

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

.headline-wrapper.column {
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* Headline White */
.headline.white * {
  color: var(--color-white);
}

.headline.white *::before,
.headline.white *::after {
  border-bottom-color: var(--color-white) !important;
}

/*  Headline Label
------------------------------------------ */
.headline-label {
  gap: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.headline-label::before,
.headline.center .headline-label::after {
  content: "";
  width: 32px;
  display: block;
  border-bottom: 1px solid var(--color-black);
}

/*  Headline Title
------------------------------------------ */
.headline-title {
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-black);
  font-size: var(--font-size-h1);
  font-family: var(--font-serif);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Headline Wrapper */
  .headline-wrapper {
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }
}

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

/* Social Media White */
.social-media.white > * {
  background: rgba(255, 255, 255, 0.16);
}

/* Social Media / Social */
.social {
  width: 48px;
  height: 48px;
  display: flex;
  font-size: 24px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 8px;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.16s;
  background: rgba(0, 0, 0, 0.08);
}

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

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

/* Site Branding / Site Logo */
.site-branding__logo {
  max-height: 80px;
}

/*  Component: Buttons
----------------------------------------------------------------------------------------- */
.buttons {
  gap: 16px;
  display: flex;
  align-items: center;
  min-width: max-content;
}

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

/*  Button Default
------------------------------------------ */
.buttons [class*="button-"] {
  height: 56px;
  display: flex;
  outline: none;
  cursor: pointer;
  padding: 0px 32px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-image: linear-gradient(
    to right,
    var(--color-accent-light) 0%,
    var(--color-accent) 50%,
    var(--color-accent-light) 100%
  );
  color: var(--color-white);
  background-size: 200% auto;
  transition: ease-in-out 0.3s;
}

.buttons [class*="button-"]:hover {
  background-position: right center;
}

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

/*  Component: Comments
----------------------------------------------------------------------------------------- */

.comment-list > .comment {
  padding: 32px;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-light);
}

.comment-list > .comment:not(:last-child),
.comment-list > .comment ul.children .comment:not(:last-child) {
  margin-bottom: 32px;
}

.comment-list > .comment ul.children {
  margin: 32px 0 0 32px;
}

.comment-body {
  padding: 32px;
  background: var(--color-white);
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-meta > .comment-author {
  display: flex;
  align-items: center;
}

.comment-meta > .comment-author > .avatar {
  margin-right: 10px;
}

.comment-meta > .comment-metadata {
  font-size: 12px;
}

.comment-content {
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}

/*  Component: Post Navigation / Post Pagintaion / Comment Navigation
----------------------------------------------------------------------------------------- */

/* Page Numbers */
.page-numbers {
  width: 48px;
  height: 48px;
  display: flex;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
}

.page-numbers.next {
  background: url("https://api.iconify.design/ant-design/arrow-right-outlined.svg")
    no-repeat center center / 16px 16px;
}

.page-numbers.prev {
  background: url("https://api.iconify.design/ant-design/arrow-left-outlined.svg")
    no-repeat center center / 16px 16px;
}

.page-numbers:hover,
.page-numbers.current {
  color: var(--color-accent);
}

/*  Pagination: Nav Links
------------------------------------------ */
.nav-links {
  display: flex;
  column-gap: 16px;
  justify-content: space-between;
}

.nav-links > * {
  display: flex;
  max-width: 280px;
  line-height: 1.8;
  font-weight: 400;
  transition: ease-in-out 0.15s;
}

.nav-links > *:last-child {
  margin-left: auto;
}

.nav-links > *:hover {
  color: var(--color-accent);
}

/* Nav Previous */
.nav-previous {
  text-align: left;
}

/* Nav Next */
.nav-next {
  text-align: right;
}

/*  Pagination: Nav Links
------------------------------------------ */
.pagination {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
