/*!
Theme Name: МД Кощей
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: md-koschej
Tags:
----------------------------------------------------------------------------------------- */

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

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

/*  Variables
---------------------------------------- */
:root {
  /* Colors */
  --black: #000;
  --white: #fff;
  --black-transparent: #2c2c2c6b;

  --main: ;
  --main-dark: ;
  --main-light: ;

  --accent: #ff8a00;
  --accent-dark: ;
  --accent-light: ;

  --gray: #aaaaaa;
  --gray-dark: #3c3c3b;
  --gray-light: #f5f5f5;

  /* Fonts */
  --serif: ;
  --sans-serif: "Open Sans", sans-serif; /* 300, 400, 600, 700, 800 */
}

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

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

  background: url(/wp-content/themes/md-koschej/media/body-bg.jpg) repeat;
  background-attachment: fixed;
  background-position: unset;
}

.site {
  /* width: 100%;
  margin: 60px auto;
  max-width: 1140px;
  background: var(--gray-light);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3); */
}

@media only screen and (max-width: 1200px) {
  .site {
    margin: 0 auto;
  }
}

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

/*  Site Layout: Grid System
----------------------------------------------------------------------------------------- */
.container,
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container {
  max-width: 1140px !important;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.y-space-around,
.x-space-around {
  justify-content: space-around;
}

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

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

.layout {
  height: min-content;
  padding: 0 !important;
}

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

/* .col-sm */
@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%;
  }
}

/* .col-md */
@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%;
  }
}

/* .col-lg */
@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: Site Header
----------------------------------------------------------------------------------------- */

.site-header {
  background: url(/wp-content/themes/md-koschej/media/header-bg.png) no-repeat
    right bottom/ contain var(--white);
}

.site-header [class*="col-"] {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

/*  .site-header
---------------------------------------- */

.site-header [class*="col-"] {
  flex-wrap: wrap;
}

/*  .site-header__bottom
---------------------------------------- */
.site-header__bottom {
  transition: 0.05s;
  color: var(--white);
  position: relative;
  background: var(--gray-dark);
  border-bottom: 5px solid var(--accent);
}

.site-header__bottom [class*="col-"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__bottom.fixed {
  top: 0;
  z-index: 999;
  position: sticky;
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.4);
}

/* .site-branding */
.site-branding {
  display: flex;
  position: relative;
  align-items: center;
}

.site-branding::before {
  content: "";
  z-index: 0;
  width: 10px;
  height: 100px;
  display: block;
  position: absolute;
  background: url(/wp-content/themes/md-koschej/media/ua-flag.png) no-repeat
    center center / contain;
}

.site-branding .logo {
  z-index: 1;
  max-height: 80px;
  position: relative;
}

.site-header__bottom .language-switcher {
  display: none;
}

@media only screen and (max-width: 1040px) {
  .site-header [class*="col-"] {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* .site-header__bottom */
  .site-header__bottom {
    padding: 5px 30px;
  }
  .site-header__bottom .language-switcher {
    display: block;
  }
}

/*  Main Navigation
----------------------------------------------------------------------------------------- */

/* .main-navigation */
.main-navigation {
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.main-navigation::-webkit-scrollbar {
  display: none;
}

/* .main-navigation > menu */

.main-navigation .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .main-navigation > menu-item */
.main-navigation .menu > .menu-item {
  width: 100%;
  height: 100%;
  position: relative;
  min-width: max-content;
}

.main-navigation:not(.mobile) .menu > .menu-item:not(:last-child) {
  border-right: 1px solid var(--black-transparent);
}

.main-navigation .menu > .menu-item > a {
  width: 100%;
  height: 40px;
  display: flex;
  cursor: pointer;
  text-align: center;
  align-items: center;
  transition: 0.2s;
  font-weight: 600;
  padding: 0 30px;
  color: var(--accent-light);
  justify-content: center;
  text-transform: uppercase;
}

.main-navigation .menu > .menu-item > a:hover,
.main-navigation .menu > .current-menu-item > a {
  color: var(--accent);
  background: var(--black-transparent);
}

.main-navigation.mobile .menu > .menu-item > a > .iconify {
  font-size: 28px;
  background: #ffffff24;
  border-radius: 100%;
}

/* .main-navigation > .sub-menu */
.main-navigation .menu > .menu-item > .sub-menu {
  left: 0;
  z-index: 1000;
  overflow: hidden;
  position: absolute;

  max-height: 0;

  width: 100%;
  max-width: 576px;
  min-width: max-content;

  display: flex;
  flex-direction: column;

  color: var(--black);
  background: var(--white);
}

.main-navigation:not(.mobile) .menu > .menu-item:hover > .sub-menu,
.main-navigation .menu > .menu-item > .sub-menu.open {
  flex-wrap: wrap;
  max-height: min-content;
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a {
  display: flex;
  font-size: 0.8rem;
  padding: 15px 30px;
  align-items: center;
  color: var(--gray-dark);
  text-transform: uppercase;
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a:hover {
  background: var(--gray-light);
}

/* .main-navigation-mobile */
.main-navigation.mobile {
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: block;
  min-height: 70vh;
  overflow-y: scroll;
  position: absolute;
  background: var(--accent);
}

.main-navigation.mobile .menu {
  flex-direction: column;
  align-items: flex-start;
}

.main-navigation.mobile .menu .menu-item {
  width: 100%;
}

.main-navigation.mobile .menu > .menu-item > a {
  padding: 0 30px;
  justify-content: space-between;
}

/* .main-navigation-mobile > .sub-menu */
.main-navigation.mobile .menu .menu-item .sub-menu {
  left: 0;
  min-width: 100%;
  position: unset;
  transform: unset;
}

/* .menu-toggle */
.mobile-toggle {
  display: none;
}

.mobile-toggle div {
  width: 35px;
  height: 3px;
  margin: 7px 0;
  transition: 0.2s;
  background-color: var(--white);
}

.change div:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.change div:nth-child(2) {
  opacity: 0;
}

.change div:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

/*  */
@media only screen and (max-width: 1040px) {
  .mobile-toggle {
    display: block;
  }
  .main-navigation {
    display: none;
  }
}

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

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

/*  Component: Tabs
----------------------------------------------------------------------------------------- */
.tabs {
  display: flex;
  position: relative;
}

.tabs::after {
  width: 100%;
  content: "";
  display: block;
  border-bottom: 4px solid var(--gray);
  position: absolute;
  bottom: 0;
}

/* Style the tab */
.tab {
  width: 100%;
  z-index: 1;
  padding: 15px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  transition: 0.3s !important;
  border-top: 4px solid transparent;
  border-bottom: 4px solid #ffffff12;
}

.tab:hover,
.tab.active {
  color: var(--accent);
  border-bottom: 4px solid var(--accent);
}

/* Style the tab content */
.tabcontent {
  display: none;
  position: relative;
  overflow: hidden;
  -webkit-animation: fadeEffect 0.5s;
  animation: fadeEffect 0.5s;
}

.tabcontent h2 {
  margin: 45px 0;
  font-weight: 600;
  text-align: center;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 576px) {
  .tabs {
    flex-direction: column;
  }
}

/*  Component: Swiper Gallery
----------------------------------------------------------------------------------------- */
.gallery-slider .swiper-slide {
  background-size: contain;
  background-position: center;
}

/*  */
.gallery-top {
  margin-bottom: 10px;
}

.gallery-top .swiper-slide {
  height: 474px;
}

/*  */
.gallery-thumbs .swiper-slide {
  opacity: 0.4;
  height: 138.8px;
}

/*  */

.gallery-top {
  height: 80%;
  width: 100%;
}

.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  cursor: pointer;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

@media only screen and (max-width: 576px) {
  .gallery-top .swiper-slide {
    height: 240px;
  }
  .gallery-thumbs .swiper-slide {
    height: 59px;
  }
}

/*  Component: Editor Styles
----------------------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-bottom: 20px;
  font-family: var(--serif);
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

/*  */
blockquote {
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

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

blockquote::after {
  width: 24px;
  height: 24px;
  margin-left: auto;
  transform: rotate(180deg);
}

blockquote p {
  text-align: left;
  font-weight: 300;
  margin-left: 60px;
  margin-right: 60px;
  font-style: italic;
}

blockquote p:first-child {
  margin-top: 15px;
}

blockquote p:last-child {
  margin-bottom: 15px;
}

.editor.boxed {
  padding: 30px;
  background: var(--white);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
}

/*  */
.editor h2:hover::after {
  width: 75px;
}

/*  */
.editor a {
  color: var(--accent);
}

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

/*  */
.editor ul,
.editor ol,
.editor dl {
  margin: 0 0 15px 30px;
}

.editor ul li:not(:last-child),
.editor ol li:not(:last-child),
.editor dl li:not(:last-child) {
  margin-bottom: 5px;
}

.editor ul {
  list-style: disc;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

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

tr:nth-child(even) {
  background-color: #f2f2f2;
}

@media only screen and (max-width: 576px) {
  h1 {
    font-size: 32px;
  }
}

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

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

.buttons li:not(:first-child) {
  margin-left: 15px;
}

.buttons [class*="button-"] {
  height: 40px;
  display: flex;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 0px 30px;
  text-align: center;
  color: var(--white);
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  background-color: var(--accent);
}

[class*="button-"].bordered {
  background: unset;
  border-color: var(--accent);
}

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

.buttons .button-xl {
  height: 50px;
  padding: 0 45px;
}

.buttons .button-s {
  height: 30px;
  padding: 0 15px;
}

/*  */
.details {
  transition: 0.3s;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--accent);
}

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

/*  Component: Social
----------------------------------------------------------------------------------------- */
.social {
  width: 35px;
  height: 35px;
  display: flex;
  font-size: 20px;
  transition: 0.3s;
  text-align: center;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
}

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

.social.white {
  border-color: var(--white);
}

/*  Component: Sidebar
----------------------------------------------------------------------------------------- */
.sidebar {
  padding: 20px;
  color: var(--white);
  background: var(--accent);
}

/*  Component: Comments
----------------------------------------------------------------------------------------- */
.comments-title span {
  color: var(--accent);
}

.comment-list .comment {
  padding: 30px;
  position: relative;
  border: 1px solid #e9e9e9;
  background: var(--gray-light);
}

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

.comment::after {
  top: 2px;
  right: 2px;
  position: absolute;
  content: url("https://api.iconify.design/ic:baseline-format-quote.svg?height=36");
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 15px 15px 15px;
  justify-content: space-between;
}

.comment-content {
  padding: 15px;
  background: var(--white);
}

.reply {
  text-align: right;
  color: var(--accent);
  padding: 15px 15px 0 15px;
  text-decoration: underline;
}

.comment-form-comment label {
  margin-bottom: 15px;
  font-weight: 600;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
}

.comment-form-cookies-consent > input {
  margin-right: 5px;
}
/*  Component: Widgets
----------------------------------------------------------------------------------------- */

.widget-area > .widget:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffffff38;
}

.widget-title {
  display: flex;
  font-size: 22px;
  font-weight: 600;
  align-items: baseline;
  text-transform: uppercase;
}

.widget-title.center {
  text-align: center;
  justify-content: center;
}

/*  Widget: Widget Recentcomments
---------------------------------------- */
#recentcomments {
  list-style: square;
  font-size: 0.8rem;
  margin: 0 0 0 15px;
}

#recentcomments li:not(:last-child) {
  margin-bottom: 7.5px;
  padding-bottom: 7.5px;
}

/*  Widget: Widget Infobar
---------------------------------------- */
.infobar-widget {
  display: flex;
}

.infobar-widget > * {
  display: flex;
  align-items: center;
}

.infobar-widget > *:not(:last-child) {
  margin: 0 15px 0 0;
  padding: 0 15px 0 0;
  border-right: 1px solid var(--gray-light);
}

@media only screen and (max-width: 1040px) {
  .infobar-widget {
    flex-direction: column;
  }
  .infobar-widget > * {
    margin: 15px 0 0 0 !important;
    padding: 15px 0 0 0 !important;
    border-right: unset !important;
    border-top: 1px solid var(--gray-light);
  }
  .infobar-widget > .language-switcher {
    display: none;
  }
}

/*  Component: Forms
----------------------------------------------------------------------------------------- */
input,
textarea {
  width: 100%;
  padding: 15px 30px;
  font-family: inherit;
  border: 1px solid var(--gray);
}

input[type="submit"] {
  cursor: pointer;
  width: min-content;
  color: var(--white);
  background: var(--accent);
  border-color: transparent;
}

[type="checkbox"],
[type="radio"] {
  width: unset !important;
}

textarea {
  padding: 15px;
  font-size: 14px;
}

label {
  display: block;
}

/* .search-form */
.search-form {
  display: flex;
}

@media only screen and (max-width: 576px) {
  label {
    width: 100%;
  }
}

/*  Form: Search Form
---------------------------------------- */

/* .search-form > label */
.search-form .screen-reader-text {
  font-weight: 600;
  margin-right: 5px;
}

.search-form input[type="search"] {
  padding: 5px 10px;
  margin-right: 5px;
  max-width: 160px;
}

/* .search-form > button */
.search-form input[type="submit"] {
  cursor: pointer;
  transition: 0.3s;
  padding: 5px 10px;
  color: var(--white);
  border-color: transparent;
  background: var(--gray-dark);
}

.search-form input[type="submit"]:hover {
  background: var(--accent);
}

@media only screen and (max-width: 1040px) {
  .search-form input[type="search"] {
    max-width: 95%;
  }
}

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

.pagintaion .screen-reader-text {
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  cursor: pointer;
  transition: 0.3s;
  align-items: center;
  color: var(--main);
  justify-content: center;
  border: 1px solid var(--main);
}

.nav-links .page-numbers:not(.next) {
  margin-right: 10px;
}

.nav-links .page-numbers.next {
  line-height: 0;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
  font-weight: 500;
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

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

.accordion-feed > div:not(:last-child) {
  margin-bottom: 10px;
}

.accordion {
  display: flex;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  align-items: center;
  margin-bottom: 15px;
  background: var(--white);
  justify-content: space-between;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-light);
}

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

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

.accordion-panel {
  max-height: 0;
  font-size: 16px;
  padding: 0 30px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-list li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-light);
}
.download {
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.download::before {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  content: url("https://api.iconify.design/el:download-alt.svg?height=16");
}

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

section {
  padding: 15px 0;
}

section.white {
  background: var(--white);
}

/*  Section: Layout Sidebar
----------------------------------------------------------------------------------------- */
.layout-sidebar {
  background: var(--white);
}

/*  Section: Hero
----------------------------------------------------------------------------------------- */
#hero-slider {
  height: 580px;
  text-align: center;
}

#hero-slider .editor p {
  text-align: center;
}

#hero-slider .editor h2 {
  font-size: 32px;
  margin: 0 0 30px 0;
}

#hero-slider .swiper-slide {
  height: 100%;
}

#hero-slider .swiper-slide .container {
  padding: 0 15px;
}

#hero-slider .swiper-slide .overlayed {
  height: 100%;
  display: flex;
  padding: 30px 0;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to top, #2e2e2ed4, transparent);
}

#hero-slider [class*="col-"] > *:not(:last-child) {
  margin-bottom: 15px;
}

/* .swiper */
#hero-slider .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: var(--white);
}

#hero-slider .swiper-pagination-bullet-active {
  background: var(--accent);
}

@media only screen and (max-width: 576px) {
  #hero-slider .swiper-slide .overlayed [class*="col-"] {
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Blocks
 *
----------------------------------------------------------------------------------------- */

.sticky-box {
  top: 60px;
  position: sticky;
}

/*  Block: Dealer Box
----------------------------------------------------------------------------------------- */
.dealer-box {
  display: flex;
  flex-direction: column;
}

.dealer-box .dealer-logo {
  height: 160px;
  object-fit: contain;
}

/* .dealer-box .dealer-meta */
.dealer-box .dealer-meta {
  padding: 30px;
  background: var(--white);
}

.dealer-box .dealer-meta > * {
  display: block;
}

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

.dealer-title {
  font-size: 16px;
  font-weight: 600;
}

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

.heading > * {
  margin: 0;
}

/*  */
.heading-title {
  font-size: 24px;
  font-weight: 600;
}

.heading-title::after {
  content: "";
  display: block;
  margin: 15px 0 25px 0;
  width: 120px;
  border-bottom: 2px solid var(--accent);
}

/*  Block: Newsline
----------------------------------------------------------------------------------------- */
.newsline > *:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-light);
}

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

.language-switcher > * {
  transition: 0.3s;
}

.language-switcher > *:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--gray-light);
}

.language-switcher > *:hover,
.language-switcher > *.current-language {
  color: var(--accent);
}

/*  Block: Section Head
----------------------------------------------------------------------------------------- */
.section-head {
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.section-head > *:not(:last-child) {
  margin: 0 0 5px 0 !important;
}

/*  */
.section-head > .uptitle {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

/*  */
.section-head > .title {
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
}

/*  Block: Anounce Search
----------------------------------------------------------------------------------------- */
.anounce-search {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 15px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}

.anounce-search > .name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
  text-decoration: underline;
}

/*  Block: Anounce Box
----------------------------------------------------------------------------------------- */
.anounce-box {
  height: 100%;
  display: flex;
  cursor: pointer;
  transition: 0.3s;
  flex-direction: column;
  color: var(--gray-dark);
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
}

.anounce-box:hover {
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.3);
}

/*  */
.anounce-box__cover {
  width: 100%;
  min-height: 338.25px;
  background: var(--white);
}

.anounce-box__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*  */
.anounce-box__meta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--gray-light);
}

.anounce-box__meta .name {
  height: 100%;
  font-size: 18px;
  max-width: 280px;
  font-weight: 600;
  margin-bottom: 10px !important;
}

/*  Block: Anounce Post
----------------------------------------------------------------------------------------- */
.post-box {
  display: flex;
  height: 100%;
}

/*  */
.post-box.column {
  flex-direction: column;
}

.post-box.column .post-box__cover {
  width: 100%;
  height: 240px;
  border-radius: 5px;
  overflow: hidden;
}

.post-box.column .post-box__meta {
  margin: 0;
  padding: 15px;
}

/* .post-box__cover */
.post-box__cover {
  width: 150px;
  height: 150px;
  min-width: 150px;
  min-height: 150px;
  background: var(--gray-light);
}

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

/* .post-box__meta */
.post-box__meta {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 15px;
}

.post-box__meta > * {
  display: block;
}

.post-box__meta > *:not(:last-child) {
  margin-bottom: 15px;
}

.post-box__meta > .name {
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
}

@media only screen and (max-width: 576px) {
  .post-box {
    flex-direction: column;
  }
  .post-box__cover {
    height: 320px;
    width: 100%;
  }
  .post-box__meta {
    margin: 15px 0 0 0;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Parts
 *
----------------------------------------------------------------------------------------- */

/*  Template Part: content-header.php
----------------------------------------------------------------------------------------- */
.content-header {
  height: 100%;
  padding: 0;
}

.content-header .overlayed {
  height: 420px;
  display: flex;
  padding: 30px 0;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, #000000d4, transparent);
}

.content-header .container {
  padding: 0 15px;
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Pages
 *
----------------------------------------------------------------------------------------- */

/*  Template Page: 
----------------------------------------------------------------------------------------- */
