/*!
Theme Name: ADR Logistics
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: adr-logistics
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: #101010;

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

  --color-accent: #e94e1b;
  --color-accent-trans: rgba(233, 79, 27, 0.08);

  --color-gray: gray;
  --color-gray-dark: darkgray;
  --color-gray-light: lightgray;

  /* Box Shadow */
  --box-shadow-accent: 0px 0px 70px rgba(233, 78, 27, 0.56);

  /* Font */
  --font-sans-serif: "Inter", sans-serif;
  --font-serif: "Podkova", serif;
}

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

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

/* --------------------------------------------------------------------------------------
 *
 *  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: 1180px !important;
}

/* Container Short */
.container-short {
  max-width: 920px !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;
}

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

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

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

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Body */
  body {
    font-size: 14px;
  }
  /* Container */
  .container {
    row-gap: 0;
  }
  /* Br */
  br {
    display: none;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Typography
 *
----------------------------------------------------------------------------------------- */
:root {
  /* Heading */
  --font-size-h1: 38px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 26px;
  --font-size-h5: 24px;
  --font-size-h6: 22px;

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

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

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

ul,
ol,
dl {
  line-height: 1.6;
  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: 800;
  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);
}

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

.editor p {
  font-family: var(--font-serif);
}

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

.editor ul {
  list-style: square;
}

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

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

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  :root {
    /* Heading */
    --font-size-h1: 24px;
    --font-size-h2: 22px;
    --font-size-h3: 20px;
    --font-size-h4: 18px;
    --font-size-h5: 16px;
    --font-size-h6: 14px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Header
 *
 *  —— Headnav
 *  —— Sidebar
 *
----------------------------------------------------------------------------------------- */

:root {
  /* Site Header: Headnav */
  --headnav-height: 56px;

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

/* Site Header */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-size: 14px;
  position: sticky;
  background: transparent;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  background: var(--color-black-light);
}

/* Onscroll / Site Header */
.onscroll .site-header {
  box-shadow: 0px 0px 32px 0px #0000001a;
}

/*  Site Header: Headnav
----------------------------------------------------------------------------------------- */
.headnav {
  display: flex;
  align-items: center;
  height: var(--headnav-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

/*  Headnav: Headnav Navigation
------------------------------------------ */
.headnav-navigation {
  width: 100%;
}

.headnav-navigation .menu {
  width: 100%;
  display: flex;
}

/* Headnav Navigation / Menu Item */
.headnav-navigation .menu-item {
  width: 100%;
  display: flex;
  column-gap: 8px;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  height: var(--headnav-height);
  transition: ease-in-out 0.16s;
}

.headnav-navigation .menu-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.headnav-navigation .menu-item > a {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: ease-in-out 0.16s;
}

.headnav-navigation .menu-item:hover > a {
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: var(--box-shadow-accent);
}

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

/* Menu Item Has Children */
.headnav-navigation .menu-item-has-children::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
}

/* Headnav Navigation / Sub Menu */
.headnav-navigation .sub-menu {
  left: 0;
  top: 30px;
  padding: 16px;
  display: none;
  position: absolute;
  border-radius: 8px;
  min-width: max-content;
  background: var(--color-white);
  color: var(--color-black) !important;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

/* Headnav Navigation / Sub Menu First Level */
.headnav-navigation .menu > *::after {
  background: url("https://api.iconify.design/carbon/chevron-down.svg")
    no-repeat center center / contain;
}

.headnav-navigation .menu > *:hover > .sub-menu {
  display: block;
}

/* Headnav Navigation / Sub Menu Second Level */
.headnav-navigation .menu > * > * > *::after {
  background: url("https://api.iconify.design/carbon/chevron-right.svg")
    no-repeat center center / contain;
}

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

/*  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(--headnav-height);
}

/* Sidebar Body */
.sidebar-body {
  padding: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

/* Headnav 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 rgba(255, 255, 255, 0.16);
}

.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;
  margin: 0 16px 0 auto;
  -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-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;
}

.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: 1180px) {
  /* Menu Toggle */
  .menu-toggle {
    display: block;
  }

  /* Headnav Navigation */
  .headnav-navigation {
    display: none;
  }
}

@media only screen and (max-width: 1180px) {
  :root {
    /* Site Header: Sidebar */
    --sidebar-width: 100%;
  }
}

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

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

.site-footer {
  padding: var(--section-padding) 0;
}

/* Site Copyright */
.site-copyright {
  color: var(--color-white-trans);
}

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

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

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

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

/*  Section: Hero
----------------------------------------------------------------------------------------- */
section#hero {
  padding: 40px 0;
  min-height: calc(var(--vh, 1vh) * 100);
}

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

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

/*  Component: Iconbox
----------------------------------------------------------------------------------------- */

/* Iconbox */
.iconbox {
  row-gap: 24px;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* Iconbox Icon */
.iconbox-icon {
  width: 100%;
  height: 100%;
  display: block;
  max-height: 120px;
  object-fit: contain;
  object-position: bottom;
}

/* Iconbox Meta */
.iconbox-meta {
  row-gap: 16px;
  display: flex;
  flex-direction: column;
}

/* Iconbox Meta Title */
.iconbox-meta__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Iconbox Meta Text */
.iconbox-meta__text {
  color: var(--color-white-trans);
}

/*  Iconbox Feed
------------------------------------------ */
.iconbox-feed {
  position: relative;
}

.iconbox-feed__line {
  width: 100%;
  top: 24px;
  height: 2px;
  display: block;
  margin: 0 auto;
  position: absolute;
  background: var(--color-accent);
}

.iconbox-feed__line::before,
.iconbox-feed__line::after {
  top: 50%;
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  background: var(--color-accent);
}

.iconbox-feed__line::before {
  left: -2px;
}

.iconbox-feed__line::after {
  right: -2px;
}

@media only screen and (max-width: 1180px) {
  /* Iconbox Meta Title */
  .iconbox-meta__title {
    font-size: 18px;
  }
}

/*  Component: QR
----------------------------------------------------------------------------------------- */

/*  QR Box
------------------------------------------ */
.qr-box {
  row-gap: 16px;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

/* QR Box Image */
.qr-box__image {
  width: 154px;
  height: 154px;
  min-width: 154px;
  min-height: 154px;
  object-fit: contain;
}

/*  Component: Announce
----------------------------------------------------------------------------------------- */

/*  Announce Section
------------------------------------------ */
section.announce {
  min-height: 600px;
  position: relative;
}

/*  Announce Thumbnail
------------------------------------------ */
.announce-thumbnail {
  top: 0;
  width: 40%;
  height: 100%;
  position: absolute;
  filter: grayscale(100%);
  background: var(--color-white-trans);
}

.announce-thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  Announce Feed
------------------------------------------ */
.announce-feed {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.announce-feed > section.announce:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

/* Reverse Announce Row */
.announce-feed > section.announce:nth-child(even) .row {
  flex-direction: row-reverse;
}

/* Reverse Announce Thumbnail */
.announce-feed > section.announce:nth-child(odd) .announce-thumbnail {
  left: 0;
}

.announce-feed > section.announce:nth-child(even) .announce-thumbnail {
  right: 0;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  /* Announce Thumbnail */
  .announce-thumbnail {
    width: 100%;
    position: unset;
  }
}

/*  Component: Coutner
----------------------------------------------------------------------------------------- */

/*  Counter Box
------------------------------------------ */
.counter-box {
  height: 100%;
  row-gap: 8px;
  display: flex;
  padding: 40px;
  flex-direction: column;
  transition: ease-in-out 0.16s;
  background: var(--color-accent-trans);
  border: 1px solid rgba(233, 79, 27, 0.32);
}

.counter-box:hover {
  box-shadow: var(--box-shadow-accent);
  border-color: rgba(233, 79, 27, 0.64);
}

/* Counter Box Value */
.counter-box__value {
  line-height: 1;
  font-weight: 500;
  color: var(--color-accent);
  font-size: var(--font-size-h2);
}

/* Counter Box Title */
.counter-box__text {
  color: var(--color-white);
}

/*  Component: Headline
----------------------------------------------------------------------------------------- */
.headline {
  display: flex;
  row-gap: 16px;
  flex-direction: column;
}

/* Headline Center */
.headline.center {
  text-align: center;
  align-items: center;
  justify-content: center;
}

/*  Headline Label
------------------------------------------ */
.headline-label {
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-size: var(--font-size-medium);
}

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

/* Headline Title Small */
.headline-title.small {
  font-size: var(--font-size-h3);
}

/* Headline Title <h1> */
h1.headline-title {
  font-weight: 900;
  font-size: var(--font-size-h1);
}

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

/*  Headline Text
------------------------------------------ */
.headline-text {
  color: var(--color-white-trans);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
}

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

input,
textarea {
  width: 100%;
  border: none;
  padding: 16px 24px;
  background: var(--color-white);
}

textarea {
  height: 196px;
}

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

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

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

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

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

/* .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;
  }
  /* Form Column */
  [class*="form-column__"] {
    width: 100% !important;
  }
}

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

/*  Contact Feed
------------------------------------------ */
.contact-feed {
  row-gap: 24px;
  display: flex;
  flex-direction: column;
}

/*  Contact Card
------------------------------------------ */

.contact-card {
  display: flex;
  row-gap: 24px;
  flex-wrap: wrap;
  column-gap: 56px;
}

/* Contact Card Wrapper */
.contact-card__wrapper {
  row-gap: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.contact-list[class*="icon-"] {
  position: relative;
  padding: 0 0 0 40px;
}

.contact-list[class*="icon-"]::before {
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  content: "";
  display: block;
  position: absolute;
}

/* Contact List Email */
.contact-list.icon-email::before {
  background: url("https://api.iconify.design/fluent/mail-16-regular.svg?color=%23e94e1b")
    no-repeat center center / contain;
}

/* Contact List Phone */
.contact-list.icon-phone::before {
  background: url("https://api.iconify.design/carbon/phone-voice.svg?color=%23e94e1b")
    no-repeat center center / contain;
}

/* Contact List Address */
.contact-list.icon-address::before {
  background: url("https://api.iconify.design/ep/location.svg?color=%23e94e1b")
    no-repeat center center / contain;
}

/*  Contact Map
------------------------------------------ */
#contact-map {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 420px;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  #contact-map {
    min-height: 240px;
  }
}

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

/* Site Branding / Site Logo */
.site-branding .site-logo {
  max-height: 136px;
}

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

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

/*  Button: Default
------------------------------------------ */
.buttons [class*="button-"] {
  height: 56px;
  display: flex;
  outline: none;
  cursor: pointer;
  column-gap: 8px;
  min-width: 256px;
  padding: 0px 24px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  background-color: var(--color-black-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Button Icon */
.buttons [class*="button-"] .iconify {
  color: var(--color-accent);
  transition: ease-in-out 0.16s;
  font-size: 24px;
}

/* Button Hover Effect */
.buttons [class*="button-"]:hover {
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: var(--box-shadow-accent);
}

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

/*  Button Accent Trans
------------------------------------------ */
.buttons [class*="button-"].accent-trans {
  background: var(--color-accent-trans);
  border-color: rgba(233, 79, 27, 0.32);
}

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

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

/*  Scroll Button
------------------------------------------ */
.scroll-button {
  row-gap: 16px;
  display: flex;
  cursor: pointer;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
  background-color: transparent;
  transition: ease-in-out 0.16s;
  color: var(--color-white-trans);
}

.scroll-button:hover {
  color: var(--color-white);
}

.scroll-button__icon {
  position: relative;
  animation-duration: 3s;
  animation-name: scrolldown;
  animation-iteration-count: infinite;
  transition-timing-function: ease-out;
}

@keyframes scrolldown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 8px;
  }
  100% {
    bottom: 0;
  }
}

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

/* Modal Wrapper */
.modal-wrapper {
  row-gap: 32px;
  display: flex;
  flex-direction: column;
}

/*  Modal Lead
------------------------------------------ */
#modal-lead {
  max-width: 420px;
}

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

/* .navigation */
.navigation > .screen-reader-text {
  display: none;
}

/* .navigation > .nav-links */
.nav-links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nav-links > [class*="nav-"] {
  max-width: 320px;
}

.nav-links > .nav-next {
  margin-left: auto;
}

.nav-links > .nav-previous {
  margin-right: auto;
}

.nav-links > [class*="nav-"] > a {
  display: flex;
  line-height: 1.6;
  align-items: flex-start;
}

.nav-links > .nav-next > a {
  text-align: right;
}

.nav-links > .nav-previous > a {
  text-align: left;
}

.nav-links > .nav-previous > a::before,
.nav-links > .nav-next > a::after {
  content: "";
  min-width: 24px;
  min-height: 24px;
  display: block;
}

.nav-links > .nav-previous > a::before {
  margin-right: 8px;
  background: url("https://api.iconify.design/carbon:chevron-left.svg")
    no-repeat center center / contain;
}

.nav-links > .nav-next > a::after {
  margin-left: 8px;
  background: url("https://api.iconify.design/carbon:chevron-right.svg")
    no-repeat center center / contain;
}

/* .pagination > .nav-links */
.pagination .nav-links {
  align-items: center;
  justify-content: center;
}

.pagination .nav-links > .page-numbers {
  width: 48px;
  height: 48px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.pagination .nav-links > .page-numbers.prev {
  background: url("https://api.iconify.design/carbon:chevron-left.svg")
    no-repeat center center / contain;
}

.pagination .nav-links > .page-numbers.next {
  background: url("https://api.iconify.design/carbon:chevron-right.svg")
    no-repeat center center / contain;
}

.pagination .nav-links > .page-numbers:not(:last-child) {
  margin-right: 16px;
}
