/*!
Theme Name: Bobo
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: bobo
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-white: #fff;

  --color-accent: #186c80;
  --color-accent-dark: #03496c;
  --color-accent-trans: rgba(24, 108, 128, 0.1);

  --color-gray: gray;
  --color-gray-dark: darkgray;
  --color-gray-light: #f4f4f4;

  /* 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-accent-dark);
  font-family: var(--font-sans-serif);
}

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

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

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

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

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

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

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

.x-center {
  justify-content: center;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-weight: 500;
  margin: 0 0 30px 0;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 36px;
}

h5 {
  font-size: 32px;
}

h6 {
  font-size: 28px;
}

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

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.5;
}

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

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

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

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

thead {
  font-weight: 500;
  text-align: center;
  color: var(--color-white);
  background: var(--color-gray-dark);
}

th,
td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
}

tr:nth-child(odd) {
  background-color: var(--color-accent-trans);
}

/*  Typography: Editor
----------------------------------------------------------------------------------------- */

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

.editor p {
  text-align: justify;
}

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

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

/* Editor Table */
.editor table:not(:last-child) {
  margin: 0 0 15px 0;
}

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

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

.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: 15px 30px;
}

.editor blockquote p:first-child {
  padding: 15px 30px 0 30px;
}

.editor blockquote p:last-child {
  margin-bottom: 0 30px 15px 30px;
}

/*  Typography: Responsive
----------------------------------------------------------------------------------------- */
@media only screen and (max-width: 576px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
}

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

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

  /* Site Header / Headnav */
  --headnav-height: 60px;

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

#site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: sticky;
  transition: top 0.3s;
  background: var(--color-white);
}

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

/* Headbar */
.headbar {
  display: flex;
  align-items: center;
  height: var(--site-header-height);
  background: linear-gradient(90deg, #fff 65%, #498080 100%);
}

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

/* Headbar Widget Area */
.headbar .widget-area {
  display: flex;
  align-items: center;
}

.headbar .widget-area > *:not(:first-child) {
  margin: 0 0 0 45px;
}

/*  Site Header: Headnav
----------------------------------------------------------------------------------------- */

/* Headnav */
.headnav {
  height: var(--headnav-height);
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}

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

/* Headnav Buttons */
.headnav .buttons {
  display: none;
}

/*  Headnav / Headnav Navigation
------------------------------------------ */

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

/* Headbar Menu */
.headnav-navigation .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Headnav Menu Item */
.headnav-navigation .menu > .menu-item {
  height: 30px;
  display: flex;
  position: relative;
  align-items: center;
}

/* Headnav Menu Item Button */
.headnav-navigation .menu > .menu-item > a {
  display: block;
  transition: 0.3s;
  font-weight: 500;
  text-transform: capitalize;
}

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

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

/* Headnav Sub Menu */
.headnav-navigation .sub-menu {
  top: 30px;
  display: none;
  padding: 15px;
  min-width: 180px;
  position: absolute;
  border-radius: 5px;
  color: var(--color-white);
  background: var(--color-accent-dark);
}

/* Headnav Sub Menu Item */
.headnav-navigation .sub-menu > .menu-item:not(:last-child) {
  margin: 0 0 10px 0;
}

/* Headnav Sub Menu Item Button */
.headnav-navigation .sub-menu > .menu-item > a {
  display: block;
  transition: 0.3s;
}

.headnav-navigation .sub-menu > .menu-item > a:hover {
  opacity: 0.8;
}

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

/* 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 Head */
.sidebar-head {
  padding: 30px;
  min-height: calc(var(--site-header-height) + var(--headnav-height));
}

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

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

/*  Sidebar / Sidebar Navigation
------------------------------------------ */

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

/* Sidebar Menu Item Button */
#sidebar-menu > .menu-item > a {
  display: flex;
  padding: 15px 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=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 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 Sub Menu Item */
#sidebar-menu > .menu-item > .sub-menu > .menu-item:not(:last-child) {
  margin: 0 0 10px 0;
}

/* Sidebar Menu Sub Menu Item Button */
#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);
  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-accent-dark);
  -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-dark);
}

.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 Header: Responsive
----------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1080px) {
  /* Headbar */
  .headbar .widget-area:nth-child(2) {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  /* Headbar */
  .headbar [class*="col-"] {
    justify-content: center;
  }
  .headbar .widget-area:not(:first-child) {
    display: none;
  }

  /* Headnav */
  .headnav .buttons {
    display: flex;
  }
  .headnav .headnav-navigation {
    display: none;
  }
  .headnav .menu-toggle {
    display: block;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Main & Section
 *
----------------------------------------------------------------------------------------- */

/*  Site Main
------------------------------------------ */
.site-main {
  padding: 60px 0;
  background: linear-gradient(360deg, #fff 5%, #498080 100%);
}

/* Home Landing */
.home .site-main {
  padding: 0;
  background: none;
}

/*  Section
------------------------------------------ */
section {
  padding: 60px 0;
}

@media only screen and (max-width: 576px) {
  /* Site Main */
  .site-main {
    padding: 30px 0;
  }
  /* Section */
  section {
    padding: 30px 0;
  }
}

/*  Section: Hero
----------------------------------------------------------------------------------------- */
section#hero {
  display: flex;
  align-items: center;
  color: var(--color-white);
  min-height: calc(var(--vh, 1vh) * 100 - 190px);
}

/* Section Hero Column Layout */
section#hero [class*="col-"] > *:not(:last-child) {
  margin: 0 0 30px 0 !important;
}

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

/*  Section: 404
----------------------------------------------------------------------------------------- */

.content-404 {
  text-align: center;
}

.content-404 .label {
  line-height: 1;
  font-weight: 800;
  font-size: 250px;
}

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

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

.site-footer .row:not(:last-child) {
  margin: 0 0 30px 0;
}

/* Site Footer Column Layout */
.site-footer [class*="col-"] {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* Site Footer Widget Area */
.site-footer .widget-area {
  width: 100%;
  display: flex;
  justify-content: center;
}

.site-footer .widget-area:first-child {
  justify-content: flex-start;
}

.site-footer .widget-area:last-child {
  justify-content: flex-end;
}

/*  Site Footer: Footer Navigation
------------------------------------------ */

.footer-navigation .menu > *:not(:last-child) {
  margin: 0 0 30px 0;
}

/*  Site Footer Responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  /* Site Footer */
  .site-footer {
    padding: 30px 0;
  }

  /* Site Footer Row Layout */
  .site-footer .row:not(:last-child) {
    margin: 0 0 0 0;
  }

  /* Site Footer Column Layout */
  .site-footer [class*="col-"] {
    flex-direction: column;
  }
  .site-footer [class*="col-"] > *:not(:last-child) {
    margin: 0 0 30px 0;
  }

  /* Site Footer Widget Area */
  .site-footer .widget-area {
    justify-content: flex-start !important;
  }

  /* Footer Navigation */
  .footer-navigation .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-navigation .menu > * {
    line-height: 2;
    min-width: 33.33%;
  }
  .footer-navigation .menu > *:not(:last-child) {
    margin: 0;
  }

  /* Site Footer Branding */
  .site-footer .site-branding {
    margin: 0 auto;
  }
}

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

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

/*  Service: Service Thumbnail
------------------------------------------ */
.service-thumbnail {
  width: 100%;
  height: 200px;
  display: block;
  background: var(--color-gray-light);
}

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

/*  Service: Service Box
------------------------------------------ */
.service-box {
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  flex-direction: column;
  background: var(--color-white);
  box-shadow: 3px 4px 38px rgba(24, 108, 128, 0.5);
}

/* Service Box / Service Meta */
.service-box .service-meta {
  padding: 30px;
}

/* Service Box / Service Title */
.service-box .service-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

/* Service Box / Buttons */
.service-box .buttons {
  margin-top: auto;
  padding: 0 30px 30px 30px;
}

/*  Service: Service Card
------------------------------------------ */
.service-content > *:not(:last-child) {
  margin: 0 0 30px 0;
}

/*  Service: Service Card
------------------------------------------ */
.service-card {
  display: flex;
  overflow: hidden;
  border-radius: 40px;
  background: var(--color-white);
}

.service-card .service-thumbnail {
  width: 40%;
  height: auto;
  min-height: 460px;
}

.service-card .service-content {
  width: 60%;
  padding: 30px;
}

@media only screen and (max-width: 768px) {
  .service-card {
    flex-direction: column;
  }
  .service-card .service-content,
  .service-card .service-thumbnail {
    width: 100%;
  }
}

/*  Component: Scheme
----------------------------------------------------------------------------------------- */
#scheme {
  position: relative;
}

#scheme::after {
  top: 60%;
  left: 50%;
  width: 65%;
  height: 45%;
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  border: 2px solid var(--color-accent);
}

@media only screen and (max-width: 576px) {
  #scheme::after {
    top: 55%;
    left: 50%;
    width: 50%;
    height: 75%;
  }
}

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

.counters {
  justify-content: space-around;
}

/*  Counter: Counter Item
------------------------------------------ */

.counter-item {
  text-align: center;
}

.counter-item > *:not(:last-child) {
  margin: 0 0 10px 0;
}

/* Counter Value */
.counter-value {
  font-size: 64px;
  font-weight: 600;
  color: var(--color-accent-dark);
}

/* Counter Text */
.counter-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-accent-dark);
}

@media only screen and (max-width: 576px) {
  .counter-value {
    font-size: 32px;
  }
  .counter-text {
    font-size: 12px;
  }
}

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

/*  Accordion Feed
------------------------------------------ */
/* .accordion-feed */
.accordion-feed {
  height: 100%;
  position: relative;
}

.accordion-feed::before {
  top: 0;
  left: -45px;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  border-right: 1px solid var(--color-white-trans);
}

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

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

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

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

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

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

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

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

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

/*  Post: Post Thumbnail
------------------------------------------ */
.post-thumbnail {
  width: 100%;
  height: 375px;
  display: block;
  background: var(--color-gray-light);
}

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

/*  Post: Post Meta
------------------------------------------ */

/* Post Title */
.post-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

/*  Post: Post Box
------------------------------------------ */
.post-box {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: 3px 4px 38px rgba(24, 108, 128, 0.5);
}

/* Post Box / Post Thumbnail */
.post-box .post-thumbnail {
  height: 260px;
}

/* Post Box / Post Meta */
.post-box .post-meta {
  padding: 30px;
}

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

/* Post Box / Buttons */
.post-box .buttons {
  justify-content: flex-end;
}

/*  Component: Doctor
----------------------------------------------------------------------------------------- */

/*  Doctor: Doctor Thumbnail
------------------------------------------ */
.doctor-thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-white);
}

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

/*  Doctor: Doctor Box
------------------------------------------ */
.doctor-box {
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background: var(--color-white);
  box-shadow: 3px 4px 38px rgba(24, 108, 128, 0.5);
}

/* Doctor Box / Doctor Thumbnail */
.doctor-box .doctor-thumbnail {
  height: 280px;
  background: var(--color-accent-trans);
  border-bottom: 1px solid var(--color-gray-light);
}

/* Doctor Box / Doctor Meta */
.doctor-meta {
  padding: 30px;
}

/*  Doctor: Doctor Meta
------------------------------------------ */
.doctor-meta {
  display: flex;
  flex-direction: column;
}

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

/* Doctor Meta / Doctor Title */
.doctor-meta .doctor-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0 0 !important;
}

.doctor-meta .doctor-post {
  color: var(--color-gray-dark);
}

/*  Doctor: Doctor Branding Image
------------------------------------------ */
.doctor-branding {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.doctor-branding img {
  max-width: 420px;
}

/*  Component: Review
----------------------------------------------------------------------------------------- */

/*  Review: Review Box
------------------------------------------ */
.review-box {
  height: 100%;
  padding: 30px;
  background: #ffffff8a;
  border: 1px solid #ffffff;
  box-shadow: 3px 4px 38px rgba(24, 108, 128, 0.3),
    inset 18.9667px -18.9667px 18.9667px rgba(194, 194, 194, 0.089),
    inset -18.9667px 18.9667px 18.9667px rgba(255, 255, 255, 0.089);
  backdrop-filter: blur(33.7607px);
  border-radius: 40px;
}

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

/* Review Box / Review Title */
.review-box .review-title {
  font-size: 16px;
  font-weight: 600;
}

/*  Component: Page Header
----------------------------------------------------------------------------------------- */

.page-header {
  padding: 0;
}

/*  Page Header: Page Meta
------------------------------------------ */
.page-meta {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
}

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

/* Page Meta Center */
.page-meta.center {
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* Page Title */
.page-title {
  margin: 0;
}

/*  Component: Pricelsit
----------------------------------------------------------------------------------------- */

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

/*  Pricelsit: Pricelsit Title
------------------------------------------ */
.pricelist-title {
  font-weight: 600;
  font-size: var(--h2-font-size);
  color: var(--color-accent-dark);
}

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

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

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

/*  Contact List: Contact Item
------------------------------------------ */
.contact-item {
  position: relative;
  padding: 0 0 0 35px;
}

.contact-item .iconify {
  top: 0;
  left: 0;
  font-size: 20px;
  position: absolute;
}

.contact-item .address > * {
  line-height: 2;
}

/*  Socialbar
------------------------------------------ */

/*  Shedulebar
------------------------------------------ */

/* Shedulebar Table */
.shedulebar {
  width: 100%;
}

.shedulebar table {
  border: none;
  max-width: 240px;
}

.shedulebar table th,
.shedulebar table td {
  padding: 5px 0;
}

.shedulebar table tr:nth-child(odd) {
  background: transparent;
}

/*  Component: Card
----------------------------------------------------------------------------------------- */

/* Card */
.card {
  position: relative;
}

.card [class*="col-"] {
  padding: 60px;
}

/*  .card-branding
------------------------------------------ */
.card-branding.heading {
  left: 50%;
  z-index: 999;
  position: absolute;
  transform: translateX(-50%);
  top: calc(var(--heading-label-height) / -2);
}

/*  .card-content
------------------------------------------ */
.card-content {
  overflow: hidden;
  position: relative;
  border-radius: 40px;
  background: var(--color-white);
  box-shadow: 3px 4px 38px rgba(24, 108, 128, 0.5);
}

@media only screen and (max-width: 576px) {
  .card [class*="col-"] {
    padding: 45px;
  }
}

/*  Card: Cardbox
------------------------------------------ */
.cardbox {
  height: 100%;
  padding: 30px;
  display: flex;
  z-index: 2;
  position: relative;
  text-align: center;
  border-radius: 45px;
  align-items: center;
  flex-direction: column;
  background: var(--color-white);
  box-shadow: 3px 4px 38px rgba(24, 108, 128, 0.5);
}

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

/* Cardbox Icon */
.cardbox-icon {
  max-height: 50px;
}

/* Cardbox Text */
.cardbox-text {
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 576px) {
  /* Cardbox */
  .cardbox {
    padding: 15px;
    text-align: left;
    flex-direction: row;
  }

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

  /* Cardbox Text */
  .cardbox-text {
    font-size: 14px;
  }
}

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

.heading {
  /* Heading Label Settings */
  --heading-label-height: 60px;

  /* Heading */
  display: flex;
  flex-direction: column;
}

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

/* Heading White */
.heading.white > * {
  color: var(--color-white);
}

/*  Heading: Heading Title
------------------------------------------ */
.heading-title {
  font-size: 42px;
  font-weight: 600;
}

@media only screen and (max-width: 576px) {
  .heading-title {
    font-size: 24px;
  }
}

/*  Heading: Heading Text
------------------------------------------ */
.heading-text {
  font-size: 16px;
}

/*  Heading: Heading Label
------------------------------------------ */
.heading-label {
  /* Properties */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;

  font-size: 18px;
  font-weight: 600;
  text-align: center;

  padding: 0 30px;

  min-width: 220px;
  width: max-content;
  height: var(--heading-label-height);

  border-radius: 55px;
  color: var(--color-white);
  background: var(--color-accent);
}

/*  Heading Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .heading {
    /* Heading Label Settings */
    --heading-label-height: 45px;
  }
  .heading-label {
    font-size: 14px;
  }
}

/*  Component: Form
----------------------------------------------------------------------------------------- */

/*  Default Form
------------------------------------------ */
input,
select,
textarea {
  width: 100%;
  height: 50px;
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  border-radius: 30px;
  color: var(--color-gray-dark);
  background: var(--color-accent-trans);
}

textarea {
  height: 120px;
}

/* Form Inverse */
.form-inverse input,
.form-inverse select,
.form-inverse textarea {
  color: var(--color-accent);
  background: white;
}

/*  Contact Form 7
------------------------------------------ */
form > *:not(:last-child) {
  margin: 0 0 15px 0 !important;
}

form p {
  margin: 0 !important;
}

form br {
  display: none;
}

form .wpcf7-spinner {
  position: absolute;
}

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

/*  .widget-title
------------------------------------------ */
.widget-title {
  font-size: 20px;
  font-weight: 600;
}

/* Widget Title Center */
.widget-title.center {
  text-align: center;
}

/*  Widget: Widget Area
------------------------------------------ */

/*  Component: Site Branding
----------------------------------------------------------------------------------------- */

.site-branding {
  display: flex;
  align-items: center;
}

.site-branding .site-logo {
  max-height: 50px;
}

/* Site Footer Site Branding */
.site-branding .site-logo.invert {
  filter: brightness(0) invert(1);
}

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

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

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

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

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

/* Buttons Fullwidth */
.buttons.fw {
  flex-direction: column;
}

.buttons.fw [class*="button-"] {
  width: 100%;
}

/*  Button: Default
------------------------------------------ */

.buttons [class*="button-"] {
  height: 40px;
  display: flex;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  padding: 0px 30px;
  text-align: center;
  align-items: center;
  border-radius: 45px;
  justify-content: center;

  border: 1px solid transparent;
  color: var(--color-white);
  background-color: var(--color-accent-dark);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.25);
}

/* Buttons Button XL */
.buttons .button-xl {
  height: 50px;
}

/* Buttons Button S */
.buttons .button-s {
  height: 30px;
  padding: 0 15px;
  font-size: 12px;
}

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

/*  Component: Modal
----------------------------------------------------------------------------------------- */

.modal {
  display: none;
}

/*  Modal: Modal Lead
------------------------------------------ */
#modal-lead {
  width: 100%;
  border-radius: 30px;
  padding: 30px !important;
  max-width: 576px !important;
}

#modal-lead > *:not(:last-child) {
  margin: 0 0 30px 0;
}

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

.comment-list > .comment {
  padding: 30px;
  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: 30px;
}

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

.comment-body {
  padding: 30px;
  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: 15px 0;
  margin: 15px 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.5;
  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: 20px;
  min-height: 20px;
  display: block;
}

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

.nav-links > .nav-next > a::after {
  margin-left: 10px;
  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: 50px;
  height: 50px;
  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: 15px;
}
