/*!
Theme Name: Polygraph
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: polygraph
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-black-trans: rgba(16, 16, 16, 0.08);

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

  --color-accent: #131d38;
  --color-accent-light: #212c44;
  --color-accent-dark: rgb(26, 18, 42);

  --color-blue: #3fa9f5;

  --color-gray: #f1f1f1;
  --color-gray-dark: #5c5c5c;
  --color-gray-light: #f8f8f8;

  /* Font */
  --font-sans-serif: "Nunito Sans", sans-serif;
}

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

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

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  body {
    font-size: 14px;
  }
  /* Mobile Reverse */
  .m-reverse {
    flex-direction: column-reverse !important;
  }
}

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

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

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

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

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

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

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

.y-margin {
  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%;
  }
}

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

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

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

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

/*  Typography: Editor
------------------------------------------ */
.editor > *:not(:last-child) {
  margin-bottom: 16px;
}

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

.editor ul {
  margin-left: 0;
  list-style: none;
}

.editor ul > li {
  position: relative;
  padding-left: 40px;
}

.editor ul > li::before {
  top: -4px;
  left: 0;
  display: block;
  position: absolute;
  content: url("https://api.iconify.design/system-uicons/chevron-right-circle.svg?color=%233fa9f5&width=32&height=32");
}

.editor ol {
  list-style: decimal;
}

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

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

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

/* Blockquote */
.editor blockquote {
  margin: 0 auto;
  margin-bottom: 16px;
}

.editor blockquote::after,
.editor blockquote::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url("https://api.iconify.design/el:quotes.svg?color=%23D1CEE1")
    no-repeat center center / contain;
}

.editor blockquote::after {
  margin-left: auto;
  transform: rotate(180deg);
}

.editor blockquote p {
  padding: 16px 32px;
}

.editor blockquote p:first-child {
  padding: 16px 32px 0 32px;
}

.editor blockquote p:last-child {
  margin-bottom: 0 32px 16px 32px;
}

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

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

:root {
  /* Site Header */
  --site-header-height: 112px;

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

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

/* Onscroll / Site Header */
.onscroll .site-header {
  background: rgba(33, 44, 68, 0.8);
}

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

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

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

.headbar [class*="col-"] > *:first-child {
  margin-right: auto;
}

/* Headbar Panel */
.headbar-panel {
  display: flex;
  column-gap: 40px;
  align-items: center;
  justify-content: flex-end;
}

/*  Site Header: Navbar
----------------------------------------------------------------------------------------- */
.navbar {
  border-top: 1px solid var(--color-white-trans);
}

/*  Navbar: Navbar Navigation
------------------------------------------ */
.navbar-navigation .menu {
  display: flex;
  column-gap: 32px;
  align-items: center;
  justify-content: space-between;
}

/* Headbar Navigation / Menu Item */
.navbar-navigation .menu-item {
  height: 32px;
  display: flex;
  column-gap: 8px;
  cursor: pointer;
  position: relative;
  align-items: center;
  transition: ease-in-out 0.16s;
  justify-content: space-between;
}

.navbar-navigation .menu-item > a {
  width: 100%;
  display: block;
}

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

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

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

/* Headbar Navigation / Sub Menu */
.navbar-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);
}

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

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

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

.navbar-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-accent);
  -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);
  border: 1px solid var(--color-white);
  border-radius: 16px 0 0 16px;
}

.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(--site-header-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-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: 992px) {
  /* Site Header */
  #site-header {
    top: 0 !important;
  }

  /* Menu Toggle */
  .menu-toggle {
    display: block;
  }
  /* Headbar Panel */
  .headbar-panel {
    display: none;
  }
  /* Navbar */
  #navbar {
    display: none;
  }
}

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

/* --------------------------------------------------------------------------------------
 *
 *  Site Footer
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */
#colophon {
  color: var(--color-white);
  padding: var(--section-padding) 0;
  background: var(--color-accent);
}

/*  Colophon Widget
------------------------------------------ */
.colophon-widget {
  display: flex;
  flex-direction: column;
}

/* Colophon Widget Wrapper */
.colophon-widget__wrapper {
  display: flex;
  row-gap: 24px;
  flex-wrap: wrap;
  column-gap: 24px;
  justify-content: space-between;
}

.colophon-widget__wrapper:not(:last-child) {
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px solid var(--color-white-trans);
}

.colophon-widget__wrapper > *:last-child {
  text-align: right;
}

/*  Colophon Navigation
------------------------------------------ */
.colophon-navigation .menu {
  display: flex;
  row-gap: 8px;
  flex-wrap: wrap;
  column-gap: 8px;
}

.colophon-navigation .menu-item {
  width: calc(50% - 4px);
}

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

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

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

/* Section Accent */
.section-accent {
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.8);
}

.section-accent-dark {
  background: var(--color-accent-dark);
  color: rgba(255, 255, 255, 0.8);
}

/* Section Black */
.section-black {
  color: var(--color-white);
  background: var(--color-black-light);
}

/* Section Gray */
.section-gray {
  background: var(--color-gray-light);
}

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

/*  Section: Hero
----------------------------------------------------------------------------------------- */
section.hero {
  padding: 0;
}

/* Hero Overlay */
.hero-overlay {
  display: flex;
  align-items: center;
  color: var(--color-white);
  background: rgba(19, 29, 56, 0.8);
  padding: 220px 0 var(--section-padding) 0;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  section.hero {
    background-size: 795px !important;
    background-position-y: 180px !important;
  }
  /* Hero Overlay */
  .hero-overlay {
    padding: 146px 0 var(--section-padding) 0;
  }
  /* Section hero */
  #hero-buttons {
    display: none;
  }
}

/*  Section: Teamlead
----------------------------------------------------------------------------------------- */
section.teamlead {
  padding-bottom: 0;
  color: var(--color-white);
  background: var(--color-accent);
}

/* Teamlead Image */
.teamlead-image {
  display: block;
  margin: 0 auto;
}

/*  Section: Map
----------------------------------------------------------------------------------------- */
section.contacts {
  padding: 0;
  height: 540px;
  display: flex;
  line-height: 0;
  position: relative;
  align-items: center;
}

/* Map Google */
#map-google {
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  border: none;
  height: 100%;
  position: absolute;
  filter: grayscale(100%);
}

/*  Section: Not Found 404
----------------------------------------------------------------------------------------- */
section#notfound {
  text-align: center;
}

/* Notfound Label */
.notfound-label {
  line-height: 1;
  font-weight: 800;
  font-size: 250px;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .notfound-label {
    font-size: 125px;
  }
}

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

/*  Component: Thumbnail
----------------------------------------------------------------------------------------- */
[class*="__thumbnail"] {
  width: 100%;
  height: 340px;
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  transition: ease-in-out 0.16s;
}

[class*="__thumbnail"] > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease-in-out 0.15s;
}

[class*="__thumbnail"]:hover > img {
  scale: 1.05;
}

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

.widget {
  row-gap: 16px;
  display: flex;
  flex-direction: column;
}

/* Widget Title */
.widget-title {
  font-weight: 500;
  color: var(--color-blue);
  font-size: var(--font-size-h6);
}

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

/*  Gallery Box
------------------------------------------ */
.gallery-box {
  display: block;
}

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

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

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

/* Team Box / Meta */
.team-box__meta {
  row-gap: 4px;
  display: flex;
  flex-direction: column;
}

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

/*  Component: Step
----------------------------------------------------------------------------------------- */

/*  Step Box
------------------------------------------ */
.step-box {
  height: 100%;
  display: flex;
  padding: 24px;
  row-gap: 32px;
  column-gap: 48px;
}

/* Step Box Meta */
.step-box__meta {
  display: flex;
  row-gap: 8px;
  font-weight: 500;
  flex-direction: column;
}

/* Step Box Title */
.step-box__title {
  font-weight: 600;
  font-size: var(--font-size-h6);
}

/* Step Box Number */
.step-box__number {
  font-size: 112px;
  font-weight: 800;
  line-height: 0.8;
  color: var(--color-white);
  -webkit-text-stroke: 2px var(--color-blue);
  text-shadow: -1px 0 var(--color-blue), 0 1px var(--color-blue),
    1px 0 var(--color-blue), 0 -1px var(--color-blue);
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Step Box */
  .step-box {
    padding: 0;
    text-align: center;
    flex-direction: column;
  }
}

/*  Component: Counter
----------------------------------------------------------------------------------------- */
#counter [class*="col-"] {
  padding: 0;
  border-right: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
}

#counter [class*="col-"]:nth-of-type(3n) {
  border-right: none;
}

#counter [class*="col-"]:nth-last-child(-n + 3) {
  border-bottom: none;
}

.counter-box {
  display: flex;
  row-gap: 24px;
  padding: 32px;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

/* Counter Box Value */
.counter-box__value {
  display: flex;
  font-size: 48px;
  font-weight: 500;
  min-width: 104px;
  min-height: 104px;
  width: max-content;
  text-align: center;
  align-items: center;
  border-radius: 16px;
  justify-content: center;
  color: #206ca3;
  transition: ease-in-out 0.16s;
  border: 3px solid transparent;
  background: var(--color-gray-light);
  border-right-color: rgba(63, 169, 245, 0.2);
  border-bottom-color: rgba(63, 169, 245, 0.2);
  box-shadow: 16px 16px 48px var(--color-gray-light),
    -16px -16px 48px var(--color-white);
}

/* Counter Box Text */
.counter-box__text {
  font-size: 16px;
  font-weight: 500;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Counter Box Text */
  .counter-box__text {
    font-size: 14px;
  }
}

/*  Component: Lead
----------------------------------------------------------------------------------------- */

/*  Component: Card Box
----------------------------------------------------------------------------------------- */
.card-box {
  z-index: 1;
  height: 100%;
  row-gap: 32px;
  display: flex;
  padding: 40px;
  position: relative;
  border-radius: 16px;
  flex-direction: column;
  backdrop-filter: blur(10px);
  background: rgba(33, 44, 68, 0.4);
  border: 1px solid var(--color-accent-light);
}

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

/* Card Box Neomorph */
.card-box.neomorph {
  border-color: transparent;
  background: var(--color-gray-light);
  box-shadow: 16px 16px 48px var(--color-gray-light),
    -16px -16px 48px var(--color-white);
}

/* Card Box Accent */
.card-box.accent {
  color: var(--color-white);
  background: var(--color-accent-light);
}

/*  Cardbox Icon
------------------------------------------ */
.card-box__icon {
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

/* Card Box Icon / White */
.card-box__icon.white {
  filter: brightness(0) invert(1);
}

/*  Card Box Meta
------------------------------------------ */
.card-box__meta {
  row-gap: 8px;
  display: flex;
  flex-direction: column;
}

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

/* Widget Title */
.card-box__title {
  font-weight: 600;
  color: var(--color-blue);
  font-size: var(--font-size-h6);
}

.card-box__title.small {
  font-size: 18px;
}

/* Card Box Title / White */
.card-box__title.white {
  color: var(--color-white);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Card Box */
  .card-box {
    padding: 24px;
    text-align: center;
    align-items: center;
  }
}

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

input,
textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
}

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: Headline
----------------------------------------------------------------------------------------- */
.headline {
  row-gap: 24px;
  display: flex;
  flex-direction: column;
}

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

/*  Headline Wrapper
------------------------------------------ */
.headline-wrapper {
  row-gap: 32px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

/*  Headline Label
------------------------------------------ */
.headline-label {
  letter-spacing: 2px;
  color: var(--color-blue);
  text-transform: uppercase;
}

/*  Headline Title
------------------------------------------ */
.headline-title {
  line-height: 1.2;
  font-weight: 500;
  font-size: var(--font-size-h1);
}

/* Headline Title Middle */
.headline-title.middle {
  font-size: var(--font-size-h2);
}

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

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  /* Headline Wrapper */
  .headline-wrapper {
    text-align: center;
    justify-content: center;
  }

  /* Headline Title <span> */
  /* .headline-title > span {
    display: block;
  } */
}

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

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

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

/* Language Hover & Current Style */
.language-switcher .language:hover,
.language-switcher .current-language {
  opacity: 1;
}

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

/* 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;
  border: 1px solid var(--color-white);
}

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

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

/* Contact List [tel] */
.contact-list [href^="tel:"] {
  font-weight: 500;
  text-decoration: underline;
}

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

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

/*  Component: Buttons
----------------------------------------------------------------------------------------- */
.buttons {
  display: flex;
  position: relative;
  align-items: center;
}

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

/* 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;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border: 1px solid transparent;

  /* Design */
  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.16s;
}

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

/*  Button Bordered White
------------------------------------------ */
.buttons [class*="button-"].bordered {
  background: transparent !important;
}

/* Button Bordered White */
.buttons [class*="button-"].bordered.white {
  color: var(--color-white);
}

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

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

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Buttons */
  .buttons {
    justify-content: center;
  }
}

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

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

/*  Swiper Control
------------------------------------------ */
.swiper-control {
  display: flex;
  column-gap: 16px;
  align-items: center;
}

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

.swiper-control.white > * {
  border-color: var(--color-white);
}

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

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

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

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

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

/*  Accordion Button
------------------------------------------ */
.accordion-button {
  display: flex;
  font-size: 18px;
  cursor: pointer;
  column-gap: 16px;
  font-weight: 500;
  padding: 16px 24px;
  position: relative;
  align-items: center;
  border-radius: 64px;
  justify-content: space-between;
  border: 1px solid var(--color-white);
}

.accordion-button::after {
  content: "";
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
  display: block;
  border-radius: 100%;
  transition: ease-in-out 0.16s;
  border: 1px solid var(--color-white);
  background: url("https://api.iconify.design/bi/chevron-down.svg?color=white")
    no-repeat center center / 16px;
}

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

.accordion-button.active {
  margin: 0 0 24px 0;
}

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

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Accordion Button */
  .accordion-button {
    font-size: 15px;
  }
}

/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  padding: 0 !important;
  color: var(--color-white);
  border-radius: 16px !important;
  background: var(--color-accent) !important;
}

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

/*  Component:  social button
----------------------------------------------------------------------------------------- */

.social-items-bg{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
  background-color: transparent;
  transition: background .4s;
  z-index: 20;
}

.social-items-bg.active{
  transition: background .4s;
  background-color: rgba(41, 41, 41,0.6);
}

.social-items-wrapper{
  position: fixed;
  right: 5%;
  bottom: 50px;
  z-index: 30;
}

.social-items-menu{
  display: none;
}

.social-item{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 15px 0px;
  position: relative;
}

.social-item__description{
  cursor: pointer;
  background-color: white;
  text-align: center;
  padding: 5px 10px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%,-50%);
  opacity: 0;
  transition: all .3s linear;
  color: #000000;
  font-size: 14px;
}

.social-item:hover .social-item__description{
  transform: translate(-100%,-50%);
  opacity: 1;
}

.item-icon{
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  height: 45px;
  width: 45px;
  border-radius: 50%;
}


.item-icon-chat{
  background-color: #c21919;
  background-image: url('../images/social_buttons/chat.svg');
}

.item-icon-calc{
  background-color:#c21919;
  background-image: url('../images/social_buttons/calculator.svg');
}

.item-icon{
  transition: all .6s;
}

.item-icon:hover{
  transition: all .6s;
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}

.social-btn-bg{
  padding: 5px;
  background: rgba(170, 39, 39, 0.4);
  border-radius: 100%;
  transition: all .3s;
  cursor: pointer;
}

.social-btn-bg.active{
  transition: all .3s;
  transform: scale(0.8);
  background: rgba(170, 39, 39, 0.4);
}

.social-btn-bg.active:hover{
  cursor: pointer;
}

.social-btn{
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #c21919;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .3s linear, transform .3s;
  position: relative;
}

.social-btn .btn-1.close ,.social-btn .btn-2.close{
  visibility: hidden;
}

.social-btn .s-btn-close svg{
  width: 24px;
  height: 25px;
}

.social-btn-bg.active .s-btn-close{
  display: unset;
}

.social-btn .s-btn-close{
  display: none;
}

.social-btn.active{
  transform: scale(0.9);
  transition: background .3s linear , transform .3s;
  background: #d6d6d6;
}

.s-btn{
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}
.btn-1{
  display: none;
}

.btn-2{
  display: block;
}


.btn-2 svg ,.btn-1 svg{
  height: 24px;
    width: 24px;
}

.btn-1.active , .btn-2.active{
  display: none;
}


.social-btn-pulse{
  position: fixed;
  width: 66px;
  height: 66px;
    right: 5%;
    bottom: 50px;
}

.social-btn-pulse.active{
  border: 1px solid rgba(179, 35, 35, 0.4);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
  animation: Pulse 1.5s ease infinite;
}

@keyframes Pulse {
  0% {
    transform: scale(1.0);
    opacity: 1;
  }
  100% {
      transform: scale(1.8);
      opacity: 0;
  }
}

.popup-form-bg{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 25%);
  z-index: 50;
  display: none;
}
.popup-form{
  background-color: rgb(255 255 255);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 414px;
  width: calc(100% - 40px);
  padding: 50px 40px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
}
.popup-form__close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 18px;
}

.popup-form__title{
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: #c21919;
  margin-bottom: 16px;
}

.popup-form__errors{
  font-size: 12px;
  margin-top: 5px;
  color: rgb(228, 40, 40);
}

.popup-form__group{
  width: 100%;
  margin-bottom: 16px;
}

.popup-form__label{
  font-size: 16px;
  margin: 0 0 5px 0;
}
.popup-form__label span{
  color: rgb(228, 40, 40);
}

.popup-form__input, .popup-form__textarea{
  display: block;
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  font-weight: inherit;
  border: 1px solid rgb(121 121 121);
  border-radius: 6px;
  padding: 10px 22px;
}

.popup-form__submit{
  background-color: #c21919;
  padding: 11px 0;
  display: block;
  max-width: 216px;
  width: 100%;
  margin: 25px auto 0 auto;
}

/* social button END */
