/*!
Theme Name: Novafrost
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: novafrost
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: #222222;
  --color-black-trans: rgba(0, 0, 0, 0.08);

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

  --color-accent: #00a0e3;
  --color-accent-trans: rgba(0, 161, 230, 0.16);

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

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

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

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

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

/* Container */
.container,
.container-short,
.container-fluid {
  width: 100%;
  display: flex;
  row-gap: 24px;
  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;
}

.x-row {
  display: flex;
  row-gap: 16px;
  flex-wrap: wrap;
  column-gap: 16px;
  align-items: center;
  justify-content: space-between;
}

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

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

.y-column {
  display: flex;
  row-gap: 32px;
  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: 8px;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Typography
 *
----------------------------------------------------------------------------------------- */
:root {
  /* Heading */
  --font-size-h1: 48px;
  --font-size-h2: 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: 600;
}

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: 16px;
  text-align: left;
}

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

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

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

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

.editor ol {
  list-style: decimal;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Headbar Panel */
.headbar-panel {
  gap: 16px;
  display: flex;
  align-items: center;
}

/*  Headbar: Headbar Navigation
------------------------------------------ */
.headbar-navigation,
.headbar-navigation .menu {
  gap: 32px;
  display: flex;
  align-items: center;
}

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

.headbar-navigation .menu-item > a {
  width: 100%;
  display: block;
  font-weight: 500;
}

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

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

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

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

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

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

.headbar-navigation .menu > *:hover > .sub-menu {
  display: flex;
}

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

.headbar-navigation .menu > * > * > *:hover > .sub-menu {
  top: 0;
  left: 100%;
  display: flex;
}
/*  Site Header: Sidebar
----------------------------------------------------------------------------------------- */
.sidebar {
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  z-index: 999;
  position: fixed;
  transition: 0.3s;
  overflow-x: hidden;
  color: var(--color-white);
  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 {
  display: flex;
  padding: 0 32px;
  justify-content: center;
  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-panel {
  gap: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

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

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

#sidebar-menu > .menu-item > a:hover {
  opacity: 0.8;
}

#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=white") 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=white") 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 16px 0;
}

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

#sidebar-menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  transition: ease-in-out 0.16s;
}

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

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

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

/*  Page Header
----------------------------------------------------------------------------------------- */
.page-header {
  padding: 16px 0;
  box-shadow:
    inset 0px 8px 16px rgba(0, 0, 0, 0.04),
    inset 0px -8px 16px rgba(0, 0, 0, 0.04);
  background-color: #00a0e3;
}

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

/* Page Title */
.page-title {
  font-size: 14px;
  color: #fff;
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Footer
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */
.site-footer {
  padding: var(--section-padding);
  background: var(--color-gray-light);
  border-top: 1px solid var(--color-gray);
}

/* Colophon Panel */
.colophon-panel {
  display: flex;
  row-gap: 32px;
  flex-wrap: wrap;
  column-gap: 32px;
  justify-content: space-between;
}

/* Colophon Widget */
.colophon-widget {
  display: flex;
  row-gap: 16px;
  flex-direction: column;
  justify-content: space-between;
}

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

/* Colophon Menu */
.colophon-navigation .menu {
  display: flex;
  row-gap: 16px;
  flex-direction: column;
}

/* Colophon Menu / Menu Item */
.colophon-navigation .menu > .menu-item > a {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  transition: ease-in-out 0.16s;
}

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

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

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

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

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

/*  Section: Slider
----------------------------------------------------------------------------------------- */
section#slider {
  display: flex;
  padding-bottom: 0;
  flex-direction: column;
  row-gap: var(--section-padding);
}

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

/*  Hero Panel
------------------------------------------ */
section#hero-panel,
section#hero-panel [class*="col-"] {
  padding-bottom: 0;
}

/*  Hero Slider
------------------------------------------ */
#hero-slider {
  height: 440px;
  overflow: hidden;
  border-radius: 16px;
}

/* Hero Slide Image */
.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Thumbnail */
[class*="__thumbnail"] {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  transition: ease-in-out 0.15s;
  background: var(--color-gray-light);
}

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

/*  Component: Banner
----------------------------------------------------------------------------------------- */
section#banner {
  padding: 0;
}

/* Banner Overlay */
.banner-overlay {
  color: var(--color-white);
  padding: var(--section-padding) 0;
  background: rgba(0, 0, 0, 0.8);
}

/* Banner Editor */
.banner ul {
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row !important;
}

.banner ul > * {
  width: calc(50% - 8px);
}

/*  Banner Slider
------------------------------------------ */
.banner {
  gap: 32px;
  display: flex;
  min-height: 320px;
  /* Banner Panel */
  --banner-panel-width: 320px;
}

.banner > * {
  gap: 32px;
  display: flex;
  flex-direction: column;
}

/* Banner Content */
.banner-content {
  width: calc(100% - var(--banner-panel-width));
}

/* Banner Panel */
.banner-panel {
  padding: 32px;
  height: max-content;
  align-items: center;
  background: var(--color-white-trans);
}

/*  Banner Iconfeed
------------------------------------------ */
.banner-iconfeed {
  gap: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Banner Box */
.banner-box {
  gap: 16px;
  display: flex;
  align-items: center;
  width: calc(33.33% - 32px);
}

/* Banner Box Icon */
.banner-box__icon {
  width: 64px;
  padding: 8px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 16px;
  background: var(--color-accent-trans);
}

.banner-box__icon > img {
  object-fit: contain;
}

/* Banner Box Title */
.banner-box__title {
  font-weight: 500;
}

/*  Banner Responsive
------------------------------------------ */
@media only screen and (max-width: 1180px) {
  .banner {
    flex-wrap: wrap;
  }

  .banner > * {
    width: 100% !important;
  }
}

/*  Banner Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  .banner-box {
    width: calc(50% - 32px);
  }
  /* Banner Editor */
  .banner ul {
    flex-direction: column;
  }

  .banner ul > * {
    width: 100%;
  }
}

/*  Banner Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .banner-box {
    width: 100%;
  }
}

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

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

/*  Swiper: Swiper Pagination
------------------------------------------ */
.swiper-pagination {
  left: 50% !important;
  bottom: 32px !important;
  width: max-content !important;
}

/* Swiper Pagination Bullet */
.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  transition: ease-in-out 0.16s !important;
  background: var(--color-white) !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
}

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

/* Widget Meta */
.widget-meta {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* Widget Title */
.widget-title {
  font-size: 16px;
  font-weight: 600;
}

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

input,
textarea {
  width: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  transition: ease-in-out 0.15s;
  border: 1px solid var(--color-gray);
  background: rgba(33, 33, 81, 0.1);
}

input[type="submit"] {
  width: 100%;
  border-radius: 8px !important;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover {
  background: rgba(33, 33, 81, 0.15);
  border: 1px solid rgba(33, 33, 81, 0.15);
}

textarea {
  height: 80px;
}

/* Input Group */
.input-group {
  display: flex;
  row-gap: 24px;
  column-gap: 24px;
}

/* Input Field */
.input-field {
  width: 100%;
}

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

/* wpcf7-spinner */
.wpcf7-spinner {
  top: 0;
  right: 0;
  position: absolute;
}

/* wpcf7-response-output */
.wpcf7-response-output {
  line-height: 1.6;
  margin: 0 !important;
  text-align: center !important;
  padding: 16px 24px !important;
  border-radius: 32px !important;
}

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

/*  Component: Client
----------------------------------------------------------------------------------------- */

/*  Client Box
------------------------------------------ */
.client-box {
  display: flex;
  padding: 40px;
  align-items: center;
  border-radius: 16px;
  justify-content: center;
  background: var(--color-black-trans);
}

/* Client Box logo */
.client-box__logo {
  max-height: 48px;
}

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

/*  Step Feed
------------------------------------------ */
.step-feed {
  display: flex;
  row-gap: 32px;
  flex-direction: column;
}

/*  Step Box
------------------------------------------ */
.step-box {
  padding: 24px;
  display: flex;
  column-gap: 24px;
  position: relative;
  border-radius: 16px;
  align-items: flex-start;
  background: var(--color-white);
}

.step-box__label {
  width: 48px;
  height: 48px;
  display: flex;
  min-width: 48px;
  font-size: 18px;
  min-height: 48px;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: var(--color-accent-trans);
}

/* Step Box Title */
.step-box__title {
  font-size: 18px;
  font-weight: 500;
}

/*  Component: Counter
----------------------------------------------------------------------------------------- */

/*  Counter Box
------------------------------------------ */
.counter-box {
  padding: 40px;
  height: 220px;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  border-radius: 24px 24px 0 0;
  background: var(--color-accent);
}

/* Counter Box Value */
.counter-box__value {
  font-size: 48px;
  font-weight: 700;
}

/* Counter Box Text */
.counter-box__text {
  font-size: 16px;
  font-weight: 500;
  max-width: 260px;
  text-transform: uppercase;
}

/*  Component: Contact
----------------------------------------------------------------------------------------- */
section#contacts {
  display: flex;
  min-height: 540px;
  position: relative;
  align-items: center;
}

/* Google Map */
#google-map {
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  border: none;
  position: absolute;
}

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

.contact-card > *:not(:last-child) {
  margin: 0 0 32px 0;
  padding: 0 0 32px 0;
  border-bottom: 1px solid var(--color-gray);
}

/* Contact Card Wrapper */
.contact-card__wrapper {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

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

.contact-list [href^="tel:"] {
  font-weight: 500;
  transition: ease-in-out 0.16s;
}

.contact-list [href^="tel:"]:hover {
  color: var(--color-accent);
}

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

.social-media.white > * {
  background: var(--color-white-trans);
}

/* Social Media Column */
.social-media.column {
  flex-direction: column;
}

/* Social Media / Social Icon */
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  font-size: 24px;
  border-radius: 16px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: var(--color-black-trans);
}

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

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

/*  Headline Label
------------------------------------------ */
.headline-label {
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-accent);
}

/*  Headline Title
------------------------------------------ */
.headline-title {
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: var(--font-size-h2);
}

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

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

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

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

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

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

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

/*  Section Service Gallery
------------------------------------------ */
#service-gallery {
  padding: 0;
}

/*  Section Service Tax
------------------------------------------ */
.service-tax {
  display: flex;
  column-gap: 32px;
  align-items: center;
}

/* Service Tax Title */
.service-tax__title {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.service-tax__icon {
  width: 72px;
  height: 72px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

/*  Section Service Box
------------------------------------------ */
.service-box__thumbnail {
  height: 240px;
}

.service-box__thumbnail:hover > img {
  transform: scale(1.05);
}

/* Service Box Meta */
.service-box__meta {
  row-gap: 16px;
  display: flex;
  padding: 24px;
  flex-direction: column;
}

/* Service Box Title */
.service-box__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 240px;
  transition: ease-in-out 0.16s;
}

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

/* Servie Box Exerpt */
.service-box__excerpt {
  font-size: 14px !important;
}

/* Service Box Panel */
.service-box__panel {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  row-gap: 4px;
  padding: 32px;
  display: flex;
  position: absolute;
  flex-direction: column;
  background: #000000ae;
  justify-content: flex-end;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
}

.service-box:hover .service-box__panel {
  opacity: 1;
}

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

/*  Gallery Box
------------------------------------------ */
.gallery-box {
  display: flex;
  cursor: pointer;
}

/* Gallery Box Thumbnail */
.gallery-box__thumbnail {
  height: 320px;
}

.gallery-box__thumbnail.square {
  border-radius: 0;
}

.gallery-box__thumbnail:hover > img {
  transform: scale(1.1);
}

/* Gallery Box Panel */
.gallery-box__panel {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  row-gap: 4px;
  padding: 32px;
  display: flex;
  position: absolute;
  flex-direction: column;
  background: #000000ae;
  justify-content: flex-end;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
}

.gallery-box:hover .gallery-box__panel {
  opacity: 1;
}

/* Gallery Box Title */
.gallery-box__title {
  font-size: 18px;
  font-weight: 500;
}

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

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

/*  Accordion
------------------------------------------ */
.accordion {
  padding: 16px 32px;
  border-radius: 16px;
  transition: ease-in-out 0.16s;
  border: 1px solid var(--color-gray);
}

.accordion:hover {
  border-color: var(--color-gray-dark);
}

/*  Accordion Button
------------------------------------------ */
.accordion-button {
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  transition: ease-in-out 0.08s;
}

[class*="accordion-button__"] {
  display: flex;
  column-gap: 16px;
  align-items: center;
  transition: ease-in-out 0.08s;
  justify-content: space-between;
}

[class*="accordion-button__"]::selection {
  background: transparent;
}

[class*="accordion-button__"]::after {
  width: 40px;
  content: "";
  height: 40px;
  display: block;
  min-width: 40px;
  min-height: 40px;
  border-radius: 100%;
  transition: ease-in-out 0.08s;
}

/* Accordion Button Link */
.accordion-button__link {
  text-decoration: underline;
}

.accordion-button__link::after {
  background: url("https://api.iconify.design/bx/link-external.svg?color=white") no-repeat center center / 20px
    var(--color-accent);
}

/* Accordion Button Title */
.accordion-button.active .accordion-button__title {
  margin: 0 0 24px 0;
}

.accordion-button__title::after {
  background: url("https://api.iconify.design/bi/chevron-down.svg?color=white") no-repeat center center / 20px
    var(--color-accent);
}

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

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

/*  Accordion List
------------------------------------------ */
.accordion-list {
  display: flex;
  row-gap: 16px;
  flex-direction: column;
}

/* Accordion List Item */
.accordion-list__item {
  display: flex;
  flex-direction: column;
}

/* Accordion List Title */
.accordion-list__title {
  display: block;
  font-size: 16px;
  text-decoration: underline;
  transition: ease-in-out 0.08s;
}

.accordion-list__title:hover {
  padding: 0 0 0 2px;
  color: var(--color-accent);
}

/*  Component: Language Switcher
----------------------------------------------------------------------------------------- */
.wpm-language-switcher {
  display: flex;
  flex-direction: column;
}

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

.switcher-list li a,
.switcher-list li > span {
  color: inherit !important;
}

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

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

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

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

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

/*  Button: Default
------------------------------------------ */
.buttons [class*="button-"] {
  height: 48px;
  display: flex;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  padding: 0px 32px;
  text-align: center;
  align-items: center;
  border-radius: 16px;
  justify-content: center;
  color: var(--color-white);
  text-transform: uppercase;
  transition: ease-in-out 0.15s;
  border: 1px solid transparent;
  background-color: var(--color-accent);
}

.buttons [class*="button-"]:hover {
  opacity: 0.8;
}

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

.buttons .button-xxl {
  height: 64px;
}

/* Button Details */
.button-details {
  display: flex;
  column-gap: 8px;
  align-items: center;
  transition: ease-in-out 0.16s;
}

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

/*  Component: Callback
----------------------------------------------------------------------------------------- */

/*  Callback Modal
------------------------------------------ */
#callback-modal {
  bottom: 0;
  right: 16px;
  width: 100%;
  z-index: 999;
  padding: 32px;
  position: fixed;
  max-width: 340px;
  border-radius: 16px 16px 0 0;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray);

  /* Show Effect */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#callback-modal.show {
  opacity: 1;
}

/* Callback Modal Close */
.callback-modal__close {
  top: 16px;
  right: 16px;
  font-size: 16px;
  position: absolute;
  transition: ease-in-out 0.16s;
}

.callback-modal__close:hover {
  cursor: pointer;
  color: var(--color-accent);
  transform: rotate(360deg) scale(1.1);
}

/*  Callback Button
------------------------------------------ */
#callback-button {
  gap: 16px;
  left: 32px;
  z-index: 999;
  bottom: 32px;
  display: flex;
  cursor: pointer;
  position: fixed;
  font-weight: 600;
  align-items: center;
  color: var(--color-accent);
}

/* Callback Button Icon */
.callback-button__icon {
  width: 48px;
  height: 48px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: var(--color-white);
  background: var(--color-accent);
}

/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  border-radius: 16px !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
----------------------------------------------------------------------------------------- */

/* Page Numbers */
.page-numbers {
  width: 56px;
  height: 56px;
  display: flex;
  font-weight: 500;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gray);
}

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

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

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

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

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

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

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

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

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

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

/*  Component: Admin Styles
----------------------------------------------------------------------------------------- */

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

@media only screen and (max-width: 1180px) {
  /* Menu Toggle */
  .menu-toggle {
    display: block;
  }
  /* Headbar Navigation */
  .headbar-navigation {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  /* Headbar Panel */
  .headbar-panel {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  /* Contacts */
  section#contacts {
    min-height: unset;
  }
  /* Google Map */
  #google-map {
    width: 100%;
    height: 240px;
    position: unset;
  }
}

@media only screen and (max-width: 576px) {
  :root {
    /* Section Settings */
    --section-padding: 24px;
  }
  /* Editor */
  .editor {
    font-size: 14px;
  }
  /* Counter Box */
  .counter-box {
    padding: 24px;
    height: unset;
    border-radius: 24px;
  }
  /* Counter Box Value */
  .counter-box__value {
    font-size: 32px;
  }
  /* Counter Box Text */
  .counter-box__text {
    font-size: 14px;
  }
  /* Step Box */
  .step-box__title {
    font-size: 16px;
  }
  /* Section Hero Panel */
  section#hero-panel {
    padding-bottom: var(--section-padding);
  }
  section#hero-panel [class*="col-"] {
    padding-bottom: 8px;
  }
  /* Hero Slider */
  #hero-slider {
    height: 140px;
  }
  /* Accordion */
  .accordion {
    padding: 16px;
  }
  /* Accordion Button */
  .accordion-button {
    font-size: 16px;
  }
  /* Page Meta */
  .page-meta {
    text-align: left;
    align-items: flex-start;
  }
  /* #callback-modal */
  #callback-modal {
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }
}

/* Додаткові стилі для правок */
.site-header .wpm-switcher-list li > span,
.site-header .wpm-switcher-list li a > span {
  color: #fff;
}
.site-header .wpm-switcher-list li.active > span {
  color: #2a9fd2;
}
.page-breadcrumbs a,
.page-breadcrumbs span {
  color: #fff;
}

/*  Mega Menu
----------------------------------------------------------------------------------------- */
.mega-menu {
  display: contents;
}

/* Container */
.mega-menu__container {
  gap: 48px;
  display: grid;
  grid-template-columns: 70fr 30fr;

  padding-top: 48px;
  padding-bottom: 48px;

  font-size: 12px;
  color: var(--color-black);
}

/* Column */
.mega-menu__column {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* Title */
.mega-menu__title {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gray-dark);
}

/* Mega menu trigger */
.mega-menu__trigger {
  height: 32px;

  gap: 4px;
  display: flex;
  align-items: center;

  cursor: pointer;
  position: relative;

  transition: ease-in-out 0.16s;
}

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

.mega-menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  width: 100%;

  background: var(--color-white);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);

  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.16s,
    visibility 0.16s;
  z-index: 1000;
}

.mega-menu__trigger[aria-expanded="true"] ~ .mega-menu__dropdown {
  opacity: 1;
  visibility: visible;
}

/* ....................................... */
.mega-menu__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Category Card
----------------------------------------------------------------------------------------- */

.cat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-gray-light);
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.cat-card:hover {
  border-color: var(--color-black-trans);
  transform: translateY(-2px);
}

.cat-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.cat-card__panel {
  padding: 16px;
}

.cat-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black-light);
  line-height: 1.3;
}

/* Tags / Chips
----------------------------------------------------------------------------------------- */

/* List */
.tag-list {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
}

/* Grid */
.tag-grid {
  gap: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid var(--color-black-trans);
  transition:
    background 0.16s,
    color 0.16s,
    border-color 0.16s;
}

.tag:hover {
  background: var(--color-accent-trans);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.tag .iconify {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--color-accent);
}

/* tag light */
.tag--light .tag {
  color: var(--color-white);
  border-color: var(--color-white-trans);
}

/*  Section: Locations Map
----------------------------------------------------------------------------------------- */

#locations-map {
  background: var(--color-gray-light);
}

#locations-map__chart {
  width: 100%;
  aspect-ratio: 4 / 3;
}
