/*!
Theme Name: Glamp
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: glamp
Tags:
----------------------------------------------------------------------------------------- */

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

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

:root {
  /* Colors */
  --color-black: #000;
  --color-white: #fff;

  --color-main: ;

  --color-accent: #2e5cff;
  --color-accent-trans: #2e5cff40;

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

  /* Fonts */
  --font-manrope: "Manrope", sans-serif;
}

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

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

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

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

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

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

.container-fluid {
  max-width: 100% !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;
}

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

/*  Position
------------------------------------------ */

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

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

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

/* .row-invert */
.row-invert > *:nth-child(even) {
  flex-direction: row-reverse;
}

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

/*  Template Part: Site Header
----------------------------------------------------------------------------------------- */
.site-header {
  height: 150px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background: var(--color-black);
}

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

/*  Site Header: Site Buttons
------------------------------------------ */
.site-buttons {
  display: flex;
  align-items: center;
}

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

/*  Site Header: Responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  .site-header [class*="col-"] > .column {
    width: unset;
  }
  .site-header [class*="col-"] > .column:not(:last-child) {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 576px) {
  .site-header .site-buttons > *:not(:last-child) {
    display: none;
  }
}

/*  Template Part: Page Header
----------------------------------------------------------------------------------------- */
.page-header {
  padding: 30px 0 0 0;
}

.page-header [class*="col-"] {
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.page-header [class*="col-"] > *:not(:last-child) {
  margin: 0 0 15px 0 !important;
}

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

/*  Template Part: Site Footer
----------------------------------------------------------------------------------------- */
.site-footer {
  height: 150px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background: var(--color-black);
}

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

.site-footer [class*="col-"] > .column {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer [class*="col-"] > .column:first-child {
  justify-content: flex-start;
}

.site-footer [class*="col-"] > .column:last-child {
  justify-content: flex-end;
}

/*  Template Part: 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);
}

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

section {
  padding: 60px 0;
}

section.gray-light {
  background: var(--color-gray-light);
}

/*  Section: Background Image
------------------------------------------ */
section.background-image {
  width: 100%;
  height: 468px;
}

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

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

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

/* Component: Location
-----------------------------------------------------------------------------------------*/
.location-map iframe {
  width: 100%;
  border: none;
  height: 420px;
}

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

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

/*  Post: Post Single
------------------------------------------ */
.post-single > *:not(:last-child) {
  margin: 0 0 30px 0;
}

/*  Post: Post Box
------------------------------------------ */

/* .post-box .post-meta */
.post-box .post-meta {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

/* .post-box .post-title */
.post-box .post-title {
  display: block;
  font-weight: 500;
}

/*  Post: Post Thumbnail
------------------------------------------ */
.post-thumbnail {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-gray-light);
}

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

/*  Post: Post Details
------------------------------------------ */

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

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

/*  Product: Product List
------------------------------------------ */
.product-list {
  display: flex;
  flex-direction: column;
}

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

/* .list-item */
.list-item {
  display: flex;
  position: relative;
  justify-content: space-between;
}

/* .list-text */
.list-text {
  display: flex;
  align-items: center;
}

.list-text .list-option {
  margin: 0 5px 0 0;
}

/*  Product: Product Price
------------------------------------------ */
.product-price {
  font-size: 32px;
  font-weight: 600;
}

/* .product-price::after {
  content: '₴';
} */

/*  Product: Product Info
------------------------------------------ */
.product-info {
  padding: 15px;
}

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

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

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

/*  Product Gallery: Gallery Top
------------------------------------------ */
.product-gallery .gallery-top {
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: var(--color-white-trans);
}

/*  Product Gallery: Gallery Thumbs
------------------------------------------ */
.gallery-thumbs {
  overflow: hidden;
  margin: 10px 0 0 0;
}

.gallery-thumbs .swiper-slide {
  cursor: pointer;
  height: 115px !important;
  background: var(--color-white);
}

.gallery-thumbs .swiper-slide:hover,
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--color-white);
}

.gallery-thumbs .swiper-slide > img {
  height: 100%;
  opacity: 0.8;
  transition: 0, 3s;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--color-accent-trans);
}

.gallery-thumbs .swiper-slide > img:hover {
  opacity: 1;
}

/*  Product Gallery: Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .product-gallery .gallery-top {
    height: 265px;
  }
}

/* Component: LightBox Gallery
-----------------------------------------------------------------------------------------*/
.gallery-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-box > img {
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--color-accent-trans);
}

/*  Component: Contact List $ Items
----------------------------------------------------------------------------------------- */

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

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

/*  Contact Item
------------------------------------------ */
.contact-item {
  display: flex;
  align-items: center;
}

.contact-item::before {
  font-weight: 600;
  margin: 0 5px 0 0;
  content: attr(data-title);
}

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

@media only screen and (max-width: 576px) {
  .contact-item {
    flex-direction: column;
  }
  .contact-item > *:not(:last-child) {
    margin: 0 0 10px 0;
  }
  .contact-item > :not(:last-child)::after {
    display: none;
  }
}

/*  Contact Item: Social Networks
------------------------------------------ */
.social-networks {
  display: flex;
}

.social-networks > * {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
  border: 1px solid var(--color-black);
}

.social-networks > *:hover {
  color: var(--color-accent);
  border-color: var(--color-accent) !important;
}

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

/*  Components: Block Box
----------------------------------------------------------------------------------------- */
.block-box {
  padding: 30px;
  border-radius: 15px;
  background: var(--color-white);
  border: 1px solid var(--color-accent-trans);
}

.block-box .number {
  width: 30px;
  height: 30px;
  display: flex;
  text-align: center;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-accent);
  margin: 0 0 15px 0;
}

.block-box .editor p {
  text-align: left;
}

/* .block-box .gray-light */
.block-box.gray-light {
  padding: 15px;
  border-color: var(--color-gray-light);
  background: var(--color-gray-light);
}

/*  Components: Heading
----------------------------------------------------------------------------------------- */

.heading {
  display: flex;
  flex-direction: column;
}

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

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

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

/*  Components: Form
----------------------------------------------------------------------------------------- */
input,
textarea {
  width: 100%;
  transition: 0.3s;
  padding: 15px 25px;
  border-radius: 10px;
  border: 1px solid var(--color-gray-light);
}

input:focus,
textarea:focus {
  border-color: var(--color-accent);
}

textarea {
  height: 120px;
}

input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
}

/*  Form: Form Wrapper
------------------------------------------ */
.form-wrapper {
  display: flex;
  flex-direction: column;
}

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

.form-wrapper > br {
  display: none;
}

/*  Contact Form 7
------------------------------------------ */
.wpcf7-spinner {
  display: none;
}

/* Notification */
.wpcf7 form .wpcf7-response-output {
  font-size: 0.9rem;
  padding: 15px 15px;
  margin: 15px 0 !important;
}

/*  Components: Feedback
----------------------------------------------------------------------------------------- */

/*  Feedback: Feedback Button
------------------------------------------ */
.feedback-button {
  opacity: 0.9;
  height: 150px;
  display: flex;
  font-size: 22px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  align-items: center;
  letter-spacing: 8px;
  justify-content: center;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-accent);
}

.feedback-button:hover {
  opacity: 1;
  letter-spacing: 6px;
}

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

.language-switcher > .language {
  opacity: 0.5;
  display: block;
  transition: 0.3s;
}

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

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

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

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

/*  Component: Site Copyright
----------------------------------------------------------------------------------------- */
.site-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-copyright .developer {
  opacity: 0.6;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .site-copyright {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }
  .site-copyright > *:not(:last-child) {
    margin-bottom: 10px;
  }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0 0 20px 0;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

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

img.rounded {
  border-radius: 10px;
}

img.alignright {
  float: right;
  margin: 0 0 0 30px;
}

img.alignleft {
  float: left;
  margin: 0 30px 0 0;
}

img.aligncenter {
  max-width: 100% !important;
}

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

blockquote {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 15px;
}

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

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

blockquote p {
  text-align: left;
  font-weight: 300;
}

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

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

.editor p {
  text-align: justify;
  color: #3a3451;
}

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

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

.editor ul {
  list-style: square;
}

.editor ol {
  list-style: decimal;
}

.editor iframe {
  height: auto !important;
  width: 100% !important;
  min-height: 320px;
}

.editor img {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
  .editor p {
    text-align: left;
  }
  .editor ul,
  .editor ol {
    column-count: 1 !important;
  }
}

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

/*  Accordions Feed
------------------------------------------ */
.accordion-feed > .accordion-panel {
  margin: 0 0 15px 0;
}

/*  Accordion Single
------------------------------------------ */
.accordion-single .accordion {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: unset;
}

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

.accordion-single .accordion-panel {
  padding: 0;
}

/*  Accordions
------------------------------------------ */
.accordion {
  display: flex;
  cursor: pointer;
  font-weight: 400;
  padding: 25px 30px;
  align-items: center;
  background: var(--color-white);
  border-radius: 10px;
  transition: 0.2s;
  margin: 0 0 15px 0;
  justify-content: space-between;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-gray-light);
}

.accordion::selection {
  background: transparent;
}

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

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

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

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

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

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

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

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

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

/*  Buttons: Button Link
------------------------------------------ */
.buttons [class*="button-"].link {
  padding: 0;
  border: none;
  min-width: unset;
  background: unset;
  text-decoration: underline;
  color: var(--color-accent);
}

/*  Buttons: Button Iconed
------------------------------------------ */
.button-iconed {
  display: flex;
  font-weight: 500;
  align-items: center;
  color: var(--color-accent);
}

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

/* .button-iconed .iconify */
.button-iconed .iconify {
  font-size: 24px;
}

@media only screen and (max-width: 576px) {
  .buttons.responsive {
    flex-direction: column;
  }
  .buttons.responsive > *:not(:first-child) {
    margin: 15px 0 0 0;
  }
}

/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  border-radius: 15px !important;
}

/*  Modal: Modal Feedback
------------------------------------------ */
#modal-feedback {
  max-width: 520px !important;
}

/* --------------------------------------------------------------------------------------
 *
 *  Navigations
 *
----------------------------------------------------------------------------------------- */

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

/* .main-navigation */
.main-navigation {
  scrollbar-width: none;
  -ms-overflow-style: 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 {
  height: 100%;
  position: relative;
  width: max-content;
}

.main-navigation:not(.mobile) .menu > .menu-item:not(:last-child) {
  margin: 0 30px 0 0;
}

.main-navigation .menu > .menu-item > a {
  width: 100%;
  height: 60px;
  display: flex;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.main-navigation .menu > .menu-item > a:hover,
.main-navigation .menu > .current-menu-item > a {
  opacity: 0.6;
}

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

/* .main-navigation > .sub-menu */
.main-navigation .menu > .menu-item > a > .dropdown-toggle {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 0 0 5px;
  background: url("https://api.iconify.design/ei/chevron-down.svg?color=white")
    no-repeat center center / contain;
}

.main-navigation.mobile .menu > .menu-item > a > .dropdown-toggle {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.main-navigation .menu > .menu-item > .sub-menu {
  left: 0;
  z-index: 1000;
  overflow: hidden;
  position: absolute;
  max-height: 0;
  width: 100%;
  max-width: 576px;

  display: flex;
  flex-direction: column;
  color: var(--color-white);
  border-radius: 5px;
  background: hsla(0, 0%, 0%, 0.8);
}

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

.main-navigation .menu > .menu-item > .sub-menu .menu-item a {
  display: flex;
  padding: 5px;
  font-weight: 600;
  transition: 0.3s;
  align-items: center;
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a:hover {
  color: var(--color-accent);
  padding: 5px 5px 5px 2px;
}

/* .main-navigation-mobile */
.main-navigation.mobile {
  left: 0;
  width: 100%;
  z-index: 999;
  display: block;
  height: max-content;
  overflow-y: scroll;
  position: absolute;
  color: var(--color-white);
  background: var(--color-black);
}

.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;
  color: var(--color-black);
  background: var(--color-white);
}

/*  Menu toggle
------------------------------------------ */
.menu-toggle {
  width: 50px;
  height: 32px;
  display: none;
  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;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-accent);
  border-radius: 0;
  opacity: 1;
  left: 0;
  -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 span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
  top: 14px;
}

.menu-toggle span:nth-child(4) {
  top: 28px;
}

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

/* Main Navigation: Responsive
------------------------------- */
@media only screen and (max-width: 1320px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation {
    display: none;
  }
  .main-navigation .language-switcher {
    display: block;
  }
}

/*  Navigation: 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: 70px;
  height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
  justify-content: center;
  color: var(--color-accent-trans);
  border-bottom: 2px solid var(--color-accent-trans);
}

.pagination .nav-links > .page-numbers.prev,
.pagination .nav-links > .page-numbers.next {
  border-bottom: none;
  font-size: 12px;
}

.pagination .nav-links > .page-numbers:not(:last-child) {
  margin-right: 15px;
}

.pagination .nav-links > .page-numbers:hover,
.pagination .nav-links > .page-numbers.current {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
