/*!
Theme Name: Start Poligraf
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: start-poligraf
Tags:
----------------------------------------------------------------------------------------- */

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

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

/* --------------------------------------------------------------------------------------
 *
 *  Site
 *
----------------------------------------------------------------------------------------- */

/*  Site Root
----------------------------------------------------------------------------------------- */

:root {
  /* Color */
  --color-black: #000;
  --color-black-dark: #232323;

  --color-white: #fff;
  --color-white-trans: #ffffff25;

  --color-accent: #d1020e;
  --color-accent-light: #ef161e;

  --color-gray: #e8e8e8;
  --color-gray-dark: #525252;
  --color-gray-light: #f9f9f9;

  /* Font */
  --font-montserrat: "Montserrat", sans-serif;
}

html {
  font-size: 14px;
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  font-weight: 400;
  font-display: auto;
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  font-family: var(--font-montserrat);
}

/*  Site Root: Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  body {
    font-size: 0.85rem;
  }
}

/*  Site Layout
----------------------------------------------------------------------------------------- */

/*  Site Layout: Container
------------------------------------------ */

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

/* Container */
.container {
  max-width: 1320px !important;
}

/* Container Short */
.container-short {
  max-width: 920px !important;
}

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

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

/*  Site Layout: Column
------------------------------------------ */

[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 15px;
}

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

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

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

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

/*  Site Layout: Elements Position
------------------------------------------ */

/* Elements Position Y Center */
.y-center {
  align-items: center;
}

/* Between Elements Position Y Margin Down */
.y-margin > *:not(:last-child) {
  margin: 0 0 30px 0;
}

/*  Site Layout: Full Width Layout
------------------------------------------ */

/* Full Width Layout */
.layout {
  padding: 0;
  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;
}

/* Full Width Layout: Sidebar Area */
.layout-sidebar {
  max-width: 25%;
  flex-basis: 25%;
  -ms-flex-preferred-size: 25%;

  z-index: 1;
  position: relative;
  background: var(--color-gray-light);
  border-right: 1px solid var(--color-gray);
}

/* Full Width Layout: Content Area */
.layout-content {
  max-width: 75%;
  flex-basis: 75%;
  -ms-flex-preferred-size: 75%;

  background: url(/wp-content/themes/start-poligraf/assets/media/image-1-grayscale.png)
    no-repeat 120% center / 70vh fixed;
}

/*  Site Typography
----------------------------------------------------------------------------------------- */

/*  Site Typography: Root
------------------------------------------ */
:root {
  /* Heading Font Size */
  --h1-font-size: 48px;
  --h2-font-size: 40px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 28px;
  --h6-font-size: 24px;

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

/*  Site Typography: Heading
------------------------------------------ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 30px 0;
  color: var(--color-gray-dark);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

/*  Site Typography: Text
------------------------------------------ */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.5;
}

p:not(:last-child) {
  margin-bottom: 15px;
}

/*  Site Typography: List
------------------------------------------ */
ul,
ol,
dl {
  line-height: 1.5;
  list-style: none;
}

/*  Site Typography: Image
------------------------------------------ */

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

/*  Site Typography: Table
------------------------------------------ */
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: 15px;
  text-align: left;
}

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

/*  Site Typography: Editor
------------------------------------------ */
.editor p {
  text-align: justify;
}

.editor ul,
.editor ol {
  margin: 0 0 15px 15px;
}

.editor ul li:not(:last-child),
.editor ol li:not(:last-child) {
  margin: 0 0 10px 0;
}

.editor ul {
  list-style: circle;
}

.editor ol {
  list-style: decimal;
}

/*  Site Typography: Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  :root {
    /* Heading Font Size */
    --h1-font-size: 44px;
    --h2-font-size: 40px;
    --h3-font-size: 36px;
    --h4-font-size: 32px;
    --h5-font-size: 28px;
    --h6-font-size: 24px;
  }
}

@media only screen and (max-width: 768px) {
  :root {
    /* Heading Font Size */
    --h1-font-size: 40px;
    --h2-font-size: 36px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 20px;
  }
}

@media only screen and (max-width: 576px) {
  :root {
    /* Heading Font Size */
    --h1-font-size: 36px;
    --h2-font-size: 32px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 16px;

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

/* --------------------------------------------------------------------------------------
 *
 *  Site Parts: Site Header
 *
 *  —— Mastbar
 *  —— Headbar
 *  —— Sidebar
 *
----------------------------------------------------------------------------------------- */

:root {
  /* Site Header: Mastbar */
  --mastbar-height: 120px;

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

/*  Site Header: Mastbar
----------------------------------------------------------------------------------------- */

/* Mastbar */
.mastbar {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.1s;
  box-shadow: 0px 0px 30px 0px #0000001a;
}

/* Mastbar Home Page Style */
.home .mastbar {
  position: fixed !important;
  box-shadow: unset;
}

.home:not(.onscroll) .mastbar .headbar-widgets:last-child {
  color: var(--color-white);
}

/* Mastbar Onscroll Style */
.onscroll .mastbar {
  position: sticky;
  background: var(--color-white);
  box-shadow: 0px 0px 30px 0px #0000001a;
}

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

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

/* Headbar Column Layout */
.headbar [class*="col-"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*  Headbar: Headbar Branding
------------------------------------------ */

/* Headbar Branding */
.headbar-branding {
  display: flex;
  z-index: 1000;
  position: relative;
  align-items: center;
}

/* Headbar Logo */
.headbar-logo {
  max-height: 45px;
}

/*  Headbar: Headbar Widgets
------------------------------------------ */

/* Headbar Widgets */
.headbar-widgets {
  display: flex;
  align-items: center;
}

.headbar-widgets > *:not(:first-child) {
  margin: 0 0 0 30px;
}

/* Headbar Widget Tel Link */
a[href^="tel:"] {
  font-weight: 600;
}

/*  Headbar: Headbar Navigation
------------------------------------------ */
/* Headbar Menu */
.headbar-navigation .menu {
  display: flex;
  align-items: center;
}

/* Headbar Menu Item */
.headbar-navigation .menu-item:not(:last-child) {
  margin: 0 30px 0 0;
}

/* Headbar Menu Item Button */
.headbar-navigation .menu-item > a {
  display: block;
  transition: 0.3s;
}

/* Special Style For Tax Catalog Archive Page */
.tax-catalog .headbar-navigation .menu-item-type-post_type_archive > a,

/* Default Style */
.headbar-navigation .current-menu-item > a,
.headbar-navigation .menu-item > a:hover {
  color: var(--color-accent);
}

/* Special Style For Tax Catalog Archive Page */
.single-product .headbar-navigation .menu-item-type-post_type_archive > a,
.tax-catalog .headbar-navigation .menu-item-type-post_type_archive > a,
.headbar-navigation .current-menu-item > a {
  font-weight: 500;
  color: var(--color-accent);
}

/*  Site Header: Sidebar
----------------------------------------------------------------------------------------- */

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

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

/*  Sidebar
------------------------------------------ */
.sidebar {
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  z-index: 999;
  position: fixed;
  transition: 0.3s;
  overflow-x: hidden;
  background: var(--color-gray-light);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 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 15px 0;
}

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

/*  Sidebar: Sidebar Body
------------------------------------------ */
.sidebar-body {
  padding: 30px;
  border-top: 1px solid #ebeaea;
  border-bottom: 1px solid #ebeaea;
}

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

/*  Sidebar: Sidebar Navigation
------------------------------------------ */
#sidebar-menu > .menu-item:not(:last-child) {
  border-bottom: 1px solid #ebeaea;
}

#sidebar-menu > .menu-item > a {
  display: flex;
  padding: 15px 0;
  justify-content: space-between;
}

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

#sidebar-menu > .menu-item-has-children > a::after {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  border-radius: 100%;
  border: 1px solid #ebeaea;
  background: url("https://api.iconify.design/ei/chevron-down.svg?color=black")
    no-repeat center center / contain;
}

#sidebar-menu > .menu-item-has-children.active > a::after {
  background: url("https://api.iconify.design/ei/chevron-up.svg?color=black")
    no-repeat center center / contain;
}

/* #sidebar-menu > .menu-item > .sub-menu */
#sidebar-menu > .menu-item > .sub-menu {
  display: none;
}

#sidebar-menu > .menu-item > .sub-menu.open {
  display: block;
  padding: 0 0 15px 0;
}

#sidebar-menu > .menu-item > .sub-menu > .menu-item:not(:last-child) {
  margin: 0 0 10px 0;
}

#sidebar-menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  font-size: 12px;
  transition: 0.3s;
}

#sidebar-menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: var(--color-accent-trans);
  padding: 0 0 0 5px;
}

/*  Site Header: Responsive
----------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1320px) {
  /* Mastbar Home Page Style */
  .home:not(.onscroll) .mastbar .headbar-widgets:last-child {
    color: unset;
  }
  /* Headbar Navigation */
  .headbar-navigation {
    display: none;
  }
  /* Menu Toggle */
  .menu-toggle {
    display: block;
  }
}

@media only screen and (max-width: 992px) {
  /* Hide Headbar Elements */
  .headbar .element-list {
    display: none;
  }
}

@media only screen and (max-width: 576px) {
  :root {
    /* Site Header: Mastbar */
    --mastbar-height: 80px;

    /* Site Header: Sidebar */
    --sidebar-width: 100%;
  }
  /* Hide Headbar Elements */
  .headbar .social-media,
  .headbar .language-switcher {
    display: none;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Parts: Site Footer
 *
----------------------------------------------------------------------------------------- */

/*  Site Footer
----------------------------------------------------------------------------------------- */
.site-footer {
  padding: 60px 0;
  color: var(--color-white);
  background: var(--color-black-dark);
}

/*  Site Footer: Footer Branding
------------------------------------------ */

/* Footer Branding */
.footer-branding {
  display: flex;
  align-items: center;
}

/* Footer Logo */
.footer-logo {
  max-height: 60px;
  filter: brightness(0) invert(1);
}

/* --------------------------------------------------------------------------------------
 *
 *  Components
 *
----------------------------------------------------------------------------------------- */

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

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

/*  Widget: Widget Branding
------------------------------------------ */
.widget-branding {
  display: flex;
  flex-direction: column;
}

.widget-branding > .wrapper {
  display: flex;
  align-items: ce;
  justify-content: space-between;
}

.widget-branding > .wrapper > *:not(:last-child) {
  margin: 0 30px 0 0;
}

.widget-branding > *:not(:last-child) {
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid var(--color-gray-dark);
}

/*  Component: Form
----------------------------------------------------------------------------------------- */
input,
textarea {
  width: 100%;
  padding: 15px 25px;
  background: transparent;
  color: var(--color-gray-dark);
  border: 1px solid var(--color-gray);
}

input[type="sibmit"] {
  max-width: max-content;
}

textarea {
  height: 120px;
}

/*  Form
------------------------------------------ */
form p {
  margin: 0 !important;
}

form label {
  display: block;
}

form .buttons {
  flex-direction: column;
}

.wpcf7-response-output {
  padding: 0 !important;
  margin: 15px 0 0 0 !important;
}

/*  Component: Product
----------------------------------------------------------------------------------------- */

/*  Product: Product Name
------------------------------------------ */
.product-name {
  font-weight: 600;
  font-size: var(--h2-font-size);
}

/*  Product: Product Order
------------------------------------------ */
.product-order {
  display: flex;
  align-items: center;
}

.product-order > .product-price {
  margin: 0 0 0 30px;
  padding: 0 0 0 30px;
  border-left: 1px solid var(--color-gray);
}

/* Product Price */
.product-price {
  display: flex;
  font-size: 32px;
  font-weight: 500;
  align-items: flex-end;
  line-height: 0.8;
  color: var(--color-accent);
}

.product-price::before {
  display: block;
  font-size: 18px;
  margin: 0 15px 0 0;
  content: attr(data-before);
  color: var(--color-gray-dark);
}

/*  Product: Product Meta
------------------------------------------ */
.product-meta {
  display: flex;
  justify-content: space-around;
}

.product-meta > *:not(:last-child) {
  margin: 0 30px 0 0;
}

/* Meta Box */
.meta-box {
  display: flex;
  align-items: center;
}

.meta-box > .meta-text {
  height: 100%;
  margin: 0 0 0 15px;
  padding: 0 0 0 15px;

  border-left: 1px solid var(--color-gray);
}

/* Meta Text */
.meta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meta-text > *:not(:last-child) {
  margin: 0 0 5px 0;
}

.meta-text .meta-title {
  font-weight: 600;
}

/* Meta Icon */
.meta-icon {
  width: 40px;
  opacity: 0.8;
  height: 40px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(100%);
}

/*  Product: Product Info
------------------------------------------ */
.product-info > *:not(:last-child) {
  margin: 0 0 30px 0;
}

/*  Product: Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Product Meta Box */
  .meta-box {
    flex-direction: column;
  }
  .meta-box > .meta-text {
    border-left: none;
    text-align: center;
    margin: 15px 0 0 0;
    padding: 15px 0 0 0;
    border-top: 1px solid var(--color-gray);
  }
  /* Product Order */
  .product-order > *:not(:last-child) {
    margin: 0 15px 0 0;
    padding: 0 15px 0 0;
  }
  /* Product Price */
  .product-price {
    font-size: 22px;
  }
  .product-price::before {
    font-size: 14px;
    margin: 0 5px 0 0;
  }
}

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

/*  Accordion Feed
------------------------------------------ */
.accordion-feed > *:not(:last-child) {
  margin: 0 0 5px 0;
}

/*  Accordion: Accordion
------------------------------------------ */
.accordion {
  position: relative;
}

/*  Accordion: Accordion Button
------------------------------------------ */
.accordion-button {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
  position: relative;
  padding: 15px 30px;
  align-items: center;
  justify-content: space-between;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
}

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

.accordion-button:after {
  font-weight: 400;
  font-size: 24px;
  content: "\002B";
  margin-left: 15px;
  color: var(--color-accent);
}

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

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

.accordion-button.active:after {
  content: "\2212";
}

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

/*  Component: Catalog
----------------------------------------------------------------------------------------- */

/*  Catalog: Section Catalog
------------------------------------------ */
section#catalog {
  background: var(--color-gray-light);
}

/*  Catalog: Section Promo
------------------------------------------ */
section#catalog-promo {
  display: flex;
  min-height: 650px;
  position: relative;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

section#catalog-promo .container {
  z-index: 2;
  position: relative;
}

/* Section Overlay */
section#catalog-promo::after {
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: #000000a1;
}

/*  Catalog: Section Archive
------------------------------------------ */
section#catalog-archive {
  padding: 0;
}

/*  Catalog: Catalog Grid
------------------------------------------ */
.catalog-grid {
  padding: 0;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  max-height: max-content;
  border-top: 1px solid var(--color-gray);
}

.catalog-grid > * {
  max-width: 25%;
  flex-basis: 25%;
  -ms-flex-preferred-size: 25%;

  padding: 15px;
  cursor: pointer;
  transition: 0.3s;
  border-right: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
}

.catalog-grid > *:nth-child(4n + 4) {
  border-right-color: transparent;
}

.catalog-grid > *:hover {
  box-shadow: 0px 0px 30px 0px #0000001a;
}

/*  Catalog: Catalog Box
------------------------------------------ */
.catalog-box {
  display: flex;
  transition: 0.3s;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
}

.catalog-box > *:not(:last-child) {
  margin: 0 0 5px 0;
}

.catalog-box:hover .catalog-name {
  color: var(--color-accent);
}

/*  Catalog: Catalog Thumbnail
------------------------------------------ */
.catalog-thumbnail {
  width: 100%;
  height: 200px;
}

.catalog-thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*  Catalog: Catalog Name
------------------------------------------ */
.catalog-name {
  font-weight: 500;
  transition: 0.3s;
  font-size: var(--font-size-small);
}

/*  Catalog: Catalog Navigation
------------------------------------------ */
.catalog-navigation {
  display: flex;
  z-index: 1;
  flex-direction: column;
  background: var(--color-gray-light);
}

.catalog-navigation > * {
  display: flex;
  font-weight: 500;
  transition: 0.3s;
  padding: 15px 30px;
  align-items: center;
  min-width: max-content;
  justify-content: space-between;
  background: var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray);
}

/* Catalog List Current Item */
.catalog-navigation > *.current,
.catalog-navigation > *:hover {
  padding-left: 40px;
  color: var(--color-accent);
  background: var(--color-gray);
}

.catalog-navigation > *.current::after {
  width: 15px;
  height: 15px;
  display: block;
  margin: 0 0 0 15px;
  content: url("https://api.iconify.design/carbon/arrow-right.svg?color=%23d1020e");
}

/*  Catalog: Catalog Branding
------------------------------------------ */
.catalog-branding {
  top: 50%;
  left: 50%;
  padding: 30px;
  display: block;
  transition: 0.3s;
  font-weight: 900;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  color: var(--color-gray);
  text-transform: uppercase;
  font-size: var(--h1-font-size);
  transform: translate(-50%, -50%) rotate(-90deg);
}

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

/*  Catalog: Responive
------------------------------------------ */
@media only screen and (max-width: 1320px) {
  /* Catalog Branding */
  .catalog-branding {
    top: unset;
    left: unset;
    position: unset;
    transform: unset;
  }
  /* Layout Sidebar / Layout Content */
  .layout-sidebar,
  .layout-content {
    max-width: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
  }
  .layout-sidebar {
    position: sticky;
    top: var(--mastbar-height);
    border-right: unset;
    border-bottom: 1px solid var(--color-gray);
  }
  /* Catalog Navigation */
  .catalog-navigation {
    overflow-x: scroll;
    flex-direction: row;
  }
  .catalog-navigation > .current,
  .catalog-navigation > *:hover {
    padding-left: 30px;
  }
  .catalog-navigation > *.current::after {
    transform: rotate(90deg);
  }
}

@media only screen and (max-width: 992px) {
  /* Catalog Grid */
  .catalog-grid > * {
    max-width: 33.33%;
    flex-basis: 33.33%;
    -ms-flex-preferred-size: 33.33%;
  }
  .catalog-grid > *:nth-child(4n + 4) {
    border-right-color: var(--color-gray);
  }
  .catalog-grid > *:nth-child(3n + 3) {
    border-right-color: transparent;
  }
}

@media only screen and (max-width: 768px) {
  /* Catalog Grid */
  .catalog-grid > * {
    max-width: 50%;
    flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
  }
  .catalog-grid > *:nth-child(3n + 3) {
    border-right-color: var(--color-gray);
  }
  .catalog-grid > *:nth-child(2n + 2) {
    border-right-color: transparent;
  }
  /* Section Catalog Promo */
  section#catalog-promo {
    min-height: unset;
  }
}

@media only screen and (max-width: 576px) {
  /* Catalog Grid */
  .catalog-grid > * {
    min-height: 240px;
  }
  /* Catalog Branding */
  .catalog-branding {
    padding: 5px;
  }
}

/*  Component: Divider Colored
----------------------------------------------------------------------------------------- */
.divider-colored {
  width: 100%;
  display: flex;
}

.divider-colored > span {
  width: 20%;
  height: 5px;
}

.divider-colored > span:nth-child(1) {
  background: #52ac62;
}

.divider-colored > span:nth-child(2) {
  background: #d7569c;
}

.divider-colored > span:nth-child(3) {
  background: #3eb5f1;
}

.divider-colored > span:nth-child(4) {
  background: #fff343;
}

.divider-colored > span:nth-child(5) {
  background: #ff0e0e;
}

/*  Component: Social Media
----------------------------------------------------------------------------------------- */

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

.social-media > *:not(:last-child) {
  margin: 0 15px 0 0;
}

/*  Social Media: Social Network
------------------------------------------ */

/* Social Network */
.social-network {
  width: 50px;
  height: 50px;
  display: flex;
  font-size: 24px;
  min-width: 50px;
  min-height: 50px;
  transition: 0.3s;
  text-align: center;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray-dark);
}

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

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

/*  Swiper: Swiper Slidearea
------------------------------------------ */
#swiper-slidearea {
  height: 300px;
  position: relative;
  margin-bottom: 5px !important;
  border: 1px solid var(--color-gray);
}

/* Swiper Slidearea Video */
#swiper-slidearea .video-box {
  top: 30px;
  z-index: 1;
  right: 30px;
  width: 45px;
  height: 45px;
  display: flex;
  font-size: 10px;
  transition: 0.3s;
  position: absolute;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

#swiper-slidearea .iconify {
  font-size: 42px;
}

#swiper-slidearea .video-box:hover {
  transform: scale(1.1);
}

/*  Swiper: Swiper Thumbnails
------------------------------------------ */
#swiper-thumbnails {
  height: 120px;
}

#swiper-thumbnails .swiper-slide > img {
  cursor: pointer;
  transition: 0.3s;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray);
}

#swiper-thumbnails .swiper-slide img:hover {
  box-shadow: 0px 0px 30px 0px #0000001a;
}

/*  Swiper: Swiper Slide Image
------------------------------------------ */
.swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Swiper Fancybox */
.swiper-fancybox {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

.swiper-fancybox::after {
  top: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;

  height: 100%;
  display: flex;
  transition: 0.3s;
  text-align: center;
  position: absolute;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  content: url("https://api.iconify.design/bytesize/search.svg?color=%23d1020e&width=72&height=72");
}

.swiper-fancybox:hover::after {
  opacity: 1;
}

.swiper-fancybox > img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  object-fit: contain;
}

.swiper-fancybox:hover > img {
  scale: 1.1;
}

/*  Swiper: Swiper Control
------------------------------------------ */
.swiper-button-next,
.swiper-button-prev {
  color: var(--color-accent) !important;
}

/*  Swiper: Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  #swiper-thumbnails {
    height: 75px;
  }
}

/*  Component: Element List
----------------------------------------------------------------------------------------- */

.element-list {
  display: flex;
  flex-direction: column;
}

/*  Element List: Element Item
------------------------------------------ */
.element-item {
  display: flex;
  line-height: 1.8;
}

.element-item > *:not(:last-child)::after {
  content: ",";
  display: block;
  margin: 0 5px 0 0;
}

/*  Component: Language Switcher
----------------------------------------------------------------------------------------- */

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

.language-switcher > *:not(:last-child)::after {
  content: "/";
  opacity: 0.3;
  display: block;
  margin: 0 10px;
}

/* Language Switcher Language */
.language-switcher .language {
  opacity: 0.5;
  display: flex;
  transition: 0.3s;
}

.language-switcher .language:hover,
.language-switcher .current-language {
  opacity: 1;
}

.language-switcher .current-language {
  font-weight: 500;
}

/*  Component: Button
----------------------------------------------------------------------------------------- */

/*  Button: Buttons Wrapper
------------------------------------------ */

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

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

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

/*  Button: Default
------------------------------------------ */
.buttons [class*="button-"] {
  height: 60px;
  display: flex;
  outline: none;
  cursor: pointer;
  min-width: 200px;
  transition: 0.3s;
  font-weight: 500;
  padding: 0px 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border: 1px solid transparent;
  background: var(--color-accent);
}

/* Button default style on hover */
.buttons [class*="button-"]:hover {
  background: var(--color-accent-light);
}

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

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

/*  Button: Button Details
------------------------------------------ */
.button-details {
  display: flex;
  font-size: 12px;
  transition: 0.3s;
  align-items: center;
}

.button-details:hover {
  letter-spacing: 1px;
}

.button-details > *:not(:last-child) {
  margin: 0 5px 0 0;
}

/*  Button: Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Buttons: Buttons Default */
  .buttons [class*="button-"] {
    min-width: unset;
  }
}

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

/*  Component: Partner
----------------------------------------------------------------------------------------- */

/*  Partner: Partner Box
------------------------------------------ */
.partner-box {
  height: 100%;
  display: flex;
  transition: 0.3s;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.partner-box .partner-logo {
  opacity: 0.3;
  max-height: 120px;
  transition: 0.3s;
  filter: grayscale(100%);
}

.partner-box:hover .partner-logo {
  opacity: 1;
  filter: grayscale(0);
}

/*  Component: Heading
----------------------------------------------------------------------------------------- */

/*  Heading: Heading Wrapper
------------------------------------------ */
.heading {
  display: flex;
  flex-direction: column;
}

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

/* Heading Center */
.heading.center {
  text-align: center;
  align-items: center;
  justify-content: center;
}

/*  Heading: Heading Label
------------------------------------------ */
.heading-label {
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/*  Heading: Heading Title
------------------------------------------ */
.heading-title {
  font-weight: 400;
  font-size: var(--h2-font-size);
}

h1.heading-title {
  margin: unset;
}

/*  Heading: Heading Text
------------------------------------------ */
.heading-text {
  font-size: var(--font-size-small);
}

/* --------------------------------------------------------------------------------------
 *
 *  Sections
 *
----------------------------------------------------------------------------------------- */

section {
  padding: 60px 0;
}

/*  Section: Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Section */
  section {
    padding: 15px 0;
  }
}

/*  Section: Hero
----------------------------------------------------------------------------------------- */

/* Section Hero */
section#hero {
  display: flex;
  position: relative;
  align-items: center;
  padding-top: var(--mastbar-height);
}

/* Section Hero Background */
section#hero::after {
  top: 0;
  right: 0;
  width: 50%;
  content: "";
  z-index: -1;
  height: 100%;
  display: block;
  position: absolute;
  background: var(--color-accent);
}

/* Section Hero Image */
.hero-image img {
  max-height: 500px;
}

/*  Hero: Responsive
------------------------------------------ */
@media only screen and (max-width: 1320px) {
  /* Section Hero */
  section#hero {
    background: url(/wp-content/themes/start-poligraf/assets/media/image-1-grayscale.png)
      no-repeat 120% center / 70vh fixed;
  }
  /* Section Hero Background */
  section#hero::after {
    display: none;
    content: none;
  }
  /* Section Hero Image */
  .hero-image {
    display: none;
  }
}

/*  Section: Page Header
----------------------------------------------------------------------------------------- */

/* Section Page Header */
section#page-header {
  padding: 0;
  color: var(--color-white);
  background: var(--color-accent);
}

/* Page Heading */
.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Page Title */
.page-title {
  color: unset;
  margin: unset;
  font-size: unset;
  font-weight: 600;
}

/*  Section Contacts
----------------------------------------------------------------------------------------- */
section#contacts {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

/* Contacts Map */
section#contacts .contacts-map {
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: none;
  line-height: 0;
  position: absolute;
  filter: grayscale(100%);
}

/* Contacts Card */
.contacts-card {
  z-index: 1;
  width: 100%;
  padding: 30px;
  max-width: 420px;
  margin-left: auto;
  position: relative;
  background: var(--color-white);
  box-shadow: 0px 0px 30px 0px #0000001a;
}
